Yi Ding

Results 46 comments of Yi Ding

Even if it does you’ll likely have to compile everything yourself. And since iPad doesn’t have a Terminal app, you’ll need your own iOS app wrapping the binary too.

Those warnings are likely bugs from recent Xcode releases. I’ve seen them on M1 (Apple Silicon) Macs mostly, with Xcode installed via vanilla XIPs downloaded from Apple Developer Downloads (without...

Although the web UI doesn't implement this, if the native app registers as a magnet protocol handler (association) system-wide then technically Firefox should pick this up and present you with...

You can publish/share a Shortcut. Others then visit an Apple-sponsored URL (you get after publishing) and install/import your Shortcut.

> > > Do you still have the shell script that I sent you ages ago? > > I have workaround for this issue. According to Apple's documentation this is...

I use YYJSON in a Swift project, and this is the minimal code to serialize to (i.e. create, or fill) a `yyjson_mut_doc`. It's in Swift but should be quite comprehensible...

Deserialization is just reversing the input/output of the function: (Assuming you're switching on the type of a `yyjson_val`) ```swift case YYJSON_TYPE_ARR: var array = [JSON]() array.reserveCapacity(unsafe_yyjson_get_len(pointer)) var iterator = yyjson_arr_iter()...

@NghiaTranUIT I've also encountered this. Does Atlantis support initialization elsewhere other than AppDelegate? I wrapped Atlantis in a toggle switch in app settings. If a WS connection was mid-flight and...

PR done. Don't know how to construct a multi-region `Data` to test it yet, but it shouldn't get worse. :-)

You should first model your JSON response in Swift so that it's strongly typed and that it has everything you need to visualize the table. For example: ```swift class Category...