I hereby claim:
- I am feross on github.
- I am feross (https://keybase.io/feross) on keybase.
- I have a public key whose fingerprint is 6C0E 34E5 746D D1B0 F39B CE24 ED6E 52FF BF15 060C
To claim this, I am signing this object:
| mocha 44731 | |
| chai 17944 | |
| grunt 17447 | |
| should 11882 | |
| grunt-contrib-jshint 11466 | |
| gulp 8619 | |
| istanbul 7374 | |
| tape 7313 | |
| sinon 6851 | |
| grunt-contrib-clean 6807 |
| var shell = require("mesh-viewer")() | |
| var mesh | |
| shell.on("viewer-init", function() { | |
| mesh = shell.createMesh(require("bunny")) | |
| }) | |
| shell.on("gl-render", function() { | |
| mesh.draw() | |
| }) |
I hereby claim:
To claim this, I am signing this object:
| `standard` is the 52th most depended on npm module. (counting dependencies and devDependencies) | |
| -------- | |
| SPECIFIC MODULES | |
| -------- | |
| standard 9860 | |
| snazzy 1004 | |
| eslint-config-standard 4235 |
| <!-- Respect Rollcall --> | |
| <li><a href="http://www.alistapart.com/articles/">A List Apart — for website builders</a></li> | |
| <li><a href="http://abstrusegoose.com/">Abstruse Goose — my favorite comic</a></li> | |
| <li><a href="http://al3x.net/">Alex Payne — technology rambling</a></li> | |
| <li><a href="http://dashes.com/anil/">Anil Dash — on culture, apple & design</a></li> | |
| <li><a href="http://weblogs.mozillazine.org/asa/">Asa Dotzler — on mozilla & software</a></li> | |
| <li><a href="http://www.azarask.in/blog/">Aza Raskin – on design & firefox</a></li> | |
| <li><a href="http://christophzillgens.com/en/">Christoph Zillgens — interface design</a></li> | |
| <li><a href="http://cssremix.com/">CSS Remix — gorgeous designs</a></li> | |
| <li><a href="http://css-tricks.com/">CSS Tricks</a></li> |
| // Feross Aboukhadijeh - Apr 12 2010 | |
| // | |
| // Script I hacked together to cheat on TypeRacer.com. You use it by waiting for the typing game | |
| // to start. Once it starts, open up Firebug, paste in this code, and run it. Now, just press | |
| // space to auto-type each word. I made the user push space, as opposed to advancing the words | |
| // automatically because I believe the site looks for a keypress event before evaluating the contents | |
| // of the input box. I could not figure out how to fake a user keypress event. Perhaps this is | |
| // disallowed for browser security reasons? | |
| // | |
| // Next todo: Site detects the unbelievable WPM and asks you to do a captcha test. |
| var count = 0; | |
| var memoizer = function(memo, formula) { | |
| var recur = function(n) { | |
| var result = memo[n]; | |
| if (typeof result !== "number") { | |
| result = formula(n); | |
| memo[n] = result; | |
| } | |
| return result; |