Packaging a Python CLI tool for Homebrew
2024-05-24
I finally figured out how to package [Datasette](https://github.com/simonw/datasette) for installation with Homebrew. My package was accepted into ...
653 words
|
3 minutes
Running Datasette on Replit
2024-05-22
I figured out how to run Datasette on https://replit.com/
133 words
|
1 minute
Rewriting a Git repo to remove secrets from the history
2024-05-22
I decided to make a GitHub repository public today that had previously been private. Unfortunately the revision history of that repository included...
548 words
|
3 minutes
Using the Fly Docker registry
2024-05-21
[Fly.io](https://fly.io/) lets you deploy Docker containers that will be compiled as a Firecracker VM and run in locations around the world.
371 words
|
2 minutes
Extracting objects recursively with jq
2024-05-21
The Algolia-powered Hacker News API returns nested comment threads that look like this: https://hn.algolia.com/api/v1/items/27941108
240 words
|
1 minute
Effective Podman Resource Management and Cleanup Strategies
2024-05-20
A comprehensive guide to efficiently managing and cleaning up Podman resources including containers, images, and volumes to maintain system performance and reclaim disk space.
962 words
|
5 minutes
Pretty-printing all read-only JSON in the Django admin
2024-05-19
I have a bunch of models with JSON fields that are marked as read-only in the Django admin - usually because they're recording the raw JSON that wa...
164 words
|
1 minute
Enabling a gin index for faster LIKE queries
2024-05-18
I tried using a gin index to speed up `LIKE '%term%'` queries against a column.
195 words
|
1 minute