Tagged Questions

3
votes
2answers
180 views

SBCL on Vista crashes. Do you know how to make it work?

I've searched a lot for an answer for this question in the web: they say it's true, SBCL doesn't work under Vista. But I really need to work with lisp on my home Vista laptop and V …
1
vote
1answer
49 views

How efficient is SBCL for storing big graphs?

How much does the garbage collector affect performance when working with lots of objects in memory, how big is the memory allocation and dealocation overhead? Is it wise to use SBC …
4
votes
3answers
211 views

What is the difference between ‘(a b c) and (list ‘a ‘b ‘c)?

I am reading "On lisp" and encounter this code (I simplified a bit). CL-USER> (defun foo () '(a b c)) FOO …
2
votes
6answers
611 views

How to convert byte array to string in Common Lisp?

I'm calling a funny API that returns a byte array, but I want a text stream. Is there an easy way to get a text stream from a byte array? For now I just threw together: (defun b …
1
vote
1answer
113 views

AllegroServe on SBCL 1.0.28 failing with `accept invalid keyword argument: :AUTO-CLOSE`

New version of SBCL 1.0.28 running on debian breaks AllegroServe 1.2.47 on incoming connection with following error: aserve-accept-6: 05/26/09 - 21:11:01 - accept: error 0 on acce …
6
votes
4answers
378 views

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

I have a VPS with not very much memory (256Mb) which I am trying to use for Common Lisp development with SBCL+Hunchentoot to write some simple web-apps. A large amount of memory a …
0
votes
1answer
94 views

Can one make CUSP use one’s own SBCL?

I've already got slime+emacs+sbcl running (SBCL 1.0.23) on my Windows XP machine. CUSP installs with SBCL 1.0.6. Is there a way to make CUSP use the existing SBCL installation ins …
3
votes
4answers
744 views

Common Lisp: The Remove Function, how is it used?

I have a query request-uri in the form of "/node/143" (just an example of the format). I want to strip the first forward slash from the string, I looked up the function remove and …
0
votes
2answers
449 views

Common Lisp GUI Programming With System Calls

Can anyone tell me about using (Steel Bank) Common Lisp for writing GUIs via system calls? I know there are some libraries out there but this is a language learning exercise, so I …
3
votes
3answers
871 views

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

Hello people. I was trying to use the slime-connect function to get access to a remote server with sbcl. I followed all the steps from the slime.mov movie from Marco Baringer, but …
4
votes
2answers
166 views

Weird HTTP problem/mistake with Lisp

I'm attempting to learn a little more about handling sockets and network connections in SBCL; so I wrote a simple wrapper for HTTP. Thus far, it merely makes a stream and performs …
3
votes
1answer
171 views

How does one use SBCL’s SB-SPROF allocation profiling?

Update: Upgrading to SBCL 1.0.24 fixed my problem. (Though I also needed to upgrade SLIME to the 11-23-2008 revision. The stable 2006-04-20 revision, as well as the head of CVS d …
2
votes
2answers
169 views

Lisp: Need help getting correct behaviour from SBCL when converting octet stream to EUC-JP with malformed bytes

The following does not work in this particular case, complaining that whatever you give it is not a character. (handler-bind ((sb-int:character-coding-error #'(la …
2
votes
4answers
310 views

Cross-compiling with SBCL

I have SBCL running on a Ubuntu machine. I want to write a little program that I want to give to a friend who has only Windows running. What is the quickest way to cross-compile …
6
votes
8answers
663 views

Does Common Lisp have a something like java’s Set Interface/implementing classes?

I need something like this, a collection of elements which contains no duplicates of any element. Does Common Lisp, specifically SBCL, have any thing like this?

1 2 next
15 30 50 per page