<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Solving the &#8220;Fastest Gun in the West&#8221; problem</title>
	<atom:link href="http://blog.stackoverflow.com/2008/10/solving-the-fastest-gun-in-the-west-problem/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stackoverflow.com/2008/10/solving-the-fastest-gun-in-the-west-problem/</link>
	<description>a programming community exploit</description>
	<lastBuildDate>Mon, 23 Nov 2009 09:29:13 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Esko Luontola</title>
		<link>http://blog.stackoverflow.com/2008/10/solving-the-fastest-gun-in-the-west-problem/#comment-14097</link>
		<dc:creator>Esko Luontola</dc:creator>
		<pubDate>Sat, 07 Feb 2009 14:17:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=113#comment-14097</guid>
		<description>The problem is that when the question has been around for some days, weeks or months, the motivation for a new visitor to write a comprehensive answer which answers the question better than any of the existing answers, is very low, because when the answer is not visible on the first page of answers, very few will actually read the new answer, because of sorting the answers by votes.

A better system would take into consideration the time that the question has been around. Maybe also its length in words. When a new question has been posted, it should be visible near the top of the first page, so that visitors will see the new post and decide whether they vote it or not.

The sorting order could be a function of how many unique people have read the answer and how many of them have voted it. For example a question has an old answer which 1000 people have seen and 10 people have voted. It has a vote ratio of 10 / 1000 = 0.01. Now a new answer comes. After 10 people have seen it, 2 of them vote for it. It has a vote ratio of 2 / 10 = 0.2, which means that this answer is probably better than the old answer with more votes.

Another way would be to calculate the weight of a vote as a function of when the vote was done, and then sort the messages by the sum of the weights of all votes. The weight of a vote could be for example 1 / AGE, where AGE is some value which grows (linearly or logarithmically) when the vote gets older.</description>
		<content:encoded><![CDATA[<p>The problem is that when the question has been around for some days, weeks or months, the motivation for a new visitor to write a comprehensive answer which answers the question better than any of the existing answers, is very low, because when the answer is not visible on the first page of answers, very few will actually read the new answer, because of sorting the answers by votes.</p>
<p>A better system would take into consideration the time that the question has been around. Maybe also its length in words. When a new question has been posted, it should be visible near the top of the first page, so that visitors will see the new post and decide whether they vote it or not.</p>
<p>The sorting order could be a function of how many unique people have read the answer and how many of them have voted it. For example a question has an old answer which 1000 people have seen and 10 people have voted. It has a vote ratio of 10 / 1000 = 0.01. Now a new answer comes. After 10 people have seen it, 2 of them vote for it. It has a vote ratio of 2 / 10 = 0.2, which means that this answer is probably better than the old answer with more votes.</p>
<p>Another way would be to calculate the weight of a vote as a function of when the vote was done, and then sort the messages by the sum of the weights of all votes. The weight of a vote could be for example 1 / AGE, where AGE is some value which grows (linearly or logarithmically) when the vote gets older.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dlamblin</title>
		<link>http://blog.stackoverflow.com/2008/10/solving-the-fastest-gun-in-the-west-problem/#comment-7038</link>
		<dc:creator>dlamblin</dc:creator>
		<pubDate>Fri, 10 Oct 2008 23:41:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=113#comment-7038</guid>
		<description>@Bobby_Jack: &quot;won&#039;t that lead to deadlock?&quot;
I wasn&#039;t clear enough that I meant that voting should be all about ranking, and that no two answers should be ranked as equal once voting is complete. Therefore you&#039;d  actually be moving an answer down under the one you&#039;re trying to up-vote. A 6 answer question would at max have standing values of 0,1,2,3,4,5; though it would start at 0,0,0,0,0,0. I understand that this wouldn&#039;t work well with multiple simultaneous users, which is why the questioner should probably get a final say.</description>
		<content:encoded><![CDATA[<p>@Bobby_Jack: &#8220;won&#8217;t that lead to deadlock?&#8221;<br />
I wasn&#8217;t clear enough that I meant that voting should be all about ranking, and that no two answers should be ranked as equal once voting is complete. Therefore you&#8217;d  actually be moving an answer down under the one you&#8217;re trying to up-vote. A 6 answer question would at max have standing values of 0,1,2,3,4,5; though it would start at 0,0,0,0,0,0. I understand that this wouldn&#8217;t work well with multiple simultaneous users, which is why the questioner should probably get a final say.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bobby Jack</title>
		<link>http://blog.stackoverflow.com/2008/10/solving-the-fastest-gun-in-the-west-problem/#comment-7018</link>
		<dc:creator>Bobby Jack</dc:creator>
		<pubDate>Fri, 10 Oct 2008 12:10:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=113#comment-7018</guid>
		<description>@dlamblin: &quot;The maximum number of votes any answer should be able to get is the number of answers minus one&quot; - won&#039;t that lead to deadlock?</description>
		<content:encoded><![CDATA[<p>@dlamblin: &#8220;The maximum number of votes any answer should be able to get is the number of answers minus one&#8221; &#8211; won&#8217;t that lead to deadlock?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dlamblin</title>
		<link>http://blog.stackoverflow.com/2008/10/solving-the-fastest-gun-in-the-west-problem/#comment-7000</link>
		<dc:creator>dlamblin</dc:creator>
		<pubDate>Thu, 09 Oct 2008 19:34:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=113#comment-7000</guid>
		<description>When I said &quot;Post-Factorial&quot;, I actually meant the Triangular number of the count of the answers to the question.

One last suggestion:
The maximum number of votes any answer should be able to get is the number of answers minus one.
&lt;a href=&quot;http://stackoverflow.com/questions/184071&quot; rel=&quot;nofollow&quot;&gt;http://stackoverflow.com/questions/184071&lt;/a&gt; It seems crazy to me that the top answer is voted as better than the sum of the votes of every other answer.</description>
		<content:encoded><![CDATA[<p>When I said &#8220;Post-Factorial&#8221;, I actually meant the Triangular number of the count of the answers to the question.</p>
<p>One last suggestion:<br />
The maximum number of votes any answer should be able to get is the number of answers minus one.<br />
<a href="http://stackoverflow.com/questions/184071" rel="nofollow">http://stackoverflow.com/questions/184071</a> It seems crazy to me that the top answer is voted as better than the sum of the votes of every other answer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dlamblin</title>
		<link>http://blog.stackoverflow.com/2008/10/solving-the-fastest-gun-in-the-west-problem/#comment-6971</link>
		<dc:creator>dlamblin</dc:creator>
		<pubDate>Thu, 09 Oct 2008 04:33:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=113#comment-6971</guid>
		<description>Whining aside I have a simpler solution:
Until there are &lt;i&gt;n&lt;/i&gt; answers AND &lt;i&gt;m&lt;/i&gt; minutes have passed since the first answer was posted voting should be closed. Bonus fancy pants implementation: pick &lt;i&gt;n&lt;/i&gt; and &lt;i&gt;m&lt;/i&gt; based on historical statistics for this hour of the week. Otherwise fix &lt;i&gt;n&lt;/i&gt; to 3 and &lt;i&gt;m&lt;/i&gt; to 60.

Other suggestions are:
- Get a separate voting feed/view. This should show questions where there are new answers and link to the sub-page (if any) where the new answer is.

- Store a pseudo-random number generator salt per session. Use that generator to sort answers first by vote count then by the generator. This will be different per user and allow voting, once open, to happen not exactly based on time of answer. This doesn&#039;t avoid the problem of a snowballing smart alec answer, like my own of &quot;Learn English&quot; for a complex question regarding emigration to England.

- People who answer well want points. People who vote want to rank. The two don&#039;t exactly mesh. One person can vote up each answer, but can&#039;t vote up one answer to be twice as good as another. At the least the question writer should receive Post-Factorial votes for the question; they are the person who knows what they asked, who won&#039;t be titillated by a pun or cultural reference, and who&#039;ll have tried every reasonable suggestion until they found a solution.

- A person should be able to post an answer to their own question and mark it as the right damn answer because they confirmed it to be true. Right now they can&#039;t mark it or vote it to the top. Let them. Just don&#039;t give them points for having the right answer.

- Since voting is about ranking and not points, new answers should get randomly inserted in the middle portion with &lt;i&gt;v&lt;/i&gt; votes if there are more than &lt;i&gt;n&lt;/i&gt; questions, not as a 0 vote answer way at the bottom. The question should then be put up for re-ranking, and people can move everything around then. That question getting down-voted to 0 won&#039;t the poster points until it goes negative.

My personal whine is about how once my question is a month old or so, no one will add an answer even though I found none of the posts actually answered my question. What happens when someone wants to ask the same question, but then doesn&#039;t because it&#039;s been asked, [s]he&#039;s similarly stuck without new answers.</description>
		<content:encoded><![CDATA[<p>Whining aside I have a simpler solution:<br />
Until there are <i>n</i> answers AND <i>m</i> minutes have passed since the first answer was posted voting should be closed. Bonus fancy pants implementation: pick <i>n</i> and <i>m</i> based on historical statistics for this hour of the week. Otherwise fix <i>n</i> to 3 and <i>m</i> to 60.</p>
<p>Other suggestions are:<br />
- Get a separate voting feed/view. This should show questions where there are new answers and link to the sub-page (if any) where the new answer is.</p>
<p>- Store a pseudo-random number generator salt per session. Use that generator to sort answers first by vote count then by the generator. This will be different per user and allow voting, once open, to happen not exactly based on time of answer. This doesn&#8217;t avoid the problem of a snowballing smart alec answer, like my own of &#8220;Learn English&#8221; for a complex question regarding emigration to England.</p>
<p>- People who answer well want points. People who vote want to rank. The two don&#8217;t exactly mesh. One person can vote up each answer, but can&#8217;t vote up one answer to be twice as good as another. At the least the question writer should receive Post-Factorial votes for the question; they are the person who knows what they asked, who won&#8217;t be titillated by a pun or cultural reference, and who&#8217;ll have tried every reasonable suggestion until they found a solution.</p>
<p>- A person should be able to post an answer to their own question and mark it as the right damn answer because they confirmed it to be true. Right now they can&#8217;t mark it or vote it to the top. Let them. Just don&#8217;t give them points for having the right answer.</p>
<p>- Since voting is about ranking and not points, new answers should get randomly inserted in the middle portion with <i>v</i> votes if there are more than <i>n</i> questions, not as a 0 vote answer way at the bottom. The question should then be put up for re-ranking, and people can move everything around then. That question getting down-voted to 0 won&#8217;t the poster points until it goes negative.</p>
<p>My personal whine is about how once my question is a month old or so, no one will add an answer even though I found none of the posts actually answered my question. What happens when someone wants to ask the same question, but then doesn&#8217;t because it&#8217;s been asked, [s]he&#8217;s similarly stuck without new answers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bobby Jack</title>
		<link>http://blog.stackoverflow.com/2008/10/solving-the-fastest-gun-in-the-west-problem/#comment-6961</link>
		<dc:creator>Bobby Jack</dc:creator>
		<pubDate>Wed, 08 Oct 2008 22:14:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=113#comment-6961</guid>
		<description>@James: Fair enough, &quot;Which bug tracking systems support sub-tickets&quot; would have been a far better title - maybe you can now edit it to improve the site. I think the headlines do carry such a lot of weight since that&#039;s what most of the audience base their decision to read, and hence answer, a question on.</description>
		<content:encoded><![CDATA[<p>@James: Fair enough, &#8220;Which bug tracking systems support sub-tickets&#8221; would have been a far better title &#8211; maybe you can now edit it to improve the site. I think the headlines do carry such a lot of weight since that&#8217;s what most of the audience base their decision to read, and hence answer, a question on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James McKay</title>
		<link>http://blog.stackoverflow.com/2008/10/solving-the-fastest-gun-in-the-west-problem/#comment-6960</link>
		<dc:creator>James McKay</dc:creator>
		<pubDate>Wed, 08 Oct 2008 20:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=113#comment-6960</guid>
		<description>@Bobby Jack: I see your point about the title of my question, and maybe I should have worded it a bit differently, but if you read the body of the question, you&#039;ll see that what I was asking was not subjective at all, but very specific, clear and unambiguous -- there is a feature X that I would like to see in bug trackers that I think would make it easy to integrate the workflow for both developers and project managers, does anyone know of one that has this feature?

It seems to me that the problem is that people only read the headline, they don&#039;t read the full question. I can understand why this would be for the trigger-happy give-me-the-reputation types, but it&#039;s a bit perplexing when it comes from someone doing some re-tagging, which AFAIK doesn&#039;t carry the same weight as answering quickly. And having a non-subjective question tagged as &quot;subjective&quot; *is* annoying -- as you say, it does have connotations of &quot;This is what Stack Overflow is not&quot; in a similar kind of vein as http://en.wikipedia.org/wiki/WP:NOT over on Wikipedia.</description>
		<content:encoded><![CDATA[<p>@Bobby Jack: I see your point about the title of my question, and maybe I should have worded it a bit differently, but if you read the body of the question, you&#8217;ll see that what I was asking was not subjective at all, but very specific, clear and unambiguous &#8212; there is a feature X that I would like to see in bug trackers that I think would make it easy to integrate the workflow for both developers and project managers, does anyone know of one that has this feature?</p>
<p>It seems to me that the problem is that people only read the headline, they don&#8217;t read the full question. I can understand why this would be for the trigger-happy give-me-the-reputation types, but it&#8217;s a bit perplexing when it comes from someone doing some re-tagging, which AFAIK doesn&#8217;t carry the same weight as answering quickly. And having a non-subjective question tagged as &#8220;subjective&#8221; *is* annoying &#8212; as you say, it does have connotations of &#8220;This is what Stack Overflow is not&#8221; in a similar kind of vein as <a href="http://en.wikipedia.org/wiki/WP:NOT" rel="nofollow">http://en.wikipedia.org/wiki/WP:NOT</a> over on Wikipedia.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://blog.stackoverflow.com/2008/10/solving-the-fastest-gun-in-the-west-problem/#comment-6944</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 08 Oct 2008 04:01:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=113#comment-6944</guid>
		<description>Jeff, I know this may be a bit unrelated, but I was hoping that you&#039;d take a bit of time and pay attention to CodingHorror. Cheers.</description>
		<content:encoded><![CDATA[<p>Jeff, I know this may be a bit unrelated, but I was hoping that you&#8217;d take a bit of time and pay attention to CodingHorror. Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BigBrain</title>
		<link>http://blog.stackoverflow.com/2008/10/solving-the-fastest-gun-in-the-west-problem/#comment-6938</link>
		<dc:creator>BigBrain</dc:creator>
		<pubDate>Tue, 07 Oct 2008 22:13:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=113#comment-6938</guid>
		<description>I am currently applying my big brain to solving this problem. Stand by</description>
		<content:encoded><![CDATA[<p>I am currently applying my big brain to solving this problem. Stand by</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon L</title>
		<link>http://blog.stackoverflow.com/2008/10/solving-the-fastest-gun-in-the-west-problem/#comment-6932</link>
		<dc:creator>Jon L</dc:creator>
		<pubDate>Tue, 07 Oct 2008 17:29:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=113#comment-6932</guid>
		<description>Quit your bitching. ;)

The only way this is a problem is if you&#039;re overly-competitive and going for the gold (rep).

I would know -- I AM overly-competitive and going for the rep. I&#039;m still trying to help and hopefully find good help, but the rep is nice. ;)

I also know that SO is community-regulated enough that it doesn&#039;t matter. If you shotgun an answer, your rep will probably get shotgunned as well. On the other hand, if you take your time, you&#039;ll more often have a better, more complete answer that gets community support.

It also depends on the question. Some don&#039;t need any more than a line of summary and a line of code. While others deserve a few paragraphs.</description>
		<content:encoded><![CDATA[<p>Quit your bitching. ;)</p>
<p>The only way this is a problem is if you&#8217;re overly-competitive and going for the gold (rep).</p>
<p>I would know &#8212; I AM overly-competitive and going for the rep. I&#8217;m still trying to help and hopefully find good help, but the rep is nice. ;)</p>
<p>I also know that SO is community-regulated enough that it doesn&#8217;t matter. If you shotgun an answer, your rep will probably get shotgunned as well. On the other hand, if you take your time, you&#8217;ll more often have a better, more complete answer that gets community support.</p>
<p>It also depends on the question. Some don&#8217;t need any more than a line of summary and a line of code. While others deserve a few paragraphs.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
