<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Ripoff</title>
	<atom:link href="http://ripoff.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://ripoff.wordpress.com</link>
	<description>Software gone mad.</description>
	<lastBuildDate>Thu, 15 Oct 2009 20:58:34 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on I am an idiot. by bbarrett</title>
		<link>http://ripoff.wordpress.com/2008/09/11/i-am-an-idiot/#comment-82</link>
		<dc:creator>bbarrett</dc:creator>
		<pubDate>Thu, 15 Oct 2009 20:58:34 +0000</pubDate>
		<guid isPermaLink="false">http://ripoff.wordpress.com/?p=58#comment-82</guid>
		<description>Thanks for the comment. In my case, it was the references that really killed me. I have a habit of declaring references to make code easier to read, so rather than write (*it)-&gt;foo() everywhere I will write &quot;Bar &amp;bar = *it; bar.foo();&quot;. Obviously it depends on the complexity of the code involved.

I actually haven&#039;t moved away from my fixed stack size yet, partially because I haven&#039;t really updated the project in the last few months and partially because the system stack has an upper limit anyway, and generally only runaway recursion or some heavy stack allocation will ever breach it. I don&#039;t feel quite so bad about my &quot;hack&quot; as I did when I wrote that =)</description>
		<content:encoded><![CDATA[<p>Thanks for the comment. In my case, it was the references that really killed me. I have a habit of declaring references to make code easier to read, so rather than write (*it)-&gt;foo() everywhere I will write &#8220;Bar &amp;bar = *it; bar.foo();&#8221;. Obviously it depends on the complexity of the code involved.</p>
<p>I actually haven&#8217;t moved away from my fixed stack size yet, partially because I haven&#8217;t really updated the project in the last few months and partially because the system stack has an upper limit anyway, and generally only runaway recursion or some heavy stack allocation will ever breach it. I don&#8217;t feel quite so bad about my &#8220;hack&#8221; as I did when I wrote that =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I am an idiot. by fingerprint211b</title>
		<link>http://ripoff.wordpress.com/2008/09/11/i-am-an-idiot/#comment-81</link>
		<dc:creator>fingerprint211b</dc:creator>
		<pubDate>Sat, 03 Oct 2009 19:04:47 +0000</pubDate>
		<guid isPermaLink="false">http://ripoff.wordpress.com/?p=58#comment-81</guid>
		<description>Hi. I&#039;ve actually had the same problem a few days ago, it&#039;s a real bastard, especially if you use G++ like I did and get absolutely no information on what&#039;s going on.
Anyway, since all I needed was iterating through the vector (and calling a specific method), instead of using iterators, I used the good old for loop and random access. Since I know that an object in the vector can only remove itself (not other objects), this is practically bulletproof. Either that or I&#039;m missing something. The vector can reallocate itself all it wants, indexes stay the same.</description>
		<content:encoded><![CDATA[<p>Hi. I&#8217;ve actually had the same problem a few days ago, it&#8217;s a real bastard, especially if you use G++ like I did and get absolutely no information on what&#8217;s going on.<br />
Anyway, since all I needed was iterating through the vector (and calling a specific method), instead of using iterators, I used the good old for loop and random access. Since I know that an object in the vector can only remove itself (not other objects), this is practically bulletproof. Either that or I&#8217;m missing something. The vector can reallocate itself all it wants, indexes stay the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One step forward, X steps backward. by bbarrett</title>
		<link>http://ripoff.wordpress.com/2008/08/18/one-step-forward-x-steps-backward/#comment-80</link>
		<dc:creator>bbarrett</dc:creator>
		<pubDate>Fri, 11 Sep 2009 18:39:01 +0000</pubDate>
		<guid isPermaLink="false">http://ripoff.wordpress.com/?p=42#comment-80</guid>
		<description>Thanks! It&#039;s been neglected of late... but I hope I will soon restart work on it.</description>
		<content:encoded><![CDATA[<p>Thanks! It&#8217;s been neglected of late&#8230; but I hope I will soon restart work on it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One step forward, X steps backward. by sandrar</title>
		<link>http://ripoff.wordpress.com/2008/08/18/one-step-forward-x-steps-backward/#comment-79</link>
		<dc:creator>sandrar</dc:creator>
		<pubDate>Thu, 10 Sep 2009 13:04:56 +0000</pubDate>
		<guid isPermaLink="false">http://ripoff.wordpress.com/?p=42#comment-79</guid>
		<description>Hi! I was surfing and found your blog post... nice! I love your blog.  :) Cheers! Sandra. R.</description>
		<content:encoded><![CDATA[<p>Hi! I was surfing and found your blog post&#8230; nice! I love your blog.  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Cheers! Sandra. R.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nesting Quotes by bbarrett</title>
		<link>http://ripoff.wordpress.com/2008/08/20/nesting-quotes/#comment-63</link>
		<dc:creator>bbarrett</dc:creator>
		<pubDate>Tue, 02 Sep 2008 23:00:12 +0000</pubDate>
		<guid isPermaLink="false">http://ripoff.wordpress.com/?p=44#comment-63</guid>
		<description>Well, that was sort of what I had planned. Not an article, but rather a in-depth analysis of my current implementation, what I&#039;m happy with and what I am not, etc. 

I&#039;ve hit a block now. I have everything looking like its working, but then it won&#039;t. Some odd problems with scopes and variables, possibly related with how my macro hack is working (or... not working). My energy that got the project off the ground is draining trying to track down this bug, especially because I think I have some kind of throat problem or something, and between work (I work in a customer support center for a mobile phone network in Ireland, fun with the throat thing) and that the energy is a bit low at the moment. However, I am finishing up work in a week, so I should have more time then to dive into this project. I have made progress, but I&#039;m close enough that I&#039;ve been putting off writing an update until I&#039;m over this hurdle.

But thank you for your comment anyway, nice to know someone reads.</description>
		<content:encoded><![CDATA[<p>Well, that was sort of what I had planned. Not an article, but rather a in-depth analysis of my current implementation, what I&#8217;m happy with and what I am not, etc. </p>
<p>I&#8217;ve hit a block now. I have everything looking like its working, but then it won&#8217;t. Some odd problems with scopes and variables, possibly related with how my macro hack is working (or&#8230; not working). My energy that got the project off the ground is draining trying to track down this bug, especially because I think I have some kind of throat problem or something, and between work (I work in a customer support center for a mobile phone network in Ireland, fun with the throat thing) and that the energy is a bit low at the moment. However, I am finishing up work in a week, so I should have more time then to dive into this project. I have made progress, but I&#8217;m close enough that I&#8217;ve been putting off writing an update until I&#8217;m over this hurdle.</p>
<p>But thank you for your comment anyway, nice to know someone reads.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nesting Quotes by SteveW</title>
		<link>http://ripoff.wordpress.com/2008/08/20/nesting-quotes/#comment-62</link>
		<dc:creator>SteveW</dc:creator>
		<pubDate>Tue, 02 Sep 2008 22:25:11 +0000</pubDate>
		<guid isPermaLink="false">http://ripoff.wordpress.com/?p=44#comment-62</guid>
		<description>Wow! I&#039;ve been majorly neglecting reading journal over the last month, and you&#039;ve been tinkering away at this bombshell for the last few weeks. :)

I&#039;m really impressed at how far you&#039;ve managed to get in such a short period of time. I&#039;ve played around with the same thing before (albeit Scheme rather than Lisp), but it didn&#039;t get as far as your experiment here. Perhaps you should consider rolling out some articles on the topic!</description>
		<content:encoded><![CDATA[<p>Wow! I&#8217;ve been majorly neglecting reading journal over the last month, and you&#8217;ve been tinkering away at this bombshell for the last few weeks. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m really impressed at how far you&#8217;ve managed to get in such a short period of time. I&#8217;ve played around with the same thing before (albeit Scheme rather than Lisp), but it didn&#8217;t get as far as your experiment here. Perhaps you should consider rolling out some articles on the topic!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on It has been a while&#8230; by bbarrett</title>
		<link>http://ripoff.wordpress.com/2008/08/06/it-has-been-a-while/#comment-53</link>
		<dc:creator>bbarrett</dc:creator>
		<pubDate>Sat, 09 Aug 2008 18:07:02 +0000</pubDate>
		<guid isPermaLink="false">http://ripoff.wordpress.com/?p=24#comment-53</guid>
		<description>Thats a deal!

I have actually made some more progress, but not enough to write another entry. I&#039;ll see how I get on tonight...</description>
		<content:encoded><![CDATA[<p>Thats a deal!</p>
<p>I have actually made some more progress, but not enough to write another entry. I&#8217;ll see how I get on tonight&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on It has been a while&#8230; by Aaghaaz Madan</title>
		<link>http://ripoff.wordpress.com/2008/08/06/it-has-been-a-while/#comment-52</link>
		<dc:creator>Aaghaaz Madan</dc:creator>
		<pubDate>Sat, 09 Aug 2008 00:36:13 +0000</pubDate>
		<guid isPermaLink="false">http://ripoff.wordpress.com/?p=24#comment-52</guid>
		<description>When you get around to functions, be sure to blog about it. :)</description>
		<content:encoded><![CDATA[<p>When you get around to functions, be sure to blog about it. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on softness is necessary by bbarrett</title>
		<link>http://ripoff.wordpress.com/2008/04/05/softness-is-necessary/#comment-41</link>
		<dc:creator>bbarrett</dc:creator>
		<pubDate>Sun, 20 Apr 2008 22:46:05 +0000</pubDate>
		<guid isPermaLink="false">http://ripoff.wordpress.com/?p=20#comment-41</guid>
		<description>I have to say, those techniques look really interesting (if I am remembering them correctly). I would consider it, perhaps during the summer when I have more time (see my earlier entry, &quot;busy, busy, busy&quot;, for reasons why I might not have any of that time stuff for a little while).</description>
		<content:encoded><![CDATA[<p>I have to say, those techniques look really interesting (if I am remembering them correctly). I would consider it, perhaps during the summer when I have more time (see my earlier entry, &#8220;busy, busy, busy&#8221;, for reasons why I might not have any of that time stuff for a little while).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on softness is necessary by hopedagger</title>
		<link>http://ripoff.wordpress.com/2008/04/05/softness-is-necessary/#comment-40</link>
		<dc:creator>hopedagger</dc:creator>
		<pubDate>Sun, 20 Apr 2008 14:54:45 +0000</pubDate>
		<guid isPermaLink="false">http://ripoff.wordpress.com/?p=20#comment-40</guid>
		<description>Do you have future plans for adding any global illumination techniques, such as radiosity? I&#039;ve been really interested in the topic, but the implementation of such things looks really time consuming.</description>
		<content:encoded><![CDATA[<p>Do you have future plans for adding any global illumination techniques, such as radiosity? I&#8217;ve been really interested in the topic, but the implementation of such things looks really time consuming.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
