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

Curtiss: We will see.

Sean: I’m sure “we” will.

Curtiss: haha there are some days where I just want to murder you

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, [...]