Paweł Zmarzły

Results 43 comments of Paweł Zmarzły

Well, an external script would also work. Just listen to `ShowNotification` signal in `anccs4linux.observer` API. When making ancs4linux I chose D-Bus as I wanted a good interop with other languages,...

IMHO crate name should match repository name. If you rename crate, don't forget to rename the repo (Github will start redirecting all links). If your crate target Rust devs only...

Check https://github.com/shaobin0604/Android-HomeKey-Locker , it's a library which makes an invisible overlay and captures all buttons. Doesn't look hard to use.

This may also allow for cleaner way to run Rocket as CGI (issues #132 and #97).

Could you link to https://github.com/Genymobile/scrcpy somewhere in README for now?

wow, that's weird. What version of Android are you using? If you have `adb` configured, you could try opening html file in mobile Chrome (e.g. `http://192.168.1.14:42000/main.html`). If it fails there...

Browsers don't send any events to Yoke because events are sent over UDP (JS code running in WebView can call native Java code, which sends UDP packet). I'm on Lineage...

> What do you mean by "Yoke works in Browser". You mean only the UI, without the link to the computer? _(deleted)_ Yes, I meant the UI. > I guess...

System configuration: Intel i5-6300HQ (HD Graphics 530) NVIDIA 950M (bumblebee + nvidia-367) Zorin OS 12 Beta (Ubuntu 16.04 based) System language: English Steam language: tried English, tried Polish

TL;DR `async { ... }` bad, `(...).then(...).map(...)` good I have to admit I'm not too fond of the `Pin` API, seeing how it semi-magically autoderives `Unpin` for some futures and...