Difference between revisions of "Blog articles/Monads"

From HaskellWiki
Jump to navigation Jump to search
(Added a link.)
 
(28 intermediate revisions by 8 users not shown)
Line 11: Line 11:
 
* [http://sigfpe.blogspot.com/2007/06/how-to-write-tolerably-efficient.html How to write tolerably efficient optimzation code without really trying...]
 
* [http://sigfpe.blogspot.com/2007/06/how-to-write-tolerably-efficient.html How to write tolerably efficient optimzation code without really trying...]
 
* [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/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 35: Line 37:
 
* [http://www.haskell.org/haskellwiki/Monads_as_computation Monads as computation]
 
* [http://www.haskell.org/haskellwiki/Monads_as_computation Monads as computation]
 
* [http://davblog48.blogspot.com/2007/08/monads-are-hard-to-teach.html Monads are hard to teach]
 
* [http://davblog48.blogspot.com/2007/08/monads-are-hard-to-teach.html Monads are hard to teach]
  +
* [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://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 54: 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://monadicheadaches.blogspot.com/2007/12/arrows-first-encounter.html Arrows first encounter]
   
 
== Comonads ==
 
== Comonads ==
Line 61: Line 70:
 
* [http://sigfpe.blogspot.com/2006/12/evaluating-cellular-automata-is.html Evaluating cellular automata is co-monadic]
 
* [http://sigfpe.blogspot.com/2006/12/evaluating-cellular-automata-is.html Evaluating cellular automata is co-monadic]
 
* [http://gelisam.blogspot.com/2007/04/i-understand-comonads.html Understanding comonads]
 
* [http://gelisam.blogspot.com/2007/04/i-understand-comonads.html Understanding comonads]
  +
  +
== Applicative Functors ==
  +
  +
Nobody has written blog articles on applicative functors - so how about a functional pearl:
  +
  +
* [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