Alexander Cyon
Alexander Cyon
@thiagomacieira also was `cbor_value_reparse` a typo? I cannot find a method with such a name anywhere in source code, nor in git commit (`git log -S "cbor_value_reparse "` turns up...
Hmm does this PR #67 relate to this? Or is it only for **strings** (text), and not relating to top level CBOR Major types such as Array/Map ("object")? Sorry for...
I covered the PR part of this issue in https://github.com/apple/swift-argument-parser/pull/53 . What remains is: * Testing expectation * Coding style Did I miss anything now? **Regarding Coding style**: in Swift...
@natecook1000 What do you think about `swiftformat` and/or possibly [`swiftlint`](https://github.com/realm/SwiftLint) for code style? I can't remember why Nick Lookwoods (excellent repo) was used instead of [Apple's own `swiftformat`](https://github.com/apple/swift-format) in [swift-crypto](https://github.com/apple/swift-crypto)....
@hamedaakhlaghi I [support `secp256r1` in EllipticCurveKit](https://github.com/Sajjon/EllipticCurveKit/blob/master/Source/EllipticCurve/CommonCurves/Secp256r1.swift)
@twittemb Your library is GREAT! Thanks a lot for this, specifically the `AnyAsyncSequence` just fits right, feels like a missing piece in Swift Structured Concurrency. However, as @rjchatfield points out,...
Code example above can be slightly improved by use of modifiers and Group with _ConditionalContent: ```swift @main struct ClipCardAnimationApp: SwiftUI.App { @ObservedObject var auth = AuthState.shared var body: some Scene...
@johnpatrickmorgan Thx for your response! Yeah that solution works, just would be sooooo nice if we could get it out of the box with FlowStacks! > I've tried reproducing in...
From README: > Coordinators are just views themselves, so they can be presented, pushed, added to a TabView or a WindowGroup, and can be configured in all the normal ways...
Thanks! For your quick replies :) I appreciate it! In Coordinator pattern one key point is that Screen A should not need to know about Screen B, their coordinator should!...