Managing Podman Containers with Systemd - Traditional Methods vs. Quadlet
A comprehensive guide to integrating Podman containers with systemd, comparing the traditional service file approach with the modern Quadlet method, with detailed examples and best practices.
1276 words
|
6 minutes
Implementing a "copy to clipboard" button
I had to figure this out while building [datasette-copyable](https://github.com/simonw/datasette-copyable/) - demo [here](https://covid-19.datasett...
180 words
|
1 minute
SQLite aggregate filter clauses
SQLite supports aggregate filter clauses (as of [3.30.0, released 2019-10-04](https://www.sqlite.org/changes.html#version_3_30_0)), as described in...
166 words
|
1 minute
Converting no-decimal-point latitudes and longitudes using jq
I had some data with weird co-ordinates in it:
219 words
|
1 minute
Comparing database rows before and after with SQLite JSON functions
Here's a trick I've been using to compare the rows in a table before and after I perform an operation against it. It works well for a few hundred (...
210 words
|
1 minute
Testing cookiecutter templates with pytest
I added some unit tests to my [datasette-plugin](https://github.com/simonw/datasette-plugin) cookiecutter template today, since the latest features...
159 words
|
1 minute
Paginating through the GitHub GraphQL API with Python
(See also [Building a self-updating profile README for GitHub](https://simonwillison.net/2020/Jul/10/self-updating-profile-readme/) on my blog)
329 words
|
2 minutes
Managing Multiple GitHub Accounts on a Single Machine - A Comprehensive Guide
A step-by-step guide to effectively setting up and managing multiple GitHub accounts on a single machine using SSH keys, custom hosts, and repository-specific configurations.
1188 words
|
6 minutes