<?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: Blending continuity into reactive values</title>
	<atom:link href="http://conal.net/blog/posts/blending-continuity-into-reactive-values/feed" rel="self" type="application/rss+xml" />
	<link>http://conal.net/blog/posts/blending-continuity-into-reactive-values</link>
	<description>Inspirations &#38; experiments, mainly about denotative/functional programming in Haskell</description>
	<lastBuildDate>Sat, 26 Sep 2020 21:06:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1.17</generator>
	<item>
		<title>By: Conal Elliott &#187; Blog Archive &#187; Reactive values from the future</title>
		<link>http://conal.net/blog/posts/blending-continuity-into-reactive-values#comment-43</link>
		<dc:creator><![CDATA[Conal Elliott &#187; Blog Archive &#187; Reactive values from the future]]></dc:creator>
		<pubDate>Fri, 08 Feb 2008 02:56:02 +0000</pubDate>
		<guid isPermaLink="false">http://conal.net/blog/posts/blending-continuity-into-reactive-values/#comment-43</guid>
		<description><![CDATA[&lt;p&gt;[...] the implementation of events and reactive values via a reactive normal form, and (b) say how to blend temporal continuity with our discrete notion of reactive [...]&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>[&#8230;] the implementation of events and reactive values via a reactive normal form, and (b) say how to blend temporal continuity with our discrete notion of reactive [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Conal Elliott &#187; Blog Archive &#187; Invasion of the composable Mutant-Bots</title>
		<link>http://conal.net/blog/posts/blending-continuity-into-reactive-values#comment-42</link>
		<dc:creator><![CDATA[Conal Elliott &#187; Blog Archive &#187; Invasion of the composable Mutant-Bots]]></dc:creator>
		<pubDate>Wed, 06 Feb 2008 17:15:32 +0000</pubDate>
		<guid isPermaLink="false">http://conal.net/blog/posts/blending-continuity-into-reactive-values/#comment-42</guid>
		<description><![CDATA[&lt;p&gt;[...] a few recent posts, I&#8217;ve been writing about a new basis for functional reactive programming (FRP), embodied in [...]&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>[&#8230;] a few recent posts, I&#8217;ve been writing about a new basis for functional reactive programming (FRP), embodied in [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: conal</title>
		<link>http://conal.net/blog/posts/blending-continuity-into-reactive-values#comment-41</link>
		<dc:creator><![CDATA[conal]]></dc:creator>
		<pubDate>Wed, 30 Jan 2008 00:19:09 +0000</pubDate>
		<guid isPermaLink="false">http://conal.net/blog/posts/blending-continuity-into-reactive-values/#comment-41</guid>
		<description><![CDATA[&lt;p&gt;Vladimir:&lt;/p&gt;

&lt;p&gt;I don&#039;t know how to characterize clearly the current Reactive implementation with regard to push vs pull.  In a sense, it&#039;s all push, and in another sense, it&#039;s all pull.  At each output, there&#039;s a thread that repeatedly pulls individual values out of a reactive value (essentially a stream).  Each pull blocks until a new value is ready.  In this implementation, reactive values are built compositionally, each having its own thread, blocked most of the time.  Each input simply provides a value, resulting in a cascading network of brief unblocking of other threads.&lt;/p&gt;

&lt;p&gt;Thus the sequence of actions is very push-like, while the direction of pointers and code style is more like pull.  I think it happens to find a happy combination of push-driven efficiency with the GC-friendliness of pull (because &lt;a href=&quot;http://haskell.org/haskellwiki/DataDriven#GC_favors_demand-driven_computation&quot; rel=&quot;nofollow&quot;&gt;GC favors demand-driven computation&lt;/a&gt;).&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Wow. Lazy evaluation rocks! Am I right that if we set all external sources first (e.g. set mouse &amp; keyboard state at the begining of the frame) and will evaluate the scene after (i.e. render the frame) then we get synchronous evaluation for free thanks to lazyness?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I don&#039;t think it&#039;s quite that simple and automatic.  The output end has to be a bit clever so that it doesn&#039;t actually display (and thereby evaluate) every value that arrives.  I don&#039;t know how to wrap up that cleverness in a general and transparent way.  In &lt;a href=&quot;http://haskell.org/haskellwiki&quot; rel=&quot;nofollow&quot;&gt;Phooey&lt;/a&gt;, I used an &quot;idle&quot; event per output.  Every output (including intermediate values) gets stuffed into an &lt;code&gt;IORef&lt;/code&gt; but not displayed.  On idle, the latest one &lt;em&gt;since the previous display&lt;/em&gt; is pulled out and displayed.  (The &lt;code&gt;IORef&lt;/code&gt; is &lt;code&gt;Maybe&lt;/code&gt;-valued and is cleared to &lt;code&gt;Nothing&lt;/code&gt; after each display.)  If there is no new value since the previous display (the usual case), nothing happens.  The display step is what actually forces evaluation.  When previously stored but undisplayed values get overwritten, as with intermediate values or semantically valid rapidly changing values, the undisplayed values never get evaluated.  I guess it&#039;s a bit wasteful to repeatedly check that there&#039;s still no new value to display.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Or more simply, if we set &quot;event&quot; from the example above first (not evaluating C yet) and then start evaluating C then all intermediate values (2+1) will be just skipped by mappend without calculating?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Not quite.  &lt;code&gt;mappend&lt;/code&gt; passes along the intermediate and final values, and the cleverness to ignore them is in the display end.&lt;/p&gt;

&lt;p&gt;Note that the implementation is not smart enough to know that it&#039;s skipping values for different reasons (intermediate vs too frequent to evaluate and display).  Maybe it could get smarter.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;And if I understand correctly skipped thunks with lazy values will be created only on top-level value calculation, not at event setting phase (i.e. thunks generation is demand driven, which is very nice for GC). Or there is exists some eager (push) thunk generation in mkEvent internals (some threads are unpaused and MVars+threads are recreated bottom-up)?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I think I&#039;ve answered this question above, as clearly as I understand.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;As for examples of continuous values I&#039;m most interested in the implementation of integral function (all other examples are just combinations on top of it). I feel that some switching plus start time keeping is needed here, but I don&#039;t clearly see the possible implementation.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I haven&#039;t thought about how to do integration in this setting, though it&#039;s very important to me as well.  Here&#039;s are some thoughts, off the top of my head:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Integrate piecewise, i.e., integrate each non-reactive time function, and keep a running sum of the results.  As you noted, we have to know when the switch happens.&lt;/li&gt;
&lt;li&gt;Exploit the &lt;code&gt;Fun&lt;/code&gt; representation to integrate exactly in the special case of constant functions.  Extend the representation so additional cases can be integrated exactly.  Perhaps univariate polynomials.&lt;/li&gt;
&lt;li&gt;Choose a numeric integration method to use.&lt;/li&gt;
&lt;li&gt;Adapt the step size to available computation cycles.  For instance, give each integral a thread that repeatedly takes a step and then &lt;code&gt;yield&lt;/code&gt;s.  Each time delta would be measured as the wake-up time minus the time of the previous step.&lt;/li&gt;
&lt;li&gt;I wonder how integration threads would interact with my idle trick.  Currently, my threads are all blocked most of the time, but the new integration threads yield while still runnable.  Would the new active threads over-compete with the single GUI thread handling all of the outputs?&lt;/li&gt;
&lt;/ul&gt;
]]></description>
		<content:encoded><![CDATA[<p>Vladimir:</p>

<p>I don&#8217;t know how to characterize clearly the current Reactive implementation with regard to push vs pull.  In a sense, it&#8217;s all push, and in another sense, it&#8217;s all pull.  At each output, there&#8217;s a thread that repeatedly pulls individual values out of a reactive value (essentially a stream).  Each pull blocks until a new value is ready.  In this implementation, reactive values are built compositionally, each having its own thread, blocked most of the time.  Each input simply provides a value, resulting in a cascading network of brief unblocking of other threads.</p>

<p>Thus the sequence of actions is very push-like, while the direction of pointers and code style is more like pull.  I think it happens to find a happy combination of push-driven efficiency with the GC-friendliness of pull (because <a href="http://haskell.org/haskellwiki/DataDriven#GC_favors_demand-driven_computation" rel="nofollow">GC favors demand-driven computation</a>).</p>

<blockquote>
  <p>Wow. Lazy evaluation rocks! Am I right that if we set all external sources first (e.g. set mouse &amp; keyboard state at the begining of the frame) and will evaluate the scene after (i.e. render the frame) then we get synchronous evaluation for free thanks to lazyness?</p>
</blockquote>

<p>I don&#8217;t think it&#8217;s quite that simple and automatic.  The output end has to be a bit clever so that it doesn&#8217;t actually display (and thereby evaluate) every value that arrives.  I don&#8217;t know how to wrap up that cleverness in a general and transparent way.  In <a href="http://haskell.org/haskellwiki" rel="nofollow">Phooey</a>, I used an &#8220;idle&#8221; event per output.  Every output (including intermediate values) gets stuffed into an <code>IORef</code> but not displayed.  On idle, the latest one <em>since the previous display</em> is pulled out and displayed.  (The <code>IORef</code> is <code>Maybe</code>-valued and is cleared to <code>Nothing</code> after each display.)  If there is no new value since the previous display (the usual case), nothing happens.  The display step is what actually forces evaluation.  When previously stored but undisplayed values get overwritten, as with intermediate values or semantically valid rapidly changing values, the undisplayed values never get evaluated.  I guess it&#8217;s a bit wasteful to repeatedly check that there&#8217;s still no new value to display.</p>

<blockquote>
  <p>Or more simply, if we set &#8220;event&#8221; from the example above first (not evaluating C yet) and then start evaluating C then all intermediate values (2+1) will be just skipped by mappend without calculating?</p>
</blockquote>

<p>Not quite.  <code>mappend</code> passes along the intermediate and final values, and the cleverness to ignore them is in the display end.</p>

<p>Note that the implementation is not smart enough to know that it&#8217;s skipping values for different reasons (intermediate vs too frequent to evaluate and display).  Maybe it could get smarter.</p>

<blockquote>
  <p>And if I understand correctly skipped thunks with lazy values will be created only on top-level value calculation, not at event setting phase (i.e. thunks generation is demand driven, which is very nice for GC). Or there is exists some eager (push) thunk generation in mkEvent internals (some threads are unpaused and MVars+threads are recreated bottom-up)?</p>
</blockquote>

<p>I think I&#8217;ve answered this question above, as clearly as I understand.</p>

<blockquote>
  <p>As for examples of continuous values I&#8217;m most interested in the implementation of integral function (all other examples are just combinations on top of it). I feel that some switching plus start time keeping is needed here, but I don&#8217;t clearly see the possible implementation.</p>
</blockquote>

<p>I haven&#8217;t thought about how to do integration in this setting, though it&#8217;s very important to me as well.  Here&#8217;s are some thoughts, off the top of my head:</p>

<ul>
<li>Integrate piecewise, i.e., integrate each non-reactive time function, and keep a running sum of the results.  As you noted, we have to know when the switch happens.</li>
<li>Exploit the <code>Fun</code> representation to integrate exactly in the special case of constant functions.  Extend the representation so additional cases can be integrated exactly.  Perhaps univariate polynomials.</li>
<li>Choose a numeric integration method to use.</li>
<li>Adapt the step size to available computation cycles.  For instance, give each integral a thread that repeatedly takes a step and then <code>yield</code>s.  Each time delta would be measured as the wake-up time minus the time of the previous step.</li>
<li>I wonder how integration threads would interact with my idle trick.  Currently, my threads are all blocked most of the time, but the new integration threads yield while still runnable.  Would the new active threads over-compete with the single GUI thread handling all of the outputs?</li>
</ul>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vladimir Shabanov</title>
		<link>http://conal.net/blog/posts/blending-continuity-into-reactive-values#comment-40</link>
		<dc:creator><![CDATA[Vladimir Shabanov]]></dc:creator>
		<pubDate>Mon, 28 Jan 2008 22:32:42 +0000</pubDate>
		<guid isPermaLink="false">http://conal.net/blog/posts/blending-continuity-into-reactive-values/#comment-40</guid>
		<description><![CDATA[&lt;p&gt;Wow. Lazy evaluation rocks! Am I right that if we set all external sources first (e.g. set mouse &amp; keyboard state at the begining of the frame) and will evaluate the scene after (i.e. render the frame) then we get synchronous evaluation for free thanks to lazyness?&lt;/p&gt;

&lt;p&gt;Or more simply, if we set &quot;event&quot; from the example above first (not evaluating C yet) and then start evaluating C then all intermediate values (2+1) will be just skipped by mappend without calculating?&lt;/p&gt;

&lt;p&gt;And if I understand correctly skipped thunks with lazy values will be created only on top-level value calculation, not at event setting phase (i.e. thunks generation is demand driven, which is very nice for GC). Or there is exists some eager (push) thunk generation in mkEvent internals (some threads are unpaused and MVars+threads are recreated bottom-up)?&lt;/p&gt;

&lt;p&gt;As for examples of continuous values I&#039;m most interested in the implementation of integral function (all other examples are just combinations on top of it). I feel that some switching plus start time keeping is needed here, but I don&#039;t clearly see the possible implementation.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Wow. Lazy evaluation rocks! Am I right that if we set all external sources first (e.g. set mouse &amp; keyboard state at the begining of the frame) and will evaluate the scene after (i.e. render the frame) then we get synchronous evaluation for free thanks to lazyness?</p>

<p>Or more simply, if we set &#8220;event&#8221; from the example above first (not evaluating C yet) and then start evaluating C then all intermediate values (2+1) will be just skipped by mappend without calculating?</p>

<p>And if I understand correctly skipped thunks with lazy values will be created only on top-level value calculation, not at event setting phase (i.e. thunks generation is demand driven, which is very nice for GC). Or there is exists some eager (push) thunk generation in mkEvent internals (some threads are unpaused and MVars+threads are recreated bottom-up)?</p>

<p>As for examples of continuous values I&#8217;m most interested in the implementation of integral function (all other examples are just combinations on top of it). I feel that some switching plus start time keeping is needed here, but I don&#8217;t clearly see the possible implementation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: conal</title>
		<link>http://conal.net/blog/posts/blending-continuity-into-reactive-values#comment-39</link>
		<dc:creator><![CDATA[conal]]></dc:creator>
		<pubDate>Mon, 28 Jan 2008 20:00:15 +0000</pubDate>
		<guid isPermaLink="false">http://conal.net/blog/posts/blending-continuity-into-reactive-values/#comment-39</guid>
		<description><![CDATA[&lt;p&gt;Thanks for the comments &amp; questions, Vladimir.  Also, for struggling with formatting without hints.  Now I&#039;ve added comment previewing and a remark about using markdown in reader comments.&lt;/p&gt;

&lt;p&gt;While my push implementation looks like it performs unnecessary recomputation, it needn&#039;t, thanks to laziness.  A single event occurrence may trigger thunks for multiple values may be generated for an output, but only the last one need get displayed and hence actually evaluated.  The usage context must be a bit clever, as is the case in &lt;a href=&quot;http://haskell.org/haskellwiki/Phooey&quot; rel=&quot;nofollow&quot;&gt;Phooey&lt;/a&gt;.  (See &lt;a href=&quot;http://darcs.haskell.org/packages/phooey/doc/html/Graphics-UI-Phooey-Monad.html#v%3Aidler&quot; rel=&quot;nofollow&quot;&gt;&lt;code&gt;idler&lt;/code&gt;&lt;/a&gt;.  I haven&#039;t explained this point clearly in the docs, and I don&#039;t really expect anyone to figure it out on their own.&lt;/p&gt;

&lt;p&gt;By the way, even if the push implementation were recomputing unnecessarily, it would probably do so &lt;em&gt;much&lt;/em&gt; less than a polling implementation, which recomputes even when no event or irrelevant events occur.  Still, I like having no redundant computation at all.&lt;/p&gt;

&lt;p&gt;The above remarks all apply to the implementation.  Semantically, erroneous/inconsistent values (e.g., &lt;code&gt;2+1&lt;/code&gt;) do appear but with a time duration of zero, so if you integrate the error function, you&#039;ll get zero total error.&lt;/p&gt;

&lt;p&gt;Many uses of interaction use discrete approximations to continuous behavior, such as considering only finitely many mouse position samples or generating only finitely many display frames.  In those cases, the intermediate, inconsistent-state values like &lt;code&gt;2+1&lt;/code&gt; may well be be as accurate as either of the two consistent-state values (fully before and fully after the event).  (Any discrete implementation will have nonzero total error, but at least I won&#039;t add any unnecessary error.)&lt;/p&gt;

&lt;p&gt;I don&#039;t have continuous (time-dependent) examples for Reactive yet.  Until I do, you can see my old &lt;a href=&quot;http://conal.net/Fran/tutorial.htm&quot; rel=&quot;nofollow&quot;&gt;Fran tutorial&lt;/a&gt; to get the feel of what I have in mind.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Thanks for the comments &amp; questions, Vladimir.  Also, for struggling with formatting without hints.  Now I&#8217;ve added comment previewing and a remark about using markdown in reader comments.</p>

<p>While my push implementation looks like it performs unnecessary recomputation, it needn&#8217;t, thanks to laziness.  A single event occurrence may trigger thunks for multiple values may be generated for an output, but only the last one need get displayed and hence actually evaluated.  The usage context must be a bit clever, as is the case in <a href="http://haskell.org/haskellwiki/Phooey" rel="nofollow">Phooey</a>.  (See <a href="http://darcs.haskell.org/packages/phooey/doc/html/Graphics-UI-Phooey-Monad.html#v%3Aidler" rel="nofollow"><code>idler</code></a>.  I haven&#8217;t explained this point clearly in the docs, and I don&#8217;t really expect anyone to figure it out on their own.</p>

<p>By the way, even if the push implementation were recomputing unnecessarily, it would probably do so <em>much</em> less than a polling implementation, which recomputes even when no event or irrelevant events occur.  Still, I like having no redundant computation at all.</p>

<p>The above remarks all apply to the implementation.  Semantically, erroneous/inconsistent values (e.g., <code>2+1</code>) do appear but with a time duration of zero, so if you integrate the error function, you&#8217;ll get zero total error.</p>

<p>Many uses of interaction use discrete approximations to continuous behavior, such as considering only finitely many mouse position samples or generating only finitely many display frames.  In those cases, the intermediate, inconsistent-state values like <code>2+1</code> may well be be as accurate as either of the two consistent-state values (fully before and fully after the event).  (Any discrete implementation will have nonzero total error, but at least I won&#8217;t add any unnecessary error.)</p>

<p>I don&#8217;t have continuous (time-dependent) examples for Reactive yet.  Until I do, you can see my old <a href="http://conal.net/Fran/tutorial.htm" rel="nofollow">Fran tutorial</a> to get the feel of what I have in mind.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vladimir Shabanov</title>
		<link>http://conal.net/blog/posts/blending-continuity-into-reactive-values#comment-38</link>
		<dc:creator><![CDATA[Vladimir Shabanov]]></dc:creator>
		<pubDate>Mon, 28 Jan 2008 15:28:04 +0000</pubDate>
		<guid isPermaLink="false">http://conal.net/blog/posts/blending-continuity-into-reactive-values/#comment-38</guid>
		<description><![CDATA[&lt;p&gt;Your new FRP imlpementation is very interesting. I like the idea of using standard type classes as a basis for the library. Also the usage of threads allows one to write more scalable applications. And I find this way of handling imperative event-driven computations very elegant.&lt;/p&gt;

&lt;p&gt;What I don&#039;t understand yet is how synchronous compuations can be done with this model?&lt;/p&gt;

&lt;p&gt;Take the following computation for example (I use CSP-like notation for simplicity):&lt;/p&gt;

&lt;pre&gt;
A = 1 -&gt; event -&gt; 2
B = 1 -&gt; event -&gt; 3
C = A + B
&lt;/pre&gt;

&lt;p&gt;In continuation-based polling FRP implementation (&lt;code&gt;data SF a b = SF { sfTF :: Time → a → (SF a b, b) }&lt;/code&gt;) A and B will switch simultaneously (C = 2 -&gt; event -&gt; 5). But in your pushing (event-driven) implementation C will become 2+1 after handling A and then 2+3 after handling B.&lt;/p&gt;

&lt;p&gt;I.e. computations in your implementation are not synchronous. With this loss of synchronism we can get too much recalculations if several values depend from one event and there is a value which in turn depends on them. Plus we get some non-determinism in this case (at least with current implementation of mappend on Futures).&lt;/p&gt;

&lt;p&gt;So what&#039;s interesting to me -- can the synchronous computations be implemented in Data.Reactive in some simple way?&lt;/p&gt;

&lt;p&gt;Also I&#039;m interested in some examples of using time-dependent Data.Fun reactive values. Are there any of them? (I didn&#039;t find them in Examples.hs)&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Your new FRP imlpementation is very interesting. I like the idea of using standard type classes as a basis for the library. Also the usage of threads allows one to write more scalable applications. And I find this way of handling imperative event-driven computations very elegant.</p>

<p>What I don&#8217;t understand yet is how synchronous compuations can be done with this model?</p>

<p>Take the following computation for example (I use CSP-like notation for simplicity):</p>

<pre>
A = 1 -&gt; event -&gt; 2
B = 1 -&gt; event -&gt; 3
C = A + B
</pre>

<p>In continuation-based polling FRP implementation (<code>data SF a b = SF { sfTF :: Time → a → (SF a b, b) }</code>) A and B will switch simultaneously (C = 2 -&gt; event -&gt; 5). But in your pushing (event-driven) implementation C will become 2+1 after handling A and then 2+3 after handling B.</p>

<p>I.e. computations in your implementation are not synchronous. With this loss of synchronism we can get too much recalculations if several values depend from one event and there is a value which in turn depends on them. Plus we get some non-determinism in this case (at least with current implementation of mappend on Futures).</p>

<p>So what&#8217;s interesting to me &#8212; can the synchronous computations be implemented in Data.Reactive in some simple way?</p>

<p>Also I&#8217;m interested in some examples of using time-dependent Data.Fun reactive values. Are there any of them? (I didn&#8217;t find them in Examples.hs)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: falcon</title>
		<link>http://conal.net/blog/posts/blending-continuity-into-reactive-values#comment-37</link>
		<dc:creator><![CDATA[falcon]]></dc:creator>
		<pubDate>Sat, 26 Jan 2008 02:25:08 +0000</pubDate>
		<guid isPermaLink="false">http://conal.net/blog/posts/blending-continuity-into-reactive-values/#comment-37</guid>
		<description><![CDATA[&lt;p&gt;Wow, you are on a roll with these FRP posts :)  I am very excited about this and am trying to understand  these articles, despite struggling with Haskell&#039;s syntax and concepts.  May I suggest that you show some examples of reading some simple streams of numbers off a network (rather than using GUIs as your examples).  Perhaps a stock market feed (yes, we have discussed this before ;) )&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Wow, you are on a roll with these FRP posts <img src="http://conal.net/blog/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" />  I am very excited about this and am trying to understand  these articles, despite struggling with Haskell&#8217;s syntax and concepts.  May I suggest that you show some examples of reading some simple streams of numbers off a network (rather than using GUIs as your examples).  Perhaps a stock market feed (yes, we have discussed this before <img src="http://conal.net/blog/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> )</p>
]]></content:encoded>
	</item>
</channel>
</rss>
