<?xml version="1.0" encoding="ISO-8859-1" ?><rss version="2.0"><channel><title>The Common Lisp Directory/By Support</title><link>http://www.cl-user.net/asp/tags/11040</link><description>The last modified items of the Common Lisp Directory for the tag: By Support</description><language>en-US</language><pubDate>Mon, 03 Jun 2013 00:03:30 GMT</pubDate><lastBuildDate>Mon, 03 Jun 2013 00:03:30 GMT</lastBuildDate><generator>Fractal Concept Web Application Framework</generator><item><title>cl-portaudio (Added)</title><link>http://www.cl-user.net/asp/libs/cl-portaudio</link><guid isPermaLink="false">19198</guid><pubDate>Mon, 16 Jan 2012 15:45:26 GMT</pubDate><description>Bindings to PortAudio crossplatform library.</description></item><item><title>Common Lisp Quick Reference (Modified)</title><link>http://www.cl-user.net/asp/web-sites/clqr</link><guid isPermaLink="false">16468</guid><pubDate>Tue, 11 Oct 2011 19:39:19 GMT</pubDate><description>A booklet with short descriptions of the symbols defined in the ANSI standard. It comes with a comprehensive index. </description></item><item><title>CLoX: Common Lisp Objects for XEmacs (Added)</title><link>http://www.cl-user.net/asp/web-sites/CLoX</link><guid isPermaLink="false">17656</guid><pubDate>Tue, 15 Jun 2010 07:15:35 GMT</pubDate><description>CLoX is an ongoing attempt to provide a full Emacs Lisp implementation of the Common Lisp Object System, including its underlying meta-object protocol, for XEmacs. This paper describes the early development stages of this project. CLoX currently consists in a port of Closette to Emacs Lisp, with some additional features, most notably, a deeper integration between types and classes and a comprehensive test suite. All these aspects are described in the paper, and we also provide a feature comparison with an alternative project called Eieio. </description></item><item><title>Maintaining Portable Lisp Programs - It's a bug, not a feature (Modified)</title><link>http://www.cl-user.net/asp/web-sites/features</link><guid isPermaLink="false">11528</guid><pubDate>Sun, 21 Feb 2010 15:01:23 GMT</pubDate><description>Paper by Christophe Rhodes, 5 February 2004. It examines &quot;the use of read-time feature conditionals, with particular emphasis on writing portable Common Lisp code which aspires to both forwards- and backwards-compatibility&quot;. After an introduction and an historical perspective, the paper reviews existing practices in using read-time conditionals, and provides some recommendations.</description></item><item><title>SLIME video (Annotated)</title><link>http://www.cl-user.net/asp/web-sites/slime-video</link><guid isPermaLink="false">11188</guid><pubDate>Wed, 29 Jul 2009 18:36:30 GMT</pubDate><description>Screencast by Marco Baringer. It shows how to use the Emacs-based SLIME IDE, from installation and setup to some advanced features. The screencast is based on the interaction with LispWorks under MacOS X. QuickTime format.</description></item><item><title>Revisiting the Visitor: the &quot;Just Do It&quot; Pattern.  (Added)</title><link>http://www.cl-user.net/asp/web-sites/VisitorPattern</link><guid isPermaLink="false">16833</guid><pubDate>Tue, 28 Apr 2009 08:07:14 GMT</pubDate><description>A software design pattern is a three-part rule which expresses a relation between a certain context, a problem, and a solution. The well-known &quot;GoF Book&quot; describes 23 software design patterns. Its influence in the software engineering community has been dramatic. However, Peter Norvig notes that &quot;16 of [these] 23 patterns are either invisible or simpler [...]&quot; in Dylan or Lisp (Design Patterns in Dynamic Programming, Object World, 1996).

We claim that this is not a consequence of the notion of &quot;pattern&quot; itself, but rather of the way patterns are generally described; the GoF book being typical in this matter. Whereas patterns are supposed to be general and abstract, the GoF book is actually very much oriented towards mainstream object languages such as C++. As a result, most of its 23 &quot;design patterns&quot; are actually closer to &quot;programming patterns&quot;, or &quot;idioms&quot;, if you choose to adopt the terminology of the POSA Book.

In this talk, we would like to envision software design patterns from the point of view of dynamic languages and specifically from the angle of CLOS, the Common Lisp Object System. Taking the Visitor pattern as an illustration, we will show how a generally useful pattern can be blurred into the language, sometimes to the point of complete disappearance.

The lesson to be learned is that software design patterns should be used with care, and in particular, will never replace an in-depth knowledge of your preferred language (in our case, the mastering of first-class and generic functions, lexical closures and meta-object protocol). By using patterns blindly, your risk missing the obvious and most of the time simpler solution: the &quot;Just Do It&quot; pattern.
</description></item><item><title>Binary Methods Programming: the CLOS Perspective. (Added)</title><link>http://www.cl-user.net/asp/web-sites/BinMeths</link><guid isPermaLink="false">16832</guid><pubDate>Tue, 28 Apr 2009 08:00:19 GMT</pubDate><description>Implementing binary methods in traditional object-oriented languages is difficult: numerous problems arise regarding the relationship between types and classes in the context of inheritance, or the need for privileged access to the internal representation of objects. Most of these problems occur in the context of statically typed languages that lack multi-methods (polymorphism on multiple arguments). The purpose of this paper is twofold: first, we show why some of these problems are either non-issues, or easily solved in Common-Lisp. Then, we demonstrate how the Common-Lisp Object System (CLOS) allows us not only to implement binary methods in a straightforward way, but also to support the concept directly, and even enforce it at different levels (usage and implementation). </description></item><item><title>CLOS Efficiency: Instantiation -- On the Behavior and Performance of Lisp, Part 2.1  (Added)</title><link>http://www.cl-user.net/asp/web-sites/OBPL21</link><guid isPermaLink="false">15629</guid><pubDate>Tue, 28 Apr 2009 07:54:14 GMT</pubDate><description>This article reports the results of an ongoing experimental research on the behavior and performance of CLOS, the Common Lisp Object System. Our purpose is to evaluate the behavior and performance of the 3 most important characteristics of any dynamic object oriented system: class instantiation, slot access and dynamic dispatch. This paper describes the results of our experiments on instantiation. We evaluate the efficiency of the instantiation process in both C++ and Lisp under a combination of parameters such as slot types or classes hierarchy. We show that in a non-optimized configuration where safety is given priority on speed, the behavior of C++ and Lisp instantiation can be quite different, which is also the case amongst different Lisp compilers. On the other hand, we demonstrate that when compilation is tuned for speed, instantiation in Lisp can become faster than in C++. </description></item><item><title>Beating C in Scientific Computing Applications -- On the Behavior and Performance of Lisp, Part I.  (Modified)</title><link>http://www.cl-user.net/asp/web-sites/OBPL1</link><guid isPermaLink="false">14185</guid><pubDate>Tue, 28 Apr 2009 07:38:23 GMT</pubDate><description>This paper presents an ongoing research on the behavior and performance of LISP with respect to C in the context of scientific numerical computing. Several simple image processing algorithms are used to evaluate the performance of pixel access and arithmetic operations in both languages. We demonstrate that the behavior of equivalent LISP and C code is similar with respect to the choice of data structures and types, and also to external parameters such as hardware optimization. We further demonstrate that properly typed and optimized LISP code runs as fast as the equivalent C code, or even faster in some cases. </description></item><item><title>Daniel Bobrow CLOS video from 87 (Added)</title><link>http://www.cl-user.net/asp/web-sites/12606</link><guid isPermaLink="false">12606</guid><pubDate>Sun, 15 Mar 2009 11:21:47 GMT</pubDate><description>Daniel Bobrow clos video, spotted by jao: http://jaortega.wordpress.com/2008/07/21/vintage-clos/</description></item><item><title>Wiki list of websites powered by Lisp (Added)</title><link>http://www.cl-user.net/asp/web-sites/powered-by-lisp-wiki</link><guid isPermaLink="false">16679</guid><pubDate>Sun, 04 Jan 2009 03:20:30 GMT</pubDate><description>List of websites and other web applications built using Lisp. Entries are strongly encouraged to be listed with the other software components used to build the site such as the web framework used or other helpful libraries (e.g., CL-SQL). Individual lists are also available for specific Lisp variants (e.g., SBCL, newLisp, Arc, etc.)</description></item><item><title>Weblocks (Added)</title><link>http://www.cl-user.net/asp/libs/weblocks</link><guid isPermaLink="false">16600</guid><pubDate>Sat, 29 Nov 2008 09:31:35 GMT</pubDate><description>Weblocks is an advanced web framework designed to make Agile web application development as effective and simple as possible.</description></item><item><title>Literate Programming in Lisp (Added)</title><link>http://www.cl-user.net/asp/web-sites/literate-programming-in-lisp</link><guid isPermaLink="false">16411</guid><pubDate>Tue, 29 Jul 2008 10:03:27 GMT</pubDate><description>How to embed text in a Lisp file.</description></item><item><title>Hunchentoot Web Server Installation with SBCL on WindowsXP/Vista (Modified)</title><link>http://www.cl-user.net/asp/web-sites/sbcl-w32-hunchentoot-installation</link><guid isPermaLink="false">15683</guid><pubDate>Fri, 11 Jul 2008 07:40:25 GMT</pubDate><description>Quick guide to install Hunchentoot on windows with SBCL implementation.</description></item><item><title>LispCast (Added)</title><link>http://www.cl-user.net/asp/web-sites/LispCast</link><guid isPermaLink="false">15806</guid><pubDate>Thu, 25 Oct 2007 23:12:49 GMT</pubDate><description>An episodic series of screencasts of Common Lisp software development.  Their aim is to educate and serve as a locus of discussion.  Mainly for the beginner, these videos may also be of interest to the experienced Lisper.</description></item><item><title>ernestine (Added)</title><link>http://www.cl-user.net/asp/libs/ernestine</link><guid isPermaLink="false">15587</guid><pubDate>Sat, 11 Aug 2007 17:37:56 GMT</pubDate><description>A music management application.</description></item><item><title>cl-audioscrobbler (Modified)</title><link>http://www.cl-user.net/asp/libs/cl-audioscrobbler</link><guid isPermaLink="false">15367</guid><pubDate>Thu, 26 Jul 2007 07:36:33 GMT</pubDate><description>Common Lisp wrapper for the web service Audioscrobbler/Last.fm.</description></item><item><title>cl-digg (Added)</title><link>http://www.cl-user.net/asp/libs/cl-digg</link><guid isPermaLink="false">15366</guid><pubDate>Sun, 27 May 2007 19:15:35 GMT</pubDate><description>A Common Lisp wrapper around the Digg API.</description></item><item><title>A nice and free Lisp logo (Modified)</title><link>http://www.cl-user.net/asp/web-sites/Lisp%20logo</link><guid isPermaLink="false">11203</guid><pubDate>Wed, 11 Apr 2007 16:21:07 GMT</pubDate><description>A Lisp logo in various forms which can be used freely for whatever purpose.</description></item><item><title>Berkeley SICP Lectures (Modified)</title><link>http://www.cl-user.net/asp/web-sites/Berkeley%20SICP</link><guid isPermaLink="false">13860</guid><pubDate>Wed, 22 Nov 2006 21:21:05 GMT</pubDate><description>&quot;CS61A: Structure and Interpretation of Computer Programs&quot; at the University of California, Berkeley.
</description></item><item><title>The Long, Painful History of Time (Added)</title><link>http://www.cl-user.net/asp/web-sites/lugm-time</link><guid isPermaLink="false">14659</guid><pubDate>Mon, 20 Nov 2006 15:54:41 GMT</pubDate><description>A paper by Erik Naggum published in the Proceedings of the Lisp User Group Meeting, October 1999. &quot;This paper discusses some of the problems inherent in processing time suitable to humans and describes a solution employed by the author in a number of applications, the LOCAL-TIME concept&quot;.</description></item><item><title>Portable Utilities for Common Lisp - User Guide and Implementation Notes (Added)</title><link>http://www.cl-user.net/asp/web-sites/CMU-CS-91-143</link><guid isPermaLink="false">14610</guid><pubDate>Mon, 13 Nov 2006 15:11:34 GMT</pubDate><description>School of Computer Science, Carnegie Mellon University technical report CMU-CS-91-143 by Mark Kantrowitz, May 1991. The autor describes the design, implementation and usage of a set of portable Common Lisp tools: a code cross referencer (XREF), a profiler (METERING), a system definition tool (DEFSYSTEM), an implementation of logical pathnames (LOGICAL-PATHNAMES), a diff-like tool (SOURCE-COMPARE), and a source code documentation generator (USER-MANUAL).</description></item><item><title>CLISP's memory management  (Added)</title><link>http://www.cl-user.net/asp/web-sites/clisp-mem</link><guid isPermaLink="false">14524</guid><pubDate>Tue, 07 Nov 2006 08:01:38 GMT</pubDate><description>A paper by Bruno Haible, published on 19 February 1995, summarizing the memory management system of the CLISP Common Lisp implementation. It describes the generational garbage collection algorithm and some efficiency tricks.</description></item><item><title>User-Level Language Crafting: Introducing the CLOS Metaobject Protocol (Commented)</title><link>http://www.cl-user.net/asp/web-sites/paepcke93userlevel</link><guid isPermaLink="false">14208</guid><pubDate>Sun, 22 Oct 2006 21:27:12 GMT</pubDate><description>Paper by Andreas Paepcke published in the book &quot;Object-Oriented Programming: the CLOS perspective&quot;, MIT Press, 1993. It discusses how CLOS carries the idea of open and modular systems to the realm of language design.</description></item><item><title>Calendrical Calculations, II: Three Historical Calendars (Added)</title><link>http://www.cl-user.net/asp/web-sites/calendrical-calculations2</link><guid isPermaLink="false">14489</guid><pubDate>Wed, 18 Oct 2006 13:36:04 GMT</pubDate><description>Paper by Edward M. Reingold, Nachum Dershowitz, and Stewart M. Clamen published in &quot;Software-Practice and Experience&quot;, 23 (1993), pagg. 383-404. It provides algorithmic presentations of three calendarss of historical interest: Mayan, French Revolutionary, and Old Hindu. It includes Common Lisp source code for calendar conversions.</description></item><item><title>Calendrical Calculations (Added)</title><link>http://www.cl-user.net/asp/web-sites/calendrical-calculations</link><guid isPermaLink="false">14458</guid><pubDate>Tue, 17 Oct 2006 13:58:40 GMT</pubDate><description>Paper by Nachum Dershowitz and Edward M. Reingold published in &quot;Software-Practice and Experience&quot;, 20 (1990), pagg. 899-928. It provides a unified algorithmic presentation of major calendars, and includes Common Lisp source code for calendar conversions and holiday computations.</description></item><item><title>Client-side continuations for web programming (Added)</title><link>http://www.cl-user.net/asp/web-sites/lispvan20060921</link><guid isPermaLink="false">14354</guid><pubDate>Fri, 29 Sep 2006 14:37:14 GMT</pubDate><description>A blog entry summarizing the September 21, 2006 meeting of the Vancouver Lisp Users Group (lispvan), in which James Wright gave a talk on client-side continuations for web programming. The document includes links to a video and a transcript of the talk.</description></item><item><title>DNS Message Decoding - A Case Study Comparing Java and Common Lisp (Added)</title><link>http://www.cl-user.net/asp/web-sites/case_study_java_lisp_dns</link><guid isPermaLink="false">14351</guid><pubDate>Sun, 24 Sep 2006 08:29:43 GMT</pubDate><description>A study that compares two implementations of a DNS resolver library, one written in Common Lisp and the other in Java. 30 May 2004.</description></item><item><title>The common Lisp object system metaobject kernel: a status report (Added)</title><link>http://www.cl-user.net/asp/web-sites/p309-bobrow</link><guid isPermaLink="false">14210</guid><pubDate>Thu, 21 Sep 2006 06:05:18 GMT</pubDate><description>Paper published in the &quot;Proceedings of the 1988 ACM conference on LISP and functional programming&quot;. A status report on the design of the CLOS Metaobject Protocol (MOP). The paper &quot;is organized around the classes used to implement CLOS, describing reasons for the class organization chosen, and how these classes participate in some protocols of the system&quot;.
</description></item><item><title>M.I.T. &quot;cadr&quot; LispMachine font (Added)</title><link>http://www.cl-user.net/asp/web-sites/LispM%20font</link><guid isPermaLink="false">13941</guid><pubDate>Sat, 12 Aug 2006 16:42:58 GMT</pubDate><description>A recreation of the &quot;cadr&quot; font used by the M.I.T. LispMachines</description></item><item><title> MOP Retrospective - Gregor Kiczales speaks to lispvan (Added)</title><link>http://www.cl-user.net/asp/web-sites/mop-retrospective</link><guid isPermaLink="false">13920</guid><pubDate>Wed, 12 Jul 2006 09:38:19 GMT</pubDate><description>A blog entry by Bill Clementson with a link to the audio recording of a talk given by Gregor Kikzales at the Vancouver Lisp Users Group (lispvan) meeting of June 28, 2006. The meeting was based on a questions and answers session with Kikzales, who covered many topics related to the CLOS Meta-Object Protocol (MOP).</description></item><item><title>The Nature of Lisp (Added)</title><link>http://www.cl-user.net/asp/web-sites/nature-of-lisp</link><guid isPermaLink="false">13918</guid><pubDate>Mon, 03 Jul 2006 10:50:49 GMT</pubDate><description>An article that is an &quot;attempt to explain Lisp in familiar, intuitive concepts&quot;. The author tells how he found and approached Lisp, and introduces the main concepts and features of Common Lisp.</description></item><item><title>CLOS/MOP at Dynamic Languages Day (Added)</title><link>http://www.cl-user.net/asp/web-sites/CLOS-MOP%40DDL</link><guid isPermaLink="false">13887</guid><pubDate>Sun, 18 Jun 2006 19:18:44 GMT</pubDate><description>Dynamic Languages Day @ Vrije Universiteit Brussel, February 13, 2006.  Video available of Pascal Costanza presenting on CLOS, Generic Functions, and the Meta-Object Protocol.


</description></item><item><title>Practical Common Lisp - IT Conversations (Added)</title><link>http://www.cl-user.net/asp/web-sites/pcl-it-conversations</link><guid isPermaLink="false">13803</guid><pubDate>Thu, 15 Jun 2006 11:55:57 GMT</pubDate><description>The audio recording of an IT Conversations interview of Peter Seibel by Phil Windley. They discuss about Peter's background, Lisp's most advanced features, using Lisp in a production environment, and more.</description></item><item><title>SICP at ArsDigita University (Added)</title><link>http://www.cl-user.net/asp/web-sites/ArsDigita%20SICP</link><guid isPermaLink="false">13861</guid><pubDate>Thu, 15 Jun 2006 04:07:41 GMT</pubDate><description>&quot;The Structure and Interpretation of Computer Programs&quot; at the ArsDigita University (ADU).</description></item><item><title>The Idiot's Guide to Common Lisp Packages (Added)</title><link>http://www.cl-user.net/asp/web-sites/ron-packages</link><guid isPermaLink="false">13802</guid><pubDate>Wed, 07 Jun 2006 07:24:13 GMT</pubDate><description>A 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.</description></item><item><title>The Idiot's Guide to Special Variables and Lexical Closures (Added)</title><link>http://www.cl-user.net/asp/web-sites/ron-specials</link><guid isPermaLink="false">13730</guid><pubDate>Tue, 06 Jun 2006 12:15:00 GMT</pubDate><description>A tutorial by Ron Garret on Common Lisp special variables. It covers variables and bindings, lexical and dynamic scope, DEFVAR, and lexical closures.</description></item><item><title>Validating a PGP key without personal contact (Modified)</title><link>http://www.cl-user.net/asp/web-sites/pgp-confirming</link><guid isPermaLink="false">12439</guid><pubDate>Mon, 29 May 2006 17:15:28 GMT</pubDate><description>An article explaining how to validate the PGP signatures of software packages, and establish a weak but reasonably secure web of trust when establishing an uninterrupted one is not practical. This is useful when downloading Lisp software with ASDF-INSTALL. The article was written by Juliusz Chroboczek.</description></item><item><title>Steeldump (Added)</title><link>http://www.cl-user.net/asp/libs/steeldump</link><guid isPermaLink="false">13729</guid><pubDate>Tue, 23 May 2006 14:15:39 GMT</pubDate><description>An unofficial Debian Linux APT repository of Common Lisp applications. It provides binary packages, currently only for x86 Debian, of free, end-user applications built with SBCL. Besides the binary packages, Steeldump also includes the tools for generating them.</description></item><item><title>Practical Common Lisp (video) (Added)</title><link>http://www.cl-user.net/asp/web-sites/pcl-google-video</link><guid isPermaLink="false">13702</guid><pubDate>Mon, 22 May 2006 10:44:06 GMT</pubDate><description>The video of a Google TechTalks talk given by Peter Seibel on May 10, 2006 at Google's New York office. He discussed &quot;how our choices of programming language influences and shapes our pattern languages and the architectures we can, or are likely to, invent.&quot;, and &quot;whether it's sufficient to merely broaden your horizons by learning different programming languages or whether you must actually use them.&quot;</description></item><item><title>Common Lisp the Language, 2nd Edition (Modified)</title><link>http://www.cl-user.net/asp/web-sites/cltl2</link><guid isPermaLink="false">11116</guid><pubDate>Wed, 03 May 2006 10:20:15 GMT</pubDate><description>Book by Guy L. Steele Jr.  Digital Press, 1990, ISBN 1555580416. Full text available online. Generally refered to as CLTL2</description></item><item><title>Performance (Added)</title><link>http://www.cl-user.net/asp/web-sites/kanderson-performance</link><guid isPermaLink="false">13552</guid><pubDate>Sat, 22 Apr 2006 11:04:39 GMT</pubDate><description>A web site with information and links to papers and resources on Lisp performance issues and profiling, particularly Common Lisp.</description></item><item><title>Kent Pitman's Publications (Added)</title><link>http://www.cl-user.net/asp/web-sites/kmp-publications</link><guid isPermaLink="false">13481</guid><pubDate>Wed, 19 Apr 2006 10:38:02 GMT</pubDate><description>A 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 engineering, and more.</description></item><item><title>small-cl-src-discuss (Modified)</title><link>http://www.cl-user.net/asp/web-sites/small-cl-src-discuss</link><guid isPermaLink="false">13160</guid><pubDate>Thu, 13 Apr 2006 14:22:41 GMT</pubDate><description>A mailing list for discussions related to the small-cl-src list. It is maintained by Ingvar Mattson.</description></item><item><title>small-cl-src (Modified)</title><link>http://www.cl-user.net/asp/web-sites/small-cl-src</link><guid isPermaLink="false">13056</guid><pubDate>Thu, 13 Apr 2006 14:22:16 GMT</pubDate><description>A mailing list for posting source code of small programs, utilities, libraries and code snippets written in Common Lisp. It is maintained by Ingvar Mattson. Related discussions take place in the small-cl-src-discuss list.</description></item><item><title>LISP Deserves a Fresh Look (Added)</title><link>http://www.cl-user.net/asp/web-sites/lisp-fresh-look</link><guid isPermaLink="false">13207</guid><pubDate>Tue, 21 Mar 2006 15:32:17 GMT</pubDate><description>Article by Peter Coffee published on the February 7, 2006 issue of eWeek. It discusses the potential of Lisp, particularly Common Lisp, for developing web applications &quot;using fewer lines of code, and with acceptable memory use and execution speed&quot;.</description></item><item><title>Practical Common Lisp (Modified)</title><link>http://www.cl-user.net/asp/web-sites/pcl</link><guid isPermaLink="false">11054</guid><pubDate>Mon, 20 Mar 2006 16:15:13 GMT</pubDate><description>A Common Lisp book by Peter Seibel for folks who already know how to program but who don't know Lisp. Focuses on practical applications of Common Lisp.
Apress, 2005, ISBN 1590592395. Full text available online.</description></item><item><title>lispweb (Added)</title><link>http://www.cl-user.net/asp/web-sites/lispweb</link><guid isPermaLink="false">13162</guid><pubDate>Sat, 11 Mar 2006 10:43:31 GMT</pubDate><description>A mailing list for discussing the use of languages in the Lisp family, including Common Lisp, for web development. Topics of interest include, but are not limited to, interfacing Lisp runtimes with web servers, HTML generation, Java/Javascript integration with Lisp, and more.</description></item><item><title>A Guided Tour of the Common Lisp Interface Manager (Annotated)</title><link>http://www.cl-user.net/asp/web-sites/lp90</link><guid isPermaLink="false">12263</guid><pubDate>Fri, 24 Feb 2006 18:33:25 GMT</pubDate><description>Paper by Ramana Rao, William York and Dennis Doughty published in 1990(?) by Lisp Pointers.
It provides an overview of CLIM's facilities and presents a series of examples. Although the sample code is based on an obsolete version of CLIM, the concepts discussed in the paper are still valid and useful for understanding CLIM.</description></item><item><title>LispWire News (Added)</title><link>http://www.cl-user.net/asp/web-sites/lispwire</link><guid isPermaLink="false">12934</guid><pubDate>Thu, 23 Feb 2006 17:32:28 GMT</pubDate><description>A repository for interesting Common Lisp software, with the goals of sharing the tools developed over decades of research in advanced fields such as Artificial Intelligence, and demostrating the power of Lisp for solving complex problems. The site is supported and hosted by vendor Franz, Inc. All the available software runs on their Allegro Common Lisp product.</description></item></channel></rss>