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:

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:
- Statistically speaking, it is quite rare for us to get a question with more than 30 answers.
- Since votes are limited to 30 per user per day, we have a much lower volume of voting overall than Reddit.
- 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.
- 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.
- 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.
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:
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..)
If you’re a top user on any of the Trilogy sites, I’ve got some good news for you. As a gesture of thanks for being such an involved member of the community, we’d like to send you some Trilogy stickers absolutely free!

The fine print: to take advantage of this offer, you must be on page 1 or page 2 of the /users page of any trilogy site.
- stackoverflow.com/users
- serverfault.com/users
- superuser.com/users
- meta.stackoverflow.com/users (page 1 only)
(due to strictly limited “special edition” meta stickers, you must be on page 1 of meta.) If you are a top user on multiple sites, you have my most hearty congratulations, but you can only claim stickers once, not multiple times. If we have already sent you stickers for any reason, you can’t request them again.
To claim your stickers, simply click here to enter your address and we’ll get the stickers mailed out to you within a week or so.
Also, because not everyone reads the blog, I’ll try to shoot an email tomorrow to all the relevant users to make sure they’re aware of this fabulous offer.
update: all stickers were mailed Tuesday, October 13th. This reflects any top user sticker requests up to October 7th, and I don’t see any new ones, so I think we’re complete! Enjoy your stickers — you’ve earned them.
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.
The first public Stack Exchange sites have surfaced. While the service is still very much in beta, I have to admit I’m deeply disappointed in the color schemes that are being aired in public.




I agree with Joel Coehoorn, who posted:
I know it’s a demonstration and high-contrast design is not only intentional but also somewhat necessary, but this is part of your sales pitch. Probably well worth the money to let a graphic designer have some fun with this one.
The crimes against my eyeballs are manifold:
- All but unreadable low-contrast color pairings.
- Jarring, disharmonious color choices.
- Apparent utter lack of designer input.
Now, I’m not saying that our trilogy color schemes are perfect — far from it. Design is really, really hard and takes at least a month of tweaking in my experience to get it even close to right. We’ve been creeping further and further towards the refuge of minimalism in our Trilogy layouts over the last year. fact, I just deployed a change to remove the accepted answer color to make color schemes a bit easier for SE. But I do believe that we can and should do much, much better than the existing Stack Exchange color schemes. Seriously, what does this say to you?

Opinons vary, but to me, that says “I don’t give a crap how this looks.” It is programmer design at its finest. Would you want to be associated with something like this?
I believe it is our responsibility to offer a few preset, reasonable color schemes for Stack Exchange users to choose from. Allowing users to choose their own color schemes from scratch, with no preset schemes to choose from or work against, is the equivalent of letting a thousand Hot Dog Stands bloom.
OK, enough with the complaining. So, how can we fix this?
- How can we involve outside designers in creating CSS color schemes for Stack Exchange? What’s a good, public web-friendly way?
- In the future, how can we cultivate a deeper template / layout ecosystem for Stack Exchange?
Help us help you. And your eyeballs.



