Skip to content

Instantly share code, notes, and snippets.

Avatar

Chris Dickinson chrisdickinson

View GitHub Profile
View deps
// my npm dep tree (fake, made of lies)
myproject
├─┬ mydep@A.B.C
│ └── bluebird@X.Y.Z
└── bluebird@M.N.O
View promises-promises.js
// my problem: (with a bit of handwaving here — imagine that each step is
// _actually_ async)
function doAThing() {
return new Promise(resolve => { // A
setTimeout(resolve, 100, Math.random())
}).then(randomNum => { // B (derived from A's result)
return randomNum * Math.random()
}).then(superRandomNumber => { // C
return superRandomNumber * originalRandomNumber
// where "originalRandomNumber" === "randomNum" from A
View Dockerfile
FROM ubuntu:14.04
RUN apt-get update && apt-get -y install wget build-essential
RUN apt-get install -y tree
WORKDIR /gba
RUN wget http://iweb.dl.sourceforge.net/project/devkitpro/devkitARM/previous/devkitARM_r42-x86_64-linux.tar.bz2
RUN wget http://iweb.dl.sourceforge.net/project/devkitpro/libgba/libgba-20150106.tar.bz2
RUN wget http://iweb.dl.sourceforge.net/project/devkitpro/maxmod/maxmod-gba-1.0.9.tar.bz2
RUN wget http://hivelocity.dl.sourceforge.net/project/devkitpro/libfat/libfat-gba-1.0.13.tar.bz2
@chrisdickinson
chrisdickinson / keybase.md
Created February 9, 2015 23:41
keybase.md
View keybase.md

Keybase proof

I hereby claim:

  • I am chrisdickinson on github.
  • I am chrisdickinson (https://keybase.io/chrisdickinson) on keybase.
  • I have a public key whose fingerprint is 9554 F04D 7259 F041 24DE 6B47 6D5A 82AC 7E37 093B

To claim this, I am signing this object:

@chrisdickinson
chrisdickinson / install.md
Last active August 29, 2015 14:06 — forked from geek/install.md
View install.md
@chrisdickinson
chrisdickinson / README.md
Last active August 29, 2015 14:05
timers for runtime.js
View README.md

runtime-timers

Timers (setTimeout and friends!) for RuntimeJS.

var timers = require('runtime-timers')

timers.install()

setInterval(function() {
View this-isnt-even-my-final-form.js
// THIS ISN'T EVEN MY FINAL FORM
console.log((function (ctxt) {
cats: {
with(ctxt) {
try {
return cats
} finally {
break cats
}
}
View knode.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View gist:7479719
d = new Date(); new Date(d.getFullYear(), d.getMonth(), d.getDate() + 1, +time.split(':')[0], +time.split(':')[1], +time.split(':')[2]) - +d
@chrisdickinson
chrisdickinson / backing.js
Created November 4, 2013 01:02
backing code for examples.
View backing.js
// transform an element + eventName into
// a stream of those DOMEvents over time.
function events(element, eventName, selector) {
var lastEvent
, nextRead
element.on(eventName, selector, onevent)
return {read: read}