This file was generated automatically based on this two sources:
- /etc/nginx/mime.types
- http://www.garykessler.net/library/file_sigs.html
This is a JSON object by following structure:
[string ext] : {
signs: [sign]
| import {useState, useEffect} from 'react'; | |
| export const useGetJokes = () : [() => Promise<void>, string[], boolean, string] =>{ | |
| const [joke, setJoke] = useState(['']); | |
| const [isLoading, setIsLoading] = useState(false); | |
| const [error, setError] = useState(''); | |
| const endpoint = 'https://sv443.net/jokeapi/v2/joke/Any?blacklistFlags=racist&type=single'; | |
| const getJoke = async () => { |
| namespace MyDotNetCore.App | |
| { | |
| using Microsoft.AspNetCore.Identity.EntityFrameworkCore; | |
| using Microsoft.EntityFrameworkCore; | |
| public class ApplicationDbContext : IdentityDbContext | |
| { | |
| public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) | |
| : base(options) | |
| { | |
| } |
| var options = {}; | |
| // jQuery options | |
| // options.url = foo; | |
| // CSRF Token | |
| var csrfToken = $("input[name='__RequestVerificationToken']").val(); | |
| if (csrfToken) { | |
| options.headers = { |
| namespace MyDotNetCore.App | |
| { | |
| using Microsoft.AspNetCore.Identity.EntityFrameworkCore; | |
| using Microsoft.EntityFrameworkCore; | |
| public class ApplicationDbContext : IdentityDbContext | |
| { | |
| public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) | |
| : base(options) | |
| { | |
| } |
| using System; | |
| using System.Collections.Generic; | |
| using System.Net; | |
| using System.Web.Script.Serialization; | |
| namespace App.Service.Services | |
| { | |
| public class FreeCurrencyConverterService : IFreeCurrencyConverterService | |
| { | |
| private readonly String BASE_URI = "http://free.currencyconverterapi.com"; |
| USE [HobbyDB] | |
| GO | |
| /****** Object: Table [dbo].[AspNetRoleClaims] Script Date: 6/4/2018 10:18:03 PM ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[AspNetRoleClaims]') AND type in (N'U')) | |
| BEGIN | |
| CREATE TABLE [dbo].[AspNetRoleClaims]( |
| /* | |
| SQL DDL scripts generated using | |
| dotnet ef database update | |
| for the IdentityServer4.Samples 6_AspNetIdentity quick start. This was run for | |
| commit 0a7400a2ade8c149b3feb08a05bf4423d19ac08c in that repository. It references | |
| - IdentityServer4.AspNetIdentity 2.0.0 including | |
| - Microsoft.AspNetCore.Identity (>= 2.0.1) |
This file was generated automatically based on this two sources:
This is a JSON object by following structure:
[string ext] : {
signs: [sign]
| 1) justify-content: flex-end; | |
| 2) justify-content: center; | |
| 3) justify-content: space-around; | |
| 4) justify-content: space-between; | |
| 5) align-items: flex-end; | |
| 6) align-items: center; | |
| justify-content: center; | |
| 7) justify-content: space-around; | |
| 8) flex-direction: row-reverse; | |
| 9) flex-direction: column; |
| var options = {}; | |
| // jQuery options | |
| // options.url = foo; | |
| // CSRF Token | |
| var csrfToken = $("input[name='__RequestVerificationToken']").val(); | |
| if (csrfToken) { | |
| options.headers = { |