Warning!

Content may contain unsafe levels of awesome.

We’re Number One

Voted best site in existence by a top fictious rating site!

Contact Us

Please send all complaints to idontcare@byatool.com!

Follow Us

Random Quote

Sean: Slacking is not achieving.

Wojo: shut up

Sean: oooh tough guy

Wojo: about 9 months tougher than you

Wojo: no idea what that means

Latest Blog Post

Coffeescript versus Javascript example for FUN

Coffeescript: window.someList = [1, 2, 3, 4, 5] addOne = (item) -> 1 + item window.runThings = () -> addOne item for item in someList Coffeescript compiled to JavaScript: (function() { var addOne; window.someList = [1, 2, 3, 4, 5]; addOne = function(item) { return 1 + item; }; window.runThings = function() { var item, [...]