Trello card counter (until there's an API)
// Instructions:
// (1) Browse to your favorite Trello board
// (2) Drop this into your friendly Chrome inspector or Firefox Firebug console
$('.list').each(function(index) {
var outer = $(this);
$(this).find('h2.current').each(function(index) {
console.log($(this).text() + ': ' + outer.find('.list-card').length)
})
})