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

This is an efficient way of copying any kind of file, either character or binary. ``` (defun copy-file (from-file to-file) "copy the file from-file into to-file" (with-open-file (input-stream from-file :direction...

I am currently learning CLSQL and wonder what is the best way to handle deletions of joins. As an example, assume a user account is to be deleted in some...

Should the cookbook include sections on semi-standard libraries? I was thinking: * `Series` by Richard Waters. It seems to have almost become part of the CL standard, and close to...

Is it possible to translate the articles of cl-cookbook into Japanese and share it on my repository? I read about the license of this project, but I'm not sure I...

enhancement

It appears that Clozure CL has a different meaning for `ccl:interrupt-signal-condition` which prevents the code from working on the recent CCL. The fix is suggested [here](https://stackoverflow.com/a/9952183): ```lisp (setf ccl:*break-hook* (lambda...

bug

We have Markdown for a reason.

enhancement
help wanted
good first issue

I can read the epub version of the cookbook in Okular, but not in emacs nov.el. I wondered about that so I installed the freely available tool epubcheck (available at...

Hello, Since SBCL can be compiled as a shared library (I have tested it on Linux and Windows; unfortunately, I do not have access to a Mac), the documentation on...

Hi, Should we include a [do](https://www.lispworks.com/documentation/HyperSpec/Body/m_do_do.htm) example in the cookbook?

good first issue