Skip to content

Instantly share code, notes, and snippets.

@teglsbo
teglsbo / maybe.cs
Last active April 6, 2017 20:26 — forked from refactorsaurusrex/maybe.cs
Maybe<T>, inspired by Mark Seemann
using System.Collections;
using System.Collections.Generic;
namespace Dev_Maybe
{
public class Maybe<T> : IEnumerable<T>
{
readonly IEnumerable<T> values;
public Maybe()
@teglsbo
teglsbo / AutoHotkey.ahk
Created October 2, 2011 08:21
My AutoHotkey-keyboard shortcut script
;
;My hotkeys (NTJ)
;
;Remap back/forward browser buttons to Windows keys
;*SC16A down::Send, {LWINDOWN}
;*SC169 down::Send, {APPSKEY down}
;*SC16A up::Send, {LWINUP}
;*SC169 up::Send, {APPSKEY up}