This is no longer required. Drupal.org now shows numbers normally.

Do you have a Drupal module or theme on drupal.org?
Have you ever wondered how successful it is?
Well since Drupal started using the Update Status module (in contrib for D5 and in core for D6), drupal.org has some great statistics on module/theme anonymous usage by sites that choose to running the module.
At the bottom of every project page is a link labeled "View usage statistics" that will take you to detailed stats for the project. You can also view the complete stats list of all projects on drupal.org.
When viewing that complete list though, I have always wondered how my project was doing in comparison to others. And while the list is ordered nicely the rows are not numbered so I have just guessed if was moving up or down the list. Does the number really matter? Not really. Whether you call it vanity or project managment, I think that it helps give perspective.
Since Drupal uses jQuery, I wrote a little snippet that puts the numbers in the rows and thought it might be useful to to others.
$i = 1;
$
('#project-usage-all-projects tbody tr td a').each(function() { $(this).before('<strong>' + $i++ + ' ~ </strong>');
});
You can easily run the snippet on the page if you have Firebug with its console.