Titles on Netflix
A word cloud generated from Netflix viewing data, January-June 2023
A histogram of Netflix watch time by show, January-June 2023
A word cloud generated from Netflix viewing data, January-June 2023
A histogram of Netflix watch time by show, January-June 2023
I have been tracking power outage data using a technique I learned about from Simon Willison called git-scraping. The outages are broken down by city, a stylized version of the data looks like:
1pm seattle: 300
2pm seattle: 200 tacoma: 150
3pm tacoma: 140 # implied seattle = 0 …
git-history
is a tool created by Simon Willison, that makes it easy to work with data collected via git scraping.
It expects data in a particular format - a flat JSON array. If your data isn't already there, you can use the --convert
option to run any python code to make …
Inspired by Simon Willison's collection of sqlite tools, I created
a library for extracting information from a video, and storing it in an sqlite database. It's
called video-to-sqlite. You can also install it
via pip install video-to-sqlite
.
You can use Simon's very nifty tool Datasette to explore the resulting DB …
Taking a cue from Simon Willison, a TIL (today I learned) about the moviepy library.
The library is very useful, but sometimes I have difficulty finding documentation on how to do specific things. For example, recently for NaMoGenMo I wanted to crossfade between 2 clips.
Suppose you have two 10-second …
This November, I worked on a project to create code to generate a movie. I got the idea from NaNoGenMo, which itself is based on NaNoWriMo.
My idea was to create a Memento-ized version of an existing movie. If you haven't seen Memento, it's structured where the order of scenes …
Word clouds generated from runs during the SGDQ 2022 marathon
A software tool for converting video to emojis
The visual look and feel of movies is something that interests me. So I built a tool to visualize it.
Videosplatter is a tool to splat a video file into a mosaic of individual frames. It shows you at a glance the look and feel of the entire video.
You …
Slay the Spire is a single-player strategy card game I enjoy. In it, you build a card deck to defeat successively harder enemies as you move up levels in the Spire.
I recently learned that they released a huge data dump of runs from real-world play.
It's …