Skip to content

Instantly share code, notes, and snippets.

View jovaneyck's full-sized avatar

Jo Van Eyck jovaneyck

View GitHub Profile
@alastairs
alastairs / Cambridge Software Crafters Email.md
Last active April 12, 2018 12:40
Email to the Cambridge Software Crafters re: name change and CoC

Changes to the Cambridge Software Craftsmanship Community

Hi everyone

It's not often that we email our members, so please bear with me and read this to the end.

Recent events in the wider tech community, and reactions within the Software Craftsmanship community, have prompted wider discussions about the inclusiveness of the community, and I've decided to make some small but important changes to our local chapter.

@nojaf
nojaf / Program.fs
Created August 9, 2017 13:57
Computation Expressions question
// Learn more about F# at http://fsharp.org
// See the 'F# Tutorial' project for more help.
open System
let toInt a =
match (Int32.TryParse(a)) with
| (true, x) -> Some x
| (false, _) -> None
type MaybeBuilder() =