Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

18 Zeilen
515B

  1. #|
  2. preamble.lisp
  3. For whatever reason, I don't keep this project in my
  4. ~/quicklisp/local-projects directory. So I have this preamble bit
  5. of code that will push your current directory to Quicklisp.
  6. |#
  7. ;; Assume the project is in the current working directory. It's
  8. ;; harmless, probably.
  9. (eval-when (:compile-toplevel :load-toplevel :execute)
  10. (pushnew (uiop:getcwd) ql:*local-project-directories*)
  11. ;; Load em' up. We use SLY so load SLYNK instead of SWANK here.
  12. (ql:quickload '(:cl-deck-builder2 :slynk)))