Curtis Vogt

Results 388 comments of Curtis Vogt

I found a use case for `Localized{Time}` which is trying to construct a `Localized{DateTime}` at a specific `Time` for a provided `Date`

@NHDaly let me know what you think of this alternate approach.

Just going to note that benchmarks on Travis CI do give a "ballpark" view for performance regressions. Definitely not great at finding subtle regressions.

Failure is still present with TimeZones 1.0.1. Although these are older versions of tzdata I'd like to make sure we can parse these correctly as newer versions of tzdata may...

I agree that would be nice. I mostly haven't done this already as I'm not sure what the format character should be or if there is a standard character for...

Thanks for reporting. Seems like it may be an issue with the InlineStrings package. Can you post your: - Operating system version - Exact Julia version - The version of...

Thanks for the feedback! I think there is definitely room for some performance improvements around allocations with `ZonedDateTime`s. I'll note that the latest master of TimeZones drops support for Julia...

The benchmark you mentioned: ```julia julia> using Dates, TimeZones, BenchmarkTools julia> @btime (DateTime(2019):Day(1):DateTime(2020)) .+ Minute(1); 309.351 ns (1 allocation: 3.00 KiB) julia> @btime (ZonedDateTime(2019,tz"UTC"):Day(1):ZonedDateTime(2020,tz"UTC")) .+ Minute(1); 2.300 μs (372 allocations:...

An example would be: ```julia julia> FixedTimeZone("CST", -6 * 3600) # Central Standard Time (North America) CST (UTC-6) ``` I'll also note that internally `VariableTimeZone`s use `FixedTimeZone` for storing the...

> In almost all cases the timezone attached to them is UTC (other timezones are really a "presentation layer" thing) I'll note with TimeZones.jl this isn't true as the time...