Alex Lu
Alex Lu
PoC (https://github.com/op8867555/narou/commit/3ccb76ba11c2ea124219834089116c984c82fd7c) と [Docker image](https://hub.docker.com/r/op8867555/narou) を作りました。気軽に試してみて下さい。
Just curious. What will happen if sample rate changed? Don't Pulse Audio have only one primary and one alternative sample rates?
@Aaahh Thanks for the hint! I ended up with a script to do that: `pactl move-source-output $(pactl list source-outputs short | grep $(pactl list short clients | grep glava |...
I think [subscribing pulseaudio events](https://freedesktop.org/software/pulseaudio/doxygen/subscribe_8h.html) might also be a good way to implement it. This script captures the idea: ~~~~bash LANG=C pactl subscribe | grep "Event 'change' on server" --line-buffered...
I've played around with #2447 in the last few days and I tried to [fix some failed tests](https://github.com/op8867555/pyo3/commits/type-trait). I got stuck at missing `IntoPy` impl for `PyResult`, such that currently...
I've tried the separate trait approach, and it solved the `PyResult` issue I mentioned before. however, I haven't figure out how to support specialization. (e.g. `Vec` generates `List[int]` instead of...
> Note that this is very much the case in PyO3 that `Vec` creates `List[int]`, your annotation is correct Oh, I didn't notice that :sweat_smile: . Are there any other...
I personally think it is nice to have, but we don't actually need it for now.
> * Kroki involves sending your data to a third party service to render it, this is by necessity going to be slower than rendering in the client and also...
> Having so many different niche diagram types seems overwhelming, I've never heard of most of these and mixing diagrams with code languages isn't ideal so I think this part...