cl-cookbook
cl-cookbook copied to clipboard
The Common Lisp Cookbook
from https://www.reddit.com/r/Common_Lisp/comments/1ezcp76/common_lisp_cookbook_equality/
I'm interested in starting a Korean translation of this cookbook. I couldn't find any ongoing issues related to a Korean translation, but just wanted to double-check by creating an issue...
 ```css #toc-btn{ z-index: 2; // above the toc-container ... } #toc-container{ z-index:1; // above the "page source" bar ... } ``` It seems that `z-index: 1` is set on...
I noticed the books section could be expanded with a lot more entries, do you think it'd be worthwhile to do so? Are there any kind of criteria you think...
Was having a derp moment earlier trying to remember a function, and googling provided me a reference to a rosetta code example (just showcasing/reminding me of the existence of `alexandria:rotate`),...
I saw the recent activity on CSV parsing and seeing lisp-stat mentioned reminded me of how I was able to get [vega-lite plots working in emacs from Common Lisp](https://github.com/applied-science/emacs-vega-view?tab=readme-ov-file#common-lisp) without...
> I'd like to see more about designing Common Lisp software, especially large systems, and CLOS, particularly for what kinds of problems it's best used and protocol design. (Paolo Amoroso,...
as in https://github.com/fosskers/vend/blob/master/build.lisp vend's binary is 300-400kb, while relying on `ecl`. Still a good deployment option. (also might mention New command: vend test. Supports: parachute clunit2 fiveam )
specially, explain better sb-profile. for inspiration: https://www.fosskers.ca/en/blog/optimizing-common-lisp
I suggest to update the following two points: > Dynamic scope is everywhere Elisp had had optional lexical binding for a decade by now, if not longer. `lexical-binding: t` is...