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
### Keybase proof | |
I hereby claim: | |
* I am ncb000gt on github. | |
* I am ncb000gt (https://keybase.io/ncb000gt) on keybase. | |
* I have a public key ASCXe6CHpdJM8EyHicb7sY_Pe8loMc9KfGgK78Fs3rZ-uAo | |
To claim this, I am signing this object: |
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
prompt: Is this ok?: (yes) | |
info: Creating snapshot 0.0.0-16 | |
info Uploading: [=============================] 100% | |
info: Updating app nko3-team-bearshark | |
info: Activating snapshot 0.0.0-16 for nko3-team-bearshark | |
info: Starting app nko3-team-bearshark | |
error: Error running command deploy | |
error: socket hang up | |
info: | |
info: jitsu's client request timed out before the server could respond |
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
# Description: | |
# Hubot provides some encouragement to fix it. | |
# | |
# Configuration: | |
# None | |
# | |
# Author: | |
# ncb000gt | |
fixit = 'http://www.youtube.com/watch?v=p6PZhONZ3Ac' |
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 tako = require('tako'), | |
path = require('path'), | |
watch = require('watch'), | |
app = tako(), | |
templates = app.templates; | |
var templatePath = path.join(__dirname, 'templates'); | |
templates.directory(templatePath); | |
watch.watchTree(templatePath, function() { | |
console.log('reload templates'); |
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
{ | |
'variables': { | |
'ARCH': 'x64' | |
}, | |
'targets': [ | |
{ | |
'target_name': 'bcrypt_lib', | |
'include_dirs': [ | |
'<(node_root_dir)/deps/uv/include', | |
'<(node_root_dir)/deps/v8/include', |
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 libxml = require('libxml'); | |
module.exports.to_string = function(assert) { | |
var doc1_string = [ | |
'<?xml version="1.0" encoding="UTF-8"?>', | |
'<root><child to="wongfoo"/></root>', | |
].join("\n"); | |
var expected_string = "<child/>"; |
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
svn status | grep -e "sw[a-z]" | tr -d "\t? " | xargs rm -f |
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
==4958== Memcheck, a memory error detector | |
==4958== Copyright (C) 2002-2010, and GNU GPL'd, by Julian Seward et al. | |
==4958== Using Valgrind-3.6.1-Debian and LibVEX; rerun with -h for copyright info | |
==4958== Command: node examples/async_compare.js | |
==4958== Parent PID: 2625 | |
==4958== | |
==4958== Warning: set address range perms: large range [0x29ae5ecc6000, 0x29ae7ecc6000) (noaccess) | |
==4958== | |
==4958== HEAP SUMMARY: | |
==4958== in use at exit: 221,773 bytes in 131 blocks |
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
db.get(key, function(err, doc) { | |
cb(err, doc); | |
}); |
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 bcrypt = require('./bcrypt'); | |
while (true) { | |
bcrypt.gen_salt(10, function(err, salt) { | |
console.log('salt: ' + salt); | |
console.log('salt cb end: ' + (Date.now() - start) + 'ms'); | |
}) | |
} |
NewerOlder