Skip to content

Instantly share code, notes, and snippets.

View peterhanneman's full-sized avatar

Peter Hanneman peterhanneman

View GitHub Profile
@epegzz
epegzz / Monaco_Linux-Powerline.ttf
Created January 18, 2012 17:19
Monaco for vim-powerline
@getify
getify / 1.js
Created September 8, 2015 13:47
sync state machines with ES6 generators
// normal JS function
function stateMachine() {
var state = 1;
return {
next: function() {
switch (state) {
case 1:
// handle state 1