cl-cookbook
cl-cookbook copied to clipboard
The Common Lisp Cookbook
Thanks for putting together and maintaining this very helpful resource! I've been using the Cookbook extensively on the web, and decided to pay for an epub via https://lispcookbook.github.io/cl-cookbook/#download-in-epub. However, when...
The pdf version, as provided via link [http://lispcookbook.github.io/cl-cookbook/#download-in-epub](http://lispcookbook.github.io/cl-cookbook/#download-in-epub), often shows code via screenshots of windows with scrollbars, that don't scroll in a pdf file, so part of the code is...
When discussing how to use the Alive extension for VS Code, there is various discussion about how to set the start command for various project managers. These are all out-of-date,...
@vindarel I saw #559, and was wondering if it would be a good idea to support translations directly in this repo, instead of having soft forks? I'm sure this wouldn't...
[Emvi](https://github.com/aartaka/emvi) is a set of keyboard macros for vi (not vim/neovim, plain vi!) that enable common idioms of inserting parens, wrapping and slurping symbols into existing forms, and other s-expression...
Hi, Can you please change the name of the repository to be lispcookbook.github.io?? That way the address will be https://lispcookbook.github.io/ instead of https://lispcookbook.github.io/ It's a bit annoying every time my...
Sorry, it took me some time because of several distractions on my way... - removed statements about mistakes when prototyping - used with- macros supplied by usocket Closes [#506](https://github.com/LispCookbook/cl-cookbook/issues/506)
https://github.com/fukamachi/sxql/blob/master/COMPOSER.md and also `mito:joins` https://github.com/fukamachi/mito/pull/178
``` huh the cookbook says ~T prints a tab but it definitely doesn't on SBCL at least. i always had to do something like (format out "one~Ctwo~Cthree~&" #\Tab #\Tab) to...