Skip to content

Instantly share code, notes, and snippets.

@ncb000gt
Created April 25, 2011 14:00
Show Gist options
  • Select an option

  • Save ncb000gt/940544 to your computer and use it in GitHub Desktop.

Select an option

Save ncb000gt/940544 to your computer and use it in GitHub Desktop.
I swear I'm working...hard.
/*
* Goto -> http://duiker101.tk/hackertyper/
* Open a console
* Copy and paste the following
* Fullscreen your window
* ?
* Profit
*/
var eventEl = document.getElementById('console');
var eventObj = document.createEvent('UIEvents');
eventObj.initUIEvent('keydown', true, true, window, 1);
eventObj.keyCode = 13;
setInterval(function() { eventEl.dispatchEvent(eventObj); }, 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment