Skip to content

Instantly share code, notes, and snippets.

@embg
Created April 1, 2016 19:00
Show Gist options
  • Save embg/619f7b0cfdf4e3a76ebf9cc5a2660d3a to your computer and use it in GitHub Desktop.
Save embg/619f7b0cfdf4e3a76ebf9cc5a2660d3a to your computer and use it in GitHub Desktop.
Best thing I've ever written
<script>
var doIt = true;
$(document).ready(function(){ if (Date.now() > 1459490400000 && Date.now() < 1459576800000 && doIt){
$('body').html(String($('body').html()).replace(/Scott Peoples/g, 'Scott "White Lightning" Peoples'));
$('body').html(String($('body').html()).replace("var doIt = true;", "var doIt = false;"));
}});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment