cl-cookbook icon indicating copy to clipboard operation
cl-cookbook copied to clipboard

The Common Lisp Cookbook

Results 89 cl-cookbook issues
Sort by recently updated
recently updated
newest added

from https://github.com/LispCookbook/cl-cookbook/pull/401 for @bendudson or @alx-a (or me) ;) > It might good to add a link to NumCL to this page (https://github.com/numcl/numcl), and think about which library this page...

I think a chapter on Lisp documentation would be good to have. Thing like: * docstrings * how to get documentation of lisp stuff. * manual generation (declt, etc). *...

Hello, So I am nearing completion on a new write-up - a Common Lisp "Cheat Sheet". I think it will be a worthwhile addition to the Cookbook as it gives...

Continuing the nascent discussion in #279: we'd enjoy a faster website generator (for local work), and a better looking theme. Hugo themes for documentation: https://themes.gohugo.io/tags/documentation/ - https://docs.vantage-design.com/ace/getting-started/usage/ (nice one, simple...

Augment https://lispcookbook.github.io/cl-cookbook/process.html#joining-on-a-thread-destroying-a-thread with the following: Using `bt:destroy-thread` is a **bad** idea in the general case. Threads should instead finish on their own to do all the cleanup that they might...

The instructions on https://lispcookbook.github.io/cl-cookbook/scripting.html use `sbcl --load file.asd ...` on at least two occasions. When I tried that, I got warnings and errors which implied that ASDF wasn't loaded, e.g....

bug

Making a class funcallable can be very useful, for instance when implementing a `handler` type, or a `command` type. You can find an example in the CLISP manual: https://www.gnu.org/software/clisp/impnotes/mop-slot-access.html#mop-sa-funcallable The...

suggestion

While going through the part of cookbook that is related on using Emacs and Common Lisp, I noticed that the code snippets lack clarity about how they should be run....

bug
suggestion

In the debug page, stepping only works if `(declaim (optimize (speed 0) (space 0) (debug 3)))` is enabled for the compiler. (At least for SBCL, your mileage may vary.) A...

https://www.reddit.com/r/lisp/comments/jxstxf/common_lisp_by_example/ Might be worth linking from some sort of materials section; I have not yet taken the time to read it so I cannot say anything about the contents.

help wanted
suggestion