Dan Vanderkam
Dan Vanderkam
This repo is slowly clawing its way out of 2009 era Python. Running all these tools over it will help finish the job.
classify-images wants a glob of images (`images/*.jpg`). But it could work just as well with a CSV file containing image URLs. This would save a step of downloading all the...
The keys are always 1, 2, etc. But it would be nice if you could customize these to be something that makes more sense for the labels, e.g. ``` classify-images...
I'd like to copy `704817b.png`, the current file name: It's easy to copy the previous or next file name, but not the current one! It would be nice if this...
If you try to diff two 20 MB JSON files with just a few changes, `git diff` will happily do it. But the webdiff UI might choke because it does...
I had to switch from `pip install webdiff` to: brew install pipx pipx install webdiff after a recent homebrew update. The README should mention this workflow, or I could just...
Hopefully fixes #66 Running a [websockets] server and Python `http.server` simultaneously proved difficult, so I wound up moving the app entirely over to [aiohttp], which includes built-in websocket support on...
This should fix the `NODE_OPTIONS=--openssl-legacy-provider` issue.
I've pinned the `open` dependency to 8.x, since newer versions force ESM on me. https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c Here's a PR where I did that for literate-ts last year: https://github.com/danvk/literate-ts/pull/64
This would especially be useful for iterating on your `template.html` file with `--random-order`, so that you can iterate on the same record. I found this particularly annoying when I was...