Skip to content

Instantly share code, notes, and snippets.

View izhan's full-sized avatar

Irvin Zhan izhan

View GitHub Profile
@izhan
izhan / Unicoin Miner
Created April 1, 2014 18:34
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);
});