Skip to content

Instantly share code, notes, and snippets.

{
"fansz": {
"aliases": {},
"mappings": {
"users": {
"properties": {
"backgroundImage": {
"type": "string"
},
"backgroundImageAspectRatio": {
Set-ExplorerOptions - showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Enable-RemoteDesktop
cinst steam
cinst googlechrome
cinst git
cinst 7zip
cinst atom
cinst skype
cinst nodejs
@mat-mcloughlin
mat-mcloughlin / Postcode.cs
Last active July 30, 2016 21:48
Value Object
public class Postcode
{
private readonly string value;
public Postcode(string value)
{
if (CheckPostcodeIsValid(value))
{
throw new InvalidPostcodeException();
}
[Fact]
public void SomeOtherReallyBadTest()
{
var context = new ConfigurableContext<FooContext>(ctx =>
{
ctx.Setup(x => x.Users, new List<User>());
});
var subject = new Foo(configurableContext); //Note the implicit conversion
Error detected while processing function OmniSharp#FixUsings:
line 1:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/Users/mat-mcloughlin/.vim/plugged/omnisharp-vim/python/OmniSharp.py", line 187, in fix_usings
js = json.loads(response)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/__init__.py", line 338, in loads
return _default_decoder.decode(s)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/decoder.py", line 366, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
call plug#begin('~/.vim/plugged')
Plug 'ctrlpvim/ctrlp.vim'
Plug 'flazz/vim-colorschemes'
Plug 'tpope/vim-vinegar'
Plug 'Chiel92/vim-autoformat'
Plug 'powerline/powerline', { 'rtp': 'powerline/bindings/vim/' }
Plug 'plasticboy/vim-markdown'
Plug 'junegunn/goyo.vim'
1 call plug#begin('~/.vim/plugged')
1
2 Plug 'ctrlpvim/ctrlp.vim'
3 Plug 'flazz/vim-colorschemes'
4 Plug 'tpope/vim-vinegar'
5 Plug 'dmpas/vim-csharp'
6 Plug 'powerline/powerline'
7
8 call plug#end()
9
using System;
using System.Collections.Generic;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
var register = new CommandRegister();
@mat-mcloughlin
mat-mcloughlin / Program.cs
Created August 10, 2016 16:12
Basic implementation of a command register
using System;
using System.Collections.Generic;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
var register = new CommandRegister();
public class Encounter
{
string patientName;
DateTime birthDate;
int ageInYears;
DateTime timeOfAdmission;