<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads/RSS"></atom:link>
	<image>
		<url>http://rev9.blob.core.windows.net/thumbnail/521ad8ac-c356-471f-bd57-e192b14421ab.jpg</url>
		<title>Channel 9 - C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<link></link>
	</image>
	<description>Greg Meredith, a&amp;nbsp;mathematician and computer scientist, has graciously agreed to do a C9 lecture series covering monadic design principles applied to web development. You&#39;ve met Greg before in a Whiteboard jam session with Brian Beckman. The fundamental concept is here is the monad. Greg has a very novel and conceptually simplified explanation of what a monad is and why it really matters. This is very important and a required first step in this series since this&amp;nbsp;is all&amp;nbsp;about the application of monadic composition to&amp;nbsp; real world web development. What does this mean? Why does it matter? Tune in. Let&#39;s see if Greg&#39;s monadic analogies prove helpful for everyday developers in getting their heads around the elusive and beautifully complex monad. Shape. Wrap. Roll. See part 2 </description>
	<link></link>
	<language>en</language>
	<pubDate>Tue, 21 May 2013 13:03:35 GMT</pubDate>
	<lastBuildDate>Tue, 21 May 2013 13:03:35 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[<p>This is going to be good!&nbsp; Downloading now ...</p><p>Thanks to Greg and Charles for what will surely be another great lecture series.</p><p>posted by ryanb</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634212940240000000</link>
		<pubDate>Tue, 28 Sep 2010 18:07:04 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634212940240000000</guid>
		<dc:creator>ryanb</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[<p>Great! Greg, I visited your website (&nbsp;biosimilarity.com ) a few days ago and I read you organise workshops on<font class="heading1">Monadic Design Patterns for the Web. I wanted to write you an email and ask if you have any video about this&nbsp;for the ones who can't attend&nbsp;your workshops... and now we have it! <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></font></p><p>posted by akopacsi</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213010690000000</link>
		<pubDate>Tue, 28 Sep 2010 20:04:29 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213010690000000</guid>
		<dc:creator>akopacsi</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[<p>Superb! I love the names (I guess Shape is Mr. T (or M&lt;T&gt;; does that pronounce &quot;em-tee&quot;?), wrap is return and roll is bind, aka SelectMany and map is Select). Looking forward to seeing where this is going. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p><p>I'm having flashbacks to Brian's clock mon<em>oid</em></p><p>The design-by-contract mention is also very interesting.</p><p>So far my understanding is that...</p><p><pre class="brush: text">
   methodology

                                   Shape  =  t  aka  Mr. T
                                    wrap  =  w  aka  return
                                    roll  =  r  aka  bind    aka  SelectMany
                identity  =  i

   integer plus monoid

                                 i        =  w(0)
                            w(0) &#43; w(x)   =  w(x)
                            w(x) &#43; w(0)   =  w(x)
                          r(w(a) &#43; w(b))  =  r(w(a&#43;b))  =  w(a&#43;b)
                            w(0) &#43; w(6)   =  w(6)
                            w(6) &#43; w(0)   =  w(6)
                            w(6) &#43; w(1)   =  w(7)
                          r(w(1) &#43; w(2))  =  r(w(1&#43;2))  =  r(w(3))  =  w(3)

   am/pm clock monoid aka Beckman Time

                             i            =  w(0,0)  // time is a coordinate-set
                               w(a,b)     =  w(a%12,b%60)
                      w(a,b) &#43; w(0,0)     =  w(a,b)
                      w(0,0) &#43; w(a,b)     =  w(a,b)
                     w(12,0) &#43; w(1,0)     =  w(1,0)  // loss of information
                    r(w(a,b) &#43; w(a',b'))  =  r(w(a&#43;a',b&#43;b'))  =  w(a&#43;a',b&#43;b')
                      w(a,0) &#43; w(0,b)     =  w(a,b)
                      w(0,b) &#43; w(a,0)     =  w(a,b)
                      w(a,0) &#43; w(b,0)     =  w(a&#43;b,0)
                    r(w(1,2) &#43; w(4,3))    =  r(w(1&#43;4,2&#43;3))  =  w(1&#43;4,2&#43;3)  =  w(5,5)
                    r(w(2,1) &#43; w(3,4))    =  r(w(2&#43;3,1&#43;4))  =  w(2&#43;3,1&#43;4)  =  w(5,5)

   list monoid

                         i                =  w()
                    w(1) &#43; w()            =  w(1)
                    w()  &#43; w(1)           =  w(1)
                    w(1) &#43; w(2)           =  w(1,2)
                    w(2) &#43; w(1)           =  w(2,1)
                  w(1,2) &#43; w(3,4)         =  w(1,2,3,4)
                  w(3,4) &#43; w(1,2)         =  w(3,4,1,2)
            w(w(1),w(2)) &#43; w(w(3),w(4))   ~  ((1),(2)) &#43; ((3),(4))  =  ((1),(2),(3),(4))
          r(w(w(1),w(2)) &#43; w(w(3),w(4)))  =  r(w(w(1),w(2)) &#43; w(w(3),w(4)))  =  r(w(w(1),w(2),w(3),w(4)))  =  w(1,2,3,4)  // &quot;roll out&quot;

</pre></p><p>Roll doesn't really make sense for integers and clocks because there's not really any useful structure to flatten, so it becomes a no-op. For sets and lists yes because they can nest. Need to look a little more at the laws - but I love the way you &quot;level&quot; them.</p><p>Greg, didn't you mean strings are monads - as conceptually they are just lists of characters and therefore just a particular kind of list.</p><p>As Charles would say, if he was trapped in a monad:</p><p>&quot;<em>Wrap 'n Roll!</em>&quot;.</p><p>posted by exoteric</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213019120000000</link>
		<pubDate>Tue, 28 Sep 2010 20:18:32 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213019120000000</guid>
		<dc:creator>exoteric</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[<p>@<a href="/Blogs/Charles/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213019120000000">exoteric</a>: <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /> I love Greg's analogies and he's a&nbsp;<em>tremendous </em>teacher. We are all in for a real educational treat. <strong>Thank you</strong>, Greg. </p><p>When you think about it; where else on the planet can you get educated, for free,&nbsp;by the likes of Erik Meijer, Brian Beckman, Stephan T. Lavavej, Greg Meredith, Yuri Gurevich and Don Syme? We are very fortunate. We'll have more lectures by titans of the industry, too. It's humbling to be a part of this.</p><p>Keep on learning. Stretch your minds.</p><p>Here's to Future 9. </p><p>C</p><p>posted by Charles</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213254340000000</link>
		<pubDate>Wed, 29 Sep 2010 02:50:34 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213254340000000</guid>
		<dc:creator>Charles</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[<p>Great video, looking forward to the next adition... please don't keep us waiting too long <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p><p>posted by EFV</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213744340000000</link>
		<pubDate>Wed, 29 Sep 2010 16:27:14 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213744340000000</guid>
		<dc:creator>EFV</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[@exoteric: Interesting that you said that Unit is 0.&nbsp; In the video unit is 1.&nbsp; This is something that confused me.&nbsp; It was unclear to me if the operator applied to the unit was increment or the unit meant to be identity.&nbsp;<br />&nbsp;<br />I took it that it was meant to be the smallest incremental unit, especially since the unit was 1 and the operator was '+', rather than '*'.&nbsp;<p>posted by Ken Jackson</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213759670000000</link>
		<pubDate>Wed, 29 Sep 2010 16:52:47 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213759670000000</guid>
		<dc:creator>Ken Jackson</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[<p>@<a href="/Blogs/Charles/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213759670000000">Ken Jackson</a>: I had to do a little Wikipedia'ing -</p><p>A monoid obeys 3 axioms:</p><ul><li><strong>closure</strong>: whenever we compose two integers (&#43;) we get another integer</li><li><strong>identity </strong>element: for integer addition (&#43;) this has to be 0; for multiplication 1 ...</li><li><strong>associativity</strong>:&nbsp;(a &#43; b) &#43; c = a &#43; (b &#43; c);<br>&nbsp;&nbsp;&nbsp;&nbsp;for integers this should be true<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (1 &#43; 2) &#43; 3 = 1 &#43; (2 &#43; 3);<br>&nbsp;&nbsp;&nbsp;&nbsp;but actually for lists too!<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ([1,2] &#43; [3,4]) &#43; [5,6] = [1,2,3,4,5,6] = [1,2] &#43; ([3,4] &#43; [5,6]) </li></ul><p>So actually lists and by proxy strings (lists of characters) <em>are&nbsp;indeed</em> both monoids but as opposed to integers under addition, lists (under append)&nbsp;<em>are not</em> commutative.</p><p>I guess we could also say that we have an &quot;<em>integer multiplication monoid</em>&quot;, in that case:</p><ul><li><strong>closure</strong>: multiplying two integers gives another integer -- <strong>check</strong> </li><li><strong>identity </strong>element: 1 since 1&nbsp;* a = a -- <strong>check</strong></li><li><strong>associativity</strong>: (a * b) * c = a * (b&nbsp;* c) -- <strong>check</strong></li></ul><p>One thing I take away from this (perhaps wrongly) is that just saying &quot;integer monoid&quot; is misleading or ambiguous&nbsp;since there appears to be several ones, depending on what composition operator you choose (&#43;, *, ...)</p><p>By the way - Greg is <a href="http://en.wikipedia.org/wiki/Monad_(functional_programming)">mentioned</a> in the wikipedia article for monads <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p><p>posted by exoteric</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213837510000000</link>
		<pubDate>Wed, 29 Sep 2010 19:02:31 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213837510000000</guid>
		<dc:creator>exoteric</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[<p>@Exoteric: In your defintion of the &quot;integer monoid&quot; (a.k.a. monoid of natural numbers with &#43; and 0) you call u &quot;unit&quot;. I find that a bit confusing as in the context of monads &quot;unit&quot; is often used synonymously for &quot;return&quot;. On the other hand in algebra unit refers to a multiplicative identity element<a title="Identity element" href="http://en.wikipedia.org/wiki/Identity_element">.</a> I'd therefore prefer the term<em>neutral element</em> (or identity element) for u.</p><p>Again, great lecture! I'm looking forward to more!</p><p>posted by Novox</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213884300000000</link>
		<pubDate>Wed, 29 Sep 2010 20:20:30 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213884300000000</guid>
		<dc:creator>Novox</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[<p>@<a href="/Blogs/Charles/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213884300000000">Novox</a>: You're right, unit is confusing and misleading; it's as confusing as zero. So yes, i for identity would work better (I hope); fixed.</p><p>posted by exoteric</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213956520000000</link>
		<pubDate>Wed, 29 Sep 2010 22:20:52 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634213956520000000</guid>
		<dc:creator>exoteric</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[<p>So is the monad the total off the three parts or the process of the three parts?</p><p>Timing is a wonderful thing, as I'm starting to get the idea with the help of the below link.</p><p><a href="http://www.lostechies.com/blogs/derickbailey/archive/2010/09/29/monads-in-c-which-part-is-the-monad.aspx">http&#58;&#47;&#47;www.lostechies.com&#47;blogs&#47;derickbailey&#47;archive&#47;2010&#47;09&#47;29&#47;monads-in-c-which-part-is-the-monad.aspx</a></p><p>posted by N2Cheval</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634214977480000000</link>
		<pubDate>Fri, 01 Oct 2010 02:42:28 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634214977480000000</guid>
		<dc:creator>N2Cheval</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[<p>Really enjoyed the lecture. People might also want to check out Dan Piponi's &quot;monads as trees&quot;&nbsp;&#65279;<a href="http://blog.sigfpe.com/2010/01/monads-are-trees-with-grafting.html">http://blog.sigfpe.com/2010/01/monads-are-trees-with-grafting.html</a>. Also this talk is a must see:&nbsp;<a href="http://vimeo.com/6590617">http://vimeo.com/6590617</a>.</p><p>posted by jand</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634215384760000000</link>
		<pubDate>Fri, 01 Oct 2010 14:01:16 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634215384760000000</guid>
		<dc:creator>jand</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[<p>Hi Everyone!</p><p>Thank you Greg for a fantastic introduction to Monads and thanks Charles for making it happen. Great stuff!</p><p>I think I finally get a deeper understanding of what a monad is and would like to share an interesting revelation that I had connected with it. I realise what I say may sound somewhat strange but to me:</p><p>Monad = LIFE!</p><p>Hehe, let me elaborate...well generally speaking monad = change, I like to compare it to a transformation in life, we all go through different stages (wraps) in life and we need means (bind aka roll), in order to get from one stage to another.</p><p>It goes quite well with the KISS philosophy as well, the more complicated, scattered our life is, the more unmaintainable it is. What one would like to achieve, is to make his life simpler by taking out the unnecesary fuzz (scattered wraps) out of his life, thus ultimately creating a happier (monadic) version of life for himself, by using a kind of monadic transformation.</p><p>In that senese, to me the most difficult part of a monad would be the bind operator then, since this is were the transformation happens. In programming, just as in life, there is not one, universal bind operator, which forces us to come up with customized solutions for both our programs and lives.</p><p>Keep the lectures coming, I wonder where the next one will take me;)</p><p>&nbsp;</p><p>posted by dream3n</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634217092690000000</link>
		<pubDate>Sun, 03 Oct 2010 13:27:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634217092690000000</guid>
		<dc:creator>dream3n</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[ <p>I've turned my learning into an evolving blog post.<br><a href="http://xosfaere.wordpress.com/2010/10/05/shapely-monads/">http://xosfaere.wordpress.com/2010/10/05/shapely-monads/</a>&nbsp;</p><p>Thanks for the great brain wash!</p><p>PS - looks like Greg's written&nbsp;a book about this: </p><p><a href="http://www.amazon.com/Pro-Scala-Monadic-Design-Patterns/dp/143022844X">http://www.amazon.com/Pro-Scala-Monadic-Design-Patterns/dp/143022844X</a></p><p>posted by exoteric</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634218287290000000</link>
		<pubDate>Mon, 04 Oct 2010 22:38:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634218287290000000</guid>
		<dc:creator>exoteric</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[ <p>This is good stuff. On future slides can you use green or yellow instead of red? It doesn't show up very well ...</p><p>Thanks for posting this!</p><p>posted by Justin Bailey</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634221498640000000</link>
		<pubDate>Fri, 08 Oct 2010 15:51:04 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634221498640000000</guid>
		<dc:creator>Justin Bailey</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[ <p>Great&nbsp;lecture - very enlightening and worth watching several times over.</p><p>Any news on when the next installment is likely to be available ?</p><p>posted by Graham Hay</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634248528580000000</link>
		<pubDate>Mon, 08 Nov 2010 22:40:58 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634248528580000000</guid>
		<dc:creator>Graham Hay</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[ <p><blockquote><div class="quoteText"></p><p><a class="permalink" title="Comment Permalink" href="/Blogs/Charles/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads/Unlock?commentSlug=634248528580000000">2 days&nbsp;ago</a>, <a href="/Niners/Graham%20Hay">Graham&nbsp;Hay</a> wrote</p><p>Great&nbsp;lecture - very enlightening and worth watching several times over.</p><p>Any news on when the next installment is likely to be available ?</p><p></div></blockquote></p><p>Greg is coming to the C9 Studio to film the next part tomorrow, so we'll have it available not too long after that (probably next week sometime). </p><p>C</p><p>&nbsp;</p><p>posted by Charles</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634250301790000000</link>
		<pubDate>Wed, 10 Nov 2010 23:56:19 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634250301790000000</guid>
		<dc:creator>Charles</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[@Charles: Can't wait for the next instalment to be available, keep up the good work!<p>posted by scala-monads-fan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634256856960000000</link>
		<pubDate>Thu, 18 Nov 2010 14:01:36 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634256856960000000</guid>
		<dc:creator>scala-monads-fan</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[ <p>I am still confused. Is there a more practical example? Like how does this make coding eaiser, clean, easier to maintain and so on?</p><p>posted by magicalclick</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634274497020000000</link>
		<pubDate>Thu, 09 Dec 2010 00:01:42 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634274497020000000</guid>
		<dc:creator>magicalclick</dc:creator>
	</item>
	<item>
		<title>Re: C9 Lectures: Greg Meredith - Monadic Design Patterns for the Web - Introduction to Monads</title>
		<description>
			<![CDATA[It is all very amazing, just mindboggling<p>posted by JAMES PINION      &quot;Randy&quot;  </p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634285911010000000</link>
		<pubDate>Wed, 22 Dec 2010 05:05:01 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web/C9-Lectures-Greg-Meredith-Monadic-Design-Patterns-for-the-Web-Introduction-to-Monads#c634285911010000000</guid>
		<dc:creator>JAMES PINION      &quot;Randy&quot;  </dc:creator>
	</item>
</channel>
</rss>