Dag Ågren

Results 74 comments of Dag Ågren

Why is the throw needed? It seems very un-Swift-like. Shouldn't the happy path of validation just run and return normally?

Does it need to be a separate pass? Could it be done during regular decoding instead?

There is an advanced implementation in Swift that implements this stuff in https://github.com/woltapp/blurhash/tree/master/Swift/BlurHashKit, specifically https://github.com/woltapp/blurhash/blob/master/Swift/BlurHashKit/ColourProbes.swift.

I've really wanted to try this. You could possibly extend the edge colour outwards, or just scale up the blur image a bit, and apply a gaussian blur as a...

The fact that a download is needed, and that it can easily fail, is really making this library a lot less attractive. This is a huge possible point of failure....

The problem is, the tests actually run in a completely different process than the app itself. They communicate through private IPC. You can not access anything at all from the...

For us the use case is that we want to add things like CI scripts to the project so they are easily editable from within Xcode, but as they are...

This originally came as a feature request for Toot!, but I don't think the current API gives enough data to do it. However, it seems like a very obvious user...

I would warmly recommend considering adopting the semantics of ReactiveSwift's `Property`/`MutableProperty` here, which I found vastly superior to anything I've seen in Rx or Combine. Basically, a `Property` has a...

Yeah, I didn't think this was called "removeDuplicates" in Rx, it's called "distinctUntilChanged", which is somewhere very high up on the top list of worst function names ever conceived. ReactiveSwift...