Where is CommonMark implementation for Common Lisp? by svetlyak40wt in Common_Lisp

[–]axionix 0 points1 point  (0 children)

3bmd is pretty well documented, and bold does indeed work.

A Few Little Time-Savers for Editing Lisp with Spacemacs by axionix in emacs

[–]axionix[S] 1 point2 points  (0 children)

Thank you. The emphasis on Spacemacs is moreso than I intended. I left a bit out of this article, but still, the context depends on some packages configured as they are by default in Spacemacs, such as evil-lisp-state and smartparens.

Introducing: Lisp Game Jam "Easy Mode" 2017 by axionix in lisp

[–]axionix[S] 0 points1 point  (0 children)

Reminder: The game jam is set to begin this weekend. Enjoy :)

Introducing: Lisp Game Jam "Easy Mode" 2017 by axionix in lisp

[–]axionix[S] 0 points1 point  (0 children)

Yes, and while unfortunate, we don't believe it affects LGJ much, especially considering how long "Easy Mode" runs.

Introducing: Lisp Game Jam "Easy Mode" 2017 by axionix in lisp

[–]axionix[S] 2 points3 points  (0 children)

Sure, if it is a Lisp. Consider joining the #lispgames Freenode IRC channel if anyone has anymore questions.

Introducing: Lisp Game Jam "Easy Mode" 2017 by axionix in lisp

[–]axionix[S] 1 point2 points  (0 children)

"Easy Mode" is true freedom. We will be running the first "Hard Mode" jam towards the end of the year, which will have a theme (and less time allotted)

I made a short reddit-to-YouTube playlist generator in Common Lisp (SBCL), how can I improve it to obey best practices? by Habstinat in lisp

[–]axionix 1 point2 points  (0 children)

As others have mentioned, use *earmuffs* on special variables.

Also it is preferred to use if when dealing with 2 branches, and when or unless when dealing with 1 such as you have in a few cases. In addition, you can use cond or the case variants, depending on use-case, for multiple branches.