<?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 David Verhasselt</title>
	<atom:link href="http://www.davidverhasselt.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidverhasselt.com</link>
	<description>Web Application gun for hire</description>
	<lastBuildDate>Tue, 14 Feb 2012 17:42:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on A Distributed Mutex and Semaphore using Redis by Today Download</title>
		<link>http://www.davidverhasselt.com/2011/08/06/a-distributed-mutex-and-semaphore-using-redis/comment-page-1/#comment-232</link>
		<dc:creator>Today Download</dc:creator>
		<pubDate>Tue, 14 Feb 2012 17:42:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidverhasselt.com/?p=419#comment-232</guid>
		<description> I have been through the whole content of this blog which is very informative and knowledgeable stuff, I would like to visit again </description>
		<content:encoded><![CDATA[<p>I have been through the whole content of this blog which is very informative and knowledgeable stuff, I would like to visit again</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 5 Ways to set Attributes in ActiveRecord by Today download</title>
		<link>http://www.davidverhasselt.com/2011/06/28/5-ways-to-set-attributes-in-activerecord/comment-page-1/#comment-219</link>
		<dc:creator>Today download</dc:creator>
		<pubDate>Sat, 17 Dec 2011 11:55:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.crowdway.com/?p=362#comment-219</guid>
		<description>Excellent post. I want to thank you for this informative read, I really appreciate 
sharing this great post. Keep up your work. Thanks for this very useful info you 
have provided us. </description>
		<content:encoded><![CDATA[<p>Excellent post. I want to thank you for this informative read, I really appreciate<br />
sharing this great post. Keep up your work. Thanks for this very useful info you<br />
have provided us.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Distributed Mutex and Semaphore using Redis by Today download</title>
		<link>http://www.davidverhasselt.com/2011/08/06/a-distributed-mutex-and-semaphore-using-redis/comment-page-1/#comment-218</link>
		<dc:creator>Today download</dc:creator>
		<pubDate>Sat, 17 Dec 2011 11:55:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidverhasselt.com/?p=419#comment-218</guid>
		<description>You must agree, I love this article. It contains lots of useful information. 
in this post you can set up my new ideas 
 </description>
		<content:encoded><![CDATA[<p>You must agree, I love this article. It contains lots of useful information.<br />
in this post you can set up my new ideas</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Git How-To: Remove Your Password from a Repository by Today download</title>
		<link>http://www.davidverhasselt.com/2010/09/14/git-how-to-remove-your-password-from-a-repository/comment-page-1/#comment-217</link>
		<dc:creator>Today download</dc:creator>
		<pubDate>Sat, 17 Dec 2011 11:53:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.crowdway.com/?p=277#comment-217</guid>
		<description>This was really very nice posting in this blog. I had really liked the stuff very much. 
 The information was very cordial. Thanks!  </description>
		<content:encoded><![CDATA[<p>This was really very nice posting in this blog. I had really liked the stuff very much.<br />
 The information was very cordial. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zenity and rsync by RDuke</title>
		<link>http://www.davidverhasselt.com/2008/12/24/zenity-rsync-and-awk/comment-page-1/#comment-211</link>
		<dc:creator>RDuke</dc:creator>
		<pubDate>Sun, 06 Nov 2011 16:20:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.crowdway.com/?p=102#comment-211</guid>
		<description>Thanks for this post! I was thinking about how to get a total progress for rsync for quite a while, and this finally encouraged me to just do it. Until rsync includes some total progress functionality, this is quite nice. 
 
I wanted to also get the original rsync output in the Terminal, so I made a slightly different version, and used Perl rather than awk, because I know it better. In case someone finds it useful, here is the version I&#039;m using. 
 
&lt;pre&gt; 
    #!/usr/bin/perl 
    ## Parse rsync --verbose --progress output for zenity 
 
    $&#124;++; 
 
    while (&lt;&gt;) { 
        warn $_; 
        if ( m&#124;^s+.*to-check=(d+)/(d+)&#124; ) { 
            printf &quot;%.0f
&quot;, 100 - (100 * $1 / $2); 
        } 
        else { 
            print &quot;#$_&quot;; 
        } 
    } 
&lt;/pre&gt; </description>
		<content:encoded><![CDATA[<p>Thanks for this post! I was thinking about how to get a total progress for rsync for quite a while, and this finally encouraged me to just do it. Until rsync includes some total progress functionality, this is quite nice. </p>
<p>I wanted to also get the original rsync output in the Terminal, so I made a slightly different version, and used Perl rather than awk, because I know it better. In case someone finds it useful, here is the version I&#039;m using. </p>
<p>&lt;pre&gt;<br />
    #!/usr/bin/perl<br />
    ## Parse rsync &#8211;verbose &#8211;progress output for zenity </p>
<p>    $|++; </p>
<p>    while (&lt;&gt;) {<br />
        warn $_;<br />
        if ( m|^s+.*to-check=(d+)/(d+)| ) {<br />
            printf &quot;%.0f<br />
&quot;, 100 &#8211; (100 * $1 / $2);<br />
        }<br />
        else {<br />
            print &quot;#$_&quot;;<br />
        }<br />
    }<br />
&lt;/pre&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zenity and rsync by GGG</title>
		<link>http://www.davidverhasselt.com/2008/12/24/zenity-rsync-and-awk/comment-page-1/#comment-210</link>
		<dc:creator>GGG</dc:creator>
		<pubDate>Sat, 29 Oct 2011 04:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.crowdway.com/?p=102#comment-210</guid>
		<description>man dialog, see --gauge option </description>
		<content:encoded><![CDATA[<p>man dialog, see &#8211;gauge option</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hide Data in Bad Blocks by indrunk</title>
		<link>http://www.davidverhasselt.com/2009/04/22/hide-data-in-bad-blocks/comment-page-1/#comment-209</link>
		<dc:creator>indrunk</dc:creator>
		<pubDate>Mon, 24 Oct 2011 10:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.crowdway.com/?p=81#comment-209</guid>
		<description>I mean,i want to create an unallocated space for my bad sector..do i have to use the truecrypt along with it or should i do fine with the calculation</description>
		<content:encoded><![CDATA[<p>I mean,i want to create an unallocated space for my bad sector..do i have to use the truecrypt along with it or should i do fine with the calculation</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hide Data in Bad Blocks by indrunk</title>
		<link>http://www.davidverhasselt.com/2009/04/22/hide-data-in-bad-blocks/comment-page-1/#comment-208</link>
		<dc:creator>indrunk</dc:creator>
		<pubDate>Mon, 24 Oct 2011 10:28:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.crowdway.com/?p=81#comment-208</guid>
		<description>Can this be applied on a 2Tb hdd sata? 
So my winxp wont touch my bad sector &amp; i dont have to worry for system freeze or any risk on spreading the bad sector </description>
		<content:encoded><![CDATA[<p>Can this be applied on a 2Tb hdd sata?</p>
<p>So my winxp wont touch my bad sector &amp; i dont have to worry for system freeze or any risk on spreading the bad sector</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Munin and Apache: Can&#8217;t locate object method by justincarmony</title>
		<link>http://www.davidverhasselt.com/2009/07/08/munin-and-apache-cant-locate-object-method/comment-page-1/#comment-206</link>
		<dc:creator>justincarmony</dc:creator>
		<pubDate>Thu, 13 Oct 2011 06:06:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.crowdway.com/?p=254#comment-206</guid>
		<description>thank you! Saved me a headache trying to figure out what was wrong. </description>
		<content:encoded><![CDATA[<p>thank you! Saved me a headache trying to figure out what was wrong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Git How-To: Remove Your Password from a Repository by porn</title>
		<link>http://www.davidverhasselt.com/2010/09/14/git-how-to-remove-your-password-from-a-repository/comment-page-1/#comment-205</link>
		<dc:creator>porn</dc:creator>
		<pubDate>Wed, 12 Oct 2011 05:07:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.crowdway.com/?p=277#comment-205</guid>
		<description>Excellent texte. L&#039;article est la suite à celui. </description>
		<content:encoded><![CDATA[<p>Excellent texte. L&#8217;article est la suite à celui.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

