Tagged Questions

Steel Bank Common Lisp: an open-source compiler and runtime implementation of ANSI Common Lisp.

learn more… | top users | synonyms

12
votes
7answers
760 views

Lisp Community - Quality tutorials/resources

As many other people interested in learning Lisp, I feel the resources available are not the best for beginners and eventually prevent many new people from learning it. Do you feel it could be created ...
10
votes
5answers
417 views

Why doesn't a LISP defun require a quote before its parameter argument?

Take this function: (defun sum-greater (x y z) (> (+ x y) z)) It's my understanding that in LISP the first element in a list always represents a function to be performed on the subsequent ...
9
votes
2answers
388 views

Where does “Your Kitten of Death awaits” come from? [closed]

If you run SBCL (at least on Windows, I use CLISP at home), you get the message, "Your Kitten of Death awaits." I suspect that this has something to do with some form of inside joke (like Super Cow ...
9
votes
4answers
1k 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 appears to be getting ...
8
votes
1answer
285 views

Help using Lisp debugger

I'm trying understand how to interpret the output of, and use, the Lisp debugger. I've got a pretty simple Backtrace for the evaluation of my function, but I cann't seem to work out how to use it to ...
8
votes
4answers
2k views

How can I simply “run” lisp files

Python When I learned Python I installed it on windows with a nice gui installer and all .py files would automatically run in python, from the command line or explorer. I found this very intuitive ...
7
votes
1answer
165 views

How big is a class in memory?

How do I figure out how many bytes a defclass object has in Common Lisp?
7
votes
2answers
671 views

How to process input and output streams in Steel Bank Common Lisp?

I'm trying to figure out how to use the output stream of one program I start with RUN-PROGRAM so it can be used as the input of another program started with RUN-PROGRAM (i.e., the moral and perhaps ...
7
votes
2answers
384 views

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

I am reading "On lisp" and encountered this code (I simplified it a bit). CL-USER> (defun foo () '(a b c)) FOO ...
7
votes
6answers
3k 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 bytearray-to-string ...
7
votes
8answers
2k 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?
6
votes
2answers
310 views

Evolving a lisp image

I love the idea of image-based languages, and lately I've been toying with Common Lisp via sbcl. I've read in a few places about how through being able to save and load back an image of the virtual ...
6
votes
2answers
235 views

lisp as a shebang script vs lisp running in SLIME

I just started with common-lisp, having come from C++ and Python. I'm trying to run a simple SDL program that does nothing other than show an image on-screen. I can get it working from within SLIME. ...
6
votes
2answers
253 views

how to turn off the debugger in sbcl

I'm trying to learn common lisp currently and I've been using sbcl (I hope that's a decent implementation choice.) Coming from ruby and irb I find the automatic moved to a debugger on every mistake a ...
6
votes
4answers
399 views

How do I disable warnings in lisp (sbcl)

How do I disable all warnings in sbcl? The extra output is rather annoying.
5
votes
1answer
71 views

strange pathname?

* (make-pathname :name "cgi-bin/") #P"cgi-bin/" * (merge-pathnames "nav.py" #P"cgi-bin/") #P"cgi-bin/nav.py" ; **it is ok** * (merge-pathnames "nav.py" (make-pathname :name "cgi-bin/")) #P"nav.py" ...
5
votes
1answer
192 views

Maximum debug info from Steel Bank Common Lisp & Slime

What's the best way to initialise a Lisp session (I'm using Slime and sbcl) such that functions are always compiled with the maximum amount of debug information?
5
votes
3answers
347 views

sbcl runs forever on second call of function

The function: Given a list lst return all permutations of the list's contents of exactly length k, which defaults to length of list if not provided. (defun permute (lst &optional (k (length ...
5
votes
4answers
668 views

SBCL standard library documentation?

I want to learn and use SBCL because of its ease of learning and speed. (I've been playing with Lisp 3 years ago, and now am refreshing it.) But how can I learn what's included in the standard ...
5
votes
2answers
288 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 a request to ...
4
votes
2answers
82 views

operator #+ and #- in .sbclrc

Anybody know what #+ and #- operators means in .sbclrc? I couldn't find it in the manual. I see #- in .sbclrc after I installed quicklisp: #-quicklisp (let ((quicklisp-init (merge-pathnames ...
4
votes
1answer
228 views

Write/read a Common Lisp (SBCL) hash-table, or alternative

I would like to write/read a hash-table to/from disk, but it is not a (print)able object. I won't know the key names so I can't think of a way to do it manually. I read that there might be ...
4
votes
3answers
223 views

In LISP is it possible to access a function's form?

Suppose I define a function globally: (defun x (y) (1+ y)) ;; Edit: my first example was too complicated Is it possible to "coerce" the function x into a list like: (x (y) (1+ y)) Thanks in ...
4
votes
3answers
119 views

Is there an equivalent to “run-program” in common lisp in scheme?

I can run (run-program "/usr/ls" '()) in sbcl, is there an equivalent in any scheme implementation? Chicken.. r6rs?
4
votes
1answer
776 views

(Random) in Common Lisp Not So Random?

Okay, final question and I'll have finished my number guessing game in Common Lisp! :D Whenever the game starts (or a new game begins after the first game), the following function is called. ;;; Play ...
4
votes
3answers
261 views

Common Lisp Error Not Understood

I'm trying to write a number guessing game in Lisp as a time-killing project. However, when I try to load up the program using SBCL, I get the following error: debugger invoked on a ...
4
votes
1answer
309 views

Reset state in Common Lisp

Newbie Common Lisp question here. Is there a way to reset the state of the environment? What I mean, is there some command that brings the REPL back to the same state it was right after it started ...
4
votes
1answer
447 views

auto indentation on common lisp emacs + slime + sbcl in windows

I can't use auto indentation function on emacs + slime + sbcl when I define my function and so on. My .emacs file configuration is this: (setq inferior-lisp-program "D:/emacs/sbcl_1.0.37/sbcl.exe" ...
4
votes
3answers
345 views

nohup SBCL ubuntu couldn't read from standard input

On Ubuntu I compiled sbcl 1.0.35 with threading. I can happily use sbcl from the command line and my hunchentoot website works with threading but when I logout it's gone. When I attempt to nohup sbcl ...
4
votes
1answer
134 views

SBCL initialization file

I would like to know where I should save my .sbclrc file. I tried saving it in my .sbcl folder, but it doesn't seem to be working. I'm using Windows XP with Emacs version 23. I'm trying to set up ...
4
votes
4answers
3k 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 had a try. I just ...
4
votes
3answers
3k views

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

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 I got stuck when creating the ssh ...
4
votes
3answers
714 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 it on my machine ...
4
votes
2answers
848 views

How do I display an image with ltk?

I have written code to read a windows bitmap and would now like to display it with ltk. How can I construct an appropriate object? Is there such functionality in ltk? If not how can I do it directly ...
3
votes
2answers
110 views

How to replace a running function in Common Lisp?

Suppose we use SBCL's #'save-lisp-and-die to create an server applicatioon App1, which works very well. Now we want to replace a function #'func1 with a new version without stopping App1. How can ...
3
votes
1answer
94 views

A simple example of using the stepper in SBCL

Going through the computation with the LispWorks stepper is rather intuitive, but I cant figure it out in SBCL. Can somebody please give me a step-by-step example of how to use the SBCL stepper in the ...
3
votes
1answer
98 views

Debugging Lisp & SLIME, error “Cannot find source location”

I am wrote the code with bugs. Example: (print (/ 1 0)) I am trying compile with C-c C-c. And catch the error with stack frame. I want see line in the code where an error occured. Clicked 'v' on ...
3
votes
2answers
229 views

SBCL sockets: reuse-address

The call to sockopt-reuse-address seems to have no effect. (setf socket (make-instance 'sb-bsd-sockets:inet-socket :type type :protocol protocol) (setf ...
3
votes
3answers
148 views

How is Lisp code structured? What are Packages and Systems?

I'm learning Lisp (SBCL) and I'm confused about how lisp code is structured. I believe that Lisp Packages are like Python's Modules? I want to do something like this. utilities.py: def foo(): ...
3
votes
2answers
124 views

exp in SBCL is wrong?

CL-USER> (exp 1) 2.7182817 Why? It should be 2.7182818 (rounded from 2.7182818284590452353602874713526624977572470936999595749669...) SBCL 1.0.29.11.debian
3
votes
1answer
105 views

SB-KERNEL:TWO-ARG - what does this mean when used in debugger backtrace?

I'm (a newbie) debugging my Lisp code (Common Lisp, Steel Bank, SLIME). The first frame in my backtrace is: 0: (SB-KERNEL:TWO-ARG-> 1 NIL) My question is: what exactly does ...
3
votes
1answer
155 views

Do property lists in Common Lisp refer to some global state?

The code below has z as a local variable, yet it behaves as if it is a global: (defun foo (m) (let ((z '(stuff nil))) (push m (getf z 'stuff)) (print z))) (foo 1) (foo 2) (foo 3) I would ...
3
votes
2answers
278 views

Compiling SBCL from source on Mac OS X

I need to compile SBCL from source and enable threading on my Mac OS X MacBook. I've done the following: Downloaded sbcl-1.0.29.54.rc1 and unzipped it to the root of my hard drive (I could put it ...
3
votes
1answer
207 views

Args for sb-ext:run-program

Can someone tell me exactly what the args argument should look like for sb-ext:run-program? If I do this: (sb-ext:run-program "C:/Program Files/iTunes/iTunes.exe" ...
3
votes
4answers
300 views

Illegal Function Call in Common Lisp

I'm working on making a two player tic-tac-toe game, and am in the phase where I work out all of the errors in my code. The current error i'm stuck on is an illegal function call error in the ...
3
votes
1answer
83 views

How do I reuse a previously-opened port, using SBCL's sockets?

Creating a server-side socket will fail if I'm trying to use the same port I've used before. An address-in-use error occurs. (make-instance 'sb-bsd-sockets:inet-socket :type :stream :protocol :tcp) ...
3
votes
2answers
435 views

Connect SBCL on Windows to SQL Server using Integrated Authentication

What is the path of least resistance in getting an SBCL application running on Windows to connect to a SQL Server instance, using integrated authentication? I have found posts on connecting from ...
3
votes
1answer
204 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 SBCL to do this or is ...
3
votes
1answer
487 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 don't seem to work ...
3
votes
2answers
269 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 VM doesn't help ...

1 2