View bench.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
var before, after; | |
var obj, i; | |
var count = 1000000000; | |
var t; | |
console.log('%j', process.versions); | |
console.log(''); | |
console.log('* initialize'); |
View bench.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
var now; | |
var obj, i; | |
var count = 10000000; | |
var key = 'key'; | |
obj = {}; | |
now = Date.now(); | |
for (i = 0; i < count; i++) { | |
obj[key] = 1; | |
obj[key] = null; |
View benchmark.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
var EventEmitter = require('events').EventEmitter | |
var i; | |
var count = 100000000; | |
var e = new EventEmitter(); | |
e.on('hi', function() {}); | |
now = Date.now(); | |
for (i = 0; i < count; i++) { | |
e.emit('hi'); |
View benchmark.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
var domain = require('domain'); | |
var i, now, count = 10000000; | |
var source = domain.Domain.toString(); | |
now = Date.now(); | |
for (i = 0; i < count; i++) { | |
domain.create(); | |
} |
View benchmark.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
var Readable = require('stream').Readable; | |
var i, now, count = 1000000; | |
var source = Readable.toString().split('\n')[9]; | |
now = Date.now(); | |
for (i = 0; i < count; i++) { | |
new Readable(); | |
} |
View benchmark.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
var https = require('https'); | |
var tls = require('tls'); | |
var i, now, count = 10000000; | |
var port = 10443, host = 'localhost', options = {}; | |
var agent = new https.Agent(); | |
// stub function | |
tls.connect = function() {}; | |
now = Date.now(); |
View Gemfile
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
source 'https://rubygems.org' | |
gem 'activerecord', '4.0.0.beta1', require: 'active_record' | |
gem 'enumerize', github: 'brainspec/enumerize' | |
gem 'sqlite3' |
View ember-demo.html
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="http://code.jquery.com/jquery-1.10.2.js"></script> | |
<script src="http://builds.emberjs.com/handlebars-1.0.0.js"></script> | |
<script src="http://builds.emberjs.com/tags/v1.0.0/ember.js"></script> | |
</head> | |
<script type="text/x-handlebars"> |
View 0_reuse_code.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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
View app.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
var sys = require("sys"); | |
var express = require("express"); | |
// see http://github.com/redsquirrel/simple_pusher | |
var simple_pusher = require(__dirname + "/lib/simple_pusher"); | |
var GraphData = require(__dirname + "/qa_data").GraphData; | |
var graphData = new GraphData(["yes", "little", "no"]); |