Skip to content

Instantly share code, notes, and snippets.

@adammck
Created March 2, 2012 00:41
Show Gist options
  • Save adammck/1954319 to your computer and use it in GitHub Desktop.
Save adammck/1954319 to your computer and use it in GitHub Desktop.
How much have you paid GitHub?
Log in and visit:
https://github.com/settings/payments
Then in the console:
$("table#payment-history tr.success td.amount").toArray().reduce(function(a, b) {
var dollars = b.innerHTML.replace(/[^\d\.]/g, "");
return a + parseFloat(dollars);
}, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment