How much money have you wasted here?

grum thought this was worth mentioning said
2

I was curious, so I calculated how much I have spent on Meh since I discovered it in August... And I feel very, very bad now.

$1096.00

And that doesn't include VMP. So... Who's wasted more money than me on mediocre crap??

If you want a quick way to get that total, go to your orders page and open Chrome's JavaScript console (ctrl+alt+j or command+alt+j) and paste the following in there (if you don't have Chrome, then meh. You're on your own.):

var total = 0;
$('td.order-total').each(function() {
total += parseInt($(this).text().substring(1));
});
alert("$" + total);