Skip to content

Instantly share code, notes, and snippets.

var a = somestream
var b = somestream2
var c = somestream3
a.on('error', onerror)
b.on('error', onerror)
c.on('error', onerror)
// ^ :(
@tj
tj / flat-dispatch
Last active December 21, 2015 18:39
1 middleware
9901.58
5 middleware
9482.36
10 middleware
9052.52
15 middleware
@tj
tj / lambda.rb
Created August 3, 2013 19:37
Luna
tobi = { name = 'tobi' }
loki = { name = 'loki' }
# equality
same = |a, b| a.name == b.name
print(same(tobi, loki))
# greeting
greet = |user| 'Hello ' .. user.name
@tj
tj / example.js
Created July 31, 2013 18:48
console.api()
function params(fn) {
var str = fn.toString();
var sig = str.match(/\(([^)]*)\)/)[1];
if (!sig) return [];
return sig.split(', ');
}
console.api = function(obj){
console.log();
var proto = Object.getPrototypeOf(obj);
@tj
tj / events
Last active December 20, 2015 11:39
# get an event stream
$ GET http://localhost:3030/events
["event_id","XA2GXiI8sW"]
# subscribe to a stream and item
$ POST http://tobi:Dev1@localhost:3030/events/XA2GXiI8sW/cem4XEqBOs6
$ POST http://tobi:Dev1@localhost:3030/events/XA2GXiI8sW/iC0tgUrzUWG
@tj
tj / coffee.js
Last active December 18, 2015 05:29
tag = this._readTag(ifdType, offset);
this._tags[tag.name] = {
'value': tag.value,
'description': tag.description
};
_results.push(offset += 12);
}
return _results;
};
ExifReader.prototype._readTag = function(ifdType, offset) {
@tj
tj / join.js
Created June 6, 2013 00:14
'Co' for nodejs
var co = require('..');
var join = co.join;
var fs = require('fs');
function size(file) {
return function(fn){
fs.stat(file, function(err, stat){
if (err) return fn(err);
fn(null, stat.size);
@tj
tj / thread.js
Last active December 17, 2015 05:39
var thread = require('./');
var join = thread.join;
var redis = require('redis');
var db = redis.createClient();
function get(key) {
return function(done){
db.get(key, done);
@tj
tj / example.sh
Created April 30, 2013 19:43
awk utils
$ cat example.txt | sum
=> 10
$ sum example.txt
=> 10
module.exports = [ { names: [ 'Clipper', 'XBase' ],
matches: [ /^.+\.PRG$/, /^.+\.prg$/ ] },
{ names: [ 'Cucumber', 'cucumber', 'Gherkin', 'gherkin' ],
matches: [ /^.+\.feature$/ ] },
{ names: [ 'RobotFramework', 'robotframework' ],
matches: [ /^.+\.txt$/ ] },
{ names: [ 'abap' ], matches: [ /^.+\.abap$/ ] },
{ names: [ 'ada', 'ada95ada2005' ],
matches: [ /^.+\.adb$/, /^.+\.ads$/, /^.+\.ada$/ ] },
{ names: [ 'ahk' ], matches: [ /^.+\.ahk$/, /^.+\.ahkl$/ ] },