<?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 lambda.oasis :: poucet -&gt; content</title>
	<atom:link href="http://cpoucet.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://cpoucet.wordpress.com</link>
	<description>Thoughts of an expat geek</description>
	<lastBuildDate>Thu, 10 Sep 2009 13:40:56 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Change of blog by sandrar</title>
		<link>http://cpoucet.wordpress.com/2008/02/13/hello-world/#comment-174</link>
		<dc:creator>sandrar</dc:creator>
		<pubDate>Thu, 10 Sep 2009 13:40:56 +0000</pubDate>
		<guid isPermaLink="false">#comment-174</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 Flattening Data.Map by Edward Kmett</title>
		<link>http://cpoucet.wordpress.com/2009/04/18/flattening-datamap/#comment-170</link>
		<dc:creator>Edward Kmett</dc:creator>
		<pubDate>Mon, 20 Apr 2009 14:57:39 +0000</pubDate>
		<guid isPermaLink="false">http://cpoucet.wordpress.com/?p=120#comment-170</guid>
		<description>Actually, the issue with TH is simpler than that. It currently doesn&#039;t support type and data families.

I ran into that issue when I started doing this same thing to Data.Set. I love the idea of abusing the views for flattening. I&#039;ve been working towards that same goal with a flattened trie implementation. Normally a ternary search tree based trie that winds up with a bunch of Maybe nodes floating around to keep the implementation simple, but I can flatten the cases into the constructors and only extract them during view. I&#039;ve also been exploring if I can store the trie internally in compact PATRICIA form, but expose only a simple view that is ignorant of this storage optimization.</description>
		<content:encoded><![CDATA[<p>Actually, the issue with TH is simpler than that. It currently doesn&#8217;t support type and data families.</p>
<p>I ran into that issue when I started doing this same thing to Data.Set. I love the idea of abusing the views for flattening. I&#8217;ve been working towards that same goal with a flattened trie implementation. Normally a ternary search tree based trie that winds up with a bunch of Maybe nodes floating around to keep the implementation simple, but I can flatten the cases into the constructors and only extract them during view. I&#8217;ve also been exploring if I can store the trie internally in compact PATRICIA form, but expose only a simple view that is ignorant of this storage optimization.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flattening Data.Map by cpoucet</title>
		<link>http://cpoucet.wordpress.com/2009/04/18/flattening-datamap/#comment-169</link>
		<dc:creator>cpoucet</dc:creator>
		<pubDate>Sun, 19 Apr 2009 21:27:55 +0000</pubDate>
		<guid isPermaLink="false">http://cpoucet.wordpress.com/?p=120#comment-169</guid>
		<description>We&#039;re currently working on some benchmarks that will give us these numbers.  There are no benchmarks out there that we know of for associative containers.</description>
		<content:encoded><![CDATA[<p>We&#8217;re currently working on some benchmarks that will give us these numbers.  There are no benchmarks out there that we know of for associative containers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flattening Data.Map by Dafydd Harries</title>
		<link>http://cpoucet.wordpress.com/2009/04/18/flattening-datamap/#comment-168</link>
		<dc:creator>Dafydd Harries</dc:creator>
		<pubDate>Sun, 19 Apr 2009 19:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://cpoucet.wordpress.com/?p=120#comment-168</guid>
		<description>It would be nice to see some numbers on what differences these sorts of changes can achieve.</description>
		<content:encoded><![CDATA[<p>It would be nice to see some numbers on what differences these sorts of changes can achieve.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flattening Data.Map by Felipe Lessa</title>
		<link>http://cpoucet.wordpress.com/2009/04/18/flattening-datamap/#comment-167</link>
		<dc:creator>Felipe Lessa</dc:creator>
		<pubDate>Sun, 19 Apr 2009 11:37:57 +0000</pubDate>
		<guid isPermaLink="false">http://cpoucet.wordpress.com/?p=120#comment-167</guid>
		<description>Hmmm... but at the very least -funbox-strict-fields could be applied, maybe with a file pragma (not to force the entire library/program to use it).</description>
		<content:encoded><![CDATA[<p>Hmmm&#8230; but at the very least -funbox-strict-fields could be applied, maybe with a file pragma (not to force the entire library/program to use it).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flattening Data.Map by cpoucet</title>
		<link>http://cpoucet.wordpress.com/2009/04/18/flattening-datamap/#comment-166</link>
		<dc:creator>cpoucet</dc:creator>
		<pubDate>Sun, 19 Apr 2009 09:56:07 +0000</pubDate>
		<guid isPermaLink="false">http://cpoucet.wordpress.com/?p=120#comment-166</guid>
		<description>We were actually wondering whether TH could be used for this.  The problem is that we want the {-# UNPACK #-} specifications, and I&#039;m not sure you can force that sort of annotations with TH.

If anyone knows whether this is possible, that would be great.</description>
		<content:encoded><![CDATA[<p>We were actually wondering whether TH could be used for this.  The problem is that we want the {-# UNPACK #-} specifications, and I&#8217;m not sure you can force that sort of annotations with TH.</p>
<p>If anyone knows whether this is possible, that would be great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flattening Data.Map by Felipe Lessa</title>
		<link>http://cpoucet.wordpress.com/2009/04/18/flattening-datamap/#comment-165</link>
		<dc:creator>Felipe Lessa</dc:creator>
		<pubDate>Sun, 19 Apr 2009 02:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://cpoucet.wordpress.com/?p=120#comment-165</guid>
		<description>It seems like TH could be used to generete the instances automagically.</description>
		<content:encoded><![CDATA[<p>It seems like TH could be used to generete the instances automagically.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bootstrapping cabal by cpoucet</title>
		<link>http://cpoucet.wordpress.com/2009/03/12/bootstrapping-cabal/#comment-154</link>
		<dc:creator>cpoucet</dc:creator>
		<pubDate>Thu, 12 Mar 2009 17:10:22 +0000</pubDate>
		<guid isPermaLink="false">http://cpoucet.wordpress.com/?p=96#comment-154</guid>
		<description>I have not looked at the code of bootstrap.sh, but I can say that at the time, bootstrap.sh did not work for me while this did.</description>
		<content:encoded><![CDATA[<p>I have not looked at the code of bootstrap.sh, but I can say that at the time, bootstrap.sh did not work for me while this did.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bootstrapping cabal by liesen</title>
		<link>http://cpoucet.wordpress.com/2009/03/12/bootstrapping-cabal/#comment-153</link>
		<dc:creator>liesen</dc:creator>
		<pubDate>Thu, 12 Mar 2009 12:28:48 +0000</pubDate>
		<guid isPermaLink="false">http://cpoucet.wordpress.com/?p=96#comment-153</guid>
		<description>doesn&#039;t bootstrap.sh (bundled with cabal-installed) do exactly this?</description>
		<content:encoded><![CDATA[<p>doesn&#8217;t bootstrap.sh (bundled with cabal-installed) do exactly this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bootstrapping cabal by lilac</title>
		<link>http://cpoucet.wordpress.com/2009/03/12/bootstrapping-cabal/#comment-152</link>
		<dc:creator>lilac</dc:creator>
		<pubDate>Thu, 12 Mar 2009 12:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://cpoucet.wordpress.com/?p=96#comment-152</guid>
		<description>FYI, the &#039;cabal-install&#039; tarball on hackage includes a script &#039;bootstrap.sh&#039; which does much the same as this (but seems to get by installing fewer packages).</description>
		<content:encoded><![CDATA[<p>FYI, the &#8216;cabal-install&#8217; tarball on hackage includes a script &#8216;bootstrap.sh&#8217; which does much the same as this (but seems to get by installing fewer packages).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
