vindarel
vindarel
See `uiop:collect-sub*directories` in [uiop/filesystem](https://common-lisp.net/project/asdf/uiop.html#UIOP_002fFILESYSTEM). It takes as arguments: - a `directory` - a `recursep` function - a `collectp` function - a `collector` function Given a directory, when `collectp` returns true...
In the [Next](https://next.atlas.engineer/) browser, building with SBCL's core compression gave us a 23MB executable, instead of 120MB, for a loss of a dozen milliseconds of start uptime, which is still...
(from https://slime-tips.tumblr.com/post/10860009191/calling-code) **C-c C-y** (*slime-call-defun*): When the point is inside a defun and C-c C-y is pressed, (I’ll use [] as an indication where the cursor is) ~~~lisp (defun foo...
Hi there LispWorks users, I have taken some time to discover this IDE and to write a review: https://vindarel.github.io/cl-cookbook/lispworks.html It should get into the Cookbook after I gather feedback and...
https://notabug.org/cage/clunit2 http://quickdocs.org/clunit2/
Hi, First of all: congrats, this is an awesome and impressive project. I installed statirator in a new venv (installing globally didn't work, it doesn't find html5writer), but "init" is...
Hi, I discovered lately this other repo: https://github.com/sharplispers/montezuma/ It looks like they forked you and have 6 commits more. Any idea what happened and the state of both libs ?...
Hello, Currently `make-chat` ensures we create a private chat: > Only private chats are supported for now. So we can't use the bot on a public group or on a...
Hello, FYI this code: ``` (defun smile->unicode (text) (arrows:->> text (str:replace-all ":)" "😀") (str:replace-all ":|" "🤨") (str:replace-all ":(" "🥺"))) ``` can now use `str:replace-using` for multi-replacement: ``` (defun smile->unicode (text)...