Last active
August 29, 2015 14:04
-
-
Save robatron/b6d536fafeacef44c27f to your computer and use it in GitHub Desktop.
Make Kirby dance in your browser's JavaScript console.
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
/** | |
* Make Kirby dance in your browser's JavaScript console. | |
* | |
* Great to run in your coworker's console when they forget to lock their computer. | |
*/ | |
var i = 0; | |
var KFRAMES = [ "<('.'<)", "^('.')^", "(>'.')>", "^('.')^" ]; | |
setInterval( function () { | |
clear(); | |
console.log( KFRAMES[ i % ( KFRAMES.length - 1 ) ] ); | |
++i; | |
}, 500); |
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 i=0,KFRAMES=["<('.'<)","^('.')^","(>'.')>","^('.')^"];setInterval(function(){clear(),console.log(KFRAMES[i%(KFRAMES.length-1)]),++i},500) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment