Skip to content

Instantly share code, notes, and snippets.

@twchapman
Last active January 1, 2016 13:29
Show Gist options
  • Save twchapman/8151646 to your computer and use it in GitHub Desktop.
Save twchapman/8151646 to your computer and use it in GitHub Desktop.
A JavaScript bookmarklet (or whatever the kids these days call them) to run Gob's program. Highlight it, drag it to your bookmarks bar and click it to run.
javascript:(function(){var e=window.prompt("Gob's program: Y/N?");if(e==="Y"){t=document.createElement("div");document.body.appendChild(t);t.style.backgroundColor="#000";t.style.color="#228B22";t.style.position="fixed";t.style.top=t.style.right=t.style.bottom=t.style.left="0";t.style.zIndex=99999999999999;var n=function(){t.innerHTML+="Penus ";window.requestAnimationFrame(function(){n()})};n()}})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment