[CfP] DLS'10047 (4/19/2010 12:50:32 PM) comp.lang.scheme Dynamic Languages Symposium 2010 October 18, 2010 Co-located with SPLASH (OOPSLA) 2010 In cooperation with ACM SIGPLAN John Ascuaga's Nugget, Reno/Tahoe, Nevada, USA http://www.dynamic-languages-symposium.or... Pascal
[CfP] DLS'10037 (4/19/2010 12:50:11 PM) comp.lang.lisp Dynamic Languages Symposium 2010 October 18, 2010 Co-located with SPLASH (OOPSLA) 2010 In cooperation with ACM SIGPLAN John Ascuaga's Nugget, Reno/Tahoe, Nevada, USA http://www.dynamic-languages-symposium.or... Pascal
ASDF: how to locate resources27181 (3/7/2010 11:55:05 AM) comp.lang.lisp Hi,
In one library, I used *load-pathname* / *load-truename* to find
additional files to load, relative to the location where the library was
found. This worked quite well for a couple of years. Alas, AS... Pascal
[CfP] 2nd International Workshop on Context-oriented Programming032 (2/22/2010 12:28:56 PM) comp.lang.lisp Call for Papers =============== 2nd International Workshop on Context-oriented Programming (COP'10) at ECOOP 2010, Maribor, Slovenia, June 21 or 22, 2010 http://soft.vub.ac.be/cop10/ Important Dates ========... Pascal
How to use dynamic-extent declarations...4591 (2/2/2010 10:47:24 AM) comp.lang.lisp Hi,
I recently submitted a report to the SBCL devel mailing list about what
I believed to be a bug in their compiler, only to learn that my
understanding of what dynamic-extent declarations do was just w... Pascal
common-lisp.net?5116 (1/20/2010 11:40:42 AM) comp.lang.lisp Anyone knows what's wrong with common-lisp.net today? I can't access it
from my office at the moment...
Pascal
--
My website: http://p-cos.net
Common Lisp Document Repository: http://cdr.eurolisp.org... Pascal
[CfP] ELS 2010626 (12/14/2009 1:29:40 PM) comp.lang.lisp 3rd European Lisp Symposium =========================== May 6-7, 2010, Fundacao Calouste Gulbenkian, Lisbon, Portugal Important Dates ~~~~~~~~~~~~... Pascal
[CfP] ELS 2010029 (12/14/2009 1:29:20 PM) comp.lang.scheme 3rd European Lisp Symposium =========================== May 6-7, 2010, Fundacao Calouste Gulbenkian, Lisbon, Portugal Important Dates ~~~~~~~~~~~~... Pascal
[ANN] Filtered functions17356 (12/4/2009 10:08:39 PM) comp.lang.lisp Hi, I am very excited that I can finally annouce a public release of 'filtered functions', an extension of generic functions that Charlotte Herzeel, Jorge Vallejos, and myself have developed some time ago an... Pascal
[ANN] New version of ContextL (v0.6)0113 (12/4/2009 9:19:56 PM) comp.lang.lisp Hi,
I have just released a new version of ContextL. Here are the new features:
+ ContextL now supports delimited first-class dynamic environments and
DYNAMIC-WIND. Due to popular demand, these feature c... Pascal
Permuting array rows132 (5/17/2013 7:15:52 AM) comp.lang.lisp I posted this to /r/common_lisp, but nobody seemed interested, so I thought I'd try this turf.
I have some array rows I'd like to permute; I'd like a function/macro
> (setf A (make-array '(3 6) :initial-... jasonsewall(12)
Dynamically adding a slot to a class710 (4/22/2013 4:40:58 PM) comp.lang.lisp Subject line pretty much says it all. I want to dynamically add a slot
to a class using the MOP. There doesn't seem to be a standard add-slot
method, so I figure I need to use something like ensure-class.... rNOSPAMon(1856)
Need package encapsulation368 (4/8/2013 6:48:28 AM) comp.lang.lisp Hi all,
I am working on the developement of an RDBMS kind of app in lisp. The app is
growing big and I will need lispers in the near future to build up parts on the
top of the core RDBMS. This core contain... ismail.besto(6)
macro-expansion question422 (1/6/2013 8:10:03 PM) comp.lang.lisp Hello,
I have a simple macro that is not expanding as I would expect. Here is the macro:
(defmacro foo (file &optional directory)
`(set-output ,(if directory
(merge-pathnames file directory)
... mirko.vukovic(404)
How to check if an object was changed?930 (1/2/2013 7:29:04 PM) comp.lang.lisp I am using a couple of classes that I can serialize and deserialize.
I have found that always saving every one of the loaded objects when the system shuts down takes a lot of time. It should only save those ob... floriandietz44(33)
return value of INTERN in Common Lisp1223 (12/31/2012 3:40:03 AM) comp.lang.lisp While tinkering with a primitive re-implementation of a LISP
interpreter (nothing really useful, just finger-practice to
familiarize myself with LISP) I discovered a subtle bug in it: under
certain circumsta... guenthert(21)
Computer intensive algorithms in lisp1423 (12/26/2012 10:39:20 AM) comp.lang.lisp I am looking to compare speed in terms of algorithms implementation. I want=
something like the language shootout: http://benchmarksgame.alioth.debian.=
org
But I am not interested in re-implementing the 's... franco(243)