<?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; background</title>
	<atom:link href="http://blog.stackoverflow.com/category/background/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>Markdown, One Year Later</title>
		<link>http://blog.stackoverflow.com/2009/10/markdown-one-year-later/</link>
		<comments>http://blog.stackoverflow.com/2009/10/markdown-one-year-later/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 09:25:23 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[background]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=2053</guid>
		<description><![CDATA[
We made a few key technology bets when we created Stack Overflow:

OpenID
Markdown
ASP.NET MVC


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

We [...]]]></description>
			<content:encoded><![CDATA[<p>
We made a few key technology bets when we created Stack Overflow:</p>
<ul>
<li><a href="http://openid.net/">OpenID</a>
<li><a href="http://en.wikipedia.org/wiki/Markdown">Markdown</a>
<li><a href="http://www.asp.net/mvc/">ASP.NET MVC</a>
</ul>
<p>
I&#8217;ll defer the discussion on the other two items for another day, but after <b>spending a year immersed in Markdown</b> &#8212; <a href="http://stackoverflow.com/editing-help">the lightweight markup language we use to format posts on all Trilogy sites</a> &#8212; I have some thoughts I&#8217;d like to share.</p>
<p>
We knew early on that there were <a href="http://blog.stackoverflow.com/2008/06/three-markdown-gotcha/">a handful of Markdown Gotchas</a>, 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:</p>
<ol>
<li>Removed support for intra-word emphasis <code>like_this_example</code>
<li>Added auto-hyperlink support for http:// URLs in posts
</ol>
<p>
Apparently github also uses Markdown, and they independently arrived at some of the same conclusions we did &#8212; synthesizing something they call <a href="http://github.github.com/github-flavored-markdown/">GitHub Flavored Markdown</a>.</p>
<ol>
<li>Removed support for intra-word emphasis <code>like_this_example</code>
<li>Added auto-hyperlink support for http:// URLs in posts
<li>Automatic return-based linebreaks instead of &#8220;two spaces at end of line&#8221; linebreaks
<li>Support for some magic strings that auto-convert to GitHub specific links
</ol>
<p>
Since GitHub and Stack Overflow match exactly on #1 and #2, it&#8217;s fairly safe to say that those are in fact deficiencies in Markdown, at least for a programming audience. (Though I&#8217;d argue they apply to general audiences, too.)</p>
<p>
As for #3, that&#8217;s one I hadn&#8217;t considered. In normal Markdown, this:</p>
<p><pre>
Roses are red&#182;
Violets are blue&#182;
</pre>
<p>
Will render like this:</p>
<pre>
Roses are red violets are blue
</pre>
<p>
The Markdown answer is to add two spaces at the end of the line (or a literal &lt;br&gt;, I suppose).</p>
<p><pre>
Roses are red&nbsp;&nbsp;&#182;
violets are blue&#182;
</pre>
<p>
Although it&#8217;s easy <i>once you know the trick</i>, this is far from intuitive to most. I&#8217;m reminded a bit of the <a href="http://www.codinghorror.com/blog/archives/000096.html">double-click mouse problem</a>. I wonder if we should adopt the GitHub linebreak approach here. </p>
<p>
As for the fourth item, when text is entered in these specific formats &#8230;</p>
<p><pre>
* 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
</pre>
<p>
&#8230; those magic strings are detected by the GitHub Flavored Markdown and auto-converted into GitHub specific hyperlinks. <a href="http://meta.stackoverflow.com/questions/1010/advanced-syntax-ideas">Something similar</a> has been proposed on meta for internal Stack Overflow references, so this is an idea we&#8217;ve been entertaining for some time as well.</p>
<p>
Markdown is remarkably flexible, because it allows you to intermix <a href="http://meta.stackoverflow.com/questions/1777/what-html-tags-are-allowed">a narrow list of whitelisted HTML</a> tags with <a href="http://meta.stackoverflow.com/editing-help">Markdown &#8220;fancy ASCII&#8221; syntax</a> in a fairly logical way, at least most of the time.</p>
<p>
So, now that <i>you&#8217;ve</i> had a chance to mess around with Markdown for a year &#8212; <b>what are your thoughts?</b></p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/10/markdown-one-year-later/feed/</wfw:commentRss>
		<slash:comments>67</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>One Million Pageviews</title>
		<link>http://blog.stackoverflow.com/2009/09/one-million-pageviews/</link>
		<comments>http://blog.stackoverflow.com/2009/09/one-million-pageviews/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 21:59:45 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[background]]></category>

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



After flirting with hitting this limit all month (so many golf crowd &#8220;awww&#8221; near-miss moments), we were finally rewarded with 1,015,756 pageviews yesterday, just barely squeaking it into the month of [...]]]></description>
			<content:encoded><![CDATA[<p>
A small, but arbitrary milestone in Stack Overflow history:</p>
<p>
Per Google Analytics, we finally did <b>one million pageviews in a single day</b> on Tuesday, September 29th.</p>
<p>
<a href="http://www.youtube.com/watch?v=cKKHSAE1gIs#t=0m13s" style="border-bottom:none"><img src="http://blog.stackoverflow.com/wp-content/uploads/dr-evil-pinky.jpg" alt="dr-evil-pinky" title="dr-evil-pinky"  border="0" /></a></p>
<p>
After flirting with hitting this limit all month (so many golf crowd &#8220;awww&#8221; near-miss moments), we were finally rewarded with 1,015,756 pageviews yesterday, just barely squeaking it into <a href="http://twitter.com/codinghorror/status/2613465918">the month of September</a>.</p>
<p>
As a point of comparison, when <a href="http://blog.stackoverflow.com/2008/09/then-a-miracle-occurs-public-beta/">Stack Overflow launched to the public a little over a year ago</a>, 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 <b>300k pageviews</b> on a typical weekday. </p>
<p>
So in about a year:</p>
<ul>
<li>traffic has more than tripled
<li>the site has grown from one server to three (database, web1, web2)
<li>over 300k questions
<li>over 120k real, <a href="http://blog.stackoverflow.com/2009/02/when-is-an-account-abandoned/"><i>active</i> users</a>
<li>we&#8217;ve launched <s>two</s>three other sites in <a href="http://blog.stackoverflow.com/2009/05/the-stack-overflow-trilogy/">the trilogy</a>
<ul>
<li><a href="http://blog.stackoverflow.com/2009/05/server-fault-public-beta-launches/">serverfault.com</a> (May 26 2009)
<li><a href="http://blog.stackoverflow.com/2009/06/cmon-get-meta/">meta.stackoverflow.com</a> (June 28 2009)
<li><a href="http://blog.stackoverflow.com/2009/08/super-user-now-public/">superuser.com</a> (Aug 18 2009)
</ul>
</ul>
<p>
It&#8217;s been a great year, but I suspect the next 12 months will be even better! We have some exciting announcements planned for <a href="http://stackoverflow.carsonified.com/">DevDays</a>, so stay tuned. </p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/09/one-million-pageviews/feed/</wfw:commentRss>
		<slash:comments>18</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>New DNS Provider</title>
		<link>http://blog.stackoverflow.com/2009/09/new-dns-provider/</link>
		<comments>http://blog.stackoverflow.com/2009/09/new-dns-provider/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 23:34:55 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[background]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=1954</guid>
		<description><![CDATA[
Our domain name registrar is GoDaddy. We&#8217;ve had a lot of problems with GoDaddy&#8217;s handling of DNS, where DNS entries will suddenly appear and disappear at random. Often, changing a completely unrelated DNS record would result in other DNS entries going missing for hours. Extremely frustrating.

As a result of many, many bad experiences, over the [...]]]></description>
			<content:encoded><![CDATA[<p>
Our domain name registrar is GoDaddy. We&#8217;ve had a lot of problems with GoDaddy&#8217;s handling of DNS, where DNS entries will suddenly appear and disappear at random. Often, changing a completely unrelated DNS record would result in other DNS entries going missing for hours. Extremely frustrating.</p>
<p>
As a result of many, many bad experiences, over the weekend, we&#8217;ll be switching DNS providers. I asked around about quality DNS providers and I got a few consistent recommendations:</p>
<ul>
<li><a href="http://www.easydns.com/">EasyDNS</a>
<li><a href="http://www.zoneedit.com/">ZoneEdit</a>
<li><a href="http://www.dyndns.com/">DynDNS</a> / <a href="http://www.dynect.com/">Dynect</a>
<li><a href="http://www.ultradns.com/">UltraDNS</a>
<li><a href="https://www.dnsmadeeasy.com/">DNSMadeEasy</a>
<li><a href="http://www.everydns.com/">EveryDNS</a>
</ul>
<p>
I was also (hilariously) referred to a Server Fault question on <a href="http://serverfault.com/questions/23744/hosting-your-own-dns">Hosting Your Own DNS</a>. The entire <a href="http://serverfault.com/questions/tagged?tagnames=dns&#038;sort=votes">DNS tag on Server Fault</a> is good reading as well.</p>
<p>
We eventually decided to go with <a href="http://dynamicnetworkservices.com/">Dynamic Network Services</a>.</p>
<p>
<a href="http://dynamicnetworkservices.com/" style="border-bottom:none;"><img src="http://blog.stackoverflow.com/wp-content/uploads/dynect-uptime.png" alt="dynect-uptime" title="dynect-uptime" width="600" border="0" /></a></p>
<p>
They must know DNS cold, because they have <a href="http://dyn.com/">a freaking three letter domain name</a>, man!</p>
<p>
I also got to learn the exciting intricacies of exporting DNS records to text format, including <a href="http://www.zytrax.com/books/dns/ch8/soa.html">the thrilling Start of Authority (SOA) record</a>.</p>
<p><pre>
example.com.    IN    SOA   ns.example.com. hostmaster.example.com. (
                              2003080800 ; sn = serial number
                              172800     ; ref = refresh = 2d
                              900        ; ret = update retry = 15m
                              1209600    ; ex = expiry = 2w
                              3600       ; min = minimum = 1h
                              )
</pre>
<p>
Starting at 5 pm PST today, we&#8217;ll flip over to the new nameservers:</p>
<p><pre>
ns1.p19.dynect.net
ns2.p19.dynect.net
ns3.p19.dynect.net
ns4.p19.dynect.net
</pre>
<p>
It is our hope that outsourcing our DNS to professionals &#8212; to companies that specialize in this stuff &#8212; will result in less unpredictability when navigating to our websites.</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/09/new-dns-provider/feed/</wfw:commentRss>
		<slash:comments>14</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>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>Us Versus Hyphen</title>
		<link>http://blog.stackoverflow.com/2009/08/us-versus-hyphen/</link>
		<comments>http://blog.stackoverflow.com/2009/08/us-versus-hyphen/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 00:10:22 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[background]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=1858</guid>
		<description><![CDATA[
It&#8217;s Friday, so that must mean it&#8217;s graph day!

Here are some graphs I picked completely at random that I&#8217;d like to show you.
Google


Alexa


Compete


Quantcast



No hyphens were harmed in the creation of this blog post.

(disclaimer: we have a healthy respect for other websites similar to ours, and we believe the internet is quite big enough to support [...]]]></description>
			<content:encoded><![CDATA[<p>
It&#8217;s Friday, so that must mean it&#8217;s graph day!</p>
<p>
Here are some graphs I picked <i>completely at random</i> that I&#8217;d like to show you.</p>
<p><h2>Google</h2>
<p>
<a href="http://www.google.com/insights/search/#q=stackoverflow%2Cexperts%20exchange&#038;cmpt=q" style="border-bottom:none"><img src="http://blog.stackoverflow.com/wp-content/uploads/google-search-rank-stackoverflow-vs-hyphens.png" width="521"  border=0 /></a></p>
<p><h2>Alexa</h2>
<p>
<a href="http://www.alexa.com/siteinfo/stackoverflow.com+experts-exchange.com" style="border-bottom:none"><img src="http://blog.stackoverflow.com/wp-content/uploads/alexa-stackoverflow-vs-hyphens.png" width="599" height="241" border=0 /></a></p>
<p><h2>Compete</h2>
<p>
<a href="http://siteanalytics.compete.com/stackoverflow.com+experts-exchange.com/" style="border-bottom:none"><img src="http://blog.stackoverflow.com/wp-content/uploads/compete-stackoverflow-vs-hyphens.png" width="593" height="343" border=0 /></a></p>
<p><h2>Quantcast</h2>
<p>
<a href="http://www.quantcast.com/stackoverflow.com" style="border-bottom:none"><img src="http://blog.stackoverflow.com/wp-content/uploads/quantcast-stackoverflow.png" width="488" height="308" border=0></a></p>
<p>
No hyphens were harmed in the creation of this blog post.</p>
<p>
<small>(disclaimer: we have a healthy respect for other websites similar to ours, and we believe the internet is quite big enough to support lots of different websites doing things as they see fit. The <b>friendly rivalry</b> presented here is intended for your interest and amusement, nothing more.)</small></p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/08/us-versus-hyphen/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Browsers and Screen Size on Stack Overflow</title>
		<link>http://blog.stackoverflow.com/2009/08/browsers-and-screen-size-on-stack-overflow/</link>
		<comments>http://blog.stackoverflow.com/2009/08/browsers-and-screen-size-on-stack-overflow/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 00:26:39 +0000</pubDate>
		<dc:creator>Jeff Atwood</dc:creator>
				<category><![CDATA[background]]></category>

		<guid isPermaLink="false">http://blog.stackoverflow.com/2009/08/browsers-and-screen-size-on-stack-overflow/</guid>
		<description><![CDATA[
The question occasionally comes up: what web browsers do Stack Overflow users tend to use?

Here&#8217;s a quick look at our Analytics data from June 1st &#8211; August 19th.


Firefox
50.53%

Internet Explorer
29.12%

Chrome
9.04%

Safari
7.33%

Opera
2.44%

Mozilla
1.15%

Konqueror
0.10%


Note that within Internet Explorer, the breakdown is 45% IE7, 29% IE8, and &#8212; this is depressing &#8212; 24% IE6. Which means that about 7% of our [...]]]></description>
			<content:encoded><![CDATA[<p>
The question occasionally comes up: <b>what web browsers</b> do Stack Overflow users tend to use?</p>
<p>
Here&#8217;s a quick look at our Analytics data from June 1st &#8211; August 19th.</p>
<table width="300">
<tr>
<td>Firefox
<td align="right">50.53%</tr>
<tr>
<td>Internet Explorer
<td align="right">29.12%</tr>
<tr>
<td>Chrome
<td align="right">9.04%</tr>
<tr>
<td>Safari
<td align="right">7.33%</tr>
<tr>
<td>Opera
<td align="right">2.44%</tr>
<tr>
<td>Mozilla
<td align="right">1.15%</tr>
<tr>
<td>Konqueror
<td align="right">0.10%</tr>
</table>
<p>
Note that within Internet Explorer, the breakdown is 45% IE7, 29% IE8, and &#8212; this is depressing &#8212; 24% IE6. Which means that about 7% of our overall audience is still on creaky, broken, ancient old IE6. The Firefox breakdown is primarily 3.0 and 3.5, with a smattering of older versions.</p>
<p>
As for the <b>screen size</b> of Stack Overflow users:</p>
<table width="250">
<tr>
<td>1280&#215;1024
<td align="right">24.03%</tr>
<tr>
<td>1680&#215;1050
<td align="right">14.52%</tr>
<tr>
<td>1280&#215;800
<td align="right">14.32%</tr>
<tr>
<td>1024&#215;768
<td align="right">12.32%</tr>
<tr>
<td>1440&#215;900
<td align="right">11.57%</tr>
<tr>
<td>1920&#215;1200
<td align="right">8.40%</tr>
<tr>
<td>1600&#215;1200
<td align="right">3.24%</tr>
<tr>
<td>1152&#215;864
<td align="right">1.68%</tr>
<tr>
<td>1920&#215;1080
<td align="right">1.32%</tr>
<tr>
<td>1400&#215;1050
<td align="right">1.28%</tr>
</table>
<p>
Those resolutions account for about 90% of the audience &#8212; those that report this data back to Analytics, anyway.</p>
<p>
(Just as an aside, in case anyone was waiting for the podcast: as noted on last week&#8217;s episode, there will be no podcast recording this week.)</p>
<p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stackoverflow.com/2009/08/browsers-and-screen-size-on-stack-overflow/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
	</channel>
</rss>
