Skip to content

Instantly share code, notes, and snippets.

View jonboiser's full-sized avatar

Jonathan Boiser jonboiser

View GitHub Profile
/* @flow */
// daggy.tagged(arguments)
//declare module 'daggy' {
declare function tagged<T>(...args: string[]): (...xs: Array<T>) => {[k: string]: T};
//}
//import daggy from 'daggy';
var Tuple3 = tagged('x', 'y', 'z');
alfred font-fira-mono font-roboto-mono java spotify
atom font-hack font-source-code-pro karabiner tower
bartender font-hasklig gitup seil Untitled.ipynb (!)
font-fantasque-sans-mono font-inconsolata-lgc google-chrome sketch Untitled1.ipynb (!)
font-fira-code font-mononoki gpgtools slack visual-studio-code
ack gnupg2 libusb
antigen gnutls libusb-compat
autoconf gobject-introspection libyaml
automake gpg-agent moreutils
cairo harfbuzz nettle
cask-repair haskell-stack openssl
cf-cli hr pango
coreutils httpie pcre
dirmngr hub pinentry
emacs-plus icu4c pixman
Parinfer
advanced-open-file
atom-fuzzy-grep
atom-material-ui
autocomplete-paths
cursor-history
editorconfig
egghead-react-snippets
emmet
git-plus
# classes
class Foo
bar: () => 1
foo = new Foo
foo.bar()
Foo.bar
Foo::bar
# commented
;; -*- mode: emacs-lisp -*-
;; This file is loaded by Spacemacs at startup.
;; It must be stored in your home directory.
(defun dotspacemacs/layers ()
"Configuration Layers declaration.
You should not put any user code in this function besides modifying the variable
values."
(setq-default
;; Base distribution to use. This is a layer contained in the directory
@jonboiser
jonboiser / notes.md
Last active May 14, 2016 05:48
Notes on "My Spacemacs" by Eivind Fond
@jonboiser
jonboiser / init.vim
Created April 15, 2016 15:12
init.vim
call plug#begin('~/.config/nvim/plugged')
Plug 'sjl/badwolf'
Plug 'rking/ag.vim'
Plug 'editorconfig/editorconfig-vim'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'Chun-Yang/vim-action-ag'
Plug 'kchmck/vim-coffee-script'
Plug 'tpope/vim-sensible'
@jonboiser
jonboiser / .gitignore
Last active January 27, 2016 16:25 — forked from mbostock/.block
Pan+Zoom
node_modules/
@jonboiser
jonboiser / index.html
Created January 22, 2016 16:05 — forked from stepheneb/index.html
D3 Example: zoom, pan, and axis rescale
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>One Graph</title>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.v2.js"></script>
<script type="text/javascript" src="simple-graph.js"></script>
<style type="text/css">
body { font: 13px sans-serif; }
rect { fill: #fff; }