Skip to content

Instantly share code, notes, and snippets.

@msanigar
Last active October 3, 2016 13:33
Show Gist options
  • Save msanigar/7c4736544289e1f5966c20b9db2a9dcf to your computer and use it in GitHub Desktop.
Save msanigar/7c4736544289e1f5966c20b9db2a9dcf to your computer and use it in GitHub Desktop.
function shutUp(name) {
var i=1;
setInterval(function(){
console.log("%cHow about you stfu, " + name, "color: red; font-family: sans-serif; font-size: 4.5em; font-weight: bolder; text-shadow: #000 1px 1px;" + (i++));
}, 100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment