Working around the size limit for nodeValue in the DOM
TIL that `nodeValue` in the DOM has a size limit!
94 words
|
1 minute
Escaping strings in Bash using !:q
TIL this trick, [via Pascal Hirsch](https://twitter.com/phphys/status/1311727268398465029) on Twitter. Enter a line of Bash starting with a `#` com...
144 words
|
1 minute
Searching for repositories by topic using the GitHub GraphQL API
I wanted to use the GitHub GraphQL API to return all of the repositories on the https://github.com/topics/git-scraping page.
114 words
|
1 minute
Syncing slide images and audio in iMovie
I found an MP3 recording of an old talk I gave and decided to use the slides from that talk to create a video using iMovie.
336 words
|
2 minutes
Understanding the CSS auto-resizing textarea trick
Chris Coyier [wrote about](https://chriscoyier.net/2023/09/29/css-solves-auto-expanding-textareas-probably-eventually/) the new `form-sizing: norma...
1307 words
|
7 minutes
Filter by comma-separated values in the Django admin
I have a text column which contains comma-separated values - inherited from an older database schema.
342 words
|
2 minutes
Recursively fetching metadata for all files in a Google Drive folder
For [google-drive-to-sqlite](https://github.com/simonw/google-drive-to-sqlite) I wanted a mechanism to recursively return metadata on every file in...
504 words
|
3 minutes