rework manip trees (including reversing order of tree_monadizer back to orig)
[lambda.git] / offsite_reading.mdwn
1 Many of these links are to Wikipedia. You can learn a lot from such articles,
2 so long as you remember they may sometimes mislead or make mistakes. However, I
3 hope at this point in your education you'll have learned to be a guarded reader
4 even of authoritative treatises by eminent authors. So you shouldn't need any
5 Wikipedia-specific warnings.
6
7 For most readers, many bits of reading we point you to will be hairy in one way
8 or another. It may be aimed at audiences with more programming experience; it
9 may be aimed at audiences with specific logical background you don't yet have;
10 it may be aimed at audiences familiar with technical areas in linguistics you're
11 first encountering. Or perhaps several of these at once. We hope you will
12 already have mastered the skill of leveraged reading: getting what you can out
13 of an article you don't fully understand, so that you can discuss it with the rest of
14 the group and hopefully get to a point where you can read it again and
15 get more out of. (Rinse and repeat.)
16
17 ## Functions ##
18
19 *       [[!wikipedia Higher-order function]]
20 *       [[!wikipedia First-class function]]
21 *       [[!wikipedia Currying]]
22
23 ## Functional vs imperative programming ##
24
25 *       [[!wikipedia Declarative programming]]
26 *       [[!wikipedia Functional programming]]
27 *       [[!wikipedia Purely functional]]
28 *       [[!wikipedia Referential transparency (computer science)]]
29 *       [[!wikipedia Side effect (computer science) desc="Side effects"]]
30 *       [[!wikipedia Imperative programming]]
31
32 ## General issues about variables and scope in programming languages ##
33
34 *       [[!wikipedia Variable (programming) desc="Variables"]]
35 *       [[!wikipedia Free variables and bound variables]]
36 *       [[!wikipedia Variable shadowing]]
37 *       [[!wikipedia Name binding]]
38 *       [[!wikipedia Name resolution]]
39 *       [[!wikipedia Parameter (computer science) desc="Function parameters"]]
40 *       [[!wikipedia Scope (programming) desc="Variable scope"]]
41 *       [[!wikipedia Closure (computer science) desc="Closures"]]
42
43 ##[[Learning Scheme]]##
44
45 ## Untyped lambda calculus and combinatory logic ##
46
47 *       [[!wikipedia Lambda calculus]]
48 <!-- Haskell Curry had ideas that he felt were validated upon reading a 1924 paper by M. Schönfinkel "Uber die Bausteine der mathematischen Logik" which used combinators in a similar way to his own ideas. Haskell then wrote "An analysis of logical substitution" which appeared in the American Journal of Mathematics in 1929. -->
49 *       [[!wikipedia Moses Schönfinkel]]
50 *       [[!wikipedia Haskell Curry]]
51 *       [[!wikipedia Alonzo Church]]<p>
52 *       [[!wikipedia Church encoding]]
53
54 *       [[!wikipedia Combinatory logic]]
55 *       [Combinatory logic](http://plato.stanford.edu/entries/logic-combinatory/) at the Stanford Encyclopedia of Philosophy
56 *       [[!wikipedia SKI combinatory calculus]]
57 *       [[!wikipedia B,C,K,W system]]
58 *       Jeroen Fokker, "The Systematic Construction of a One-combinator Basis for Lambda-Terms" <cite>Formal Aspects of Computing</cite> 4 (1992), pp. 776-780.
59         <http://people.cs.uu.nl/jeroen/article/combinat/combinat.ps>
60 *       [Chris Barker's Iota and Jot](http://semarch.linguistics.fas.nyu.edu/barker/Iota/)<p>
61
62 *       [To Dissect a Mockingbird](http://dkeenan.com/Lambda/index.htm)
63 *       [Combinator Birds](http://www.angelfire.com/tx4/cus/combinator/birds.html)
64 *   [Les deux combinateurs et la totalite](http://www.paulbraffort.net/j_et_i/j_et_i.html) by Paul Braffort.
65
66 ## Evaluation Order ##
67
68 *       [[!wikipedia Evaluation strategy]]
69 *       [[!wikipedia Eager evaluation]]
70 *       [[!wikipedia Lazy evaluation]]
71 *       [[!wikipedia Strict programming language]]
72
73 ## Confluence, Normalization, Undecidability ##
74
75 *       [[!wikipedia Church-Rosser theorem]]
76 *       [[!wikipedia Normalization property]]
77 *       [[!wikipedia Turing completeness]]<p>
78 *       [Scooping the Loop Snooper](http://www.cl.cam.ac.uk/teaching/0910/CompTheory/scooping.pdf), a proof of the undecidability of the halting problem in the style of Dr Seuss by Geoffrey K. Pullum
79
80
81 ## Recursion and the Y Combinator ##
82
83 *       [[!wikipedia Recursion (computer science) desc="Recursion"]]
84 *       [[!wikipedia Y combinator]]
85 *       [Chapter 9 from The Little Schemer](http://www.ccs.neu.edu/home/matthias/BTLS/sample.ps) on the Y Combinator "...and Again, and Again, and Again..."
86 *       [The Y combinator](http://mvanier.livejournal.com/2700.html)
87 *       [The Why of Y](http://www.dreamsongs.com/NewFiles/WhyOfY.pdf)
88 *       [The Y Combinator (Slight Return), or: How to Succeed at Recursion Without Really Recursing](http://mvanier.livejournal.com/2897.html)
89 *       [Y Combinator for Dysfunctional Non-Schemers](http://rayfd.wordpress.com/2007/05/06/y-combinator-for-dysfunctional-non-schemers/)
90 *       [The Y Combinator](http://www.ece.uc.edu/~franco/C511/html/Scheme/ycomb.html)
91 *       [The Y Combinator](http://dangermouse.brynmawr.edu/cs245/ycomb_jim.html) derives the applicative-order Y-combinator from scratch, in Scheme. This derivation is similar in flavor to the derivation found in The Little Schemer, but uses a slightly different starting approach...
92 *   [The church of the least fixed point, by Sans Pareil](http://www.springerlink.com/content/n4t2v573m58g2755/)
93
94 ## Folds ##
95
96 *    [[!wikipedia Fold (higher-order function)]]
97
98
99 ## Types ##
100
101 *       [[!wikipedia Typed lambda calculus]]
102 *       [[!wikipedia Simply typed lambda calculus]]
103 *       [Type Theory](http://plato.stanford.edu/entries/type-theory/) at the Stanford Encyclopedia of Philosophy
104 *       [Church's Type Theory](http://plato.stanford.edu/entries/type-theory-church/) at the Stanford Encyclopedia of Philosophy
105 *       [[!wikipedia Type polymorphism]]
106 *       [[!wikipedia System F]]
107 <p>
108 *       [[!wikipedia Tagged union]]
109 *       [[!wikipedia Algebraic data type]]
110 *       [[!wikipedia Recursive data type]]
111 *       [[!wikipedia Pattern matching]]
112 *       [[!wikipedia Unit type]]
113 *       [[!wikipedia Bottom type]]
114
115
116 ##[[Learning OCaml]]##
117
118
119 ## Monads ##
120 *       [[!wikipedia Monad (functional programming) desc="Monads in Functional Programming"]]
121 *       [Daniel Friedman. A Schemer's View of Monads](/schemersviewofmonads.ps): from <https://www.cs.indiana.edu/cgi-pub/c311/doku.php?id=home> but the link above is to a local copy.
122 *       [A Gentle Intro to Haskell: About Monads](http://www.haskell.org/tutorial/monads.html) (link currently broken, check <http://www.haskell.org/haskellwiki/Tutorials>)
123 *       [All About Monads](http://haskell.org/all_about_monads/html/index.html) (also broken, here's an [archived version](http://web.archive.org/web/20071013115156/haskell.org/all_about_monads/html/index.html))
124 *       From HaskwellWiki:
125         [Monad tutorials timeline](http://www.haskell.org/haskellwiki/Monad_tutorials_timeline)
126         | [Monad laws](http://www.haskell.org/haskellwiki/Monad_Laws)
127         | [Monads as computation](http://www.haskell.org/haskellwiki/Monads_as_computation)
128         | [Monads as containers](http://www.haskell.org/haskellwiki/Monads_as_containers)
129         | [What a monad is not](http://www.haskell.org/haskellwiki/What_a_Monad_is_not)
130 *       [Haskell wikibook: Understanding monads](http://en.wikibooks.org/wiki/Haskell/Understanding_monads)
131 *       [Haskell wikibook: Monad Transformers](http://en.wikibooks.org/wiki/Haskell/Monad_transformers)
132
133 *       [A State Monad Tutorial](http://strabismicgobbledygook.wordpress.com/2010/03/06/a-state-monad-tutorial/)
134 *       [You Could Have Invented Monads! (And Maybe You Already Have.)](http://blog.sigfpe.com/2006/08/you-could-have-invented-monads-and.html)
135 *       Yet Another Monad Tutorial: [part 1](http://mvanier.livejournal.com/3917.html) [part 2](http://mvanier.livejournal.com/4305.html)
136 *       [Monads for the Working Haskell Programmer -- a short tutorial](http://www.engr.mun.ca/~theo/Misc/haskell_and_monads.htm)
137 *       [Introduction to Haskell: Monads](http://onlamp.com/pub/a/onlamp/2007/08/02/introduction-to-haskell-pure-functions.html)
138 *       [SPb Haskell User Group: Monad tutorial](http://spbhug.folding-maps.org/wiki/MonadsEn)
139 *       [Understanding Haskell Monads](http://ertes.de/articles/monads.html)
140 *       [A Monad Tutorial for OCaml](http://enfranchisedmind.com/blog/posts/a-monad-tutorial-for-ocaml/)
141 *       [Beyond Monads](http://blog.sigfpe.com/2009/02/beyond-monads.html)
142 *       [Simple Explanation of a Monad](http://math.stackexchange.com/questions/405/simple-explanation-of-a-monad)
143 *       [What is a Monad?](http://stackoverflow.com/questions/44965/what-is-a-monad)
144 *       [Can Anyone Explain Monads?](http://stackoverflow.com/questions/2366/can-anyone-explain-monads)
145 *       [Monad in Plain English...](http://stackoverflow.com/questions/2704652/monad-in-plain-english-for-the-oop-programmer-with-no-fp-background)
146 *       [Monad in non-programming terms](http://stackoverflow.com/questions/3261729/monad-in-non-programming-terms)
147 *       [Real World Haskell: chapter on Monads](http://book.realworldhaskell.org/read/monads.html)
148 *       [Learn You a Haskell for Great Good: chapter on Functors, Applicative Functors and Monoids](http://www.learnyouahaskell.com/functors-applicative-functors-and-monoids)
149 *       Monads are Elephants:
150 [Part 1](http://james-iry.blogspot.com/2007/09/monads-are-elephants-part-1.html)
151 [Part 2](http://james-iry.blogspot.com/2007/10/monads-are-elephants-part-2.html)
152 [Part 3](http://james-iry.blogspot.com/2007/10/monads-are-elephants-part-3.html)
153 [Part 4](http://james-iry.blogspot.com/2007/11/monads-are-elephants-part-4.html)
154 *       [Brian Beckman: Don't fear the Monad (67 minute video)](http://channel9.msdn.com/shows/Going+Deep/Brian-Beckman-Dont-fear-the-Monads/)
155 *       [A monad non-tutorial...or why you shouldn't ask what a monad is](http://strongtyped.blogspot.com/2010/01/monad-non-tutorial.html)
156 *       [Abstraction, intuition, and the "monad tutorial fallacy"](http://byorgey.wordpress.com/2009/01/12/abstraction-intuition-and-the-monad-tutorial-fallacy/)
157 *       [How you should(n't) use Monad](http://noordering.wordpress.com/2009/03/31/how-you-shouldnt-use-monad/)
158 *       [The Mother of all Monads](http://blog.sigfpe.com/2008/12/mother-of-all-monads.html)
159 *       [Monads! (and Why Monad Tutorials Are All Awful)](http://ahamsandwich.wordpress.com/2007/07/26/monads-and-why-monad-tutorials-are-all-awful/)
160 *       [Of monads and spacesuits (archived)](http://www.iterasi.net/openviewer.aspx?sqrlitid=ixx7fcluvek_9lfolsxr_g)
161 *       [How not to explain Haskell monads](http://mvanier.livejournal.com/1205.html)
162 *       [The State Monad: a tutorial for the confused?](http://coder.bsimmons.name/blog/2009/10/the-state-monad-a-tutorial-for-the-confused/)
163 *       Haskell state monads: [part 1](http://mvanier.livejournal.com/1765.html) [part 2](http://mvanier.livejournal.com/1901.html) [part 3](http://mvanier.livejournal.com/4586.html) [part 4](http://mvanier.livejournal.com/4647.html)<p>
164 *       [Research Papers/Monads and Arrows](http://www.haskell.org/haskellwiki/Research_papers/Monads_and_arrows)
165 *       [Eugenio Moggi, Notions of Computation and Monads](http://www.disi.unige.it/person/MoggiE/ftp/ic91.pdf): Information and Computation 93 (1) 1991.
166 *       [Philip Wadler. The essence of functional programming](http://homepages.inf.ed.ac.uk/wadler/papers/essence/essence.ps):
167 invited talk, *19'th Symposium on Principles of Programming Languages*, ACM Press, Albuquerque, January 1992.
168 <!--    This paper explores the use monads to structure functional programs. No prior knowledge of monads or category theory is required.
169         Monads increase the ease with which programs may be modified. They can mimic the effect of impure features such as exceptions, state, and continuations; and also provide effects not easily achieved with such features. The types of a program reflect which effects occur.
170         The first section is an extended example of the use of monads. A simple interpreter is modified to support various extra features: error messages, state, output, and non-deterministic choice. The second section describes the relation between monads and continuation-passing style. The third section sketches how monads are used in a compiler for Haskell that is written in Haskell.-->
171 *       [Philip Wadler. Monads for Functional Programming](http://homepages.inf.ed.ac.uk/wadler/papers/marktoberdorf/baastad.pdf):
172 in M. Broy, editor, *Marktoberdorf Summer School on Program Design Calculi*, Springer Verlag, NATO ASI Series F: Computer and systems sciences, Volume 118, August 1992. Also in J. Jeuring and E. Meijer, editors, *Advanced Functional Programming*, Springer Verlag, LNCS 925, 1995. Some errata fixed August 2001.
173 <!--    The use of monads to structure functional programs is described. Monads provide a convenient framework for simulating effects found in other languages, such as global state, exception handling, output, or non-determinism. Three case studies are looked at in detail: how monads ease the modification of a simple evaluator; how monads act as the basis of a datatype of arrays subject to in-place update; and how monads can be used to build parsers.-->
174 *       Ken Shan [Monads for natural language semantics](http://arxiv.org/abs/cs/0205026v1) (2001) uses reader monad to implement intensionality.
175 *       Ben-Avi and Winter [A modular approach to intensionality](http://parles.upf.es/glif/pub/sub11/individual/bena_wint.pdf) (2007) reinvents the technique.
176         <!--http://citeseerx.ist.psu.edu/viewdocsummary?doi=10.1.1.73.6927-->
177 *       Monsters and context-shifting, e.g. Gillies/von Fintel on "ifs" [not sure which paper]
178
179
180 ## Monads in Category Theory ##
181
182 *       [Category Theory at SEP](http://plato.stanford.edu/entries/category-theory/)
183 *       [[!wikipedia Category theory]]
184 *       [[!wikipedia Category (mathematics) desc="Category"]]
185 *       [[!wikipedia Morphism]]
186 *       [[!wikipedia Functor]]
187 *       [[!wikipedia Natural transformation]]
188 *       [[!wikipedia Monad (category theory) desc="Monads in category theory"]]
189 *       [Haskell/Category Theory](http://en.wikibooks.org/wiki/Haskell/Category_theory)
190 *       [Category Theory & Functional Programming](http://blog.mestan.fr/2009/01/09/category-theory-functional-programming/)
191 *       [Learning Haskell through Category Theory, and Adventuring in Category Land](http://dekudekuplex.wordpress.com/2009/01/16/learning-haskell-through-category-theory-and-adventuring-in-category-land-like-flatterland-only-about-categories/)
192 *       [Resources for learning practical category theory](http://mathoverflow.net/questions/903/resources-for-learning-practical-category-theory)
193 *       [A Partial Ordering of some Category Theory applied to Haskell](http://blog.sigfpe.com/2010/03/partial-ordering-of-some-category.html)
194
195
196 ## Side-effects / mutation ##
197
198 *       [[!wikipedia Referential transparency (computer science)]]
199 *       [[!wikipedia Side effect (computer science) desc="Side effects"]]
200 *       [[!wikipedia Imperative programming]]
201 *       [[!wikipedia Reference (computer science) desc="References"]]
202 *       [[!wikipedia Pointer (computing) desc="Pointers"]]
203 *       [Pointers in OCaml](http://caml.inria.fr/resources/doc/guides/pointers.html)
204
205
206 ## Continuations ##
207
208 *       [[!wikipedia Continuation]]
209 *       [[!wikipedia Continuation-passing style]]
210 *       [[!wikipedia Call-with-current-continuation]]
211 *       [Intro to call/cc](http://community.schemewiki.org/?call-with-current-continuation) at SchemeWiki
212 *       [Call With Current Continuation](http://www.c2.com/cgi/wiki?CallWithCurrentContinuation)
213 *       [Continuations Made Simple and Illustrated](http://www.ps.uni-saarland.de/~duchier/python/continuations.html)
214 *       [Continuation kata](http://programming-musings.org/2006/02/12/continuation-kata/)
215 *       [Understanding continuations](http://keithdevens.com/weblog/archive/2004/Jul/11/continuations) [Commentary](http://lambda-the-ultimate.org/node/86)
216 *       [Continuations In Scheme](http://tech.phillipwright.com/2010/05/23/continuations-in-scheme/)
217 *       [Understanding Scheme Continuations](http://sanjaypande.blogspot.com/2004/06/understanding-scheme-continuations.html). This is tagged "Part I" but I think there's no further parts.
218 *       [Continuations for Curmudgeons](http://www.intertwingly.net/blog/2005/04/13/Continuations-for-Curmudgeons) [Commentary](http://lambda-the-ultimate.org/node/643)
219 *       [Haskell wiki on Continuations](http://www.haskell.org/haskellwiki/Continuation)
220 *       [Haskell wikibook on Continuation Passing Style](http://en.wikibooks.org/wiki/Haskell/Continuation_passing_style)<p>
221 *       [[!wikipedia Delimited continuation]]
222 *       [Composable Continuations Tutorial](http://community.schemewiki.org/?composable-continuations-tutorial) at SchemeWiki
223 *       [Post by Ken](http://lambda-the-ultimate.org/node/1197#comment-12927) on Lambda the Ultimate explaining difference between undelimited and delimited continuations
224 *       [shift, reset and streams](http://chneukirchen.org/blog/archive/2005/04/shift-reset-and-streams.html)
225 *       [guile and delimited continuations](http://www.wingolog.org/archives/2010/02/26/guile-and-delimited-continuations)
226 *       [Delimited continuations in Scala](http://blog.richdougherty.com/2009/02/delimited-continuations-in-scala_24.html)
227 *       [Delimited Continuations Explained (in Scala)](http://dcsobral.blogspot.com/2009/07/delimited-continuations-explained-in.html)
228 *       [Partial Continuations](http://www.bluishcoder.co.nz/articles/scheme/partial-continuations.html)
229 *       Delimited Continuations in MzScheme:
230 [Part 1](http://schemekeys.blogspot.com/2006/11/prompts-their-interaction-with-dynamic.html)
231 [Part 2](http://schemekeys.blogspot.com/2006/12/delimited-continuations-in-mzscheme.html)
232 [Part 3](http://schemekeys.blogspot.com/2007/01/going-further-with-primitives.html)
233 [Part 4](http://schemekeys.blogspot.com/2007/01/odd-and-ends.html)<p>
234 *       [Online Bibliography of Scheme Research: Continuations and Continuation Passing Style](http://library.readscheme.org/page6.html)
235 *       [Delimited continuations in natural language semantics](http://okmij.org/ftp/gengo/)
236
237
238 ## The Curry-Howard Correspondence ##
239 *       The [[!wikipedia Curry-Howard isomorphism]]
240 *       [The Curry-Howard correspondence in Haskell](http://www.thenewsh.com/~newsham/formal/curryhoward/)
241 *       [Haskell wikibook on the Curry-Howard Isomorphism](http://en.wikibooks.org/wiki/Haskell/The_Curry-Howard_isomorphism) at Haskell wiki<p>
242
243
244
245 ## Linear Logic ##
246
247 *       [[!wikipedia Linear logic]]
248
249