Search found 56 matches

by Wodin
Fri Mar 13, 2009 11:19 am
Forum: Common Lisp
Topic: Deep-map-iter
Replies: 3
Views: 7867

Re: Deep-map-iter

Jasper wrote:Hi. Firstly, many of us here prefer full sentences and typo-checked writing. Secondly, some might feel that you're asking us do do your homework.
Have you heard of Muphry's Law ;)
by Wodin
Thu Mar 05, 2009 1:25 pm
Forum: Common Lisp
Topic: LISP Tutorial Help
Replies: 6
Views: 10841

Re: LISP Tutorial Help

danb wrote:and if they're both null, then return the symbol ITS-TOUGH."
Thinko. This should be "and if neither of them is null, then return the symbol ITS-TOUGH." :)
by Wodin
Mon Mar 02, 2009 6:22 am
Forum: The Lounge
Topic: need help
Replies: 7
Views: 13599

Re: need help

eg. one line read from the file is "Smith John H M 1018702738 1230432689 40000 Technician" in the order of last name, first name, middle init, sex, birthday, starting date, salary, title" By the way, one thing you might want to watch out for is, what happens when the last name is &qu...
by Wodin
Thu Feb 05, 2009 10:52 am
Forum: The Lounge
Topic: General question about Garbage Collection
Replies: 12
Views: 24365

Re: General question about Garbage Collection

One approximation of this would be to run a JVM and then use Java, Jython, JRuby, Scala, Clojure etc. on top of it :)
by Wodin
Wed Jan 21, 2009 2:26 pm
Forum: Emacs
Topic: Cusp or Emacs - Which?
Replies: 1
Views: 6453

Re: Cusp or Emacs - Which?

I don't use Emacs/SLIME, but perhaps some of these links will help you decide:
http://www.google.com/search?q=slime+si ... oop%2Fblog
by Wodin
Wed Jan 21, 2009 2:23 pm
Forum: Emacs
Topic: How to start programming in LISP
Replies: 6
Views: 20244

Re: How to start programming in LISP

Does it not simply mean that the file was closed successfully? (let form evaluates to its last subform, which is (close in), so that returns T (I presume is the emacs lisp equivalent of #t in Common Lisp, i.e. true)... right?) You're thinking of Scheme. T is true in Common Lisp (and I assume it's t...
by Wodin
Wed Jan 21, 2009 2:18 pm
Forum: Common Lisp
Topic: REPL problems in Lisp
Replies: 12
Views: 15815

Re: REPL problems in Lisp

aloyslisp wrote:As I just begin a nTh CL version in Java, I just crash on some problems.
See also http://common-lisp.net/project/armedbear/
by Wodin
Sat Dec 13, 2008 3:03 pm
Forum: Common Lisp
Topic: International Lisp Conference, 2009 - Deadline extension to
Replies: 1
Views: 5449

Re: International Lisp Conference, 2009 - Deadline extension to

dlweinreb wrote:Because of timing and technical difficulties, the submission deadline
for the 2009 International Lisp Conference has been extended from
December 9, 2009, to December 16, 2009.
I assume you mean December 16, 2008 :)
by Wodin
Sun Dec 07, 2008 10:31 am
Forum: Common Lisp
Topic: Choose numbers at random
Replies: 14
Views: 23155

Re: Choose numbers at random

Keep in mind, that one will have to iterate over the list twice, once to get its length, and once to get the random element (apologies if you know this already). It's probably fine for your purposes, but if it seems slower than it should be, consider either not using a list or storing the list leng...
by Wodin
Fri Dec 05, 2008 4:06 am
Forum: Other Dialects
Topic: Clojure reactions?
Replies: 16
Views: 43909

Re: Clojure reactions?

Catching up on the Clojure group, I saw this message: http://groups.google.com/group/clojure/browse_thread/thread/d8a73d4c124bc8f6/a7ddc7b58782ca0b?lnk=gst#a7ddc7b58782ca0b I found this part interesting: Proxy generation was the last runtime code-gen/classloader requirement. So the path is clear for...