Search found 10 matches

by aerique
Mon Jul 06, 2009 8:08 am
Forum: Common Lisp
Topic: Mudballs... Dead?
Replies: 3
Views: 4848

Re: Mudballs... Dead?

gugamilare wrote:I don't know about the other projects so I can't talk about them.
Defsystem was the predecessor to ASDF.
by aerique
Wed May 27, 2009 2:52 pm
Forum: Common Lisp
Topic: GUI toolkits + CL implementations
Replies: 6
Views: 11731

Re: GUI toolkits + CL implementations

For GTK there's also GTK-server which is pretty easy to get started with, although it won't be very Lispy. It doesn't need an FFI and it is cross-platform. It does have its limitations which are hard to work around but for simple interfaces it should be enough. I was able to hack this together almos...
by aerique
Sat May 16, 2009 6:17 am
Forum: The Lounge
Topic: Wrapper library licenses
Replies: 8
Views: 15856

Re: Wrapper library licenses

Thanks for the extensive answers and suggestions so far. In case this helps the discussion the libraries I'm writing / have written wrappers for are: Ogre3D , Bullet and OIS . (on that note: if you're a CL programmer looking for interesting projects, a native collision / physics library and a native...
by aerique
Fri May 15, 2009 12:50 am
Forum: The Lounge
Topic: Wrapper library licenses
Replies: 8
Views: 15856

Wrapper library licenses

I am a couple of weeks away from releasing the first versions of three Common Lisp packages which all three provide an interface to a foreign library (a 3D engine, a physics engine and an input library). Since I do not really know much about licenses my initial thought was to release them under the ...
by aerique
Fri Apr 17, 2009 3:34 pm
Forum: Common Lisp
Topic: Using barewords not keywords in macros
Replies: 7
Views: 9687

Re: Using barewords not keywords in macros

Alright, figured out what went wrong. I forgot to downcase the keywords during a comparison so instead of getting filtered out they did indeed get evaluated at a later moment. I was totally focussing on the wrong part of the macro when trying to find the problem. I hereby present Iffy!: (defmacro if...
by aerique
Fri Apr 17, 2009 3:00 pm
Forum: Common Lisp
Topic: Using barewords not keywords in macros
Replies: 7
Views: 9687

Re: Using barewords not keywords in macros

I have never seen the word "bareword" used before and am fairly certain that it has no Lisp-specific meaning, so what do you mean exactly? Basically "not a keyword". I tried to explain that with my two code examples. You seem to be missing a point of macros. No, I don't :) I jus...
by aerique
Fri Apr 17, 2009 8:42 am
Forum: Common Lisp
Topic: Using barewords not keywords in macros
Replies: 7
Views: 9687

Using barewords not keywords in macros

If been trying to figure something out and neither Google has been much help nor did looking at the source for the iterate package help me. It only made me more confused. So I hope there's a simple answer to this: how does one use a bareword in a macro? An iterate form for example looks like this: (...
by aerique
Wed Mar 25, 2009 2:52 am
Forum: Common Lisp
Topic: Auto documentation for lisp?(output html, prefered)
Replies: 15
Views: 21460

Re: Auto documentation for lisp?(output html, prefered)

gugamilare wrote:Mudballs, as much as I understand, is a replacement for ASDF, not only ASDF-install.
This is a quote from the mudballs site:
Mudballs primary purpose is not System Definition but Repeatable System Distribution.
So it is not just a replacement for ASDF.
by aerique
Mon Mar 23, 2009 2:44 am
Forum: Common Lisp
Topic: Some SBCL Windows binaries
Replies: 4
Views: 8031

Re: Some SBCL Windows binaries

I wouldn't mind donating some money to this cause.
by aerique
Mon Mar 23, 2009 2:26 am
Forum: Common Lisp
Topic: Playing with iterate
Replies: 4
Views: 6196

Re: Playing with iterate

findinglisp wrote:Ideally, I'd just (USE-PACKAGE :ITERATE) and be done with it.
Like others have said, this should just work.

Iterate is my primary looping construct. I love it. It's clear, lispy and I rarely have to check to manual to use it (very important! :))