Skip to content

Instantly share code, notes, and snippets.

View richardhealy's full-sized avatar
🎯
Focusing

Richard Fernandez richardhealy

🎯
Focusing
View GitHub Profile
@richardhealy
richardhealy / HSBC.js
Last active January 31, 2017 10:50 — forked from benjie/HSBC.js
/******************************
HSBC Personal Statement to CSV
v0.5
Copyright: Benjie Gillam (2012)
License: WTFPL v2.0 ( http://en.wikipedia.org/wiki/WTFPL )
Instructions:
Add the following bookmarklet to your browser:
@richardhealy
richardhealy / phaser.js
Created December 2, 2016 16:07 — forked from crisu83/phaser.js
Wrapper module for running Phaser.js on Node.js.
// this is an ingenius hack that allows us to run Phaser without a browser
// ... and yes, it took some time to figure out how to do this
var Canvas = require('canvas')
, jsdom = require('jsdom')
, document = jsdom.jsdom(null)
, window = document.parentWindow
, Phaser;
// expose a few things to all the modules