Search found 41 matches
- Mon Apr 13, 2009 8:41 pm
- Forum: Common Lisp
- Topic: Common Lisp Bloggers
- Replies: 10
- Views: 20623
Re: Common Lisp Bloggers
Here are some more (this is from my survey paper, but I've removed the ones that were already mentioned above): "Lispmeister", a blog run by Markus Fix, mainly about Lisp: * http://lispmeister.com "Exploring Lisp: Writings on Lisp and the process of programming", a blog by Geoff ...
- Fri Feb 27, 2009 9:34 am
- Forum: Common Lisp
- Topic: Register now for the International Lisp Conference!
- Replies: 1
- Views: 4434
Re: Register now for the International Lisp Conference!
(Correction: the last day of the conference is Wednesday, March 25.)
- Fri Feb 27, 2009 3:08 am
- Forum: Common Lisp
- Topic: Register now for the International Lisp Conference!
- Replies: 1
- Views: 4434
Register now for the International Lisp Conference!
Register now! Early registration ends after March 1. THE INTERNATIONAL LISP CONFERENCE, 2009 Sunday, March 22 through Wednesday, March 23 The Stata Center, MIT, Cambridge, MA. Presented by the Association of Lisp Users In cooperation with ACM SIGPLAN Featuring four invited speakers: David Moon (co-f...
- Wed Feb 04, 2009 8:58 am
- Forum: Common Lisp
- Topic: Registration is open for Int'l Lisp Conference
- Replies: 0
- Views: 4357
Registration is open for Int'l Lisp Conference
Registration for the International Lisp Conference, 2009, is now open. The conference will be from Sunday, March 22 through Wednesday, March 25, at the Stata Center, MIT, Cambridge, MA. It features: Gerald Sussman, Shriram Krishnamurthi, and David Moon as invited speakers Five tutorials (no extra ch...
- Mon Jan 19, 2009 5:39 pm
- Forum: Common Lisp
- Topic: Looking for short/lightning talks for the International Lisp
- Replies: 0
- Views: 8407
Looking for short/lightning talks for the International Lisp
Hi. I'm looking for some good short/lightning talks for the International Lisp Conference 2009 (March 22-25 at MIT in Cambridge, MA, USA; see ilc09.org). If you, or anyone who you think might be coming to the conference, might have a short talk to give, please send me a brief description. Please for...
- Tue Jan 06, 2009 4:26 am
- Forum: Common Lisp
- Topic: Problems with allegro express and slime
- Replies: 7
- Views: 10466
Re: Problems with allegro express and slime
I suggest asking Franz's support people. As long as you're paying for Allegro, you might as well take advantage of the fact that there's a company behind the product.
- Tue Jan 06, 2009 4:24 am
- Forum: Common Lisp
- Topic: Creating array with elements of a custom type
- Replies: 2
- Views: 5512
Re: Creating array with elements of a custom type
Just don't specify an element type. Then the array elements can hold any Lisp object.
(It's better not to use the word "pointer" when talking about Lisp, I've found.)
(It's better not to use the word "pointer" when talking about Lisp, I've found.)
- Tue Jan 06, 2009 4:22 am
- Forum: Common Lisp
- Topic: Languages implemented on Lisp?
- Replies: 10
- Views: 26802
Re: Languages implemented on Lisp?
Peter Seibel gave a lecture at Google where he showed a simple example of a DSL in Lisp. http://video.google.com/videoplay?docid=448441135356213813 Shriram Krishnamurthy of Brown has a slide presentation showing a finite-state machine done nicely as macros. (It's Scheme but it's all the same idea.) ...
- Tue Jan 06, 2009 4:18 am
- Forum: Common Lisp
- Topic: A "declare" form returned by macro
- Replies: 19
- Views: 34594
Re: A "declare" form returned by macro
Although it does not work to have a macro that expands directly into a (declare ...),
you can do this kind of thing:
(defmacro with-dcl (var &body body)
`(let ((,var 0))
(declare (fixnum ,var))
,@body))
you can do this kind of thing:
(defmacro with-dcl (var &body body)
`(let ((,var 0))
(declare (fixnum ,var))
,@body))
- Sat Jan 03, 2009 4:58 pm
- Forum: Common Lisp
- Topic: Poll: Which Lisp implementations do you use?
- Replies: 32
- Views: 98293
Re: Poll: Which Lisp implementations do you use?
At ITA Software, we use SBCL for one large project, and CCL for one even larger project. One constraint at ITA is that we are committed to using open source implementations. We switched from CMUCL to SBCL somewhat before I joined the company (three years ago). These two implementations are closely r...