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.

2026-03-06 09:04 #

Stairs lost in the darkness, Feb./Mar. 2026

2026-03-06 09:00 #

My Neovim configuration has been stable for over a year. I hardly ever touch it anymore, except to correct a few unnecessary bindings or fix some deprecations following API changes. And guess what: Treesitter has been revamped, full of incompatible changes in the main branch on GitHub. Treesitter-textobjects also switched from the master to the main branch, leaving incremental selection orphan. I’ll keep my current config for the time being, I’m too lazy today. #vim

2026-03-05 08:46 #

Using a PowerBook G4 Today: It was a pleasure to see such an old beast which I found gathering dust at the back of a cupboard still up and running. Sadly, it is powered by Mac OS X 10.3 (not even the latest update). Maybe I’ll need to install OpenBSD to give it a bit of a boost, but I’m afraid I will loose wireless connectivity and current graphics capabilities. #apple

2026-03-05 08:44 #

10-202: Introduction to Modern AI. I especially like the AI policy section: “(…) but we strongly encourage you to complete your final submitted version of your assignment without AI.”

2026-03-05 08:41 #

My hope is that there remains a primordial spark, a glimpse of genius, to rediscover, to reconnect to - to serve not annual trends or constant phonification, but the needs of the user to use the computer as a tool to get something done. — Welcome (back) to Macintosh

2026-02-28 20:52 #

Back to my Mac. This happended to me two weeks ago.

img

And sadly, my old MBP onto which I booted Ubuntu got a panic attack after I reinstalled OS X…

img

2026-02-28 20:50 #

Git’s Magic Files: Other Conventions and Beyond Git are worth keeping in mind.

2026-02-16 12:41 #

img Ivry again, Feb. 2026

2026-02-16 12:39 #

An invitation to a sparse Cholesky factorisation. Left-looking Cholesky factorization in two lines:

for j in range(0,n):
  L[j,j] = sqrt(A[j,j] - L[j, 1:(j-1)] * L[j, 1:(j-1)]')
  L[(j+1):n, j] = (A[(j+1):n, j] - L[(j+1):n, 1:(j-1)] * L[j, 1:(j-1)]') / L[j,j]