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.

2021-04-15 09:58 #
2021-04-15 09:50 #

Foundations of Databases (PDF, 678 pp.). #database

2021-04-15 09:49 #

In The Hitchhiker’s Guide to the Galaxy, Douglas Adams mentions an extremely dull planet, inhabited by a bunch of depressed humans and a certain breed of animals with sharp teeth which communicate with the humans by biting them very hard in the thighs. This is strikingly similar to UNIX, in which the kernel communicates with processes by sending paralyzing or deadly signals to them. Processes may intercept some of the signals, and try to adapt to the situation, but most of them don’t. — The TTY demystified

2021-04-15 09:45 #

Learn Vim Progressively: Very nice hand-on material for beginner. I would add that it’s still possible to add ̀C-a and C-e keybindings for Insert mode if you are used to using the terminal with default Emacs keybindings a lot. #vim

2021-04-13 15:49 #

We are now in the 2020 year, and this is also the year that Lisp would become 62 years old! That is an impressive age for a programming language. With that said that does not mean that the concepts and ideas developed in Lisp are old. — Starting with Common Lisp in 2020

2021-04-12 15:42 #

Just found out lovely pictures from this website, especially in the “plants” category.

2021-04-12 15:41 #

Great work in Victor’s new post: Python behind the scenes #10: how Python dictionaries work. #python

2021-04-12 15:16 #
2021-04-12 10:17 #

Build systems for small programs or libraries will often spend 10+ seconds running configure and complete the actual compilation and linking in a fraction of that time. In other words, the setup to perform the build takes longer than the build itself! — Surprisingly slow