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
module.exports = foo = 'hello' |
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, | |
util = require('util'); | |
// TODO: | |
// * tags (BEGIN somehashhere\nsomehashhere data) | |
// * line numbers (begin somehash\nsomehash:12 data) | |
var Buffer = exports.Buffer = function (o) { | |
o = o || {}; |
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
// nextTick - by stagas / public domain | |
var nextTick = (function () { | |
var queue = []; | |
var dirty = false; | |
var fn; | |
var hasPostMessage = !!window.postMessage; | |
var messageName = 'nexttick'; | |
var trigger = (function () { | |
return hasPostMessage | |
? function trigger () { |
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 express = require('express') | |
, memoize = require('memoize') | |
, cache = require('chaos')('cache') | |
, Beatport = require('beatport') | |
memoize.set('debug', true) | |
var bp = memoize('beatport-mem', memoize('beatport', Beatport({ perPage: 10, sortBy: 'releaseDate desc' }), { | |
expire: 1000 * 60 * 60 * 24 | |
, store: cache |
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 readline = require('readline') | |
, rl = readline.createInterface(process.stdin, process.stdout) | |
function prompt (str, cb) { | |
rl.setPrompt(str) | |
rl.prompt() | |
rl.once('line', cb) | |
} | |
prompt('> ', function (str) { |
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 http = require('http') | |
, httpProxy = require('http-proxy'); | |
httpProxy.createServer(function (req, res, proxy) { | |
// | |
// Put your custom server logic here | |
// | |
proxy.proxyRequest(req, res, { | |
host: 'localhost', | |
port: 9000 |
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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 George Stagas https://github.com/stagas | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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 dnode = require('dnode') | |
, express = require('express') | |
, app = express.createServer() | |
app.use(express.static(__dirname)) | |
app.listen(8080) | |
console.log('http://localhost:8080/') | |
var server = dnode(function(remote, conn) { | |
this.click = function() { |
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
$(function() { | |
var $body = $('body') | |
, $book = $('#book') | |
;(function animate_background() { | |
$body.animate({ backgroundColor: "#abcdef" }, 1000, function(){ | |
$body.animate({ backgroundColor: "#000" }, 1000, animate_background) | |
}) | |
}()) |
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
$(document).ready(function() { | |
var $book = $('#book') | |
// wrapping the function in a closure | |
;(function display_icon() { | |
$book.hide(1000, function() { | |
$book.show(1000, function() { | |
setTimeout(function() { | |
display_icon(); | |
}, 0); | |
}); |