Created
April 1, 2014 18:34
-
-
Save izhan/9920179 to your computer and use it in GitHub Desktop.
Mining StackOverflow Unicoins
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
// Migrated from http://meta.stackoverflow.com/questions/227363/what-are-stack-overflow-unicoins/227404#227404 | |
(function uniMine() | |
{ | |
$.getJSON('/unicoin/rock', function(data) | |
{ | |
setTimeout(function() | |
{ | |
$.post('/unicoin/mine?rock=' + data.rock, {fkey: StackExchange.options.user.fkey}); | |
}, 10000); | |
}); | |
setTimeout(uniMine, 11000); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment