Skip to content

Instantly share code, notes, and snippets.

View zingi's full-sized avatar
🦀

Aaron Zingerle zingi

🦀
View GitHub Profile
@zingi
zingi / bounty.js
Last active December 17, 2017 09:25 — forked from lenilsonjr/bounty.js
Keybase WarpWallet Bounty Challenge
var attempts = [];
var attemptCount = 0;
let simultaneousCount = 10;
var found = false;
function randomString(length, chars)
{
var result = '';
for (var i = length; i > 0; --i) result += chars[Math.floor(Math.random() * chars.length)];
return result;