Hide
Login/Register to vote and to have access to more featuresYou are here: Root > Programming Languages > Common Lisp
Go directly to another tagGo directly to another tagAll Last Modified Items for ANSI Standard
Back to full tag viewcl-portaudio (Added)Last modification: Mon, 16 Jan 2012 15:45:26 GMTBindings to PortAudio crossplatform library.
Common Lisp Quick Reference (Modified)Last modification: Tue, 11 Oct 2011 19:39:19 GMTA booklet with short descriptions of the symbols defined in the ANSI standard. It comes with a comprehensive index.
Snarf (Added)Last modification: Sun, 25 Oct 2009 12:35:45 GMTSnarf is a simple prototype-style OO language for common lisp. It uses a call syntax rather than a CLOS-style general function syntax. Snarf is so small that the entire language (about 400 lines) is ...
TERMINFO (Added)Last modification: Tue, 21 Jul 2009 13:20:46 GMTLisp file for accessing Terminfo databases.
Kevin Raison (Added)Last modification: Mon, 29 Sep 2008 18:49:51 GMTFounder, President and Senior Consultant of Chatsubo.net LLC, a small IT firm headquartered in Seattle, Washington. Currently developing Lisp based application software for multimedia editing and publ...
Jerry Boetje (Modified)Last modification: Sat, 15 Mar 2008 17:08:26 GMTCS instructor at the College of Charleston in Charleston, SC. Long-time Lisp user and developer. Architect and manager of the CLforJava project at the College of Charleston.
trivial-ldap (Modified)Last modification: Mon, 09 Apr 2007 06:51:45 GMTTRIVIAL-LDAP is a one file, all lisp client implementation of parts of RFC 2251.
sequence-search/replace (Added)Last modification: Mon, 06 Nov 2006 08:37:24 GMTA library for search and replace operations on sequences.
CDR 3: Revisiting CONCATENATE-SEQUENCE (Added)Last modification: Wed, 01 Nov 2006 15:19:33 GMTWhile doing work to support user-extensible sequences, it was discovered that the ANSI CL standard forbids integration of certain functions with not only user-extensible sequences but also implementat...
MCPat (Added)Last modification: Fri, 08 Sep 2006 23:21:07 GMTMCPat stands for Meta-Circular Pattern Matcher, a simple pattern matcher that executes code by lists against patterns.
NCITS/J13 Document Repository (Added)Last modification: Mon, 28 Aug 2006 07:28:49 GMTThe document repository of the NCITS/J13 technical committee for Lisp, which maintains the ANSI standard for Common Lisp.
Steven M. Haflich (Added)Last modification: Mon, 28 Aug 2006 07:24:38 GMTThe chair of the NCITS/J13 technical committee for Lisp, which maintains the ANSI standard for Common Lisp.
What read-delimited-list will and won't do, and changing the reader syntax in CL (Added)Last modification: Tue, 08 Aug 2006 09:09:39 GMTA short article on the Common Lisp reader that explains what READ-DELIMITED-LIST actually does, which is not what is usually expected, and how to change the reader syntax.
Default values for get &c (Added)Last modification: Mon, 07 Aug 2006 07:49:41 GMTA short article on the default values for property list accessors.
Snarfing files into strings (Added)Last modification: Sun, 06 Aug 2006 08:00:44 GMTA short article on how to read a file into a string in a way that takes the external encoding into account.
Printing unreadably (Added)Last modification: Sat, 05 Aug 2006 08:08:52 GMTA short article on how user-defined code should conform to the printed representation of objects (*PRINT-READABLY*) required by the Common Lisp reader.
Lexicon (Added)Last modification: Mon, 17 Jul 2006 09:00:28 GMTA Common Lisp language extension for adding first-class lexical environments, a.k.a. "lexicons".
Erann's Lisp utilities (Added)Last modification: Sun, 16 Jul 2006 09:24:35 GMTA small set of Common Lisp utilities for string and symbol operations, CLOS, mapping, flow control, anaphoric macros, and more.
The Idiot's Guide to Common Lisp Packages (Added)Last modification: Wed, 07 Jun 2006 07:24:13 GMTA tutorial by Ron Garret on Common Lisp packages. It covers symbols, values and the REPL loop, interning, home packages, exporting symbols and using packages, shadowing, and DEFPACKAGE.
The Idiot's Guide to Special Variables and Lexical Closures (Added)Last modification: Tue, 06 Jun 2006 12:15:00 GMTA tutorial by Ron Garret on Common Lisp special variables. It covers variables and bindings, lexical and dynamic scope, DEFVAR, and lexical closures.
lisp-cgi-utils (Added)Last modification: Mon, 01 May 2006 09:53:36 GMTThe lisp-cgi-utils is a software package for developing CGI scripts with Common Lisp. It implements a very basic HTTP/CGI interface (sending headers, getting GET/POST and environment variables) and of...
A simple metaobject protocol for packages (Added)Last modification: Sat, 22 Apr 2006 11:12:39 GMTA sketch proposal of a meta-pbject protocol for Common Lisp packages. It is based on the idea of associating to each package a corresponding class that represents it.
Kent Pitman's Publications (Added)Last modification: Wed, 19 Apr 2006 10:38:02 GMTA collection of research papers, journal articles, essays and other Lisp writings by Kent Pitman. Covered topics include Common Lisp design and standardization, Artificial Intelligence, software engi...
CL-HTTP (Modified)Last modification: Mon, 10 Apr 2006 22:32:06 GMTCL-HTTP is suite of an HTTP 1.1 compliant and SSL-capable tools for creating Web applications written in ANSI Common Lisp that includes: A Sophisticated Server, A Programatic Client, A Caching Proxy, ...
List comprehensions, after Python (Modified)Last modification: Sun, 19 Mar 2006 13:06:41 GMTAn implementation of the GATHER macro, which generalizes the list comprehensions facilities of the Python programming language.
FOR: iteration in the style of Python (Added)Last modification: Sun, 19 Mar 2006 12:37:17 GMTAn implementation of a FOR control structure macro similar to that of the Python programming language, which is based on iterator objects.
NCASE: case using a jump-table (Added)Last modification: Sun, 19 Mar 2006 12:30:48 GMTAn implementation of the NCASE control structure macro, which has semantics similar to CASE but is able to optimize certain cases with a jump table.
Global lexical variables (Added)Last modification: Sun, 19 Mar 2006 12:24:57 GMTAn implementation of global lexical variables.
Subject-verb-object syntax (Added)Last modification: Sun, 19 Mar 2006 12:20:21 GMTA library that provides a subject-verb-object syntax for function calling similar to that of object-oriented languages.
parse-number (Added)Last modification: Tue, 21 Feb 2006 20:43:41 GMTA library that parses a string into one of the Common Lisp number types, or signals an error if it is not possible.
Hierarchical packages (Added)Last modification: Sun, 19 Feb 2006 14:09:06 GMTAn implementation of hierarchical packages, i.e. packages with a hierarchically structured namespace. It is based on the Allegro CL hierarchical packages by Franz, Inc.. This is part of the Lisp hacks...
Read-time packages (Added)Last modification: Sun, 19 Feb 2006 14:01:05 GMTA library that makes it possible to read an entire Lisp form in the context of a given package by switching packages at read time. This is part of the Lisp hacks collection by Tim Bradshaw.
Applicative iteration (Added)Last modification: Sun, 19 Feb 2006 13:32:44 GMTA library that provides for Common Lisp the syntax of Scheme's named LET construct. In addition, it generates a loop even on implementations without tail-call elimination. This is part of the Lisp hac...
Collecting lists forward (Added)Last modification: Sun, 19 Feb 2006 13:18:31 GMTA library for traversing lists and collecting elements backwards. This is part of the Lisp hacks collection by Tim Bradshaw.
Conduit packages (Added)Last modification: Sun, 19 Feb 2006 13:11:51 GMTConduits are a generalization of packages. They allow the definition of packages that extend other packages in some way, such as having some symbols from another package. This is part of the Lisp hack...
Knee-jerk Anti-LOOPism and other E-mail Phenomena (Added)Last modification: Sun, 05 Feb 2006 10:05:25 GMT"Knee-jerk Anti-LOOPism and other E-mail Phenomena: Oral, Written, and Electronic Patterns in Computer-Mediated Communication" is a paper by JoAnne Yates and Wanda J. Orlikowski. MIT Sloan School Work...
"A Survey of Current CLOS MOP Implementations" (Added)Last modification: Sun, 15 Jan 2006 23:46:02 GMTThis paper surveys implementations of the CLOS MOP in some of the more popular implementations of Common Lisp. First a brief overview of the CLOS MOP is given. A number of Common Lisp implementations ...
CLOS in Context: The Shape of the Design Space (Added)Last modification: Sun, 15 Jan 2006 17:07:36 GMTChapter written by Daniel G. Bobrow, Richard P. Gabriel and Jon L. White for the book "Object-Oriented Programming: The CLOS Perspective" (edited by Andreas Paepcke, MIT Press, 1992). It examines the ...
CLOS: Integrating Object-Oriented and Functional Programming (Added)Last modification: Sun, 15 Jan 2006 16:58:36 GMTPaper by Richard P. Gabriel, Jon L. White and Daniel G. Bobrow published in the Sep. 1991 issue of CACM. It discusses how CLOS combines previous programming traditions and ideas.
The Common Lisp Object System: An Overview (Added)Last modification: Sun, 15 Jan 2006 16:45:11 GMTPaper by Richard P. Gabriel and Linda DeMichiel published at ECOOP 1987. It introduces the major ideas of CLOS: generic functions, classes and inheritance, method combination and the meta-object proto...
Series (Added)Last modification: Thu, 05 Jan 2006 19:42:37 GMTA series is a data structure much like a sequence, with similar kinds of operations. The difference is that in many situations, operations on series may be composed functionally and yet execute iterat...
Gray Streams (Added)Last modification: Tue, 03 Jan 2006 16:10:46 GMTText of the failed ANSI X3J13 issue STREAM-DEFINITION-BY-USER. It has become an informal, de-fact standard for user-defined I/O streams in Common Lisp.
Common Lisp HyperSpec (TM) (Added)Last modification: Tue, 03 Jan 2006 14:49:02 GMTAn online document mechanically derived from the ANSI Common Lisp X3J13 standard. It contains the full text of the ANSI standard, but does not have the same formal and legal status.