Explore >> Select a destination


You are here

susam.net
| | atomized.org
3.7 parsecs away

Travel
| | [AI summary] This comprehensive guide explores the evolution of a Common Lisp project from a simple command-line application to a structured, maintainable system using advanced tools and libraries. The journey begins with a basic implementation using the built-in UIOP library, then progresses through modularization, system definition with ASDF, and finally incorporates external libraries like unix-opts for enhanced functionality. The article emphasizes the importance of organizing code through packages, systems, and build processes, while demonstrating how modern Lisp tooling can simplify development and maintenance. Key takeaways include the value of modular design, the role of ASDF in managing project dependencies, and the benefits of using external librar...
| | mht.wtf
3.8 parsecs away

Travel
| |
| | github.com
3.9 parsecs away

Travel
| | A Common Lisp dev environment for Vim (and Neovim) - vlime/vlime
| | lambdaland.org
27.4 parsecs away

Travel
| Are you tired of having a particular buffer pop open in the wrong direction? Do you wish, for example, that the Racket REPL buffer showed up on the right in a vertical split, rather than below in a horizontal one? Look no further. I give you, display-buffer-alist: (add-to-list 'display-buffer-alist '("\\*Racket REPL \\*" (display-buffer-in-direction) (direction . right))) That little snippet will make sure when you hit C-c C-k inside of a racket-mode buffer, a REPL will pop up on the right-side instead o...