Created
April 25, 2011 14:00
-
-
Save ncb000gt/940544 to your computer and use it in GitHub Desktop.
I swear I'm working...hard.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * 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