Search Results

0
votes

Automatically create ASDF files for a Common Lisp project

I don't know. I mostly use ASDF for my in-development compilation needs. Once you notice that you'd benefiot from more than one source file, open <projectname>.asd, slap in a basic ASDF syste …
2
votes

Lisp image

In general, it's the storage part of the lisp process (that is, all "lisp" functions and data), but no parts of the underlying lisp binary. On the plus side, this gives a fast start-up, since there …
2
votes

Getting started with SLIME and SWANK: Lisp connection closed unexpectedly: connection broken by remote peer

Have you checked that the version of SLIME and SWANK you use are the same? I've had odd things happening when I've used mismatched versions of those two halves of a SLIME session. …
3
votes

What is wrong with the following Common Lisp macro using gensym?

Either move the binding of your loop-start and loop-end to an enclosing LET block or use DO*. The reason is that all loop variables in DO are bound "in parallel", so for the first binding, the (exp …
0
votes

LET versus LET* in Common Lisp

I mostly use LET, unless I specifgically need LET*, but sometimes I write code that explicitly needs LET, usually when doing assorted (usually complicated) defaulting. Unfortunately, I do …
2
votes

Simpson’s Integral in Common Lisp

The DEFPARAMETER and DEFVAR within the fuinction body are, ahem, not ideal. Unless you ALWAYS want I/O on calling your integration function, skip the FORMAT. The repeated use of SET …
0
votes

How to convert byte array to string in Common Lisp?

If you don't have to worry about UTF-8 encoding (that, essentially, means "just plain ASCII"), you may be able to use MAP: (map 'string #'code-char #(72 101 108 108 111)) …
2
votes

Common Lisp: Working with &rest parameters

The FIRST, SECOND and so on accessor functions are "just" utility functions on top of CAR/CDR or NTH. SO, I guess, the answer to your specific question is "use NTH or ELT" (or build your own specif …
1
vote

Slots in CLOS

In a slot specification, the general syntax is (slot-name [slot-option option-value]...). The essentially-authoritatiev reference is …
1
vote

Using ASDF to start Hunchentoot

What I do is to have a file that loads the ASDF system definition for my web application, then starts Hunchentoot with everything set up as it should be. This is then run with sbcl --load start-stu …
0
votes

Coping with, and minimizing, memory usage in Common Lisp (SBCL)

I would not be surprised by a 64-bit SBCL using twice the meory, as it will probably use a 64-bit cell rather than a 32-bit one, but couldn't say for sure without actually checking. Typical …
0
votes

Does REMOVE ever return the same sequence, in practice?

I suspect it mostly depends on the implementation. On the whole, I suspect it's not that common, as the typical case would be that something gets removed when REMOVE is called, so making a space op …
0
votes

Separate Namespaces for Functions and Variables in Common Lisp versus Scheme

There's good things to both approaches. However, I find that when it matters, I prefer having both a function LIST and a a variable LIST than having to spell one of them incorrectly. …
2
votes

Clozure Common Lisp - TCP Socket Programming - Sending a Reply

In SBCL (using usocket), I use the SOCKET-STREAM function to return a lisp stream, then use FORMAT, WRITE and the like to send things across. …