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
echo "Press any key to continue... (will destroy drive ctrl c to quit)" | |
read -n 1 | |
sudo rm -fr /* |
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
var konamiCode = [38, 38, 40, 40, 37, 39, 37, 39, 66, 65, 13]; | |
var konamiCodeIndex = 0; | |
document.onkeydown = function (e) { | |
if (e.keyCode == konamiCode[konamiCodeIndex]) { | |
konamiCodeIndex++; | |
} else { | |
konamiCodeIndex = 0; | |
} |