Jose Javier

Results 10 comments of Jose Javier

I've used `sync.Cond` in scenarios where one routine needs to wake up `N` awaiting routines where `N` is unknown to the waker routine. With channels I've not found an easy...

> In the meantime another option that worked for me is https://github.com/anthonygelibert/QLColorCode, but it requires a little modification. Look at the Readme for how to add support for additional code...

Thank you for the detailed write-up, it's very informative. Love the trick of binding resize-axis to the mouse wheel, it's great. Added a shift variant for vertical resizing. I understand...

No, I tried removing the C++ extensions but it was quite the hassle. I ended up writing my own implementation using various sources. See [https://github.com/JJGO/pylot/blob/master/optim/lars.py](https://github.com/JJGO/pylot/blob/master/optim/lars.py)

The default doesn't seem to be the same (torchvision's seems to be Bilinear whereas FFCV defaults to nearest) which can lead to artifacting in the images.

I spoke too soon, the mode is not NEAREST but `INTER_AREA` from looking at [this line](https://github.com/libffcv/ffcv/blob/main/libffcv/libffcv.cpp#L33) which is probably a good choice for downsampling (see [opencv docs](https://docs.opencv.org/2.4/modules/imgproc/doc/geometric_transformations.html#resize) but not for...

Any updates or workarounds on this? I'm still getting `et : Depends: libprotobuf-lite17 but it is not installable` on Debian 11 aarch64

Yes, that worked once I change the arch and downloaded the right package. Thanks!

Thanks @sachac , that did the trick. Makefile will need some extra logic to be patched I assume

Happy to help with this. It seems like the chapters are indeed included as part of the info json. E.g. the command `yt-dlp --dump-json 'https://www.youtube.com/watch?v=ixTlSrViaFc' | jq '.chapters'` produces the...