Skip to content

Instantly share code, notes, and snippets.

View tnightingale's full-sized avatar

Tom Nightingale tnightingale

  • Test Double
  • Vancouver, Canada
View GitHub Profile
@dpogue
dpogue / CJS13.md
Last active December 28, 2015 13:18
CascadiaJS 2013 speakers and slides
@skrat
skrat / injector.js
Created August 31, 2012 11:17 — forked from jankuca/injector.js
Injector.js
/**
* @constructor
*/
function Injector() {
/**
* @type {!Object.<string, function(Injector=): !Object>}
*/
this.factories = {};
/**
* @type {!Object.<string, !Object>}
@raphaelhuefner
raphaelhuefner / SearchAndReplaceSerialized.class.php
Created November 26, 2010 01:56
Search and replace in PHP serialized data.
<?php
/**
* @file Search and replace in PHP serialized data.
* @license http://opensource.org/licenses/lgpl-3.0.html The GNU Lesser General Public License, version 3.0 (LGPLv3)
* @author Raphael Huefner http://www.raphaelhuefner.com
* Sponsored by Affinity Bridge http://www.affinitybridge.com
*/
class SearchAndReplaceSerialized {