Egor Mihnevich
Egor Mihnevich
During the final stages of migration to `ArgumentParser` #10, we stumbled upon a problem of a somewhat side dependency on `SwiftCLI.Task` as an OS command handling interface. Though the last...
Danger: This can cause Xcode to not even want to start building: https://stackoverflow.com/q/63079909/3939277 adding `.git` to the end of the URL will solve that, and also might fix the thing...
While reviewing #14 @BenLeggiero raised an interesting opportunity I can't miss discussing :) Badgy carries a hardcoded color names for `--color` and `--tint-color` properties. Alternatively, we could query ImageMagick for...
The changes introduce per-document libraries to the document model. The gist of the changes is that now documents would have a more tangible "references" to libraries from which symbols come...
During my experience reviewing [Gigasecond](https://github.com/exercism/swift/tree/main/exercises/practice/gigasecond) exercise, I often notice how hard it's to work with custom date formats, time zones, and calendars. I suggest to: - Make input dates compatible...
I wonder whether [ignoring](https://github.com/inamiy/RxProperty/blob/d0caf11fd0c16f766bcaf38b63e4d38ea87494f1/Sources/RxProperty/RxProperty.swift#L86) the bind`s disposable leads to a leak. ```swift /// Initializes with `initial` element and then `observable`. public init(initial: E, then observable: Observable) { _behaviorRelay = BehaviorRelay(value:...