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-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]
2026-02-16 09:50 #

Who Needs Backpropagation? Computing Word Embeddings with Linear Algebra: numerical word representations are built using simple frequency counts, a little information theory, and linear algebra. #python

2026-02-16 09:21 #

Some newer & simpler biostatistical approaches for more credible clinical research. TL;DR lower P-value threshold, increase C-index, statistical medicine instead of medical statistics, prefer small sample for intensive research in some cases. #stats

2026-02-12 14:22 #

vim-galore: All things Vim! #vim

2026-02-12 13:45 #
2026-02-12 13:41 #

But just how close the computed solution $\hat{x}$ and the true solution $x$ are depends on how “nice” the matrix M is. — Don’t solve the normal equations