Fangdun Tsai
Fangdun Tsai
http://www.vips.ecs.soton.ac.uk/index.php?title=Speed_and_Memory_Use https://github.com/jwagner/smartcrop.js
Same error: ``` libc++abi: terminating with uncaught exception of type facebook::jsi::JSError: Exception in HostFunction: Javascript worklet error Error: Javascript worklet error at _f (native) Error: Exception in HostFunction: Javascript worklet...
1. Web https://github.com/kelvinau/circular-audio-wave The first example is ok, it can be played. But second example is bad. On chrome all ok. 2. Rust I tested the https://github.com/servo/media/blob/master/examples/audio_decoder.rs. And add some...
I think that the FFT need refactor. 🤣
@jdm Sorry, I opened it in the GitHub App and clicked the close button by mistake. And GitHub App unable to reopen. 😂
Thanks for the feedback. I will fix this ASAP.
Nice! Let's ship it.
Landed in v0.8.5. Thanks.
https://github.com/Totodore/socketioxide/blob/d890ba4040efe5b0376d9a68a20fc20733d96cc8/socketioxide/src/packet.rs#L313-L315 ```rust Value::Array(v) if !v.is_empty() => serde_json::to_string(&vec![ (*e).to_string(), serde_json::to_string(v).unwrap(), ]), ``` Maybe we can modify it like this.
```rust Value::Array(v) if !v.is_empty() => { serde_json::to_string(&json!([(*e).to_string(), v])) } ``` > * It would be impossible to do multi-argument emission. Yes, there is still a need for a method that...