Skip to content

Instantly share code, notes, and snippets.

@functionite
functionite / gist:5604962
Last active December 17, 2015 11:49
how many of node.js developers are aware of that?
var http = require('http');
var counter = 0;
var server = http.createServer(function(req, res){
var then = +new Date() + 9000;
if (counter == 0) {
while(+(new Date()) < then) {
}
counter = 1;
res.end("oh, hi");
} else {