Skip to content

Commit 8cbc1c9

Browse files
committed
Fix a few things; add the GA tag.
1 parent 5c3f1aa commit 8cbc1c9

File tree

3 files changed

+69
-2
lines changed

3 files changed

+69
-2
lines changed

jekyll/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ baseurl: /
1616
github: 'pnathan/articulate-common-lisp'
1717

1818
# Set this to your UA-# value, or '' to disable the block completely
19-
gaaccount: ''
19+
gaaccount: 'UA-44161726-1'
2020

2121
# Set this to your disqus shortname to enable comments. Note that the 'comments'
2222
# setting below must also be true. Individual posts can override 'comments' to

jekyll/about/index.html

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,31 @@
11
---
22
layout: default
33
---
4-
{% markdown who.md %}
4+
5+
<i>who runs this</i>
6+
7+
articulate-lisp.com is designed to fill a gap in the current
8+
(2012-2015) resources for getting started with Common Lisp. It's the
9+
work of mostly one person (Paul Nathan) so far, and represents his
10+
best efforts and knowledge at this point in time.
11+
12+
In particular, the style and idioms should not be taken as some
13+
mythical best practice, only what has worked for the author in the
14+
past.
15+
16+
Feedback of all sorts will be gratefully welcomed. Contributions and
17+
bug reports should be done via the Github location for maximum
18+
coordination.
19+
20+
Happy hacking!
21+
22+
23+
<b/>
24+
25+
<ul>
26+
<li> Some contributions by Daniel Vedder.
27+
28+
<li> Analytics by Google.
29+
30+
<li> Theme by [Twitter Bootstrap](http://twitter.github.com/bootstrap/).
31+
</ul>

jekyll/index.html

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
layout: default
3+
---
4+
5+
6+
7+
<header>
8+
9+
<h1 class="title">Articulate Common Lisp</h1>
10+
</header>
11+
<div class="row">
12+
<div class="col-md-6">
13+
<em>How to write Common Lisp in 2015 -<br />
14+
an initiation manual for the uninitiated</em></p></div>
15+
16+
<div class="col-md-6"><img src="images/lisplogo_alien_128.png"></div>
17+
18+
</div>
19+
<h2 id="dear-reader">Dear Reader,</h2>
20+
<p>One of the key problems in onboarding developers to use modern Common Lisp is the vertical wall of difficulty. Things that are routinely problematic:</p>
21+
<ul>
22+
<li>emacs use. Most people don&#8217;t use emacs.</li>
23+
<li>Library creation. Putting together ASDF libraries and using them is a fairly horrid experience the first time.</li>
24+
<li>Selection of Lisp system to use, along with an up-to-date discussion of pros and cons.</li>
25+
<li>Putting together serious projects is not commonly discussed.</li>
26+
</ul>
27+
<p>This site is dedicated to handling these problems. My goal is to put together an introduction/tutorial for practicing professionals and hobbyists from other languages. People who want to get started with Lisp beyond just typing into a REPL. Right now, it feels like this information is less disseminated and much less centralized than it otherwise might be. It&#8217;s not intended to be a HOWTO for Common Lisp. That&#8217;s been covered <em>quite well</em>. But it is intended to be a HOWTO on how to put together a Lisp <strong>environment</strong>.</p>
28+
<p>Anyway, I&#8217;d like to collaborate with other people to make this a remarkably fine Lisp help site. Contributions are both <strong>accepted</strong> and <strong>welcome</strong>. It&#8217;s a wholly static site at this point in time - I don&#8217;t see a need for articulate-lisp.com to have a dynamic backend. Perhaps/probably one of the code examples will be a webapp.</p>
29+
<p>Happy Hacking,</p>
30+
<p><em>Paul Nathan</em></p>
31+
<p>P.S.: feel free to contact me for anything you like.</p>
32+
<hr />
33+
<ul>
34+
<li>Set up your <a href="./env/lisp-system.html">lisp system</a>.</li>
35+
<li>Set up <a href="./env/quicklisp.html">Quicklisp</a>.</li>
36+
<li>Write some <a href="./initial/abcs.html">Lisp</a>.</li>
37+
<li>Check out the new project <a href="./initial/new-project.html">tutorial</a></li>
38+
<li>Look up our <a href="./examples/trotter.html">Trotter</a>, a web spider.</li>
39+
<li>Keep our <a href="./quicklinks.html">Quick Links</a> bookmarked.</li>
40+
</ul>

0 commit comments

Comments
 (0)