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
| drop table if exists [dbo].[Simple] | |
| go | |
| CREATE TABLE [dbo].[Simple]( | |
| [Id] [int] IDENTITY(1,1) NOT NULL, | |
| [Name] [nvarchar](50) NOT NULL, | |
| [Extra] [bit] NULL, | |
| [Data] [nvarchar](max) NULL, | |
| CONSTRAINT [PK_Simple] PRIMARY KEY CLUSTERED ( [Id] ASC ) | |
| ) |
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
| 0:000> !gcroot 5cbb60a4 | |
| Thread 350c: | |
| 0337ED80 0CA4D42E System.Threading.Tasks.Task.SpinThenBlockingWait(Int32, System.Threading.CancellationToken) | |
| ebp+28: 0337ed88 | |
| -> 0555F510 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib],[Microsoft.AspNetCore.Hosting.WebHostExtensions+<RunAsync>d__4, Microsoft.AspNetCore.Hosting]] | |
| -> 04E3A9A8 Microsoft.AspNetCore.Hosting.Internal.WebHost | |
| -> 04E39444 Microsoft.Extensions.DependencyInjection.ServiceCollection | |
| -> 04E39450 System.Collections.Generic.List`1[[Microsoft.Extensions.DependencyInjection.ServiceDescriptor, Microsoft.Extensions.DependencyInjection.Abstractions]] | |
| -> 04E79E20 Microsoft.Extensions.DependencyInjection.ServiceDescriptor[] | |
| -> 04E0AC5C Microsoft.Extensions.DependencyInjection.ServiceDescriptor |
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
| #!/usr/bin/env ruby -wKU | |
| require "pp" | |
| require 'fileutils' | |
| require "gruff" | |
| require 'rmagick' | |
| def read_cal(file) | |
| data_segment = false |
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.Collections.Generic; | |
| using Microsoft.AspNetCore.Mvc; | |
| using Wat.Models; | |
| namespace Wat.Controllers | |
| { | |
| public class HomeController : Controller | |
| { | |
| [HttpGet] | |
| public IActionResult Index() |
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
| unsafe class Program | |
| { | |
| delegate int? bar(int* i); | |
| static void Main(string[] args) | |
| { | |
| int[] ω = {}; | |
| var Ʃ = 42; | |
| int? Φ = null; | |
| bar ϼ = default; |
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 (rnrs)) | |
| (display "Hello world") | |
| (newline) |
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
| mail_address = '' | |
| password = '' | |
| from selenium import webdriver | |
| from selenium.webdriver.common.by import By | |
| from selenium.webdriver.support.ui import WebDriverWait | |
| from selenium.webdriver.support import expected_conditions as EC | |
| UA = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.57 Safari/537.36' | |
| PHANTOMJS_ARG = {'phantomjs.page.settings.userAgent': UA} |
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.Running; | |
| public class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| BenchmarkRunner.Run<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
| Target type Target member Assembly .NET Standard Recommended changes | |
| T:System.CodeDom.Compiler.CompilerResults T:System.CodeDom.Compiler.CompilerResults IronScheme Not supported | |
| T:System.CodeDom.Compiler.CompilerResults M:System.CodeDom.Compiler.CompilerResults.get_Errors IronScheme Not supported | |
| T:System.Security.CodeAccessPermission T:System.Security.CodeAccessPermission IronScheme Not supported Remove usage. | |
| T:System.Security.CodeAccessPermission M:System.Security.CodeAccessPermission.Demand IronScheme Not supported Remove usage. | |
| T:System.Runtime.Remoting.ObjectHandle T:System.Runtime.Remoting.ObjectHandle IronScheme Not supported | |
| T:System.Runtime.Remoting.ObjectHandle M:System.Runtime.Remoting.ObjectHandle.#ctor(System.Object) IronScheme Not supported | |
| T:System.CodeDom.Compiler.CompilerErrorCollection T:System.CodeDom.Compiler.CompilerErrorCollection IronScheme Not supported | |
| T:System.CodeDom.Compiler.CompilerParameters T:System.CodeDom.Compiler.CompilerParameters IronScheme Not supported | |
| T:System.Cod |
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
| class Foo | |
| { | |
| public string Bar {get;set;} | |
| } | |
| string Baz<T>(T t, Func<T, string> sel) | |
| { | |
| return sel(t); | |
| } |