juxt

msuess 2023-12-07T13:51:50.332049Z

Is there a way in tick to set the timezone of a zoned-date-time without recalculating the time? I have "Jan 01 8:00am PST" and want to convert it to "Jan 01 8:00am UTC"

2023-12-07T13:59:48.991909Z

not directly. you could go via localdatetime I think: (-> zdt t/date-time (t/in "xxx/yyy")), or drop to cljc.java-time: `

(cljc.java-time.zoned-date-time/with-zone-same-local zdt zone)
`

🙏 1