Alexander Cyon

Results 144 comments of Alexander Cyon

@rothomp3 Friendly reminder that you can "bulk" manage "access control" using extensions. Extension also give more clear groupings (especially when used with `// MARK` (which renders nicely in Xcode 11))....

@rothomp3 I have not yet looked through your PR in detail, I'm sure it is great! But I just wanted to give you two references - which you surely know...

I saw that you actually use capture list in `CreatePostViewModel`: ```swift .flatMapLatest { [unowned self] in return self.createPostUseCase.save(post: $0) .trackActivity(activityIndicator) .asDriverOnErrorJustComplete() } ``` But you use `unowned self` which would...

@grafele it feels like you are asking for something relating to what I am asking for in #24 Have a look at my example, which works but executes with nasty...

@bitomule @tcldr FYI https://github.com/groue/CombineExpectations

> A little bit late, but possibly useful for everyone stumbling here for the same problem: BitcoinKit integrated with Swift Package Manager (and the problem with OpenSSL). > > >...

Ah the by Github listed "mention" was a red herring, I was trying to write "amount: 150" using pound sign, which was a silly thing to do, since I forgot...

I see no reason for `ECDSASignature` to not be `Sendable`, nor any reason for why *all* `PublicKey`s cannot be `Sendable`.

@Lukasa mind if I submit a PR making PublicKeys Equatable? I know different topic... but IMO falls under non dangerous protocol conformances helping devs :)