Using the Fly Docker registry
[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
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
Run Python code in a WebAssembly sandbox
I've been trying to figure this out for ages. Tim Bart responded to [my call for help on Hacker News](https://news.ycombinator.com/item?id=34598024...
628 words
|
3 minutes
Packaging a Python app as a standalone binary with PyInstaller
[PyInstaller](https://www.pyinstaller.org/) can take a Python script and bundle it up as a standalone executable for macOS, Linux and apparently Wi...
394 words
|
2 minutes
Effective Podman Resource Management and Cleanup Strategies
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
hexdump and hexdump -C
While exploring null bytes in [this issue](https://github.com/simonw/ttok/issues/3) I learned that the `hexdump` command on macOS (and presumably o...
276 words
|
1 minute
Pretty-printing all read-only JSON in the Django admin
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
Mocking a Textract LimitExceededException with boto
For [s3-ocr issue #21](https://github.com/simonw/s3-ocr/issues/21) I needed to write a test that simulates what happens when Amazon Textract return...
511 words
|
3 minutes