aliquote.org

Latest micro-posts

You can also also view the full archives of micro-posts. Longer blog posts are available in the Articles section.

2025-07-10 09:20 #

New kid on the blocks: jank, based on Clojure but with an LLVM-based JIT backend.

2025-07-10 09:17 #

If you want to disable syntax highlighting in Neovim 0.11+, you’ll need to disable lsp-semantic_tokens (lua vim.lsp-semantic_tokens.Stop(0, 1)), in addition to treesitter (TSBufDisable highlight; if you rely on Treesitter, it should disable stock syntax, syntax off). Better off using the quiet colorscheme as I do for quite a few months now. #vim

2025-07-09 10:53 #

cl-repl looks much better than linedit which is still broken, btw. #lisp

2025-07-07 13:45 #

I often want to delete a line matching a pattern in Vim, as well as, say, the next one. Here’s how to do it: :g/pattern/.,+1d. #vim

2025-07-07 13:28 #

TIL about the Datastar framework. Looks good and a bit different from HTMX.

2025-07-07 13:24 #

Serving 200 million requests per day with a cgi-bin (via Simon Willison). I built many online quizzes and online survey using cgi-bin back in the days.

2025-06-26 12:39 #

I guess my Scheming with Vim will be easier to find on the www.

2025-06-25 10:18 #

img Summertime

2025-06-25 10:17 #

TIL about this little trick: Restrict sftp with Linux user namespaces. #unix

2025-06-25 10:14 #

Fun with uv and PEP 723: I came across many similar posts about this new way to run Python scripts via uv. I switched to uv for managing python version and dependencies in virtual environments and I think it’s been one of the best addition to the language ecosystem in a while. #python