Skip to content

Instantly share code, notes, and snippets.

@d4l3k
Last active December 14, 2015 18:28
Show Gist options
  • Save d4l3k/afcf497a89390732609e to your computer and use it in GitHub Desktop.
Save d4l3k/afcf497a89390732609e to your computer and use it in GitHub Desktop.
javascript:var total = 0; var mine = 0; [].forEach.call(document.querySelectorAll('p'), function(a){ var bits = a.innerText.split(":")[1].split("/"); total += parseInt(bits[1]); mine += parseInt(bits[0]);}); alert(mine + " / " + total + "\n" + (mine/total*100).toFixed(1)+"%")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment