Dave DeLong
Dave DeLong
This shipped in 1.0. There are a couple alternatives: - All `Fixed` values can convert to new `Locales` without issue, since that only affects how the value is formatted -...
Maybe a way to approach this could be having the system clocks pull their initial date via `Date()`, but then count and track intervals since then via a `ContinuousClock`, which...
Yes please! [When I implemented this in my own code](https://davedelong.com/blog/2020/07/09/http-in-swift-part-8-request-options/), I used a protocol-based approach like SwiftUI's `EnvironmentKey`, with an underlying dictionary for storage. That made it very nice for...
Related... An option to say that "nearby" means "in the same US state"
Thinking about this some more, I think I could get away with an actual `Week` unit type; it would be `GTOEDay` _and_ `LTOEMonth`. It would require significant verification that the...
I believe that [this CharacterSet](https://github.com/vapor/vapor/blob/4.92.6/Sources/Vapor/URLEncodedForm/URLEncodedFormSerializer.swift#L78) is not excluding all the characters it should be.