View Program.cs
This file contains 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.Linq; | |
using System.Threading.Tasks; | |
using k8s; | |
namespace KubeStuff | |
{ | |
class Program | |
{ | |
static async Task Main(string[] args) |
View fixed-width-table.js
This file contains 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
if (!String.prototype.repeat) { | |
// polyfill from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat | |
String.prototype.repeat = function(count) { | |
'use strict'; | |
if (this == null) { | |
throw new TypeError('can\'t convert ' + this + ' to object'); | |
} | |
var str = '' + this; | |
count = +count; | |
if (count != count) { |
View CompareForEachToParallelForEachForAddingToDictionary.cs
This file contains 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.Diagnostics; | |
using System.Linq; | |
using System.Threading.Tasks; | |
namespace App | |
{ | |
/// <summary> | |
/// This snippet shows a performance and correctness comparison between |
View GenerateNatoAlphabetAnkiCards.cs
This file contains 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.IO; | |
using System.Linq; | |
using MoreLinq; | |
namespace App | |
{ | |
public static class GenerateNatoAlphabetAnkiCards | |
{ |
View MigrateOrigins.cs
This file contains 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.Diagnostics; | |
using System.IO; | |
namespace App | |
{ | |
public static class MigrateOrigins | |
{ | |
public static void DoIt(string[] args) | |
{ |
View CompareForeachToParallelForeach.cs
This file contains 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.Diagnostics; | |
using System.Threading.Tasks; | |
namespace App | |
{ | |
/// <summary> | |
/// This snippet shows a performance and correctness comparison between | |
/// foreach and Parallel.ForEach when adding a small number of objects to a |
View ConfigurablePolymorphicFluentInterface.cs
This file contains 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; | |
namespace ConfigurablePolymorphicFluentInterface | |
{ | |
public class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string s = ListEnrollmentsSelectBuilder.Create() |
View SimpleFluentInterface.cs
This file contains 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; | |
namespace SimpleFluentInterface | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string s = ListEnrollmentsSelectBuilder.Create() |