-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathquicklinks.html
64 lines (61 loc) · 2.44 KB
/
quicklinks.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
layout: default
---
<header>
<h1 class="title">Quick Links</h1>
</header>
<h3>Getting Started</h3>
<ul>
<li><a href="implementations/summary.html">getting a Common Lisp implementation</a></li>
<li><a href="project/new-project.html">creating and building a new project</a></li>
<li><a href="quicklisp.html">dependency management with quicklisp</a></li>
</ul>
<h3 id="example-code">Example code</h3>
<ul>
<li><a href="examples/trotter.html">Trotter - web crawler</a></li>
</ul>
<h3 id="language-resource-recommendations">Language Resource Recommendations</h3>
<p><em>in no particular order</em></p>
<ul>
<li><a href="http://lisp-lang.org/">lisp-lang.org</a> - showcase, tutorials and documentation</li>
<li><a href="http://www.lispworks.com/documentation/lw50/CLHS/Front/">Common Lisp Specification the HyperSpec</a></li>
<li><a href="http://www.gigamonkeys.com/book/">Practical Common Lisp</a></li>
<li><a href="https://www-2.cs.cmu.edu/~dst/LispBook/">Gentle Introduction to Symbolic Computation</a></li>
<li><a href="http://psg.com/~dlamkins/sl/">Successful Lisp</a></li>
<li><a href="http://www.landoflisp.com/">Land of Lisp</a></li>
<li><a href="http://www.paulgraham.com/onlisp.html">On Lisp</a></li>
<li><a href="http://www.cs.cmu.edu/Groups/AI/html/cltl/cltl2.html">Common Lisp the Language v2 (pre-spec)</a></li>
</ul>
<h3 id="lisp-culture">Lisp Culture</h3>
<ul>
<li><a href="http://www.norvig.com/luv-slides.ps">Style</a> <a href="http://www.cs.umd.edu/~nau/cmsc421/norvig-lisp-style.pdf">(PDF)</a></li>
<li><a href="http://google.github.io/styleguide/lispguide.xml">Google's Lisp Conventions</a></li>
<li>Help: IRC - #lisp on freenode
<li>Help: <a href="http://www.reddit.com/r/lisp">reddit/r/lisp</a>
<li>Help: <a href="http://stackoverflow.com/questions/tagged/common-lisp">StackOverflow's Common Lisp tag</a>.</li>
</ul>
<!-- uncomment when ready -->
<!--
<h3 id="development---todo">Development - <em>TODO</em></h3>
<ul>
<li>connecting to REPL</li>
<li>PostgreSQL connection</li>
<li>MongoDB connection</li>
</ul>
<h3 id="web-development---todo">Web development - <em>TODO</em></h3>
<ul>
<li>running a Web server</li>
<li>creating pages</li>
<li>templating</li>
<li>user logins</li>
<li>session management</li>
<li>page visibility/redirects</li>
</ul>
<h3 id="deployment---todo">Deployment - <em>TODO</em></h3>
<ul>
<li>Standalone application</li>
<li>Web application</li>
<li>Service/Daemon</li>
</ul>
-->
<hr/>