thewh1teagle
thewh1teagle
I'm also looking to convert pyannote model to onnx format and then use it from Rust with [ort](https://github.com/pykeio/ort) Did anyone manged to use it in c++?
Is there an update for that? I need this feature because when I update the certificate, I currently have to disconnect all the connected clients. I can try to implement...
Is there a way to allow both connections which sent with `sec-websocket-protocl` but also connections which made without this header? Because I think that `warp::filters::header::value("sec-websocket-protocol")` allow only connections which has...
```rust let app = warp::path("ws") // The `ws()` filter will prepare Websocket handshake... .and(warp::ws()) .and(warp::header::optional::("sec-websocket-protocol")) .and(users) .map(|ws: warp::ws::Ws, maybe_proto: Option, users| { // This will call our function if the...
I also facing the same issue with tauri app. enigo works great outside of tauri, also it works with tauri in dev mode. but once I install the app and...
> 2\. running `open "x-apple.systempreferences:com.apple.preference.security?Privacy_Accessibility"` in shell. Thanks for sharing! It would be great to have an option to open accessibility page without shell commands, as it's not recommend to...
> @thewh1teagle agreed, I tried to find other options to avoid it, but decided to bite the bullet on this one just for added convenience for users! > > Thank...
@harlanc Do you think it's useful feature? compared to simply using loopback network as now?
I experience the same issue, no matter what image I use, and if it's png encoded or not, the final image which I paste from the clipboard is corrupt. if...
> I am trying to compile under mingw as well, but am hitting the issue that mingw doesn't define `posix_memalign` (used in `AlignedTable.h`). Did you hit the same issue? Try...