ThinkChaos
ThinkChaos
It would be cool if you could land this in Caddy as well, since the template was lifted from there!
I'm having the same issue but with the default plugin list. I added some debug to builder.sh, and I believe the error is now caused by caddyplug not using the...
It's not a library, but Apple's proprietary Airplay protocol uses RTSP 1. So yeah not much wiggle room on the other side. I ended up getting new hardware so I...
After #37, https://github.com/sgodwincs/rtp-rs/pull/8, and https://github.com/sgodwincs/rtp-rs/pull/8 the last missing piece will be `ParseIntError` (https://github.com/rust-lang/rust/issues/22639). I think it could be worth it to duplicate the int parsing / use a crate for...
I tried with the clipboard but I use wayland and it's not working. If you want me to help debug that, feel free to give me a custom version to...
You don't need to parse the command line manually, just add an if in the loop on `arguments`: ```python if fpath == '-': print("Do something special here") ``` For stdin...
I see. From my tests, the behaviour depends on whether it's the first window that's opened or not: - First launch: `on_cli` is called before any UI shows up, so...
I think this should work to implement it with a ~~context~~ timeout: ```go d := net.Dialer{ // LocalAddr = ..., Timeout: smtpDialTimeout, } conn, err := d.Dial("tcp", mx+":"+*smtpPort) if err...
AFAICT [docs/config.yml](https://github.com/0xERR0R/blocky/blob/development/docs/config.yml) should already cover this. It's embedded in the [doc's config page](https://0xerr0r.github.io/blocky/configuration/). Is there a reason it doesn't? Maybe we can add a link in the README to help...
I think this might be better solved by implementing #380, and skipping the `cp docs/config.yml .` step.