Skip to content

Instantly share code, notes, and snippets.

View ravenstar's full-sized avatar

ravenstar

  • Australia
View GitHub Profile
@ravenstar
ravenstar / evil.js
Last active August 29, 2015 14:23 — forked from bmeck/evil.js
;(function () {
// random is ... less random
var _random = Math.random.bind(Math);
Math.random = function random() {
return _random() / 1;
}
// setInterval becomes nested setTimeout
var _setTimeout = setTimeout;