As you know, we sort answers (and sometimes questions) in simple descending score order by default. Score is defined as upvotes minus downvotes. Way back in February, Mike Schiraldi of Reddit emailed us about an alternate sorting mechanism.

After about 6 months of testing, It looks like Reddit has implemented this algorithm, and you can read about it courtesy of Reddit guest blogger Randall Munroe (aka XKCD):

If a comment has one upvote and zero downvotes, it has a 100% upvote rate, but since there’s not very much data, the system will keep it near the bottom. But if it has 10 upvotes and only 1 downvote, the system might have enough confidence to place it above something with 40 upvotes and 20 downvotes — figuring that by the time it’s also gotten 40 upvotes, it’s almost certain it will have fewer than 20 downvotes. And the best part is that if it’s wrong (which it is 5% of the time), it will quickly get more data, since the comment with less data is near the top — and when it gets that data, it will quickly correct the comment’s position. The bottom line is that this system means good comments will jump quickly to the top and stay there, and bad comments will hover near the bottom.

The original article, How Not To Sort By Average rating, elaborates on the math.

We need to balance the proportion of positive ratings with the uncertainty of a small number of observations. Fortunately, the math for this was worked out in 1927 by Edwin B. Wilson. What we want to ask is: Given the ratings I have, there is a 95% chance that the “real” fraction of positive ratings is at least what? Wilson gives the answer. Considering only positive and negative ratings (i.e. not a 5-star scale), the lower bound on the proportion of positive ratings is given by:

new-scoring-math-formula

He also provided some sample Ruby code that implements the above formula:

def ci_lower_bound(pos, n, power)
    if n == 0
        return 0
    end
    z = Statistics2.pnormaldist(1-power/2)
    phat = 1.0*pos/n
    (phat + z*z/(2*n) - z * Math.sqrt((phat*(1-phat)+z*z/(4*n))/n))/(1+z*z/n)
end

pos is the number of positive rating, n is the total number of ratings, and power refers to the statistical power: pick 0.10 to have a 95% chance that your lower bound is correct, 0.05 to have a 97.5% chance, etc.

(other implementations in different languages were provided in this reddit thread.)

I met Mike in person at the LA DevDays, where he presented on Python. He reminded me about this article, and we discussed whether it would work on Stack Overflow. I generally like it, but there are some important differences between Reddit and Stack Overflow:

  1. Statistically speaking, it is quite rare for us to get a question with more than 30 answers.
  2. Since votes are limited to 30 per user per day, we have a much lower volume of voting overall than Reddit.
  3. As downvotes cost reputation on Stack Overflow, the overall incidence of downvotes is probably much lower here than it is on Reddit, where downvoting costs nothing.
  4. By the time a question gets to more than 30 answers, and has tons of voting, it’s arguably not a very appropriate question for Stack Overflow.
  5. I worry that a sort order where lower scoring items are ranking higher than higher scoring items will confuse users. Score has its problems, but it is immediately understandable — low numbers are low, high numbers are high.

While this algorithm is definitely cool — and a clear improvement for Reddit users — I am not sure it’s as clearly useful for Stack Overflow.

We made a few key technology bets when we created Stack Overflow:

I’ll defer the discussion on the other two items for another day, but after spending a year immersed in Markdownthe lightweight markup language we use to format posts on all Trilogy sites — I have some thoughts I’d like to share.

We knew early on that there were a handful of Markdown Gotchas, thanks to the sage advice of John Fraser (who, sadly, I have completely lost contact with.) Based on those gotchas, we quickly adjusted our Markdown support to fix a few obvious things:

  1. Removed support for intra-word emphasis like_this_example
  2. Added auto-hyperlink support for http:// URLs in posts

Apparently github also uses Markdown, and they independently arrived at some of the same conclusions we did — synthesizing something they call GitHub Flavored Markdown.

  1. Removed support for intra-word emphasis like_this_example
  2. Added auto-hyperlink support for http:// URLs in posts
  3. Automatic return-based linebreaks instead of “two spaces at end of line” linebreaks
  4. Support for some magic strings that auto-convert to GitHub specific links

Since GitHub and Stack Overflow match exactly on #1 and #2, it’s fairly safe to say that those are in fact deficiencies in Markdown, at least for a programming audience. (Though I’d argue they apply to general audiences, too.)

As for #3, that’s one I hadn’t considered. In normal Markdown, this:

Roses are red¶
Violets are blue¶

Will render like this:

Roses are red violets are blue

The Markdown answer is to add two spaces at the end of the line (or a literal <br>, I suppose).

Roses are red  ¶
violets are blue¶

Although it’s easy once you know the trick, this is far from intuitive to most. I’m reminded a bit of the double-click mouse problem. I wonder if we should adopt the GitHub linebreak approach here.

As for the fourth item, when text is entered in these specific formats …

* SHA: be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2
* User@SHA ref: mojombo@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2
* User/Project@SHA: mojombo/god@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2
* \#Num: #1
* User/#Num: mojombo#1
* User/Project#Num: mojombo/god#1

… those magic strings are detected by the GitHub Flavored Markdown and auto-converted into GitHub specific hyperlinks. Something similar has been proposed on meta for internal Stack Overflow references, so this is an idea we’ve been entertaining for some time as well.

Markdown is remarkably flexible, because it allows you to intermix a narrow list of whitelisted HTML tags with Markdown “fancy ASCII” syntax in a fairly logical way, at least most of the time.

So, now that you’ve had a chance to mess around with Markdown for a year — what are your thoughts?

Our program for world domination through stickers is well underway. Check out the cool stuff that Stack Overflow users have sent in for stickers to date:

stack-overflow-stickers-mailed-stuff

See, Stack Overflow really is built on love, internet style!

I guess Joel wasn’t kidding when he said “just send us anything!” in your SASE sticker request. Let’s see what other kinds of crazy things we can get up on that wall — request your stickers by sending in, y’know, something!

Once you get the stickers, post your sticker action shots on meta, too!

And yes, I am still planning to send out free stickers for top users on each Trilogy site. Things are a bit backed up at the moment, but I expect to get all the free stickers mailed out by the end of October. These were mailed October 13th.

(I suppose this is as good a place as any to mention that there will be no podcast this week due to the flurry of activity necessary to support DevDays — which kicks off tomorrow in Boston. Stay tuned for some big announcements within 24 hours..)

A small, but arbitrary milestone in Stack Overflow history:

Per Google Analytics, we finally did one million pageviews in a single day on Tuesday, September 29th.

dr-evil-pinky

After flirting with hitting this limit all month (so many golf crowd “awww” near-miss moments), we were finally rewarded with 1,015,756 pageviews yesterday, just barely squeaking it into the month of September.

As a point of comparison, when Stack Overflow launched to the public a little over a year ago, on September 15th, 2008, we did about 750k pageviews on the 16th with all the launch publicity in full swing. But once that died down, the site quickly normalized to about 300k pageviews on a typical weekday.

So in about a year:

It’s been a great year, but I suspect the next 12 months will be even better! We have some exciting announcements planned for DevDays, so stay tuned.

Sometime today, Jon Skeet reached 100,000 reputation on Stack Overflow.

Congratulations!

In unrelated news, there will be no podcast this week due to illness.