arenasys
arenasys
`raw` progress bar from https://github.com/pypa/pip/pull/12586 will need to be tweaked in this rewrite, so it supports parallel downloads.
It wont be difficult, it just needs some identifier on the lines it writes: `Progress CURRENT of TOTAL` to `Progress FILE CURRENT of TOTAL`, etc. So the program reading can...
I would have a thread specifically for displaying the progress bars (maybe even the main thread?), then that thread can have a mutex guarded queue that the download threads can...
So each thread is downloading and displaying a progress bar? Im saying its easier if you have all the display logic in a single thread which is fed progress events...
> getting input from maintainers of tools that use the raw progress bar Nobody is using it, its not live. But i made the PR, need per-file progress information (same...
> needs to be embedded and cannot be copied over Why is this the case. We can trace its system calls and see its looking for the kdb in a...
Found a work around that works for me (on arch). Steal the binary from the `miopen-hip` package (need the arch4edu repo enabled). Like so `cp /opt/rocm/miopen/lib/libMIOpen.so $(python -m site --user-site)/torch/lib/libMIOpen.so`....
There are many ways to do this poorly, but for something "flicker free" you need to directly access the scrolling element (parent of the Virtualizer. The scrollRef). Watch for changes...
Can see in https://github.com/FxEmbed/FxEmbed/blob/main/src/realms/twitter/router.ts that nothing matches that URL, it wants `https://fxtwitter.com/api/v1/statuses/66086667665361546057575456595857606161555458565666` (which does work). No idea how discord is working with this? Unless they have special handling to derive...
Not looking to integrate with FxEmbed specifically, just activity embed support. Since it would be nice to have the extra styling and link information that the activity embed provides. Why...