Have you heard of Muphry's LawJasper 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.
Search found 56 matches
- Fri Mar 13, 2009 11:19 am
- Forum: Common Lisp
- Topic: Deep-map-iter
- Replies: 3
- Views: 8320
Re: Deep-map-iter
- Thu Mar 05, 2009 1:25 pm
- Forum: Common Lisp
- Topic: LISP Tutorial Help
- Replies: 6
- Views: 11670
Re: LISP Tutorial Help
Thinko. This should be "and if neither of them is null, then return the symbol ITS-TOUGH." :)danb wrote:and if they're both null, then return the symbol ITS-TOUGH."
- Mon Mar 02, 2009 6:22 am
- Forum: The Lounge
- Topic: need help
- Replies: 7
- Views: 14425
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...
- Thu Feb 05, 2009 10:52 am
- Forum: The Lounge
- Topic: General question about Garbage Collection
- Replies: 12
- Views: 25854
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 :)
- Wed Jan 21, 2009 2:26 pm
- Forum: Emacs
- Topic: Cusp or Emacs - Which?
- Replies: 1
- Views: 6842
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
http://www.google.com/search?q=slime+si ... oop%2Fblog
- Wed Jan 21, 2009 2:23 pm
- Forum: Emacs
- Topic: How to start programming in LISP
- Replies: 6
- Views: 21248
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...
- Wed Jan 21, 2009 2:18 pm
- Forum: Common Lisp
- Topic: REPL problems in Lisp
- Replies: 12
- Views: 17290
Re: REPL problems in Lisp
See also http://common-lisp.net/project/armedbear/aloyslisp wrote:As I just begin a nTh CL version in Java, I just crash on some problems.
- Sat Dec 13, 2008 3:03 pm
- Forum: Common Lisp
- Topic: International Lisp Conference, 2009 - Deadline extension to
- Replies: 1
- Views: 5635
Re: International Lisp Conference, 2009 - Deadline extension to
I assume you mean December 16, 2008 :)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.
- Sun Dec 07, 2008 10:31 am
- Forum: Common Lisp
- Topic: Choose numbers at random
- Replies: 14
- Views: 25067
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...
- Fri Dec 05, 2008 4:06 am
- Forum: Other Dialects
- Topic: Clojure reactions?
- Replies: 16
- Views: 46325
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...