Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 24 additions & 12 deletions about/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,40 @@

<h1>Who runs this?</h1>

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

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

Feedback of all sorts will be gratefully welcomed. Contributions and
bug reports should be done via the Github location for maximum
coordination.
<p>Feedback of all sorts will be gratefully welcomed. Contributions and
bug reports should be done via the
<a href="https://github.com/pnathan/articulate-common-lisp">Github</a> location for maximum
coordination.</p>

Happy hacking!
<p><em>Happy hacking!</em></p>

<h2>Contributors</h2>

<b/>
<p>Authors, ordered alphabetically by first name:</p>

<ul>
<li> Some contributions by Daniel Vedder.
<li>Christopher Carpenter</li>
<li>Daniel Vedder</li>
<li>Jeremiah LaRocco</li>
<li>Jose Santos</li>
<li>Martin Karlsson</li>
<li>Paul Nathan</li>
<li>Ralph Moritz</li>
</ul>

<li> Analytics by Google.
<h2>Credits</h2>

<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>.
<ul>
<li>Analytics by Google.</li>
<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></li>
</ul>
39 changes: 34 additions & 5 deletions implementations/clisp-setup.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,42 @@
---

<header>
<h1 class="title">CLISP Setup</h1>
<h1>CLISP Setup</h1>
</header>

<p>The <a href="http://www.clisp.org">CLISP</a> Common Lisp implementation is a good
general-purpose interpreter licensed under the terms of the GNU GPLv2. Though not as
popular as SBCL, it sports an intuitive user interface, a byte-code compiler and an
easy-to-use debugger. </p>

<p>It also includes various useful extensions to the official ANSI standard, such as
foreign function calls and a socket interface. (Note however that using
implementation-specific features binds one to the GPL.)</p>

<h2>Installing</h2>

<p><a href="http://www.clisp.org/">Download</a> one of the packages or pre-built binaries.</p>
<p><a href="http://www.sourceforge.net/projects/clisp">Download</a> one of the packages or
pre-built binaries.</p>

<h3>Installing on Linux</h3>

<p>On Ubuntu/Debian-based systems, you can install CLISP from the repositories with the
following command:</p>

<pre><code>apt-get install clisp</code></pre>

<p>On Arch-based systems, use:</p>

<pre><code>pacman -S clisp</code></pre>

<p>On Fedora (>= 18, if you have an old version of Fedora, replace <code>dnf</code> with
<code>yum</code>):</p>

<pre><code>dnf install clisp</code></pre>

<p>On Gentoo:</p>

<pre><code>emerge -auvDN dev-lisp/clisp</code></pre>

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