Skip to content

Commit d0b371f

Browse files
committed
Merge pull request #48 from veddox/master
Expand CLISP entry, update About page
2 parents faf54b8 + c6d8a63 commit d0b371f

File tree

2 files changed

+58
-17
lines changed

2 files changed

+58
-17
lines changed

about/index.html

+24-12
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,40 @@
44

55
<h1>Who runs this?</h1>
66

7-
articulate-lisp.com is designed to fill a gap in the current
7+
<p>articulate-lisp.com is designed to fill a gap in the current
88
(2012-2015) resources for getting started with Common Lisp. It's the
99
work of mostly one person (Paul Nathan) so far, and represents his
10-
best efforts and knowledge at this point in time.
10+
best efforts and knowledge at this point in time.</p>
1111

12-
In particular, the style and idioms should not be taken as some
12+
<p>In particular, the style and idioms should not be taken as some
1313
mythical best practice, only what has worked for the author in the
14-
past.
14+
past.</p>
1515

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.
16+
<p>Feedback of all sorts will be gratefully welcomed. Contributions and
17+
bug reports should be done via the
18+
<a href="https://github.com/pnathan/articulate-common-lisp">Github</a> location for maximum
19+
coordination.</p>
1920

20-
Happy hacking!
21+
<p><em>Happy hacking!</em></p>
2122

23+
<h2>Contributors</h2>
2224

23-
<b/>
25+
<p>Authors, ordered alphabetically by first name:</p>
2426

2527
<ul>
26-
<li> Some contributions by Daniel Vedder.
28+
<li>Christopher Carpenter</li>
29+
<li>Daniel Vedder</li>
30+
<li>Jeremiah LaRocco</li>
31+
<li>Jose Santos</li>
32+
<li>Martin Karlsson</li>
33+
<li>Paul Nathan</li>
34+
<li>Ralph Moritz</li>
35+
</ul>
2736

28-
<li> Analytics by Google.
37+
<h2>Credits</h2>
2938

30-
<li> Theme uses <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap</a> and is made by <a href="https://github.com/scotte/jekyll-clean">Scott Emmons</a>.
39+
<ul>
40+
<li>Analytics by Google.</li>
41+
<li>Theme uses <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap</a> and is made
42+
by <a href="https://github.com/scotte/jekyll-clean">Scott Emmons</a></li>
3143
</ul>

implementations/clisp-setup.html

+34-5
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,42 @@
33
---
44

55
<header>
6-
<h1 class="title">CLISP Setup</h1>
6+
<h1>CLISP Setup</h1>
77
</header>
88

9+
<p>The <a href="http://www.clisp.org">CLISP</a> Common Lisp implementation is a good
10+
general-purpose interpreter licensed under the terms of the GNU GPLv2. Though not as
11+
popular as SBCL, it sports an intuitive user interface, a byte-code compiler and an
12+
easy-to-use debugger. </p>
13+
14+
<p>It also includes various useful extensions to the official ANSI standard, such as
15+
foreign function calls and a socket interface. (Note however that using
16+
implementation-specific features binds one to the GPL.)</p>
17+
918
<h2>Installing</h2>
1019

11-
<p><a href="http://www.clisp.org/">Download</a> one of the packages or pre-built binaries.</p>
20+
<p><a href="http://www.sourceforge.net/projects/clisp">Download</a> one of the packages or
21+
pre-built binaries.</p>
22+
23+
<h3>Installing on Linux</h3>
24+
25+
<p>On Ubuntu/Debian-based systems, you can install CLISP from the repositories with the
26+
following command:</p>
27+
28+
<pre><code>apt-get install clisp</code></pre>
29+
30+
<p>On Arch-based systems, use:</p>
31+
32+
<pre><code>pacman -S clisp</code></pre>
33+
34+
<p>On Fedora (>= 18, if you have an old version of Fedora, replace <code>dnf</code> with
35+
<code>yum</code>):</p>
36+
37+
<pre><code>dnf install clisp</code></pre>
38+
39+
<p>On Gentoo:</p>
40+
41+
<pre><code>emerge -auvDN dev-lisp/clisp</code></pre>
1242

13-
<h2>Notes</h2>
14-
<p>This page is a stub that needs to be expanded</p>
15-
<hr />
43+
<p>Note that you will probably need admin privileges to install any software on your
44+
computer (e.g. by using <code>sudo</code>)</p>

0 commit comments

Comments
 (0)