This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (selector) { | |
page.clipRect = page.evaluate(function(){ | |
return document.querySelector(selector).getClientBoundingRect(); | |
}); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
λ 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (has.call(require.aliases, index)) { | |
return require.aliases[index]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def greet(first:string, last:string) { | |
ret "Hello " + first + " " + last | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |