I hereby claim:
- I am serialseb on github.
- I am serialseb (https://keybase.io/serialseb) on keybase.
- I have a public key whose fingerprint is 6D5D EE59 E8E6 43EA ECFD FB23 C2E7 4447 91B7 A209
To claim this, I am signing this object:
{ | |
"@context":{ | |
"dothework": "here" | |
}, | |
"id": 1, | |
"node_id": "MDU6SXNzdWUx", | |
"url": "https://api.github.com/repos/octocat/Hello-World/issues/1347", | |
"number": 1347, | |
"state": "open", | |
"title": "Found a bug", |
I hereby claim:
To claim this, I am signing this object:
examples of VEST specifications |
title | layout |
---|---|
My post |
post |
Some content here
static void Main(string[] args) | |
{ | |
bool run = true; | |
var sb = new StringBuilder(); | |
do | |
{ | |
var key = Console.ReadKey(); | |
if (key.Key == ConsoleKey.UpArrow) run = false; | |
else if(key.Key == ConsoleKey.Backspace) |
using System; | |
using System.Globalization; | |
using System.Linq; | |
using CTM.Common.PafAddress; | |
using CTM.Home.Common.Domain; | |
using CTM.Home.Common.ValueTypes; | |
using CTM.Home.Domain.Concepts; | |
using CTM.Home.Domain.Events; | |
using CTM.Home.ViewModels; | |
using TestNewProjections; |
using System; | |
using System.Collections; | |
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Text; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using MongoDB.Bson.Serialization.Attributes; |
public class cappedqueue : cappedcontext | |
{ | |
static object[] examples = | |
{ | |
new { members = new[] { 1, 2, 3, 4 }, cap = 3, expected = new[] { 2, 3, 4 } } | |
}; | |
public cappedqueue(int[] members, int cap) | |
{ |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Nancy; | |
using Nancy.Owin; | |
using Nowin; |
public class Wireup | |
{ | |
public void DoWireup() | |
{ | |
var identity = new IdentityFormatter(); | |
var stringFormat = new FormattingStringFormatter(); | |
// that would normally get registered in your container or what not. | |
Selectors = new[] | |
{ |