Skip to content

Instantly share code, notes, and snippets.

if (selector) {
page.clipRect = page.evaluate(function(){
return document.querySelector(selector).getClientBoundingRect();
});
}
var c = axon.socket('channel');
c.bind(3000);
var files = [
'lib/sockets/channel.js',
'lib/sockets/pub.js',
'lib/sockets/sub.js',
'lib/sockets/pull.js',
'lib/sockets/push.js'
@tj
tj / gist:5326925
Created April 6, 2013 17:41
npm-search results
λ npm-search (master): time ./query express > /dev/null
real 0m0.488s
user 0m0.162s
sys 0m0.027s
λ npm-search (master): time npm search express > /dev/null
real 0m3.639s
user 0m1.989s
sys 0m0.171s
if (has.call(require.aliases, index)) {
return require.aliases[index];
}
require.resolve = function(path) {
if (path.charAt(0) === '/') path = path.slice(1);
var index = path + '/index.js';
var paths = [
path,
path + '.js',
path + '.json',
path + '/index.js',
path + '/index.json'
@tj
tj / git aliases.sh
Last active March 28, 2025 11:39
Some helpful git aliases
alias gd="git diff"
alias gc="git clone"
alias ga="git add"
alias gbd="git branch -D"
alias gst="git status"
alias gca="git commit -a -m"
alias gpt="git push --tags"
alias gp="git push"
alias gpr="git pull-request"
alias grh="git reset --hard"
@tj
tj / in.js
Last active December 11, 2015 08:38
quick hack of an example of how to add some type enforcement via pre-processing
def greet(first:string, last:string) {
ret "Hello " + first + " " + last
}
@tj
tj / some.js
Created January 12, 2013 20:20
var axon = require('./');
var os = require('os');
var pub = axon.socket('pub');
var sub = axon.socket('sub');
var host = os.hostname();
pub.bind('tcp://0.0.0.0:5000');
@tj
tj / gist:4458333
Last active December 10, 2015 15:59
myspace
$ curl -X OPTIONS -i -H "Accept: text/plain" https://new.myspace.com
HTTP/1.1 302 Moved Temporarily
Vary: Accept-Encoding
Set-Cookie: persistent_id=pid%3Dcd7de75b-ea23-4f6d-bf60-0a51dd25be33%26llid%3D%26lprid%3D%26lltime%3D; domain=.myspace.com; path=/; expires=Thu, 30 Dec 2032 23:04:12 GMT; httpOnly
Set-Cookie: visit_id=c1cbc51e-c32d-4b4f-9fcf-1167e39e86a1; domain=.myspace.com; path=/; expires=Fri, 04 Jan 2013 23:34:12 GMT; httpOnly
X-Handling-Host: las1-app028
X-TrackingId: fe8a136f-34da-4f3d-a715-7d20dab8a017
Cache-Control: no-cache
Content-Type: text/plain
Location: https://new.myspace.com/404
@tj
tj / some.js
Created December 25, 2012 19:03
Generate dependency graphs for all components
var spawn = require('child_process').spawn;
var all = require('./all');
var fs = require('fs');
all.forEach(function(pkg){
if (!pkg) return;
console.log();
console.log(' create : %s', pkg.repo || pkg.name);
pkg = tree(pkg.repo || pkg.name);