Skip to content

Instantly share code, notes, and snippets.

@izhan
Created April 1, 2014 18:34
Show Gist options
  • Save izhan/9920179 to your computer and use it in GitHub Desktop.
Save izhan/9920179 to your computer and use it in GitHub Desktop.
Mining StackOverflow Unicoins
// 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