<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Blog - Stack Overflow &#187; community</title>
	<atom:link href="http://blog.stackoverflow.com/category/community/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stackoverflow.com</link>
	<description>a programming community exploit</description>
	<lastBuildDate>Thu, 19 Nov 2009 12:15:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" -->
		<copyright>&#xA9;Jeff Atwood and Joel Spolsky </copyright>
		<managingEditor>podcast@stackoverflow.com (Jeff Atwood and Joel Spolsky)</managingEditor>
		<webMaster>podcast@stackoverflow.com(Jeff Atwood and Joel Spolsky)</webMaster>
		<category></category>
		<ttl>1440</ttl>
		<itunes:keywords>atwood spolsky stackoverflow</itunes:keywords>
		<itunes:subtitle>Jeff Atwood and Joel Spolsky discuss the development of their new programming community, StackOverflow.com.</itunes:subtitle>
		<itunes:summary>Jeff Atwood (of codinghorror.com) and Joel Spolsky (of joelonsoftware.com) discuss the development of their new programming community, StackOverflow.com.</itunes:summary>
		<itunes:author>Jeff Atwood and Joel Spolsky</itunes:author>
		<itunes:category text="Technology"/>
<itunes:category text="Technology">
  <itunes:category text="Software How-To"/>
</itunes:category>
		<itunes:owner>
			<itunes:name>Jeff Atwood and Joel Spolsky</itunes:name>
			<itunes:email>podcast@stackoverflow.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://blog.stackoverflow.com/audio/stackoverflow-300.png" />
		<image>
			<url>http://blog.stackoverflow.com/audio/stackoverflow-144.png</url>
			<title>Blog - Stack Overflow</title>
			<link>http://blog.stackoverflow.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Alternate Sorting Orders</title>
		<link>http://blog.stackoverflow.com/2009/10/alternate-sorting-orders/</link>
		<comments>http://blog.stackoverflow.com/2009/10/alternate-sorting-orders/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 20:56:46 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[background]]></category>
		<category><![CDATA[community]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=2082</guid>
		<description><![CDATA[
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 [...]]]></description>
			<content:encoded><![CDATA[<p>
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, <a href="http://stackoverflow.com/users/7598/raldi">Mike Schiraldi</a> of Reddit emailed us about an <a href="http://www.evanmiller.org/how-not-to-sort-by-average-rating.html">alternate sorting mechanism</a>.</p>
<p>
After about 6 months of testing, It looks like Reddit has implemented this algorithm, and you can <a href="http://blog.reddit.com/2009/10/reddits-new-comment-sorting-system.html">read about it</a> courtesy of Reddit guest blogger Randall Munroe (aka XKCD):</p>
<blockquote><p>
If a comment has one upvote and zero downvotes, it has a 100% upvote rate, but since there&#8217;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 &#8212; figuring that by the time it&#8217;s also gotten 40 upvotes, it&#8217;s almost certain it will have fewer than 20 downvotes. And the best part is that if it&#8217;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 &#8212; and when it gets that data, it will quickly correct the comment&#8217;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.
</p></blockquote>
<p>
The original article, <a href="http://www.evanmiller.org/how-not-to-sort-by-average-rating.html">How Not To Sort By Average rating</a>, elaborates on the math.</p>
<blockquote><p>
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: <i>Given the ratings I have, there is a 95% chance that the &#8220;real&#8221; fraction of positive ratings is at least what?</i> 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:
</p></blockquote>
<p>
<img src="http://blog.stackoverflow.com/wp-content/uploads/new-scoring-math-formula1.png" alt="new-scoring-math-formula" title="new-scoring-math-formula" width="600" height="77" /></p>
<p>
He also provided some sample Ruby code that implements the above formula:</p>
<pre>
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
</pre>
<blockquote><p>
<b>pos</b> is the number of positive rating, <b>n</b> 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.
</p></blockquote>
<p>
(other implementations in different languages were provided in <a href="http://www.reddit.com/r/programming/comments/7ww4d/how_not_to_sort_by_average_rating/">this reddit thread</a>.)</p>
<p>
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:</p>
<ol>
<li>Statistically speaking, it is quite rare for us to get a question with more than 30 answers.
<li>Since votes are limited to 30 per user per day, we have a much lower volume of voting overall than Reddit.
<li>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.
<li>By the time a question gets to more than 30 answers, and has tons of voting, it&#8217;s arguably not a very appropriate question for Stack Overflow.
<li>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 &#8212; low numbers are low, high numbers are high.
</ol>
<p>
While this algorithm is definitely cool &#8212; and a clear improvement for Reddit users &#8212; I am not sure it&#8217;s as clearly useful for Stack Overflow.</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/10/alternate-sorting-orders/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Stickers for Stackers</title>
		<link>http://blog.stackoverflow.com/2009/10/stickers-for-stackers/</link>
		<comments>http://blog.stackoverflow.com/2009/10/stickers-for-stackers/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 03:01:20 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[background]]></category>
		<category><![CDATA[community]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=2015</guid>
		<description><![CDATA[
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&#8217;t kidding when he said &#8220;just send us anything!&#8221; in your SASE sticker request. Let&#8217;s see what other [...]]]></description>
			<content:encoded><![CDATA[<p>
Our program for world domination through stickers is well underway. Check out the cool stuff that Stack Overflow users have <a href="http://blog.stackoverflow.com/2009/09/how-to-get-stack-overflow-stickers/">sent in for stickers</a> to date:</p>
<p>
<a href="http://blog.stackoverflow.com/wp-content/uploads/stack-overflow-stickers-mailed-stuff-large.jpg" style="border-bottom:none;"><img src="http://blog.stackoverflow.com/wp-content/uploads/stack-overflow-stickers-mailed-stuff.jpg" alt="stack-overflow-stickers-mailed-stuff" title="stack-overflow-stickers-mailed-stuff" border="0" /></a></p>
<p>
See, <a href="http://blog.stackoverflow.com/2009/09/i-heart-stack-overflow/">Stack Overflow really is built on love, internet style!</a></p>
<p>
I guess Joel wasn&#8217;t kidding when he said <i>&#8220;just send us anything!&#8221;</i> in your SASE sticker request. Let&#8217;s see what other kinds of crazy things we can get up on that wall &#8212; <b><a href="http://blog.stackoverflow.com/2009/09/how-to-get-stack-overflow-stickers/">request your stickers</a></b> by sending in, y&#8217;know, <i>something!</i></p>
<p>
Once you get the stickers, <a href="http://meta.stackoverflow.com/questions/20570/stickers-for-stackers-i-e-post-your-sticker-shots">post your sticker action shots</a> on meta, too!</p>
<p>
And yes, I am still planning to send out <a href="http://blog.stackoverflow.com/2009/09/free-trilogy-stickers-for-top-users/">free stickers for top users on each Trilogy site</a>. <s>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.</s> These were mailed October 13th.</p>
<p>
(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 <a href="http://stackoverflow.carsonified.com/">DevDays</a> &#8212; which <a href="http://stackoverflow.carsonified.com/events/boston/">kicks off tomorrow in Boston</a>. Stay tuned for some <b>big</b> announcements within 24 hours..)</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/10/stickers-for-stackers/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Free Trilogy Stickers for Top Users</title>
		<link>http://blog.stackoverflow.com/2009/09/free-trilogy-stickers-for-top-users/</link>
		<comments>http://blog.stackoverflow.com/2009/09/free-trilogy-stickers-for-top-users/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 06:59:10 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[serverfault.com]]></category>
		<category><![CDATA[superuser.com]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=1979</guid>
		<description><![CDATA[
If you&#8217;re a top user on any of the Trilogy sites, I&#8217;ve got some good news for you. As a gesture of thanks for being such an involved member of the community, we&#8217;d like to send you some Trilogy stickers absolutely free!



The fine print: to take advantage of this offer, you must be on page [...]]]></description>
			<content:encoded><![CDATA[<p>
If you&#8217;re a top user on any of the Trilogy sites, I&#8217;ve got some good news for you. As a gesture of thanks for being such an involved member of the community, <b>we&#8217;d like to send you some <a href="http://blog.stackoverflow.com/2009/08/in-stickers-we-trust/">Trilogy stickers</a> absolutely free!</b></p>
<p>
<img src="http://blog.stackoverflow.com/wp-content/uploads/stickers-near-loose.jpg" width="600"></p>
<p>
The fine print: to take advantage of this offer, <b>you must be on page 1 or page 2 of the /users page</b> of any trilogy site.</p>
<ul>
<li><a href="http://stackoverflow.com/users">stackoverflow.com/users</a>
<li><a href="http://serverfault.com/users">serverfault.com/users</a>
<li><a href="http://superuser.com/users">superuser.com/users</a>
<li><a href="http://meta.stackoverflow.com/users">meta.stackoverflow.com/users</a> (page 1 only)
</ul>
<p>
 (due to strictly limited <a href="http://meta.stackoverflow.com/questions/19857/meta-stack-overflow-stickers-are-here">&#8220;special edition&#8221; meta stickers</a>, 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&#8217;t request them again.</p>
<p>
To claim your stickers, simply <big><b><a href="http://spreadsheets.google.com/viewform?formkey=dHJIN0FXSkE2RDJWVFNxZFVLOW9oN1E6MA">click here to enter your address</a></b></big> and we&#8217;ll get the stickers mailed out to you within a week or so.</p>
<p>
Also, because not everyone reads the blog, I&#8217;ll try to shoot an email tomorrow to all the relevant users to make sure they&#8217;re aware of this <i>fabulous</i> offer.</p>
<p>
<font color="red">update:</font> all stickers were mailed Tuesday, October 13th. This reflects any top user sticker requests up to October 7th, and I don&#8217;t see any new ones, so I think we&#8217;re complete! Enjoy your stickers &#8212; you&#8217;ve earned them.</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/09/free-trilogy-stickers-for-top-users/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Congrats on 100k Rep</title>
		<link>http://blog.stackoverflow.com/2009/09/congrats-on-100k-rep/</link>
		<comments>http://blog.stackoverflow.com/2009/09/congrats-on-100k-rep/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 04:24:39 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[background]]></category>
		<category><![CDATA[community]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=1977</guid>
		<description><![CDATA[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.

]]></description>
			<content:encoded><![CDATA[<p>Sometime today, <a href="http://stackoverflow.com/users/22656/jon-skeet">Jon Skeet</a> reached 100,000 reputation on Stack Overflow.</p>
<p>
<iframe src="http://stackoverflow.com/users/flair/22656.html" marginwidth="0" marginheight="0" frameborder="0"  scrolling="no" width="210" height="60"></iframe></p>
<p>
Congratulations!</p>
<p>
In unrelated news, there will be no podcast this week due to illness.</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/09/congrats-on-100k-rep/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>Help StackExchange With Colors</title>
		<link>http://blog.stackoverflow.com/2009/09/help-stackexchange-with-colors/</link>
		<comments>http://blog.stackoverflow.com/2009/09/help-stackexchange-with-colors/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 03:54:49 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[stackexchange]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=1967</guid>
		<description><![CDATA[
The first public Stack Exchange sites have surfaced. While the service is still very much in beta, I have to admit I&#8217;m deeply disappointed in the color schemes that are being aired in public.









I agree with Joel Coehoorn, who posted:

I know it&#8217;s a demonstration and high-contrast design is not only intentional but also somewhat necessary, [...]]]></description>
			<content:encoded><![CDATA[<p>
The first public <a href="http://stackexchange.com">Stack Exchange</a> sites have surfaced. While the service is still very much in beta, I have to admit I&#8217;m deeply disappointed in the color schemes that are being aired in public.</p>
<p>
<img src="http://blog.stackoverflow.com/wp-content/uploads/stackexchange-1.png" width="600" /></p>
<p>
<img src="http://blog.stackoverflow.com/wp-content/uploads/stackexchange-2.png" width="600" /></p>
<p>
<img src="http://blog.stackoverflow.com/wp-content/uploads/stackexchange-3.png" width="600" /></p>
<p>
<img src="http://blog.stackoverflow.com/wp-content/uploads/stackexchange-4.png" width="600" /></p>
<p>
I agree with Joel Coehoorn, who posted:</p>
<blockquote><p>
I know it&#8217;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.
</p></blockquote>
<p>
The crimes against my eyeballs are manifold:</p>
<ul>
<li>All but unreadable low-contrast color pairings.
<li>Jarring, disharmonious color choices.
<li>Apparent utter lack of designer input.
</ul>
<p>
Now, I&#8217;m not saying that our trilogy color schemes are perfect &#8212; 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&#8217;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 <b>we can and should do much, much better than the existing Stack Exchange color schemes.</b> Seriously, what does this say to you?</p>
<p>
<img src="http://blog.stackoverflow.com/wp-content/uploads/stackexchange-questions-page.png" width="600" /></p>
<p>
Opinons vary, but to me, that says &#8220;I don&#8217;t give a crap how this looks.&#8221; It is <a href="http://www.codinghorror.com/blog/archives/000734.html">programmer design</a> at its finest. Would <i>you</i> want to be associated with something like this?</p>
<p>
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 <a href="http://www.codinghorror.com/blog/archives/000341.html">letting a thousand Hot Dog Stands bloom</a>.</p>
<p>
OK, enough with the complaining. So, <b>how can we fix this?</b></p>
<ol>
<li>How can we involve outside designers in creating CSS color schemes for Stack Exchange? What&#8217;s a good, public web-friendly way?
<p><li>In the future, how can we cultivate a deeper template / layout ecosystem for Stack Exchange?
</ol>
<p>
Help us help you. And your eyeballs.</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/09/help-stackexchange-with-colors/feed/</wfw:commentRss>
		<slash:comments>51</slash:comments>
		</item>
		<item>
		<title>How to Get Stack Overflow Stickers</title>
		<link>http://blog.stackoverflow.com/2009/09/how-to-get-stack-overflow-stickers/</link>
		<comments>http://blog.stackoverflow.com/2009/09/how-to-get-stack-overflow-stickers/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 06:59:22 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[serverfault.com]]></category>
		<category><![CDATA[superuser.com]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=1934</guid>
		<description><![CDATA[
Like any rational human being, you probably have an insatiable desire for Stack Overflow Trilogy stickers. It&#8217;s only natural.



But how do you get your hands on these sweet, sweet, hunks of colored vinyl?

Good news! You can!

Simply mail a Self-Addressed Stamped Envelope to:

Stack Overflow Stickers
c/o Fog Creek Software
55 Broadway, 25th Floor
New York, NY 10006


The returned envelope [...]]]></description>
			<content:encoded><![CDATA[<p>
Like any rational human being, you probably have <a href="http://meta.stackoverflow.com/questions/20570/stickers-for-stackers-i-e-post-your-sticker-shots">an insatiable desire for Stack Overflow Trilogy stickers</a>. It&#8217;s only natural.</p>
<p>
<a href="http://marcgravell.blogspot.com/2009/09/stickers-now-what-to-do-with-them.html" style="border-bottom:none;"><img src="http://blog.stackoverflow.com/wp-content/uploads/trilogy-stickers-gravell1.jpg" width="600" alt="trilogy-stickers-gravell" title="trilogy-stickers-gravell" border="0" /></a></p>
<p>
But how do you get <i>your</i> hands on these sweet, sweet, hunks of colored vinyl?</p>
<p>
Good news! You can!</p>
<p>
Simply <b>mail a Self-Addressed Stamped Envelope</b> to:</p>
<blockquote><p>
Stack Overflow Stickers<br />
c/o Fog Creek Software<br />
55 Broadway, 25th Floor<br />
New York, NY 10006
</p></blockquote>
<p>
The returned envelope will contain one Stack Overflow, one Super User, and one Server Fault sticker. However, if you&#8217;d like all three stickers to be of one particular type, no problem; just indicate that preference somewhere on the envelope.</p>
<p>
If you run a <b>user group or company meeting</b> and you would like a batch of stickers to provide at your next meeting, please send a short letter on company/group letterhead requesting stickers to the above address. Also indicate how many you&#8217;re requesting.</p>
<p>
If you are <b>outside the United States</b>, the concept of SASE is a bit tougher. You have two options here:</p>
<ol>
<li>Include US $1 in the envelope to cover international postage (currently $0.98 at the time I am writing this).
<li>Include an <a href="http://en.wikipedia.org/wiki/International_reply_coupon">International Reply Coupon</a> with your self-addressed envelope.
</ol>
<p>
One word of caution: if you are on the first two /user pages of any Trilogy site, a little birdie told me you might have free stickers coming your way, so hold off on mailing anything.</p>
<p>
<b>We&#8217;d like to get these stickers in the hands of as many people as possible, so don&#8217;t be shy in requesting them</b> &#8212; particularly if you know of a user group or meeting that would be interested, or any other opportunities to distribute them more effectively.</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/09/how-to-get-stack-overflow-stickers/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>I [heart] Stack Overflow</title>
		<link>http://blog.stackoverflow.com/2009/09/i-heart-stack-overflow/</link>
		<comments>http://blog.stackoverflow.com/2009/09/i-heart-stack-overflow/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 12:38:15 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[background]]></category>
		<category><![CDATA[community]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=1923</guid>
		<description><![CDATA[We get the nicest email. (Well, mostly.) This one made me laugh, so I wanted to share it with everyone.



After all, who doesn&#8217;t &#60;3 ASCII hearts?

]]></description>
			<content:encoded><![CDATA[<p>We get the nicest email. (Well, mostly.) This one made me laugh, so I wanted to share it with everyone.</p>
<p>
<img src="http://blog.stackoverflow.com/wp-content/uploads/stackoverflow-heart1.png" alt="stackoverflow-heart" title="stackoverflow-heart"></p>
<p>
After all, who doesn&#8217;t &lt;3 ASCII hearts?</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/09/i-heart-stack-overflow/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>The First Super User With 10k Rep</title>
		<link>http://blog.stackoverflow.com/2009/09/the-first-super-user-with-10k-rep/</link>
		<comments>http://blog.stackoverflow.com/2009/09/the-first-super-user-with-10k-rep/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 07:02:19 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[superuser.com]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=1905</guid>
		<description><![CDATA[
I sort of dropped the ball on this, but sometime in the last week or two, the first user reached 10,000 reputation on Super User.

That user is John T.



July 15th was the first day of beta, and John &#8212; as of this writing &#8212; has 11,232 reputation. That means in about 48 days, John has [...]]]></description>
			<content:encoded><![CDATA[<p>
I sort of dropped the ball on this, but sometime in the last week or two, the first user <a href="http://superuser.com/users">reached 10,000 reputation on Super User</a>.</p>
<p>
That user is <a href="http://superuser.com/users/1931/john-t">John T</a>.</p>
<p>
<iframe src="http://superuser.com/users/flair/1931.html" marginwidth="0" marginheight="0" frameborder="0"  scrolling="no" width="210" height="60"></iframe></p>
<p>
July 15th was <a href="http://blog.stackoverflow.com/2009/07/super-user-semi-private-beta-begins/">the first day of beta</a>, and John &#8212; as of this writing &#8212; has 11,232 reputation. That means in about 48 days, John has produced 234 reputation per day. (Remember that bounties and accepted answers are immune to the 200/day reputation cap.)</p>
<p>
Impressive.</p>
<p>
It&#8217;s all the more impressive when you realize that John is a mere 18 years old! (He&#8217;s also Canadian, but I won&#8217;t hold that against him.) Looks like we have another lifetime Super User on our hands. </p>
<p>
Congratulations John, and thanks for leading the charge to provide great answers on Super User!</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/09/the-first-super-user-with-10k-rep/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>In Stickers We Trust</title>
		<link>http://blog.stackoverflow.com/2009/08/in-stickers-we-trust/</link>
		<comments>http://blog.stackoverflow.com/2009/08/in-stickers-we-trust/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 05:29:24 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[background]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[serverfault.com]]></category>
		<category><![CDATA[superuser.com]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=1902</guid>
		<description><![CDATA[
Remember the trilogy stickers I wrote about a while ago?



They&#8217;ve arrived. All 40,000 of them. Each box was around 22-25 pounds.

Here&#8217;s a close up of each sticker. They are all about 4 1/2&#8243; wide.



Imagine the endless fun you could have with this many stickers!



As to how you, yourself, can get hold of these totally awesome [...]]]></description>
			<content:encoded><![CDATA[<p>
Remember <a href="http://blog.stackoverflow.com/2009/08/coming-soon-trilogy-stickers/">the trilogy stickers</a> I wrote about a while ago?</p>
<p>
<img src="http://blog.stackoverflow.com/wp-content/uploads/stickers-boxes.jpg" width="600"></p>
<p>
They&#8217;ve arrived. All 40,000 of them. Each box was around 22-25 pounds.</p>
<p>
Here&#8217;s a close up of each sticker. They are all about 4 1/2&#8243; wide.</p>
<p>
<img src="http://blog.stackoverflow.com/wp-content/uploads/stickers-near-arranged.jpg" width="382"></p>
<p>
Imagine the <i>endless</i> fun you could have with this many stickers!</p>
<p>
<img src="http://blog.stackoverflow.com/wp-content/uploads/stickers-near-loose.jpg" width="600"></p>
<p>
As to how you, yourself, can get hold of these <i>totally awesome</i> stickers &#8212; attend <a href="http://stackoverflow.carsonified.com/">Stack Overflow Dev Days</a> where they will be given away in great profusion! In fact, we reserve the right to physically adhere these stickers to anyone in attendance! (Not really. As far as you know.)</p>
<p>
Beyond that, we&#8217;re still not sure. Joel is a fan of the SASE (self-addressed stamped envelope) approach, but I still feel that&#8217;s asking a bit too much of my fellow sticker enthusiasts.</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/08/in-stickers-we-trust/feed/</wfw:commentRss>
		<slash:comments>61</slash:comments>
		</item>
		<item>
		<title>Congratulations Super User Moderators!</title>
		<link>http://blog.stackoverflow.com/2009/08/congratulations-super-user-moderators/</link>
		<comments>http://blog.stackoverflow.com/2009/08/congratulations-super-user-moderators/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 09:57:26 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[superuser.com]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/2009/08/congratulations-super-user-moderators/</guid>
		<description><![CDATA[
After a brief informal nomination period by the existing moderators, and a small impromptu vote on meta, we&#8217;ve settled on our three Super User community moderators:







Congratulations to TheTXI, splattne, and Diago! They are all that is standing between us and an endless armada of Ewoks, so wish them luck, and try to support them in [...]]]></description>
			<content:encoded><![CDATA[<p>
After a brief informal nomination period by the existing moderators, and a <a href="http://meta.stackoverflow.com/questions/14417/vote-for-super-user-moderator-poll">small impromptu vote on meta</a>, we&#8217;ve settled on <b>our three Super User community moderators</b>:</p>
<p>
<iframe src="http://superuser.com/users/flair/705.html" marginwidth="0" marginheight="0" frameborder="0"  scrolling="no" width="210" height="60"></iframe></p>
<p>
<iframe src="http://superuser.com/users/flair/187.html" marginwidth="0" marginheight="0" frameborder="0"  scrolling="no" width="210" height="60"></iframe></p>
<p>
<iframe src="http://superuser.com/users/flair/3981.html" marginwidth="0" marginheight="0" frameborder="0"  scrolling="no" width="210" height="60"></iframe></p>
<p>
Congratulations to <a href="http://superuser.com/users/705/thetxi">TheTXI</a>, <a href="http://superuser.com/users/187/splattne">splattne</a>, and <a href="http://superuser.com/users/3981/diago">Diago</a>! They are all that is standing between us and <a href="http://blog.stackoverflow.com/2009/05/the-stack-overflow-trilogy/">an endless armada of Ewoks</a>, so wish them luck, and try to support them in whatever way you can.</p>
<p>
They are of course joined by <a href="http://blog.stackoverflow.com/2009/07/howtogeek-and-stack-overflow/">our fellow League of (web) Justice member, How-To Geek</a>.</p>
<p>
<iframe src="http://superuser.com/users/flair/4102.html" marginwidth="0" marginheight="0" frameborder="0"  scrolling="no" width="210" height="60"></iframe></p>
<p>
Super User comes out of <a href="http://blog.stackoverflow.com/2009/07/super-user-semi-private-beta-begins/">semi-private beta</a> tomorrow &#8212; at <b>00:01 PST on Tuesday, August 18th</b>. So if you want that coveted Beta badge, <a href="http://blog.stackoverflow.com/2009/07/super-user-semi-private-beta-begins/">this is your last chance!</a></p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/08/congratulations-super-user-moderators/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.518 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2009-11-23 03:52:32 -->
