Deploying CoreDNS and StepCA on CoreOS using Podman Quadlet
A comprehensive guide to deploying and managing CoreDNS and StepCA on Fedora CoreOS using Podman Quadlet for systemd integration, providing robust DNS and certificate management services.
1614 words
|
8 minutes
Subqueries in select expressions in SQLite - also window functions
I figured out a single SQL query for the following today. Given a table of GitHub repositories, for each repository return:
1544 words
|
8 minutes
Conditionally creating directories in cookiecutter
I wanted my [datasette-plugin](https://github.com/simonw/datasette-plugin) cookiecutter template to create empty `static` and `templates` directori...
96 words
|
1 minute
Tailing Google Cloud Run request logs and importing them into SQLite
The `gcloud` CLI tool has [the alpha ability to tail log files](https://cloud.google.com/logging/docs/reference/tools/gcloud-logging#live-tailing) ...
790 words
|
4 minutes
Programmatically comparing Python version strings
I found myself wanting to compare the version numbers `0.63.1`, `1.0` and the `1.0a13` in Python code, in order to mark a `pytest` test as skipped ...
169 words
|
1 minute
Lazy loading images in HTML
[Most modern browsers](https://caniuse.com/loading-lazy-attr) now include support for the `loading="lazy"` image attribute, which causes images not...
141 words
|
1 minute
Using custom Sphinx templates on Read the Docs
I wanted to make a small customization to one of my documentation templates on Read the Docs.
243 words
|
1 minute
Upgrading Homebrew and avoiding the failed to verify attestation error
I managed to get my Homebrew installation back into shape today. The first problem I was having is that it complained that macOS Sequoia was unsupp...
374 words
|
2 minutes