|
|
|
|
|
by bloppe
107 days ago
|
|
I've implemented exactly the filter you're describing. Yes, it's essentially a presentation issue. There are 2 common ways to represent time: something akin to Unix time, which is just a scalar number representing the offset from some global reference instant (the epoch), or as "clock-calendar parameters" i.e. year-month-day-hour-minute-second. It's much more natural for software to operate entirely on the former representation right up to the point that the timestamps need to be either displayed as an output string for a human to read, or parsed from an input string from a human. Then you crack open tzdata [1] to do the conversion. [1]: https://en.wikipedia.org/wiki/Tz_database |
|