12
votes
What makes lisp macros so special
Common Lisp macros essentially extend the "syntactic primitives" of your code.
For example, in C, the switch/case construct only works with integral types and if you want to use it for floa …
0
votes
My first Lisp macro; is it leaky?
No, no symbol introduced in the macro's "lexical closure" is released to the outside.
Note that leaking isn't NECESSARILY a bad thing, even if accidental leaking almost always is. For one p …
0
votes
I need to join two lists, sort them and remove duplicates. Is there a better way to do this?
As Antti pointed out, you probably want to leverage REMOVE-DUPLICATES and SORT, though I'd probably use a keyword (or optional argument) for the test function:
(defun merge-lists (list-1 list-2 sor …
5
votes
What is the preferred way to serve web applications written in Lisp?
If Nginx support proxying, you could always proxy to a Hunchentoot server running on localhost.
…
0
votes
Automatically create ASDF files for a Common Lisp project
I don't know. I mostly use ASDF for my in-development compilation needs. Once you notice that you'd benefiot from more than one source file, open <projectname>.asd, slap in a basic ASDF syste …
1
vote
C Vs Lisp Conceptually
Specifically for C and Lisp, the main difference is that C allows you the freedom to tinker with small details to make things fast, whereas Lisp provides enough abstraction to allow you to only tin …
0
votes
Function names as strings in Lisp?
I'd either use INTERN or (possibly, you'd have to profile to be 100% sure it's helpful) a helper function that does the string concatenation and the initial find, then caches the result in a hashta …
0
votes
Learning Lisp - Why ?
Killer app? The flight search engine by ITA Software is one.
As for "why", it will most probably make you a better developer and is extremnely unlikely to make you a worse one. It may, howe …
1
vote
ASDF or other module system independent of home and site configurations
In general, I'd say that anything installed as a 3rd-party library SHOULD modify the host system state (as it were). Stuff developed locally can be handled by several methods, what I use is a symli …
2
votes
Practical example of Lisp’s flexibility?
One thing I like is the fact that I can upgrade code "run-time" without losing application state. It's a thing only useful in some cases, but when it is useful, having it already there (or, for onl …
1
vote
How do you type lisp efficiently, with so many parentheses?
Mostly, I just type them, but occasionally, I use M-( and M-) (especially when I am adding a LET binding "late in the stage"), to enclose the relevant nnumber of expressions.
…
2
votes
Lisp image
In general, it's the storage part of the lisp process (that is, all "lisp" functions and data), but no parts of the underlying lisp binary. On the plus side, this gives a fast start-up, since there …
0
votes
Lisp grammar in yacc
Do you neccesarily need a yacc/bison parser? A "reads a subset of lisp syntax" reader isn't that hard to implement in C (start with a read_sexpr function, dispatch to a read_list when you see a '(' …
3
votes
What is wrong with the following Common Lisp macro using gensym?
Either move the binding of your loop-start and loop-end to an enclosing LET block or use DO*. The reason is that all loop variables in DO are bound "in parallel", so for the first binding, the (exp …
0
votes
LET versus LET* in Common Lisp
I mostly use LET, unless I specifgically need LET*, but sometimes I write code that explicitly needs LET, usually when doing assorted (usually complicated) defaulting. Unfortunately, I do …
