This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using JWTSimpleServer.Abstractions; | |
| using MessagePack; | |
| using System; | |
| using MessagePack; | |
| using System.Threading.Tasks; | |
| using System.IO; | |
| using System.Collections.Concurrent; | |
| using System.Threading; | |
| namespace JWTSimpleServer.MessagePackRefreshTokenStore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using BenchmarkDotNet.Attributes; | |
| using BenchmarkDotNet.Attributes.Jobs; | |
| using BenchmarkDotNet.Running; | |
| using System; | |
| using System.ComponentModel; | |
| namespace PropertyCache | |
| { | |
| [ClrJob, MonoJob, CoreJob] | |
| [MemoryDiagnoser] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: extensions/v1beta1 | |
| kind: Deployment | |
| metadata: | |
| name: webapp-deploy | |
| spec: | |
| replicas: 3 | |
| template: | |
| metadata: | |
| labels: | |
| app: webapp-deploy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"lastUpload":"2019-05-27T04:36:48.206Z","extensionVersion":"v3.2.9"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "globals": { | |
| "alwaysShowTabs": true, | |
| "defaultProfile": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
| "initialCols": 120, | |
| "initialRows": 30, | |
| "keybindings": [ | |
| { | |
| "command": "closeTab", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using Microsoft.AspNetCore; | |
| using Microsoft.AspNetCore.Builder; | |
| using Microsoft.AspNetCore.Diagnostics.HealthChecks; | |
| using Microsoft.AspNetCore.Hosting; | |
| using Microsoft.AspNetCore.Routing; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using BenchmarkDotNet.Attributes; | |
| using BenchmarkDotNet.Jobs; | |
| using BenchmarkDotNet.Running; | |
| using Newtonsoft.Json; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApp1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.AspNetCore.Builder; | |
| using Microsoft.AspNetCore.Hosting; | |
| using Microsoft.AspNetCore.Http.Features; | |
| using Microsoft.Extensions.DependencyInjection; | |
| using Microsoft.Extensions.Hosting; | |
| using Microsoft.Extensions.Logging; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Net; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.Diagnostics.NETCore.Client; | |
| using Microsoft.Diagnostics.Tracing; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics.Tracing; | |
| using System.Threading.Tasks; | |
| namespace DotnetDiagnostics | |
| { | |
| class Program |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Web3 from 'web3'; | |
| const getWeb3 = () => { | |
| return new Promise( (resolve, reject) => { | |
| window.addEventListener('load', function() { | |
| let web3 = window.web3; | |