Joshua Bronson
Joshua Bronson
Oh nice: https://github.blog/changelog/2022-05-19-specify-theme-context-for-images-in-markdown-beta/
Just hit this on macOS running with a fresh homebrew `--HEAD` install. Removing `~/Library/autojump/autojump.txt{,.bak}` did the trick.
If I were to submit a patch to add support for this, might there be interest in merging it?
Thanks for the feedback! Good point about commercial websites, though I think that still leaves a huge chunk of the web that might still be interested. Several people I know...
Amazing! Thank you on behalf of everyone this will help!
What do you think of `childminder`? To me it has a lot of the same helpful properties as `nursery`: - similarly signals "important new concept - pay attention to this!"...
Not sure about `open_split`. The word "split" is overloaded, and so doesn't necessarily invoke any obviously-intended associations immediately. Further overloading an overloaded term can add to cognitive load. It also...
(For `.receive_some`, if you timeout before downloading the requested number of bytes, is a `PartialResult` not useful for recovering what was downloaded? Sorry if I’m missing something obvious!)
Thanks @njsmith! So only in the "0 bytes downloaded" case would `receive_some` raise `Cancelled` after a timeout – makes sense.
str.startswith optionally takes a tuple of strings to try. Better to write the above as `not any(repr(ch).startswith(("'\\x", "'\\u")) for ch in s)`