Skip to content

Instantly share code, notes, and snippets.

View hoffmanc's full-sized avatar

Chris Hoffman hoffmanc

View GitHub Profile
@hoffmanc
hoffmanc / health.js
Created June 25, 2010 03:26
yql xss capability - no idea why this works
// YQL serves JSONP (with a callback) so all we have to do
// is create a script element with the right 'src':
function YQLQuery(query, callback) {
this.query = query;
this.callback = callback || function(){};
this.fetch = function() {
if (!this.query || !this.callback) {
throw new Error('YQLQuery.fetch(): Parameters may be undefined');
}
@hoffmanc
hoffmanc / promise.js
Created May 24, 2010 13:54 — forked from tmpvar/promise.js
Promise backport for node.js
var events = require('events');
exports.Promise = function () {
exports.EventEmitter.call(this);
this._blocking = false;
this.hasFired = false;
this._values = undefined;
};
process.inherits(exports.Promise, events.EventEmitter);
from itertools import permutations, imap, product
from datetime import datetime, timedelta
from random import random, choice
import string
basetime = datetime(2010,5,5)
airports = map(lambda a: ''.join(a), permutations(string.ascii_uppercase, 3))
flights = []
for i in xrange(1,500000):
td = timedelta(
def hover
puts "hello"
end