21 Jan 26
02 Jan 26
position: fixed does exactly what we want. It works just like position: absolute, but it stays still when the page is scrolled. So it’s really just a matter of making sure things don’t overlap.
28 Dec 25
14 Dec 25
07 Dec 25
Templates in <script> tags with a non-standard type attribute
14 Sep 25
02 Jul 25
One neat thing about 45° is that it gives us pretty close to the diagonal. But not on my ultra wide. Due to maths, the amount we’d need to rotate is based on the angle of a triangle which match the aspect ration of the screen we are using. This ends up being about 22° for a 21:9 ratio.
07 May 25
Podfox is a SOCKS proxy that starts listening on the host system and then enters Podman’s rootless networking namespace in order to talk to your containers. It’s a portal into the container world, running as one simple process, written in Rust.
03 May 25
Let’s look at a practical example of a realistic Bloom filter and how it performs. Suppose we want to store about 1 billion items, and have a false positive rate of 1% (meaning that if the filter returns “true” for a test, there’s a 99% chance that the item was previously added to the filter).