Any chance we might start displaying a user's Rep to Post ratio on profile pages and/or wherever rep is shown? While overall reputation should remain the "one true metric on the system" it would be interesting to see how much rep, on average, a particular use earns whenever they enter a question or answer into the system.
I was curious enough to whip up a fragile bookmarklet that should work on profile pages to display a user's ratio right after their rep
<a href="javascript:function n(i) {i = $.trim(i);return parseInt(i.replace(new RegExp('[^0-9]'),''),10);};var r = n($('td.summaryinfo div.summarycount').text());var q = n($('div#questions-table .summarycount').text());var a = n($('div#answers-table .summarycount').text());var ra = r / (q+a);void($('td.summaryinfo div.summarycount').html($('td.summaryinfo div.summarycount').html() + '/' + parseInt(ra,10)));">Get SO Ratio</a>