This file contains hidden or 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
| /* | |
| * Goto -> http://duiker101.tk/hackertyper/ | |
| * Open a console | |
| * Copy and paste the following | |
| * Fullscreen your window | |
| * ? | |
| * Profit | |
| */ | |
| var eventEl = document.getElementById('console'); |
This file contains hidden or 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
| /usr/local/lib/node_modules/riak-js/lib/utils.js:84 | |
| target[k] = d.value; | |
| ^ | |
| RangeError: Maximum call stack size exceeded |
This file contains hidden or 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 db = require('riak-js').getClient({port: 8091}); | |
| console.log(process.argv); | |
| db.keys(process.argv[2], function(err, keys) { | |
| if (err) console.log(err); | |
| keys.forEach(function(key) { | |
| db.remove(process.argv[2], key, function(err) { | |
| if (err) console.log(err); | |
| console.log("Removed: " + key); |
This file contains hidden or 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
| { | |
| "name": "packagename", | |
| "description": "A description of your project...even though you wont necessarily be putting it in NPM.", | |
| "version": "0.0.1", | |
| "author": "Your Name Here (http://github.com/user)", | |
| "engines": { "node": ">= 0.4.11" }, | |
| "repository": { | |
| "type": "git", | |
| "url": "http://github.com/user/project.git" | |
| }, |
This file contains hidden or 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'); | |
| }) | |
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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', |