<?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 chrishowie.com</title>
	<atom:link href="http://www.chrishowie.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chrishowie.com</link>
	<description>The best laid plans are in my other pants</description>
	<lastBuildDate>Thu, 01 Dec 2011 15:21:02 +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 OpenVP has landed by Chris</title>
		<link>http://www.chrishowie.com/2010/08/20/openvp-has-landed/comment-page-1/#comment-71456</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 01 Dec 2011 15:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishowie.com/?p=430#comment-71456</guid>
		<description>@Neil: You&#039;ll have to compile and install the package using the standard &quot;./configure &amp;&amp; make &amp;&amp; su -c &#039;make install&#039;&quot; idiom.</description>
		<content:encoded><![CDATA[<p>@Neil: You&#8217;ll have to compile and install the package using the standard &#8220;./configure &#038;&#038; make &#038;&#038; su -c &#8216;make install&#8217;&#8221; idiom.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenVP has landed by Neil Myrick</title>
		<link>http://www.chrishowie.com/2010/08/20/openvp-has-landed/comment-page-1/#comment-67604</link>
		<dc:creator>Neil Myrick</dc:creator>
		<pubDate>Mon, 07 Nov 2011 16:13:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishowie.com/?p=430#comment-67604</guid>
		<description>I clicked on the OpenVP link above and downloaded the bz2 package, now how do i install it? The Readme file gives no info about installation process.

Is it just a matter of extracting the folder to a certain location? If so, where?  I have Ubuntu 10.04 and Banshee 2.0.1</description>
		<content:encoded><![CDATA[<p>I clicked on the OpenVP link above and downloaded the bz2 package, now how do i install it? The Readme file gives no info about installation process.</p>
<p>Is it just a matter of extracting the folder to a certain location? If so, where?  I have Ubuntu 10.04 and Banshee 2.0.1</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What I dislike about C++, part 1: References by Ed Avis</title>
		<link>http://www.chrishowie.com/2011/09/27/what-i-dislike-about-c-plus-plus-part-1-references/comment-page-1/#comment-62380</link>
		<dc:creator>Ed Avis</dc:creator>
		<pubDate>Fri, 30 Sep 2011 11:34:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishowie.com/?p=468#comment-62380</guid>
		<description>The worst thing is that the one place where a reference would really have made sense - &#039;this&#039; - it isn&#039;t used and we have pointer syntax instead, even though &#039;this&#039; cannot be assigned to and is never null.  (References were added to the language after instance functions, but a new keyword &#039;self&#039; would be great.)</description>
		<content:encoded><![CDATA[<p>The worst thing is that the one place where a reference would really have made sense &#8211; &#8216;this&#8217; &#8211; it isn&#8217;t used and we have pointer syntax instead, even though &#8216;this&#8217; cannot be assigned to and is never null.  (References were added to the language after instance functions, but a new keyword &#8216;self&#8217; would be great.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What I dislike about C++, part 1: References by Chris</title>
		<link>http://www.chrishowie.com/2011/09/27/what-i-dislike-about-c-plus-plus-part-1-references/comment-page-1/#comment-62165</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 28 Sep 2011 21:52:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishowie.com/?p=468#comment-62165</guid>
		<description>I can understand that point.  My counter-argument is that this feature causes obfuscation of &lt;i&gt;every function call everywhere&lt;/i&gt; since one can no longer be certain when things are being passed by reference.</description>
		<content:encoded><![CDATA[<p>I can understand that point.  My counter-argument is that this feature causes obfuscation of <i>every function call everywhere</i> since one can no longer be certain when things are being passed by reference.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What I dislike about C++, part 1: References by Ed Avis</title>
		<link>http://www.chrishowie.com/2011/09/27/what-i-dislike-about-c-plus-plus-part-1-references/comment-page-1/#comment-62052</link>
		<dc:creator>Ed Avis</dc:creator>
		<pubDate>Wed, 28 Sep 2011 08:36:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishowie.com/?p=468#comment-62052</guid>
		<description>I guess one argument in favour is that it lets you optimize by taking parameters by reference when possible, without the caller having to know about the optimization.

The first version of your library might have bar(Foo f).  Later you find a better algorithm that can work with an immutable Foo object so you change your library function to bar(const Foo&amp; f).  Now the code runs faster (if Foo is a big object) but the caller doesn&#039;t have to care.

When you get into non-const references, such that a function call may sneakily modify the object you passed it, it does get a little confusing.  swap(a, b) is nice syntax but that&#039;s not enough justification.</description>
		<content:encoded><![CDATA[<p>I guess one argument in favour is that it lets you optimize by taking parameters by reference when possible, without the caller having to know about the optimization.</p>
<p>The first version of your library might have bar(Foo f).  Later you find a better algorithm that can work with an immutable Foo object so you change your library function to bar(const Foo&amp; f).  Now the code runs faster (if Foo is a big object) but the caller doesn&#8217;t have to care.</p>
<p>When you get into non-const references, such that a function call may sneakily modify the object you passed it, it does get a little confusing.  swap(a, b) is nice syntax but that&#8217;s not enough justification.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bitcoin for Humans series by Anna J. Stites</title>
		<link>http://www.chrishowie.com/2011/06/09/bitcoin-for-humans-series/comment-page-1/#comment-60845</link>
		<dc:creator>Anna J. Stites</dc:creator>
		<pubDate>Mon, 19 Sep 2011 09:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishowie.com/?p=449#comment-60845</guid>
		<description>This is going to be the start of a whole new understanding of our finance system. A great bottom-up experiment.thumbs up for the creators!</description>
		<content:encoded><![CDATA[<p>This is going to be the start of a whole new understanding of our finance system. A great bottom-up experiment.thumbs up for the creators!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Banshee, meet OpenVP by Scott</title>
		<link>http://www.chrishowie.com/2008/04/30/banshee-meet-openvp/comment-page-1/#comment-53959</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Tue, 19 Jul 2011 23:12:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishowie.com/?p=83#comment-53959</guid>
		<description>I was wondering what it would take to convert .milk files (winamp milkdrop presets) to your presets? I would be willing to do the work if i could get a guide.</description>
		<content:encoded><![CDATA[<p>I was wondering what it would take to convert .milk files (winamp milkdrop presets) to your presets? I would be willing to do the work if i could get a guide.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linux &#8220;Jailer&#8221; by Chris</title>
		<link>http://www.chrishowie.com/2006/12/31/linux-jailer/comment-page-1/#comment-50775</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sun, 26 Jun 2011 22:38:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishowie.com/2006/12/31/linux-jailer/#comment-50775</guid>
		<description>@bill, chroot is only a filesystem jail.  This project (in its currently-existing form) allows jailing of, for example, network resources as well, so that each DNS lookup or connection attempt by the process must be authorized by the user.</description>
		<content:encoded><![CDATA[<p>@bill, chroot is only a filesystem jail.  This project (in its currently-existing form) allows jailing of, for example, network resources as well, so that each DNS lookup or connection attempt by the process must be authorized by the user.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linux &#8220;Jailer&#8221; by bill</title>
		<link>http://www.chrishowie.com/2006/12/31/linux-jailer/comment-page-1/#comment-50766</link>
		<dc:creator>bill</dc:creator>
		<pubDate>Sun, 26 Jun 2011 21:31:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishowie.com/2006/12/31/linux-jailer/#comment-50766</guid>
		<description>it&#039;s called chroot ... see the man page</description>
		<content:encoded><![CDATA[<p>it&#8217;s called chroot &#8230; see the man page</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on When FarmVille == Productivity by Chris</title>
		<link>http://www.chrishowie.com/2010/01/27/when-farmville-productivity/comment-page-1/#comment-48957</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 10 Jun 2011 14:03:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrishowie.com/?p=348#comment-48957</guid>
		<description>@Eric: The project is still being maintained from time to time, but I haven&#039;t yet decided on a release plan.  I want to monetize the project somehow since it&#039;s taken many, many hours of my life to produce, but I&#039;m still trying to figure out the best way to do that.</description>
		<content:encoded><![CDATA[<p>@Eric: The project is still being maintained from time to time, but I haven&#8217;t yet decided on a release plan.  I want to monetize the project somehow since it&#8217;s taken many, many hours of my life to produce, but I&#8217;m still trying to figure out the best way to do that.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

