Description:
Discussion about LISP.
|
|
|
common lisp style and design, engineering question
|
| |
This is not a hypothetical question. I will be implementing some
applications in the next year or so, such as artificial neural
networks, support vector machines, Baysesian networks (inspired in
part by 'Programming Collective Intelligence' by Toby Segaran who
implements these in Python.)
My day-to-day language is Perl, and C to a lesser extent. I write... more »
|
|
PROLOG UNDER THE HOOD - New Prolog Engine!
|
| |
BEHOLD!
$sql2="SELECT HEADS.id AS 'HID', QUERY.buds AS 'QB'
FROM QUERY INNER JOIN HEADS
ON QUERY.ref=HEADS.ref AND QUERY.term=HEADS.term
GROUP BY HID HAVING COUNT(HID)=$qc-SUM(QB)"
This is what makes PROLOG DATABASES possible: the flux capacitor! It's
taken me nearly thirty years and my entire family fortune to realize... more »
|
|
lispbuilder-sdl-ttf
|
| |
Why this error happens?
... load-cffi
(pushnew #P"lispbuilder-sdl/" asdf:*central-registry*)
(pushnew #P"lispbuilder-sdl/lispbuilder -sdl-ttf/" asdf:*central-registry*)
(asdf:operate 'asdf:load-op :lispbuilder-sdl)
(asdf:operate 'asdf:load-op :lispbuilder-sdl-ttf)
(asdf:operate 'asdf:load-op :lispbuilder-sdl-ttf-examples)... more »
|
|
next time somebody...
|
| |
Next time somebody complains about parentheses or tries to implement a
parenthesisless syntax for lisp, let's have him watch
[link]
-- __Pascal J. Bourguignon__
|
|
Beginner Question about Lisp with CL-GD
|
| |
Hello everyone,
I'm learning to program with Lisp (Clozure CL) and have a problem with using some "libraries".
I have downloaded cl-gd (GD-Lib for Common Lisp) with (ql:quickload "cl-gd") and then i compiled the C-Glue-Code in the folder of cl-gd.
I can execute the tests with
(ql:quickload "cl-gd-test")... more »
|
|
Decoding large, nested json and inserting into a database
|
| |
Hi,
I am trying to figure out a way to parse nested JSON and insert various extracted elements into an sqlite database. The JSON strings are typically quite large, and rather than parse them entirely into memory first as Lisp objects (alists or CLOS objects) I would like to be able to do this in streaming fashion, as the JSON is being read.... more »
|
|
Permuting array rows
|
| |
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
...
Clearly there are some ways this can be done with a few loops and a spare buffer, but I was wondering if there was some more elegant way of doing it. I wanted something that would expand to... more »
|
|
|