juxt

Adrian Smith 2020-12-04T14:29:59.014500Z

is it possible to get a timestamp out of a (t/date "2020-01-01") style date?

Adrian Smith 2020-12-04T14:55:42.014600Z

Shortest path I found was something like: (.getEpochSecond (t/instant (t/zoned-date-time "1918-11-11T11:00:00Z[Europe/Paris]")))

2020-12-04T22:44:17.014800Z

Not much different but you can do

(-> (t/date "2020-01-01")
    t/midnight
    (t/in (t/zone "Europe/Paris"))
    t/instant
    .getEpochSecond)