Search found 56 matches

by Wodin
Tue May 26, 2009 12:25 pm
Forum: Common Lisp
Topic: cl-graph
Replies: 1
Views: 3429

Re: cl-graph

I think you probably need ASDF help rather than cl-graph help :)

Try starting with:

Code: Select all

(asdf:oos 'asdf:load-op :cl-graph)
Also, maybe this helps: http://www.metabang.com/unclog/publisha/atinybit.html

I've never used cl-graph, though.
by Wodin
Sun May 24, 2009 6:46 am
Forum: Common Lisp
Topic: Rant: lisp is not C. Get over it.
Replies: 47
Views: 231310

Re: Rant: lisp is not C. Get over it.

SBCL carries an MIT license and thus cannot link with Readline. I wonder if anybody has considered using libedit/editline for SBCL, which is what the BSD people tend to use instead of libreadline. I believe libedit is part of the NetBSD, FreeBSD etc. projects, and there are also projects based on t...
by Wodin
Sun May 17, 2009 9:50 am
Forum: Lisp Quiz
Topic: Lisp Quiz #2?
Replies: 9
Views: 63523

Re: Lisp Quiz #2?

@unne - i wasn't able to run your code because it appears I don't have the contrib libraries. Is that something you have to download separately? I haven't really done much with clojure yet, other than install it and run thru the first tutorial page. Get clojure-contrib from here (via SVN): http://c...
by Wodin
Mon May 11, 2009 11:30 am
Forum: Common Lisp
Topic: Clozure Lisp CGI Programming
Replies: 19
Views: 40426

Re: Clozure Lisp CGI Programming

No, I ran it as Opera to see if the root user also had the same problems. I assumed (I'm not a Linux expert yet) that since root has full control over the system that any permission problems my regular account were having wouldn't apply to the root user. My point is that this is a CGI script that i...
by Wodin
Sun May 10, 2009 12:05 pm
Forum: Common Lisp
Topic: Clozure Lisp CGI Programming
Replies: 19
Views: 40426

Re: Clozure Lisp CGI Programming

Why would the image load properly from the terminal but not from the browser? Permission issues? I ran Opera as root and had the same problem. Hi Running Opera as root is as likely to help as is wearing your lucky rocket-ship underwear ;-) i.e., it's not Opera that is having trouble. It is Apache.
by Wodin
Sun Apr 12, 2009 1:29 pm
Forum: Common Lisp
Topic: Something wrong with imagemagick and cl-base64
Replies: 7
Views: 11221

Re: Something wrong with imagemagick and cl-base64

[...]Lisp-Magick has a strange license: http://www.nil.at/software/lisp-magick.html This just looks like the normal BSD License (without the advertising clause). Although I do think "his contributors" sounds a bit funny. See also the MIT License and the ISC License , which are similar.
by Wodin
Sun Apr 12, 2009 12:51 pm
Forum: Common Lisp
Topic: ANN: ECL 9.4.0
Replies: 4
Views: 7475

Re: ANN: ECL 9.4.0

jjgarcia wrote:[...]The new version of the compiler I am working on with a small SSA languange, is probably closer to what you do or want to do: a sufficiently simple language that can be transformed to bytecodes, C, etc[...]
Are there any plans to produce JVM, .Net CLR, Parrot or LLVM bytecode?
by Wodin
Sun Mar 15, 2009 9:01 am
Forum: Common Lisp
Topic: Recursive 'member-of'
Replies: 2
Views: 5512

Re: Recursive 'member-of'

(defun member-of (elem the-list) (if (eql elem (car the-list)) 'T (member-of elem (cdr the-list)))) Of course that only works if the element is indeed a member of the list. If the element isn't, this function will not terminate. How to fix this? :? The problem is that when you get to the end of the...
by Wodin
Fri Mar 13, 2009 3:40 pm
Forum: The Lounge
Topic: Spammers
Replies: 18
Views: 37523

Re: Spammers

Excellent :) Good job.

Thanks.
by Wodin
Fri Mar 13, 2009 3:36 pm
Forum: Common Lisp
Topic: help with the heap
Replies: 6
Views: 9739

Re: help with the heap

If you don't get an answer here, try the sbcl-help list:

https://lists.sourceforge.net/lists/listinfo/sbcl-help