Adam Gastineau

Results 145 comments of Adam Gastineau

This same failure occurs with firmware 0358 (the latest from https://builder.dontvacuum.me/_s4.html) on the S4, running Valetudo from latest `master`. As suggested, it is indeed an issue with the vacuums expecting...

Most likely it's my inexperience with Rust runtimes (including Tokio), but here's a simple example of Tokio functioning normally, but nothing happening from AppKit: ```rust use std::time::Duration; use cacao::appkit::{App, AppDelegate};...

I neglected to check Console (it's been a while since I've done native Mac dev) and it has the errors I would expect to see: ``` nextEventMatchingMask should only be...

That's perfectly fine. I think most of this becomes unnecessary with `objc2` anyway.

Take [`duplicateURLs:completionHandler:`](https://developer.apple.com/documentation/appkit/nsworkspace/1524490-duplicateurls?language=objc). It's first argument is an array of URLs (not constructible) and it returns (via completion handler) a dictionary `` (which is also not constructible/~kind of readable). There are...

Actually I agree with you completely. This came up because I started to build out the `duplicate_urls` implementation and found out that there weren't existing primitives for me. I suppose...

Interesting. Thank you so much for the detailed response. What other languages are you bridging to besides Swift? For the purposes of discussion I'll detail what I've played around with:...

Sorry for the delay. I am not sure how this asset format works. I assume the `.hex` is the game code, and the `.bin` contains additional assets, but I haven't...