Results 86 comments of extraymond

Autostart works either via snap itself or putting it in the xdg autostart directory. But you are correct that it might not be soon enough for the extension to pick...

@marcbria In summary: 1. Currently, snaps can't use dbus-activation to activate program if the dbus path is called 2. gnome-shel-extension need the dbus-service to operate 3. So here are the...

Thanks for the outline, the current situation is indeed not ideal for snap, I'll continue looking for improvements if that's possible without changing how hamster works typically.

Hi! Since yew now supports wasm-bindgen, it's possible to use async await alongside yew. Here's a little snippet that I've created to let rust handle the async task via futures....

It seems that wasm-bindgen >= 0.2.48 is required to support async-await. Currently, yew 0.8 set the dependency of wasm-bindgen=0.2.42, so if you want to try async/await, you might need to...

Sure! Looking forward to future releases. It's getting better and better every releases.

rustasync team had released a http request library [surf](https://github.com/rustasync/surf), which can be used under wasm and async. Seems like the easiest way to integrate fetch as future.

Thx for the update. I believe futures can be aborted by wrapping it in a Abortable. ```rust use futures::future::{AbortHandle, Abortable}; fn create_abort_handle() -> AbortHandle { let (abort_handle, abort_registration) = AbortHandle::new_pair();...

Hi! I've tried building the package with latest pypy(7.2.0) and it works on ubuntu linux. The only changes needs to be included are: 1. Install numpy before the build script....

Thx!! That sounds nice.