Skip to content

Instantly share code, notes, and snippets.

@nmcv
Created April 2, 2014 06:55
Show Gist options
  • Save nmcv/9929134 to your computer and use it in GitHub Desktop.
Save nmcv/9929134 to your computer and use it in GitHub Desktop.
Another Stackexchange/overflow unicode miner. Runs in the browser after authentication.
(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