update new_stuff
[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)
123 *       [All About Monads](http://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
132 *       [You Could Have Invented Monads! (And Maybe You Already Have.)](http://blog.sigfpe.com/2006/08/you-could-have-invented-monads-and.html)
133 *       Yet Another Monad Tutorial: [part 1](http://mvanier.livejournal.com/3917.html) [part 2](http://mvanier.livejournal.com/4305.html)
134 *       [Monads for the Working Haskell Programmer -- a short tutorial](http://www.engr.mun.ca/~theo/Misc/haskell_and_monads.htm)
135 *       [Introduction to Haskell: Monads](http://onlamp.com/pub/a/onlamp/2007/08/02/introduction-to-haskell-pure-functions.html)
136 *       [SPb Haskell User Group: Monad tutorial](http://spbhug.folding-maps.org/wiki/MonadsEn)
137 *       [Understanding Haskell Monads](http://ertes.de/articles/monads.html)
138 *       [A Monad Tutorial for OCaml](http://enfranchisedmind.com/blog/posts/a-monad-tutorial-for-ocaml/)
139 *       [Beyond Monads](http://blog.sigfpe.com/2009/02/beyond-monads.html)
140 *       [Simple Explanation of a Monad](http://math.stackexchange.com/questions/405/simple-explanation-of-a-monad)
141 *       [What is a Monad?](http://stackoverflow.com/questions/44965/what-is-a-monad)
142 *       [Can Anyone Explain Monads?](http://stackoverflow.com/questions/2366/can-anyone-explain-monads)
143 *       [Monad in Plain English...](http://stackoverflow.com/questions/2704652/monad-in-plain-english-for-the-oop-programmer-with-no-fp-background)
144 *       [Monad in non-programming terms](http://stackoverflow.com/questions/3261729/monad-in-non-programming-terms)
145 *       [Real World Haskell: chapter on Monads](http://book.realworldhaskell.org/read/monads.html)
146 *       [Learn You a Haskell for Great Good: chapter on Functors, Applicative Functors and Monoids](http://www.learnyouahaskell.com/functors-applicative-functors-and-monoids)
147 *       Monads are Elephants:
148 [Part 1](http://james-iry.blogspot.com/2007/09/monads-are-elephants-part-1.html)
149 [Part 2](http://james-iry.blogspot.com/2007/10/monads-are-elephants-part-2.html)
150 [Part 3](http://james-iry.blogspot.com/2007/10/monads-are-elephants-part-3.html)
151 [Part 4](http://james-iry.blogspot.com/2007/11/monads-are-elephants-part-4.html)
152 *       [Brian Beckman: Don't fear the Monad (67 minute video)](http://channel9.msdn.com/shows/Going+Deep/Brian-Beckman-Dont-fear-the-Monads/)
153 *       [A monad non-tutorial...or why you shouldn't ask what a monad is](http://strongtyped.blogspot.com/2010/01/monad-non-tutorial.html)
154 *       [Abstraction, intuition, and the "monad tutorial fallacy"](http://byorgey.wordpress.com/2009/01/12/abstraction-intuition-and-the-monad-tutorial-fallacy/)
155 *       [How you should(n't) use Monad](http://noordering.wordpress.com/2009/03/31/how-you-shouldnt-use-monad/)
156 *       [The Mother of all Monads](http://blog.sigfpe.com/2008/12/mother-of-all-monads.html)
157 *       [Monads! (and Why Monad Tutorials Are All Awful)](http://ahamsandwich.wordpress.com/2007/07/26/monads-and-why-monad-tutorials-are-all-awful/)
158 *       [Of monads and spacesuits (archived)](http://www.iterasi.net/openviewer.aspx?sqrlitid=ixx7fcluvek_9lfolsxr_g)
159 *       [How not to explain Haskell monads](http://mvanier.livejournal.com/1205.html)
160 *       [The State Monad: a tutorial for the confused?](http://coder.bsimmons.name/blog/2009/10/the-state-monad-a-tutorial-for-the-confused/)
161 *       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>
162 *       [Research Papers/Monads and Arrows](http://www.haskell.org/haskellwiki/Research_papers/Monads_and_arrows)
163 *       [Eugenio Moggi, Notions of Computation and Monads](http://www.disi.unige.it/person/MoggiE/ftp/ic91.pdf): Information and Computation 93 (1) 1991.
164 *       [Philip Wadler. The essence of functional programming](http://homepages.inf.ed.ac.uk/wadler/papers/essence/essence.ps):
165 invited talk, *19'th Symposium on Principles of Programming Languages*, ACM Press, Albuquerque, January 1992.
166 <!--    This paper explores the use monads to structure functional programs. No prior knowledge of monads or category theory is required.
167         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.
168         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.-->
169 *       [Philip Wadler. Monads for Functional Programming](http://homepages.inf.ed.ac.uk/wadler/papers/marktoberdorf/baastad.pdf):
170 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.
171 <!--    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.-->
172 *       Ken Shan [Monads for natural language semantics](http://arxiv.org/abs/cs/0205026v1) (2001) uses reader monad to implement intensionality.
173 *       Ben-Avi and Winter [A modular approach to intensionality](http://parles.upf.es/glif/pub/sub11/individual/bena_wint.pdf) (2007) reinvents the technique.
174         <!--http://citeseerx.ist.psu.edu/viewdocsummary?doi=10.1.1.73.6927-->
175 *       Monsters and context-shifting, e.g. Gillies/von Fintel on "ifs" [not sure which paper]
176
177
178 ## Monads in Category Theory ##
179
180 *       [Category Theory at SEP](http://plato.stanford.edu/entries/category-theory/)
181 *       [[!wikipedia Category theory]]
182 *       [[!wikipedia Category (mathematics) desc="Category"]]
183 *       [[!wikipedia Morphism]]
184 *       [[!wikipedia Functor]]
185 *       [[!wikipedia Natural transformation]]
186 *       [[!wikipedia Monad (category theory) desc="Monads in category theory"]]
187 *       [Haskell/Category Theory](http://en.wikibooks.org/wiki/Haskell/Category_theory)
188 *       [Category Theory & Functional Programming](http://blog.mestan.fr/2009/01/09/category-theory-functional-programming/)
189 *       [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/)
190 *       [Resources for learning practical category theory](http://mathoverflow.net/questions/903/resources-for-learning-practical-category-theory)
191 *       [A Partial Ordering of some Category Theory applied to Haskell](http://blog.sigfpe.com/2010/03/partial-ordering-of-some-category.html)
192
193
194 ## Side-effects / mutation ##
195
196 *       [[!wikipedia Referential transparency (computer science)]]
197 *       [[!wikipedia Side effect (computer science) desc="Side effects"]]
198 *       [[!wikipedia Imperative programming]]
199 *       [[!wikipedia Reference (computer science) desc="References"]]
200 *       [[!wikipedia Pointer (computing) desc="Pointers"]]
201 *       [Pointers in OCaml](http://caml.inria.fr/resources/doc/guides/pointers.html)
202
203
204 ## The Curry-Howard Correspondence ##
205 *       The [[!wikipedia Curry-Howard isomorphism]]
206 *       [The Curry-Howard correspondence in Haskell](http://www.thenewsh.com/~newsham/formal/curryhoward/)
207 *       [The Curry-Howard Isomorphism](http://en.wikibooks.org/wiki/Haskell/The_Curry-Howard_isomorphism) at Haskell wiki<p>
208
209
210 ## Continuations ##
211
212 *       [[!wikipedia Continuation]]
213 *       [[!wikipedia Continuation-passing style]]
214 *       [[!wikipedia Call-with-current-continuation]]
215 *       [Intro to call/cc](http://community.schemewiki.org/?call-with-current-continuation) at SchemeWiki
216 *       [Call With Current Continuation](http://www.c2.com/cgi/wiki?CallWithCurrentContinuation)
217 *       [Continuations Made Simple and Illustrated](http://www.ps.uni-saarland.de/~duchier/python/continuations.html)
218 *       [Continuation kata](http://programming-musings.org/2006/02/12/continuation-kata/)
219 *       [Understanding continuations](http://keithdevens.com/weblog/archive/2004/Jul/11/continuations) [Commentary](http://lambda-the-ultimate.org/node/86)
220 *       [Continuations In Scheme](http://tech.phillipwright.com/2010/05/23/continuations-in-scheme/)
221 *       [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.
222 *       [Continuations for Curmudgeons](http://www.intertwingly.net/blog/2005/04/13/Continuations-for-Curmudgeons) [Commentary](http://lambda-the-ultimate.org/node/643)
223 *       [Haskell wiki on Continuations](http://www.haskell.org/haskellwiki/Continuation)<p>
224 *       [[!wikipedia Delimited continuation]]
225 *       [Composable Continuations Tutorial](http://community.schemewiki.org/?composable-continuations-tutorial) at SchemeWiki
226 *       [Post by Ken](http://lambda-the-ultimate.org/node/1197#comment-12927) on Lambda the Ultimate explaining difference between undelimited and delimited continuations
227 *       [shift, reset and streams](http://chneukirchen.org/blog/archive/2005/04/shift-reset-and-streams.html)
228 *       [guile and delimited continuations](http://www.wingolog.org/archives/2010/02/26/guile-and-delimited-continuations)
229 *       [Delimited continuations in Scala](http://blog.richdougherty.com/2009/02/delimited-continuations-in-scala_24.html)
230 *       [Delimited Continuations Explained (in Scala)](http://dcsobral.blogspot.com/2009/07/delimited-continuations-explained-in.html)
231 *       [Partial Continuations](http://www.bluishcoder.co.nz/articles/scheme/partial-continuations.html)
232 *       Delimited Continuations in MzScheme:
233 [Part 1](http://schemekeys.blogspot.com/2006/11/prompts-their-interaction-with-dynamic.html)
234 [Part 2](http://schemekeys.blogspot.com/2006/12/delimited-continuations-in-mzscheme.html)
235 [Part 3](http://schemekeys.blogspot.com/2007/01/going-further-with-primitives.html)
236 [Part 4](http://schemekeys.blogspot.com/2007/01/odd-and-ends.html)<p>
237 *       [Online Bibliography of Scheme Research: Continuations and Continuation Passing Style](http://library.readscheme.org/page6.html)
238 *       [Delimited continuations in natural language semantics](http://okmij.org/ftp/gengo/)
239
240
241 ## Linear Logic ##
242
243 *       [[!wikipedia Linear logic]]
244
245