<?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/"
		>
<channel>
	<title>Comments for newthink.net</title>
	<atom:link href="http://www.newthink.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.newthink.net</link>
	<description>Less Talk. More Do.</description>
	<lastBuildDate>Thu, 27 Sep 2012 05:19:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on SMARTHOST Authentication With Sendmail by Jeff C</title>
		<link>http://www.newthink.net/2007/05/18/smarthost-authentication-with-sendmail/comment-page-1/#comment-34286</link>
		<dc:creator>Jeff C</dc:creator>
		<pubDate>Thu, 27 Sep 2012 05:19:42 +0000</pubDate>
		<guid isPermaLink="false">http://newthink.net/blog/2007/05/18/smarthost-authentication-with-sendmail/#comment-34286</guid>
		<description>While this works, a better solution for most users is to change their mail client to send mail over port 587 instead of port 25:

http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol</description>
		<content:encoded><![CDATA[<p>While this works, a better solution for most users is to change their mail client to send mail over port 587 instead of port 25:</p>
<p><a href="http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol" rel="nofollow">http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Central Git Repository by GitStack</title>
		<link>http://www.newthink.net/2009/09/20/simple-central-git-repository/comment-page-1/#comment-33938</link>
		<dc:creator>GitStack</dc:creator>
		<pubDate>Sun, 16 Sep 2012 14:29:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.newthink.net/?p=154#comment-33938</guid>
		<description>Hello,

Happy to read that you use Git instead of Subversion. Git is documented like SVN but more powerful now.
Moreover, Git community grows up each day and it&#039;s good news for Linus&#039;s tool.

Have a good day,</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Happy to read that you use Git instead of Subversion. Git is documented like SVN but more powerful now.<br />
Moreover, Git community grows up each day and it&#8217;s good news for Linus&#8217;s tool.</p>
<p>Have a good day,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Central Git Repository by cplusn.com &#187; Blog Archive &#187; Pousser son dépôt git vers un serveur</title>
		<link>http://www.newthink.net/2009/09/20/simple-central-git-repository/comment-page-1/#comment-33917</link>
		<dc:creator>cplusn.com &#187; Blog Archive &#187; Pousser son dépôt git vers un serveur</dc:creator>
		<pubDate>Sat, 15 Sep 2012 20:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.newthink.net/?p=154#comment-33917</guid>
		<description>[...] partir de Simple Central Git Repository [...]</description>
		<content:encoded><![CDATA[<p>[...] partir de Simple Central Git Repository [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Solving The HTTP Double-Post Dilema by sdraco</title>
		<link>http://www.newthink.net/2007/03/06/solving-the-double-post-dilema/comment-page-1/#comment-24648</link>
		<dc:creator>sdraco</dc:creator>
		<pubDate>Sat, 12 May 2012 11:33:14 +0000</pubDate>
		<guid isPermaLink="false">http://newthink.net/blog/2007/03/06/solving-the-double-post-dilema/#comment-24648</guid>
		<description>This sucks IMHO. You should have 2 scripts in separate files, one will render form and other will process data. There is nothing easier than send headers in process script and come back to previous page. You can store previous URL in hidden field.</description>
		<content:encoded><![CDATA[<p>This sucks IMHO. You should have 2 scripts in separate files, one will render form and other will process data. There is nothing easier than send headers in process script and come back to previous page. You can store previous URL in hidden field.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Solving The HTTP Double-Post Dilema by Rene</title>
		<link>http://www.newthink.net/2007/03/06/solving-the-double-post-dilema/comment-page-1/#comment-13988</link>
		<dc:creator>Rene</dc:creator>
		<pubDate>Wed, 13 Jul 2011 00:09:17 +0000</pubDate>
		<guid isPermaLink="false">http://newthink.net/blog/2007/03/06/solving-the-double-post-dilema/#comment-13988</guid>
		<description>Depending on everyones application it&#039;s not allways possible to send headers when ever I want/need. If you already go into storing stuff in SESSION, I suggest another approach:
in your form set a hidden tag with a random number as a value (or you can use UNIX timestamp also). Now each time you get a form submit you check:
1) if the timestamp you got from POST isn&#039;t in the SESSION or it&#039;s different form the one in SESSION then it&#039;s the first or new POST and you store data into DB. NB! And you now store this timestamp in SESSION.
2) if the timestamp matches the one already in SESSION you know it&#039;s a repost and you discard it.</description>
		<content:encoded><![CDATA[<p>Depending on everyones application it&#8217;s not allways possible to send headers when ever I want/need. If you already go into storing stuff in SESSION, I suggest another approach:<br />
in your form set a hidden tag with a random number as a value (or you can use UNIX timestamp also). Now each time you get a form submit you check:<br />
1) if the timestamp you got from POST isn&#8217;t in the SESSION or it&#8217;s different form the one in SESSION then it&#8217;s the first or new POST and you store data into DB. NB! And you now store this timestamp in SESSION.<br />
2) if the timestamp matches the one already in SESSION you know it&#8217;s a repost and you discard it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Central Git Repository by Adam</title>
		<link>http://www.newthink.net/2009/09/20/simple-central-git-repository/comment-page-1/#comment-7749</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 14 Dec 2010 23:25:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.newthink.net/?p=154#comment-7749</guid>
		<description>Nick, 

It looks like things have indeed changed for ubuntu 10.04.  The only difference that I found was to the server path in the  /etc/xinetd.d/git file.

in 10.04 it&#039;s located at:
/usr/lib/git-core/git-daemon</description>
		<content:encoded><![CDATA[<p>Nick, </p>
<p>It looks like things have indeed changed for ubuntu 10.04.  The only difference that I found was to the server path in the  /etc/xinetd.d/git file.</p>
<p>in 10.04 it&#8217;s located at:<br />
/usr/lib/git-core/git-daemon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Central Git Repository by Nick Lee</title>
		<link>http://www.newthink.net/2009/09/20/simple-central-git-repository/comment-page-1/#comment-7552</link>
		<dc:creator>Nick Lee</dc:creator>
		<pubDate>Fri, 19 Nov 2010 12:27:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.newthink.net/?p=154#comment-7552</guid>
		<description>On Ubuntu 10.04, the instructions for anonymous cloning result in &quot;connection refused&quot; or &quot;connection reset by peer&quot; when you try and do the git clone.  Telnetting to port 9418 results in the same.  I&#039;m assuming Ubuntu has moved a few things around since this was written?</description>
		<content:encoded><![CDATA[<p>On Ubuntu 10.04, the instructions for anonymous cloning result in &#8220;connection refused&#8221; or &#8220;connection reset by peer&#8221; when you try and do the git clone.  Telnetting to port 9418 results in the same.  I&#8217;m assuming Ubuntu has moved a few things around since this was written?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Central Git Repository by Victor</title>
		<link>http://www.newthink.net/2009/09/20/simple-central-git-repository/comment-page-1/#comment-6782</link>
		<dc:creator>Victor</dc:creator>
		<pubDate>Thu, 22 Jul 2010 15:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.newthink.net/?p=154#comment-6782</guid>
		<description>What if i do not have the file /usr/bin/git-daemon ?? in my Ubuntu 10.04</description>
		<content:encoded><![CDATA[<p>What if i do not have the file /usr/bin/git-daemon ?? in my Ubuntu 10.04</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Solving The HTTP Double-Post Dilema by shafi</title>
		<link>http://www.newthink.net/2007/03/06/solving-the-double-post-dilema/comment-page-1/#comment-6677</link>
		<dc:creator>shafi</dc:creator>
		<pubDate>Thu, 10 Jun 2010 18:07:31 +0000</pubDate>
		<guid isPermaLink="false">http://newthink.net/blog/2007/03/06/solving-the-double-post-dilema/#comment-6677</guid>
		<description>wow... i never thought i could do like this way.. great thinking man. if this is from ur brain. i admire u. thanks a lot</description>
		<content:encoded><![CDATA[<p>wow&#8230; i never thought i could do like this way.. great thinking man. if this is from ur brain. i admire u. thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Central Git Repository by Albert Peschar</title>
		<link>http://www.newthink.net/2009/09/20/simple-central-git-repository/comment-page-1/#comment-5036</link>
		<dc:creator>Albert Peschar</dc:creator>
		<pubDate>Thu, 03 Dec 2009 20:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.newthink.net/?p=154#comment-5036</guid>
		<description>You don&#039;t need to install the &lt;code&gt;git&lt;/code&gt; package, which is the package for the &lt;i&gt;GNU Interactive Tools&lt;/i&gt;. You should only install the &lt;code&gt;git-core&lt;/code&gt; package. ;)</description>
		<content:encoded><![CDATA[<p>You don&#8217;t need to install the <code>git</code> package, which is the package for the <i>GNU Interactive Tools</i>. You should only install the <code>git-core</code> package. <img src='http://www.newthink.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting Up Subversion On Fedora 8 by naren</title>
		<link>http://www.newthink.net/2007/11/28/setting-up-subversion-on-fedora-8/comment-page-1/#comment-4235</link>
		<dc:creator>naren</dc:creator>
		<pubDate>Thu, 02 Jul 2009 01:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://newthink.net/blog/2007/11/28/setting-up-subversion-on-fedora-8/#comment-4235</guid>
		<description>Great post, thanks for sharing with us.</description>
		<content:encoded><![CDATA[<p>Great post, thanks for sharing with us.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting Up Subversion On Fedora 8 by pank</title>
		<link>http://www.newthink.net/2007/11/28/setting-up-subversion-on-fedora-8/comment-page-1/#comment-4179</link>
		<dc:creator>pank</dc:creator>
		<pubDate>Fri, 26 Jun 2009 06:02:36 +0000</pubDate>
		<guid isPermaLink="false">http://newthink.net/blog/2007/11/28/setting-up-subversion-on-fedora-8/#comment-4179</guid>
		<description>How to stop the running svn?</description>
		<content:encoded><![CDATA[<p>How to stop the running svn?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Interview by jhon</title>
		<link>http://www.newthink.net/2008/02/18/google-interviews-have-kept-me-busy/comment-page-1/#comment-4168</link>
		<dc:creator>jhon</dc:creator>
		<pubDate>Thu, 25 Jun 2009 06:17:18 +0000</pubDate>
		<guid isPermaLink="false">http://newthink.net/blog/2008/02/18/google-interviews-have-kept-me-busy/#comment-4168</guid>
		<description>Hi,
   I interviewed for the associate product manager position at google, you can read it up here

http://ferozeh.com/Interviews/Google/google.php</description>
		<content:encoded><![CDATA[<p>Hi,<br />
   I interviewed for the associate product manager position at google, you can read it up here</p>
<p><a href="http://ferozeh.com/Interviews/Google/google.php" rel="nofollow">http://ferozeh.com/Interviews/Google/google.php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Interview by Ash Christopher</title>
		<link>http://www.newthink.net/2008/02/18/google-interviews-have-kept-me-busy/comment-page-1/#comment-2303</link>
		<dc:creator>Ash Christopher</dc:creator>
		<pubDate>Wed, 25 Feb 2009 05:05:13 +0000</pubDate>
		<guid isPermaLink="false">http://newthink.net/blog/2008/02/18/google-interviews-have-kept-me-busy/#comment-2303</guid>
		<description>That would be true if you were given plane tickets with departure dates - in this case, only arrival and departure cities were on the tickets. 

(Obviously I wasn&#039;t clear enough in the question).</description>
		<content:encoded><![CDATA[<p>That would be true if you were given plane tickets with departure dates &#8211; in this case, only arrival and departure cities were on the tickets. </p>
<p>(Obviously I wasn&#8217;t clear enough in the question).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting Up Subversion On Fedora 8 by Yousuf</title>
		<link>http://www.newthink.net/2007/11/28/setting-up-subversion-on-fedora-8/comment-page-1/#comment-2137</link>
		<dc:creator>Yousuf</dc:creator>
		<pubDate>Wed, 11 Feb 2009 22:52:19 +0000</pubDate>
		<guid isPermaLink="false">http://newthink.net/blog/2007/11/28/setting-up-subversion-on-fedora-8/#comment-2137</guid>
		<description>its &quot;svnserve&quot; not &quot;svnserv&quot; .. again a typo :)</description>
		<content:encoded><![CDATA[<p>its &#8220;svnserve&#8221; not &#8220;svnserv&#8221; .. again a typo <img src='http://www.newthink.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Interview by khoa</title>
		<link>http://www.newthink.net/2008/02/18/google-interviews-have-kept-me-busy/comment-page-1/#comment-1801</link>
		<dc:creator>khoa</dc:creator>
		<pubDate>Sun, 11 Jan 2009 20:20:14 +0000</pubDate>
		<guid isPermaLink="false">http://newthink.net/blog/2008/02/18/google-interviews-have-kept-me-busy/#comment-1801</guid>
		<description>The third question.. 
Given a plane ticket has start and end time, just short by the start time and you&#039;ll get a sorted list. This represent the order that you should use</description>
		<content:encoded><![CDATA[<p>The third question..<br />
Given a plane ticket has start and end time, just short by the start time and you&#8217;ll get a sorted list. This represent the order that you should use</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The API is the Application by Ash Christopher</title>
		<link>http://www.newthink.net/2008/10/20/the-api-is-the-application/comment-page-1/#comment-1719</link>
		<dc:creator>Ash Christopher</dc:creator>
		<pubDate>Wed, 31 Dec 2008 05:39:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.newthink.net/?p=90#comment-1719</guid>
		<description>REST implies stateless data, so it wouldn&#039;t really be useful for applications such as wizards. It could be used to populate data when interacting with a wizard.

Data that was entered on a previous screen would be presumably stored in the session somewhere, and that data may be passed to a REST resource which would return data to populate the page.</description>
		<content:encoded><![CDATA[<p>REST implies stateless data, so it wouldn&#8217;t really be useful for applications such as wizards. It could be used to populate data when interacting with a wizard.</p>
<p>Data that was entered on a previous screen would be presumably stored in the session somewhere, and that data may be passed to a REST resource which would return data to populate the page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The API is the Application by Bill</title>
		<link>http://www.newthink.net/2008/10/20/the-api-is-the-application/comment-page-1/#comment-1718</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Wed, 31 Dec 2008 05:28:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.newthink.net/?p=90#comment-1718</guid>
		<description>Hmmm... sounds like a reasonable way to do something simple, but how do you handle stateful applications. i.e. What happens now is different from what happened earlier based on a change that was made. A simple Request (What is the weather like in Waterloo, ON) and allowes for a simple response. If you need to process a stream of interactions (i.e. a Wizard) it sounds like you&#039;d have to do something else other than REST to make that happen.</description>
		<content:encoded><![CDATA[<p>Hmmm&#8230; sounds like a reasonable way to do something simple, but how do you handle stateful applications. i.e. What happens now is different from what happened earlier based on a change that was made. A simple Request (What is the weather like in Waterloo, ON) and allowes for a simple response. If you need to process a stream of interactions (i.e. a Wizard) it sounds like you&#8217;d have to do something else other than REST to make that happen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Solving The HTTP Double-Post Dilema by Android</title>
		<link>http://www.newthink.net/2007/03/06/solving-the-double-post-dilema/comment-page-1/#comment-1002</link>
		<dc:creator>Android</dc:creator>
		<pubDate>Thu, 13 Nov 2008 15:16:28 +0000</pubDate>
		<guid isPermaLink="false">http://newthink.net/blog/2007/03/06/solving-the-double-post-dilema/#comment-1002</guid>
		<description>Thanks a lot. You solved my problem.</description>
		<content:encoded><![CDATA[<p>Thanks a lot. You solved my problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SMARTHOST Authentication With Sendmail by Getting Sendmail to work with Rogers and Smarthost settings</title>
		<link>http://www.newthink.net/2007/05/18/smarthost-authentication-with-sendmail/comment-page-1/#comment-956</link>
		<dc:creator>Getting Sendmail to work with Rogers and Smarthost settings</dc:creator>
		<pubDate>Tue, 11 Nov 2008 01:13:32 +0000</pubDate>
		<guid isPermaLink="false">http://newthink.net/blog/2007/05/18/smarthost-authentication-with-sendmail/#comment-956</guid>
		<description>[...] http://www.newthink.net/2007/05/18/smarthost-authentication-with-sendmail/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.newthink.net/2007/05/18/smarthost-authentication-with-sendmail/" rel="nofollow">http://www.newthink.net/2007/05/18/smarthost-authentication-with-sendmail/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
