<?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: Script Responsibly</title>
	<atom:link href="http://blog.stackoverflow.com/2008/10/script-responsibly/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stackoverflow.com/2008/10/script-responsibly/</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: Jon Skeet</title>
		<link>http://blog.stackoverflow.com/2008/10/script-responsibly/#comment-8891</link>
		<dc:creator>Jon Skeet</dc:creator>
		<pubDate>Tue, 11 Nov 2008 22:02:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=140#comment-8891</guid>
		<description>Jeff (and anyone else interested in this),

If you could have a look at http://stackoverflow.com/questions/282179 I&#039;d be really grateful :)

Jon</description>
		<content:encoded><![CDATA[<p>Jeff (and anyone else interested in this),</p>
<p>If you could have a look at <a href="http://stackoverflow.com/questions/282179" rel="nofollow">http://stackoverflow.com/questions/282179</a> I&#8217;d be really grateful :)</p>
<p>Jon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Jester-Young</title>
		<link>http://blog.stackoverflow.com/2008/10/script-responsibly/#comment-8662</link>
		<dc:creator>Chris Jester-Young</dc:creator>
		<pubDate>Thu, 06 Nov 2008 21:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=140#comment-8662</guid>
		<description>I wonder, did a feed eventually get created for Dror Helper&#039;s program? There&#039;s a program I may be writing that would like to get a user&#039;s reputation score (and possibly other reputation metrics, such as seen in the reputation tab), and it would be nice to have a way to grab that in a lightweight fashion.</description>
		<content:encoded><![CDATA[<p>I wonder, did a feed eventually get created for Dror Helper&#8217;s program? There&#8217;s a program I may be writing that would like to get a user&#8217;s reputation score (and possibly other reputation metrics, such as seen in the reputation tab), and it would be nice to have a way to grab that in a lightweight fashion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JasonMichael</title>
		<link>http://blog.stackoverflow.com/2008/10/script-responsibly/#comment-8153</link>
		<dc:creator>JasonMichael</dc:creator>
		<pubDate>Thu, 30 Oct 2008 17:03:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=140#comment-8153</guid>
		<description>The lesson here:  

So if you&#039;re going to scrape or hack or whatever to a site, do it right.  Don&#039;t get caught!  Use some logic in that code :)</description>
		<content:encoded><![CDATA[<p>The lesson here:  </p>
<p>So if you&#8217;re going to scrape or hack or whatever to a site, do it right.  Don&#8217;t get caught!  Use some logic in that code :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: macbirdie</title>
		<link>http://blog.stackoverflow.com/2008/10/script-responsibly/#comment-8059</link>
		<dc:creator>macbirdie</dc:creator>
		<pubDate>Tue, 28 Oct 2008 20:35:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=140#comment-8059</guid>
		<description>If there were APIs to use, there could be some throttling in place, just like e.g. Delicious. It lets you do requests at most every couple of seconds, otherwise your ip gets banned for some time or permanently.
And like flickr, delicious APIs, there could be API keys given away so the client app is always identified and its author can act accordingly, in case his app is doing something bad to the site.</description>
		<content:encoded><![CDATA[<p>If there were APIs to use, there could be some throttling in place, just like e.g. Delicious. It lets you do requests at most every couple of seconds, otherwise your ip gets banned for some time or permanently.<br />
And like flickr, delicious APIs, there could be API keys given away so the client app is always identified and its author can act accordingly, in case his app is doing something bad to the site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Rudy</title>
		<link>http://blog.stackoverflow.com/2008/10/script-responsibly/#comment-8055</link>
		<dc:creator>John Rudy</dc:creator>
		<pubDate>Tue, 28 Oct 2008 17:28:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=140#comment-8055</guid>
		<description>Regarding bannings: It&#039;s unfortunate, but occasionally necessary. I agree there should be a mechanism to request getting unbanned, but malicious software -- even when it is unintentionally malicious -- needs to be kept in check. Jeff&#039;s doing the right thing.

The software writers need to understand that screen scraping sites is generally bad form -- not only is your app inherently fragile (although less so with SO&#039;s very clean design), but you can cause serious downstream effects if your app becomes extremely popular, and even worse if your app contains a bug that causes overpolling.

I would love to have some extra &quot;cool tools&quot; for SO that aren&#039;t available yet. (My own personal itch is a nice Vista sidebar gadget that shows rep, rep changes, my active Qs and maybe even the top X questions regarding my preference tags ... ) But I&#039;m not willing to kill my new favorite site to get them. :) 

It&#039;s easy to armchair quarterback, but I don&#039;t think RSS feeds are the only answer. They&#039;re a good answer for many purposes, but perhaps some web service API -- one which places a much lighter load on the server -- might be the way to go? Perhaps requiring apps which use it to authenticate somehow so you know which apps are misbehaving and you can kill switch them?

Of course, based on Uservoice, you probably have enough on your plate already without needing to add that huge effort on top of it!</description>
		<content:encoded><![CDATA[<p>Regarding bannings: It&#8217;s unfortunate, but occasionally necessary. I agree there should be a mechanism to request getting unbanned, but malicious software &#8212; even when it is unintentionally malicious &#8212; needs to be kept in check. Jeff&#8217;s doing the right thing.</p>
<p>The software writers need to understand that screen scraping sites is generally bad form &#8212; not only is your app inherently fragile (although less so with SO&#8217;s very clean design), but you can cause serious downstream effects if your app becomes extremely popular, and even worse if your app contains a bug that causes overpolling.</p>
<p>I would love to have some extra &#8220;cool tools&#8221; for SO that aren&#8217;t available yet. (My own personal itch is a nice Vista sidebar gadget that shows rep, rep changes, my active Qs and maybe even the top X questions regarding my preference tags &#8230; ) But I&#8217;m not willing to kill my new favorite site to get them. :) </p>
<p>It&#8217;s easy to armchair quarterback, but I don&#8217;t think RSS feeds are the only answer. They&#8217;re a good answer for many purposes, but perhaps some web service API &#8212; one which places a much lighter load on the server &#8212; might be the way to go? Perhaps requiring apps which use it to authenticate somehow so you know which apps are misbehaving and you can kill switch them?</p>
<p>Of course, based on Uservoice, you probably have enough on your plate already without needing to add that huge effort on top of it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boobface</title>
		<link>http://blog.stackoverflow.com/2008/10/script-responsibly/#comment-8048</link>
		<dc:creator>Boobface</dc:creator>
		<pubDate>Tue, 28 Oct 2008 10:49:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=140#comment-8048</guid>
		<description>You can&#039;t have a rep penalty because the people are scraping as anonymous, and if you assume they are the user for whom the user page is being pulled people could set up bots to scrape other user&#039;s pages just to mess with their rep.</description>
		<content:encoded><![CDATA[<p>You can&#8217;t have a rep penalty because the people are scraping as anonymous, and if you assume they are the user for whom the user page is being pulled people could set up bots to scrape other user&#8217;s pages just to mess with their rep.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Hasler</title>
		<link>http://blog.stackoverflow.com/2008/10/script-responsibly/#comment-8013</link>
		<dc:creator>Sam Hasler</dc:creator>
		<pubDate>Mon, 27 Oct 2008 17:58:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=140#comment-8013</guid>
		<description>Why not have a rep penalty for such behaviour and put one of those orange notices at the top of the user&#039;s page explaining why. When people see their rep start to plummet they&#039;ll stop doing it.</description>
		<content:encoded><![CDATA[<p>Why not have a rep penalty for such behaviour and put one of those orange notices at the top of the user&#8217;s page explaining why. When people see their rep start to plummet they&#8217;ll stop doing it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://blog.stackoverflow.com/2008/10/script-responsibly/#comment-8009</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Mon, 27 Oct 2008 14:31:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=140#comment-8009</guid>
		<description>I certainly don&#039;t scrape... but I would love to see the RSS feeds for accounts return comments to our answers.  Right now the only way to see those is via the user webpage.</description>
		<content:encoded><![CDATA[<p>I certainly don&#8217;t scrape&#8230; but I would love to see the RSS feeds for accounts return comments to our answers.  Right now the only way to see those is via the user webpage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony Potts</title>
		<link>http://blog.stackoverflow.com/2008/10/script-responsibly/#comment-7975</link>
		<dc:creator>Anthony Potts</dc:creator>
		<pubDate>Sun, 26 Oct 2008 18:59:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=140#comment-7975</guid>
		<description>Is there anyway to submit an IP address to be unbanned? I was using some software that was polling regularly, which I did not write.</description>
		<content:encoded><![CDATA[<p>Is there anyway to submit an IP address to be unbanned? I was using some software that was polling regularly, which I did not write.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dror Helper</title>
		<link>http://blog.stackoverflow.com/2008/10/script-responsibly/#comment-7968</link>
		<dc:creator>Dror Helper</dc:creator>
		<pubDate>Sun, 26 Oct 2008 17:33:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=140#comment-7968</guid>
		<description>You&#039;re right! I&#039;ve found the bug that caused the problem - I&#039;ve updated the release with 1 hour polling interval and posted an update on codeplex as well as in my blog.

Is there a way I can Id the application calls so we can make sure it doesn&#039;t misbehaves.

BTW
I still getting the 401 response from your site. Can you please remove the ban from any users that accidentally caused the massive polling?</description>
		<content:encoded><![CDATA[<p>You&#8217;re right! I&#8217;ve found the bug that caused the problem &#8211; I&#8217;ve updated the release with 1 hour polling interval and posted an update on codeplex as well as in my blog.</p>
<p>Is there a way I can Id the application calls so we can make sure it doesn&#8217;t misbehaves.</p>
<p>BTW<br />
I still getting the 401 response from your site. Can you please remove the ban from any users that accidentally caused the massive polling?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
