<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners">
    <title>gmane.lisp.cl-gardeners</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1903"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1902"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1901"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1900"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1899"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1898"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1897"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1896"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1895"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1894"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1893"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1892"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1891"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1890"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1889"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1888"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1887"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1886"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1885"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1884"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1903">
    <title>Re: sbcl question about *query-io*</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1903</link>
    <description>&lt;pre&gt;

This has nothing to do with REPL or not, emacs or wim, but all with
buffering, which is implementation dependant.  The code needs this
force-output to be conforming.

&lt;/pre&gt;</description>
    <dc:creator>Pascal J. Bourguignon</dc:creator>
    <dc:date>2010-11-11T03:53:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1902">
    <title>Re: sbcl question about *query-io*</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1902</link>
    <description>&lt;pre&gt;Yeah, I'm doing this from the REPL.  I guess I'm a weird lisper in that
I really can't seem to start using emacs.  I use vim with limp.

But that worked great.  Thanks.
&lt;/pre&gt;</description>
    <dc:creator>Matt Cheung</dc:creator>
    <dc:date>2010-11-11T00:53:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1901">
    <title>Re: sbcl question about *query-io*</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1901</link>
    <description>&lt;pre&gt;
Hmm, are you trying this from a REPL or from slime?
You might want to add 

 (force-output *query-io*)

after (apply ...) in your code.

 HTH Ralf Mattes



&lt;/pre&gt;</description>
    <dc:creator>rm-2s+jgvIlYZ2ELgA04lAiVw&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2010-11-10T22:19:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1900">
    <title>sbcl question about *query-io*</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1900</link>
    <description>&lt;pre&gt;I've been working through the book "On Lisp" trying to follow the code
for the utilities to make sure I understand how they work.  I've
noticed something about the prompt utility.  If I enter:

(defun prompt (&amp;amp;rest args)
  (apply #'format *query-io* args)
  (read *query-io*))

and then try at the prompt:

(prompt "&amp;gt;&amp;gt; ")

I get a blank line and once I enter a lisp expression it will evaluate
it and print like the following:

* (prompt "&amp;gt;&amp;gt; ")
(+ 1 2)
*

However in clisp the following will happen

[1] (prompt "&amp;gt;&amp;gt; ")
3

Which is what I expected.  Can anybody tell me if there is a different
variable I should be using in sbcl or some other way t
&lt;/pre&gt;</description>
    <dc:creator>Matt</dc:creator>
    <dc:date>2010-11-10T20:36:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1899">
    <title>Re: New project: Quicklisp</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1899</link>
    <description>&lt;pre&gt;Zach

You can get SDL on a macbook using ports.

http://www.macports.org/ports.php?by=variant&amp;amp;substr=sdl


On 26 August 2010 07:30, Zach Beane &amp;lt;xach-ELGzOmzzS7o&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:
&lt;/pre&gt;</description>
    <dc:creator>Justin Heyes-Jones</dc:creator>
    <dc:date>2010-08-26T14:43:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1898">
    <title>Re: New project: Quicklisp</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1898</link>
    <description>&lt;pre&gt;Tim Daly &amp;lt;daly-fkGhOwzH+GMtmNyP1c9330B+6BGkLq7r&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
writes:


Hit #1 on Google for "SDL" :)

It's the "Simple DirectMedia Layer", a library that abstracts away some
of the details of graphics, sounds, windows, etc. to make it easy to do
e.g. cross-platform GUI products. I've seen it most often used for
games (see http://en.wikipedia.org/wiki/List_of_games_using_SDL) but
early versions of the Factor GUI used SDL as well.

Zach
&lt;/pre&gt;</description>
    <dc:creator>Zach Beane</dc:creator>
    <dc:date>2010-08-26T14:11:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1897">
    <title>Re: New project: Quicklisp</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1897</link>
    <description>&lt;pre&gt;I'll bite. What's SDL?

Zach Beane wrote:
&lt;/pre&gt;</description>
    <dc:creator>Tim Daly</dc:creator>
    <dc:date>2010-08-26T14:00:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1896">
    <title>Re: New project: Quicklisp</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1896</link>
    <description>&lt;pre&gt;Tim Daly &amp;lt;daly-fkGhOwzH+GMtmNyP1c9330B+6BGkLq7r&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
writes:


I'm afraid it's not access - I have an Intel Macbook. I just don't know
what to click and what to run to get SDL installed on my Macbook. With
Ubuntu it's "apt-get install ...".

Zach
&lt;/pre&gt;</description>
    <dc:creator>Zach Beane</dc:creator>
    <dc:date>2010-08-26T13:30:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1895">
    <title>Re: New project: Quicklisp</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1895</link>
    <description>&lt;pre&gt;Zach,

I can give you ssh access to an intel Mac if you'd like.

Tim Daly
daly-fkGhOwzH+GMtmNyP1c9330B+6BGkLq7r&amp;lt; at &amp;gt;public.gmane.org

Zach Beane wrote:
&lt;/pre&gt;</description>
    <dc:creator>Tim Daly</dc:creator>
    <dc:date>2010-08-26T13:24:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1894">
    <title>Re: New project: Quicklisp</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1894</link>
    <description>&lt;pre&gt;

Lispbuilder-sdl is also included in quicklisp. I haven't been able to
test it on Windows (don't have it) or Mac (couldn't get SDL installed on
my macbook), but I'd love to have someone else try it. Works perfectly
on my Ubuntu desktop.

Zach

_______________________________________________
Gardeners mailing list
Gardeners&amp;lt; at &amp;gt;lispniks.com
http://www.lispniks.com/mailman/listinfo/gardeners
&lt;/pre&gt;</description>
    <dc:creator>Zach Beane</dc:creator>
    <dc:date>2010-08-26T12:27:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1893">
    <title>Re: New project: Quicklisp</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1893</link>
    <description>&lt;pre&gt;_______________________________________________
Gardeners mailing list
Gardeners-0Lpivb7LZrJWk0Htik3J/w&amp;lt; at &amp;gt;public.gmane.org
http://www.lispniks.com/mailman/listinfo/gardeners
&lt;/pre&gt;</description>
    <dc:creator>Luke Crook</dc:creator>
    <dc:date>2010-08-26T02:22:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1892">
    <title>Re: New project: Quicklisp</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1892</link>
    <description>&lt;pre&gt;_______________________________________________
Gardeners mailing list
Gardeners-0Lpivb7LZrJWk0Htik3J/w&amp;lt; at &amp;gt;public.gmane.org
http://www.lispniks.com/mailman/listinfo/gardeners
&lt;/pre&gt;</description>
    <dc:creator>Alexandre Paes</dc:creator>
    <dc:date>2010-08-25T20:20:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1891">
    <title>Re: New project: Quicklisp</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1891</link>
    <description>&lt;pre&gt;

asdf-install uses a dynamically modifiable resource (cliki) to map names
to library archives hosted in arbitrary locations. It uses an error trap
to proceed - if an error that component "bar" is not found when loading
"foo", it does a round-trip through cliki to find and load "bar". Also,
when loading "foo", any file in the top-level of the archive that ends
with ".asd" is loaded. asdf-install executes an external tar program to
unpack its archives, and uses an external gpg program to verify its
validity.

There are a number of points where things can and do go wrong with this
setup, including cliki vandalism, cliki outages, third-party site
outages, trying to load too much (this is quite problematic with clsql),
not loading enough, not having a "tar" or "gpg" program (this is quite
problematic on Windows and slightly problematic on MacOS X), not having
the right PGP keys, and more.

Quicklisp takes a different approach of copying third-party libraries to
a central location (hosted by Amazon S3 and served &lt;/pre&gt;</description>
    <dc:creator>Zach Beane</dc:creator>
    <dc:date>2010-08-25T12:12:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1890">
    <title>Re: New project: Quicklisp</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1890</link>
    <description>&lt;pre&gt;May I ask what is the difference between quicklisp and asdf-install ?


2010/8/25 Peter Seibel &amp;lt;peter-oMSWzMXvlVKBCiQz0RPHcQ&amp;lt; at &amp;gt;public.gmane.org&amp;gt;:
&lt;/pre&gt;</description>
    <dc:creator>Charles Wang</dc:creator>
    <dc:date>2010-08-25T09:18:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1889">
    <title>Re: New project: Quicklisp</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1889</link>
    <description>&lt;pre&gt;_______________________________________________
Gardeners mailing list
Gardeners-0Lpivb7LZrJWk0Htik3J/w&amp;lt; at &amp;gt;public.gmane.org
http://www.lispniks.com/mailman/listinfo/gardeners
&lt;/pre&gt;</description>
    <dc:creator>Peter Seibel</dc:creator>
    <dc:date>2010-08-24T19:54:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1888">
    <title>New project: Quicklisp</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1888</link>
    <description>&lt;pre&gt;Hi, Gardeners!

I'm working on a new project called Quicklisp. The goal is to make it
very easy to get access to the wide variety of community-developed CL
libraries, no matter what Common Lisp implementation or operating system
you're using, so you can get that part out of the way and start working
on interesting applications in CL.

There's a bare-bones website here:

  http://www.quicklisp.org/

That has a link to a screencast I made to introduce the project:

  http://www.quicklisp.org/screencasts/

Please check it out and let me know what you think.

Zach
&lt;/pre&gt;</description>
    <dc:creator>Zach Beane</dc:creator>
    <dc:date>2010-08-24T19:09:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1887">
    <title>Re: Gardeners Digest, Vol 42, Issue 3</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1887</link>
    <description>&lt;pre&gt;On Wed, May 26, 2010 at 9:51 AM, Brendon Schumacker
&amp;lt;brendon.schu-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

If your target is the JVM, there's also ABCL, a Common Lisp that runs
on the JVM and compiles to Java bytecode. It can run many CL libraries
and use Java libraries, albeit with a slightly more verbose syntax
than Clojure (which has been designed with Java interoperability as a
key goal). It can also represent Java classes as (limited) CLOS
classes, so you can have generic function dispatch on Java types,
honoring the Java class hierarchy of course.
&amp;lt;shameless-plug&amp;gt;For GUIs on ABCL, one option is my half-baked
library/DSL called Snow, which exposes Swing to Lisp and integrates it
with Cells, the dataflow library by Ken Tilton.&amp;lt;/shameless-plug&amp;gt;

Cheers,
Alessio
&lt;/pre&gt;</description>
    <dc:creator>Alessio Stalla</dc:creator>
    <dc:date>2010-05-26T08:03:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1886">
    <title>Re: Gardeners Digest, Vol 42, Issue 3</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1886</link>
    <description>&lt;pre&gt;

Thanks Paul!  I'll check that out when I get a chance.

Brendon


&lt;/pre&gt;</description>
    <dc:creator>Brendon Schumacker</dc:creator>
    <dc:date>2010-05-26T07:51:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1885">
    <title>Re: Gardeners Digest, Vol 42, Issue 3</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1885</link>
    <description>&lt;pre&gt;_______________________________________________
Gardeners mailing list
Gardeners-0Lpivb7LZrJWk0Htik3J/w&amp;lt; at &amp;gt;public.gmane.org
http://www.lispniks.com/mailman/listinfo/gardeners
&lt;/pre&gt;</description>
    <dc:creator>Paul Legato</dc:creator>
    <dc:date>2010-05-24T05:17:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1884">
    <title>Re: Gardeners Digest, Vol 42, Issue 5</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1884</link>
    <description>&lt;pre&gt;...

LTk uses IPC to talk between CL and Tk.  This is a great strength and 
weakness (see flame wars about X11 on the same topic).

In my experience, LTk is fine for most desktop apps (e.g. ABLE[1]) but it 
may not be suitable for a fast-paced game (difficulty controlling 
latency).  I recently posted a Sudoku GUI to the LTk mailing list.  It 
takes a while to render at first; but then its fully playable.

- Daniel

[1] http://common-lisp.net/project/able/
&lt;/pre&gt;</description>
    <dc:creator>Daniel Herring</dc:creator>
    <dc:date>2010-05-24T01:17:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.cl-gardeners/1883">
    <title>Re: Gardeners Digest, Vol 42, Issue 5</title>
    <link>http://permalink.gmane.org/gmane.lisp.cl-gardeners/1883</link>
    <description>&lt;pre&gt;
Thanks Peter!

I downloaded that onto my Ubuntu system yesterday and found the demo
to load and work without a hitch on the first try, good stuff!

I'm quite busy these days, I hope that I can get a chance to
experiment with it more later.  I'm curious if it has enough to create
a game, or make an office app... and work cross platform from Linux to
Windows without too much adjustment.

I wouldn't mind if it didn't have everything from drop down menus to
animation support as long as it gives me the ability to create them
myself.  I once created a Python interface from scratch for making
animations without much more than Text, Boxes, and Click instances.

Brendon


&lt;/pre&gt;</description>
    <dc:creator>Brendon Schumacker</dc:creator>
    <dc:date>2010-05-23T19:52:26</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.lisp.cl-gardeners">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.lisp.cl-gardeners</link>
  </textinput>
</rdf:RDF>
