<?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 on: CSV Parsing with Erlang</title>
	<atom:link href="http://blogs.yellowfish.biz/2009/csv-parsing-with-erlang/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.yellowfish.biz/2009/csv-parsing-with-erlang/</link>
	<description>IT Consulting, Infrastructure, Software &#38; Voip Phone Systems</description>
	<lastBuildDate>Sun, 05 Sep 2010 09:28:11 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Praveen Ray</title>
		<link>http://blogs.yellowfish.biz/2009/csv-parsing-with-erlang/comment-page-1/#comment-349</link>
		<dc:creator>Praveen Ray</dc:creator>
		<pubDate>Tue, 29 Dec 2009 11:55:56 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.yellowfish.biz/?p=320#comment-349</guid>
		<description>Felix,
You&#039;re right about mutually recursive functions. Since OTP provides a fsm behavior, it&#039;s definitely little easier to build state machines using OTP. But for such simple machines, it&#039;s probably a good idea to do away with the OTP behavior altogether.</description>
		<content:encoded><![CDATA[<p>Felix,<br />
You&#8217;re right about mutually recursive functions. Since OTP provides a fsm behavior, it&#8217;s definitely little easier to build state machines using OTP. But for such simple machines, it&#8217;s probably a good idea to do away with the OTP behavior altogether.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Felix</title>
		<link>http://blogs.yellowfish.biz/2009/csv-parsing-with-erlang/comment-page-1/#comment-347</link>
		<dc:creator>Felix</dc:creator>
		<pubDate>Tue, 29 Dec 2009 00:24:23 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.yellowfish.biz/?p=320#comment-347</guid>
		<description>What&#039;s the point of using a generic server for parsing data, 
wouldn&#039;t a recursive solution suffice for that? It is very easy to simulate a state machine using mutually recursive functions like this (a and b are states):

a(S) -&gt;
  ...;
a(S) -&gt;
  ...
  b(NewS).

b(S) -&gt;
  ...
  a(NewS).</description>
		<content:encoded><![CDATA[<p>What&#8217;s the point of using a generic server for parsing data,<br />
wouldn&#8217;t a recursive solution suffice for that? It is very easy to simulate a state machine using mutually recursive functions like this (a and b are states):</p>
<p>a(S) -&gt;<br />
  &#8230;;<br />
a(S) -&gt;<br />
  &#8230;<br />
  b(NewS).</p>
<p>b(S) -&gt;<br />
  &#8230;<br />
  a(NewS).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alicia Dambrose</title>
		<link>http://blogs.yellowfish.biz/2009/csv-parsing-with-erlang/comment-page-1/#comment-345</link>
		<dc:creator>Alicia Dambrose</dc:creator>
		<pubDate>Sun, 27 Dec 2009 02:16:23 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.yellowfish.biz/?p=320#comment-345</guid>
		<description>I have seen some crappy posts but this one really impresses me. Good work.</description>
		<content:encoded><![CDATA[<p>I have seen some crappy posts but this one really impresses me. Good work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
