LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

quicklisp

Library manager for Common Lisp

TLDR

Install Quicklisp
$ curl -O https://beta.quicklisp.org/quicklisp.lisp && sbcl --load quicklisp.lisp
copy
Load a system
$ (ql:quickload "system-name")
copy
Search for systems
$ (ql:system-apropos "keyword")
copy
Update Quicklisp
$ (ql:update-client)
copy

SYNOPSIS

Quicklisp Common Lisp library manager

DESCRIPTION

Quicklisp is a library manager for Common Lisp. It downloads, installs, and loads libraries and their dependencies automatically. It works with most Common Lisp implementations.

EXAMPLES

$ ; Load a library
(ql:quickload "cl-ppcre")

; Load multiple
(ql:quickload '("alexandria" "cl-json"))

; Search for libraries
(ql:system-apropos "http")

; Update dist
(ql:update-dist "quicklisp")

; Update client
(ql:update-client)

; List installed
(ql:system-list)
copy

INSTALLATION

$ ; Download and load installer
(load "quicklisp.lisp")

; Install to default location
(quicklisp-quickstart:install)

; Add to init file
(ql:add-to-init-file)
copy

COMMON LIBRARIES

$ alexandria     - Utility functions
cl-ppcre       - Regular expressions
drakma         - HTTP client
cl-json        - JSON parsing
hunchentoot    - Web server
copy

INSTALL

sudo pacman -S quicklisp
copy

CAVEATS

Requires Common Lisp implementation (SBCL, CCL, etc.). Libraries installed to ~/quicklisp/ by default.

HISTORY

Quicklisp was created by Zach Beane in 2010 to simplify Common Lisp library management.

SEE ALSO

sbcl(1), clisp(1), asdf(1)

Braincup
Open source brain training for math, memory and focus
Braincup mini-games
41 mini-games · Apache-2.0
No ads · No tracking
Play in browser
Download Braincup on the App StoreGet Braincup on Google PlayGet Braincup on F-Droid
276 stars
From the maker of Linux Command Library
Copied to clipboard
Braincup
Open source brain training for math, memory and focus. 41 mini-games, from mental arithmetic to Sudoku, N-Back and Solo Chess.
Apache-2.0 licensed · No ads · No tracking · No account
From the maker of Linux Command Library
Download Braincup on the App StoreGet Braincup on Google PlayGet Braincup on F-Droid