Zicklag
Zicklag
I'm new to flutter and flutter-rs, but here's my experience testing this PR. 🙂 On Ubuntu 20.04, building an app using the `winit` backend will flash the window quickly before...
No problem. Thanks for the time server. :)
I noticed that there isn't a way to set the secret on the taiga-events container. The secret on taiga-events needs to be the same as the secret in the main...
Thank you for mentioning this, and providing a temporary work-around! My Django admin interface was running without any styles making it much harder to use. ( And driving me crazy...
Awesome! I can't make _any_ guarantees about time I'll have for this, but I think I'll be able to try it out. :) When I get the chance I'll try...
I just started looking into this a little bit and my initial observation is that both disk access and network access are built-in to chamomile and not optional. Also the...
> Therefore, the most important thing is to ensure that async_channel can be used normally in the web. Perfect. I just compiled `async_channel` for the web without problems, but I'll...
A simple send and receive test shows that `async-channel` works on web! ```rust use wasm_bindgen_futures::spawn_local; use web_sys::console; fn main() { spawn_local(async move { let (sender, receiver) = async_channel::unbounded(); spawn_local(async move...
OK this is turning into a little bit more than making `ContainerOptions` serializable. After trying to use the changes in my project I realized that it made more sense for...
No problem, glad it's useful. :) I think I was going to need this for a project and then didn't end up needing it. I've personally written code, and then...