Difference between revisions of "Blog articles/Monads"

From HaskellWiki
Jump to navigation Jump to search
(Added a link.)
 
(21 intermediate revisions by 7 users not shown)
Line 12: Line 12:
 
* [http://sigfpe.blogspot.com/2007/06/monads-from-algebra-and-the-gray-code.html Monads from Algebra and the the Gray Code from Groups]
 
* [http://sigfpe.blogspot.com/2007/06/monads-from-algebra-and-the-gray-code.html Monads from Algebra and the the Gray Code from Groups]
 
* [http://sigfpe.blogspot.com/2006/06/monads-kleisli-arrows-comonads-and.html Monads, Kleisli Arrows, Comonads and other Rambling Thoughts]
 
* [http://sigfpe.blogspot.com/2006/06/monads-kleisli-arrows-comonads-and.html Monads, Kleisli Arrows, Comonads and other Rambling Thoughts]
  +
* [http://sigfpe.blogspot.com/2007/11/io-monad-for-people-who-simply-dont.html The IO Monad for People who Simply Don't Care]
 
* [http://cgi.cse.unsw.edu.au/~dons/blog/2006/12/11#interpreters-with-reader-monads Quick interpreters with the Reader monad]
 
* [http://cgi.cse.unsw.edu.au/~dons/blog/2006/12/11#interpreters-with-reader-monads Quick interpreters with the Reader monad]
 
* [http://hierodule.livejournal.com/69052.html Monads]
 
* [http://hierodule.livejournal.com/69052.html Monads]
Line 38: Line 39:
 
* [http://luqui.org/blog/archives/2007/08/05/haskell-state-accessors-second-attempt-composability/ Haskell State Accessors (second attempt: Composability)]
 
* [http://luqui.org/blog/archives/2007/08/05/haskell-state-accessors-second-attempt-composability/ Haskell State Accessors (second attempt: Composability)]
 
* [http://www.bofh.org.uk/articles/2007/08/07/monads Beginning with monads]
 
* [http://www.bofh.org.uk/articles/2007/08/07/monads Beginning with monads]
  +
* [http://dailykibitz.blogspot.com/2007/08/learning-about-computational-monads.html Learning about (Computational) Monads ]
  +
* [http://osteele.com/archives/2007/12/overloading-semicolon Overloading Semicolon, or, monads from 10,000 Feet]
  +
* [http://mvanier.livejournal.com/3917.html Yet Another Monad Tutorial]
   
 
== Monad transformers ==
 
== Monad transformers ==
Line 57: Line 61:
 
* [http://cgi.cse.unsw.edu.au/~dons/blog/2007/07/31 Run length encoding in Haskell]
 
* [http://cgi.cse.unsw.edu.au/~dons/blog/2007/07/31 Run length encoding in Haskell]
 
* [http://neilbartlett.name/blog/2007/08/01/haskell-explaining-arrows-through-xml-transformationa/ Haskell: Explaining Arrows through XML Transformations]
 
* [http://neilbartlett.name/blog/2007/08/01/haskell-explaining-arrows-through-xml-transformationa/ Haskell: Explaining Arrows through XML Transformations]
* [http://unenterprise.blogspot.com/2007/08/playing-with-arrows.html Playing with Arrows]
+
* [http://www.drmaciver.com/2007/08/playing-with-arrows/ Playing with Arrows]
 
* [http://onthebalcony.wordpress.com/2007/02/19/my-evolution-as-a-haskell-programmer/ My Evolution as a Haskell Programmer: Factorial with Arrows]
 
* [http://onthebalcony.wordpress.com/2007/02/19/my-evolution-as-a-haskell-programmer/ My Evolution as a Haskell Programmer: Factorial with Arrows]
* [http://abstractabsurd.blogspot.com/2007/04/arrows-security.html Arrows and security]
+
* [http://monadicheadaches.blogspot.com/2007/12/arrows-first-encounter.html Arrows first encounter]
   
 
== Comonads ==
 
== Comonads ==
Line 70: Line 74:
   
 
Nobody has written blog articles on applicative functors - so how about a functional pearl:
 
Nobody has written blog articles on applicative functors - so how about a functional pearl:
  +
* [www.soi.city.ac.uk/~ross/papers/Applicative.pdf Applicative Programming with Effects]
+
* [http://www.soi.city.ac.uk/~ross/papers/Applicative.pdf Applicative Programming with Effects]
   
 
== Further reading ==
 
== Further reading ==

Latest revision as of 01:44, 28 January 2011

Monads

Monad transformers

Continuation monads

Arrows

Comonads

Applicative Functors

Nobody has written blog articles on applicative functors - so how about a functional pearl:

Further reading