Skip to content

Instantly share code, notes, and snippets.

@towtow
towtow / round-robin-proxy.js
Created June 3, 2011 19:15 — forked from indexzero/round-robin-proxy.js
A simple example of how to do round-robin proxying for a single domain
var httpProxy = require('http-proxy');
//
// Addresses to use in the round robin proxy
//
var addresses = [
{
host: 'ws1.0.0.0',
port: 80
},
@towtow
towtow / css3.styl
Created May 22, 2011 11:32 — forked from mattmcmanus/css3.styl
A collection of mixins for Stylus to make using css3 a breeze
// MIXINS
vendor(prop, args)
-webkit-{prop} args
-moz-{prop} args
-o-{prop} args
{prop} args
animation()
vendor('animation', arguments)