<?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 BunnyLabs</title>
	<atom:link href="http://labs.astrobunny.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.astrobunny.net</link>
	<description>astrobunny writing programs</description>
	<lastBuildDate>Tue, 10 Aug 2010 20:20:19 +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 Will the destructor be called? by astrobunny</title>
		<link>http://labs.astrobunny.net/blog/2010/08/10/will-the-destructor-be-called/comment-page-1/#comment-83</link>
		<dc:creator>astrobunny</dc:creator>
		<pubDate>Tue, 10 Aug 2010 20:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://labs.astrobunny.net/blog/2010/08/10/will-the-destructor-be-called/#comment-83</guid>
		<description>Thanks. Well, assignment isn&#039;t neccessary the default constructor will be called upon instantiation</description>
		<content:encoded><![CDATA[<p>Thanks. Well, assignment isn&#8217;t neccessary the default constructor will be called upon instantiation</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Will the destructor be called? by RyanA</title>
		<link>http://labs.astrobunny.net/blog/2010/08/10/will-the-destructor-be-called/comment-page-1/#comment-82</link>
		<dc:creator>RyanA</dc:creator>
		<pubDate>Tue, 10 Aug 2010 15:51:43 +0000</pubDate>
		<guid isPermaLink="false">http://labs.astrobunny.net/blog/2010/08/10/will-the-destructor-be-called/#comment-82</guid>
		<description>Killin me, I don&#039;t even see the assignment ;;

btw, nice theme update :)</description>
		<content:encoded><![CDATA[<p>Killin me, I don&#8217;t even see the assignment ;;</p>
<p>btw, nice theme update <img src='http://labs.astrobunny.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on That&#8217;s Not The Point by Ryan A</title>
		<link>http://labs.astrobunny.net/blog/2009/12/29/thats-not-the-point/comment-page-1/#comment-24</link>
		<dc:creator>Ryan A</dc:creator>
		<pubDate>Tue, 29 Dec 2009 23:02:01 +0000</pubDate>
		<guid isPermaLink="false">http://labs.astrobunny.net/2009/12/thats-not-the-point/#comment-24</guid>
		<description>I so don&#039;t like winging it D:</description>
		<content:encoded><![CDATA[<p>I so don&#8217;t like winging it D:</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Putting a separator between your elements by Ryan A</title>
		<link>http://labs.astrobunny.net/blog/2009/04/16/putting-a-separator-between-your-elements/comment-page-1/#comment-18</link>
		<dc:creator>Ryan A</dc:creator>
		<pubDate>Thu, 16 Apr 2009 15:19:55 +0000</pubDate>
		<guid isPermaLink="false">http://labs.astrobunny.net/?p=108#comment-18</guid>
		<description>Use a functional language, 1 function takes list, has two cases... it&#039;s like 3 lines of code. Something like

fun {Join L C}
	case L
	of H&#124;nil then H
	[] H&#124;T then H#C#{Join T C}
	end
end

{Join MyArray &quot;, &quot;}

Would probably do it. Also, I believe ruby/python/php have array functions which do these things; php uses implode, which is quite useful. ^^</description>
		<content:encoded><![CDATA[<p>Use a functional language, 1 function takes list, has two cases&#8230; it&#8217;s like 3 lines of code. Something like</p>
<p>fun {Join L C}<br />
	case L<br />
	of H|nil then H<br />
	[] H|T then H#C#{Join T C}<br />
	end<br />
end</p>
<p>{Join MyArray &#8220;, &#8220;}</p>
<p>Would probably do it. Also, I believe ruby/python/php have array functions which do these things; php uses implode, which is quite useful. ^^</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GIS data for topography and shorelines and more by Ryan A</title>
		<link>http://labs.astrobunny.net/blog/2009/03/20/gis-data-for-topography-and-shorelines-and-more/comment-page-1/#comment-14</link>
		<dc:creator>Ryan A</dc:creator>
		<pubDate>Sat, 21 Mar 2009 19:17:30 +0000</pubDate>
		<guid isPermaLink="false">http://labs.astrobunny.net/?p=85#comment-14</guid>
		<description>Bookmarked this thing... I believe my cousin once redirected it to me when I was planning a wave sim in my home city... which a large company ended up doing.</description>
		<content:encoded><![CDATA[<p>Bookmarked this thing&#8230; I believe my cousin once redirected it to me when I was planning a wave sim in my home city&#8230; which a large company ended up doing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A resource pool implementation by Ryan A</title>
		<link>http://labs.astrobunny.net/blog/2009/03/10/a-resource-pool-implementation/comment-page-1/#comment-13</link>
		<dc:creator>Ryan A</dc:creator>
		<pubDate>Tue, 10 Mar 2009 17:49:30 +0000</pubDate>
		<guid isPermaLink="false">http://labs.astrobunny.net/?p=67#comment-13</guid>
		<description>I could see this thing being threaded with it&#039;s own form of allocation resizing and dare I say it, garbage collection. There, I said it.

What about a networked interface, a la memcached.

Also, I heard Google Chrome does some sort of mem pooling thing, but could be something else.

b_pool :)</description>
		<content:encoded><![CDATA[<p>I could see this thing being threaded with it&#8217;s own form of allocation resizing and dare I say it, garbage collection. There, I said it.</p>
<p>What about a networked interface, a la memcached.</p>
<p>Also, I heard Google Chrome does some sort of mem pooling thing, but could be something else.</p>
<p>b_pool <img src='http://labs.astrobunny.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What&#8217;s your favorite language? by Ryan A</title>
		<link>http://labs.astrobunny.net/blog/2009/01/28/whats-your-favorite-language/comment-page-1/#comment-12</link>
		<dc:creator>Ryan A</dc:creator>
		<pubDate>Wed, 28 Jan 2009 13:43:14 +0000</pubDate>
		<guid isPermaLink="false">http://labs.astrobunny.net/?p=61#comment-12</guid>
		<description>Yea, languages are arbitrary within the context of a design paradigm. I don&#039;t particularly have a favorite either, but I could feel temporarily hype-ish under the circumstances that something I was coding turned out simple and enjoyable using a given language.

Vice-versa, I keep non-preferential languages, but it still comes down to the task at hand.</description>
		<content:encoded><![CDATA[<p>Yea, languages are arbitrary within the context of a design paradigm. I don&#8217;t particularly have a favorite either, but I could feel temporarily hype-ish under the circumstances that something I was coding turned out simple and enjoyable using a given language.</p>
<p>Vice-versa, I keep non-preferential languages, but it still comes down to the task at hand.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordLaunch update by astrobunny</title>
		<link>http://labs.astrobunny.net/blog/2008/11/27/wordlaunch-update/comment-page-1/#comment-9</link>
		<dc:creator>astrobunny</dc:creator>
		<pubDate>Fri, 28 Nov 2008 10:45:47 +0000</pubDate>
		<guid isPermaLink="false">http://labs.astrobunny.net/?p=50#comment-9</guid>
		<description>I think so. Express editions should work. Someone could help me try it with mono too</description>
		<content:encoded><![CDATA[<p>I think so. Express editions should work. Someone could help me try it with mono too</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordLaunch update by Ryan A</title>
		<link>http://labs.astrobunny.net/blog/2008/11/27/wordlaunch-update/comment-page-1/#comment-8</link>
		<dc:creator>Ryan A</dc:creator>
		<pubDate>Fri, 28 Nov 2008 04:09:19 +0000</pubDate>
		<guid isPermaLink="false">http://labs.astrobunny.net/?p=50#comment-8</guid>
		<description>sweet looks nice and clean ... also, ppl can probably use the express editions no?</description>
		<content:encoded><![CDATA[<p>sweet looks nice and clean &#8230; also, ppl can probably use the express editions no?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on This week&#8217;s project: Project WordLaunch by Ryan A</title>
		<link>http://labs.astrobunny.net/blog/2008/11/23/this-weeks-project-project-wordlaunch/comment-page-1/#comment-7</link>
		<dc:creator>Ryan A</dc:creator>
		<pubDate>Sun, 23 Nov 2008 16:00:20 +0000</pubDate>
		<guid isPermaLink="false">http://labs.astrobunny.net/?p=47#comment-7</guid>
		<description>The WP XML RPC is pretty huge right ... but plenty of good stuff in there.</description>
		<content:encoded><![CDATA[<p>The WP XML RPC is pretty huge right &#8230; but plenty of good stuff in there.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

