Skip to content

Instantly share code, notes, and snippets.

View waffletower's full-sized avatar

Christopher Penrose waffletower

  • Portland, Oregon
View GitHub Profile
@waffletower
waffletower / samelocal.clj
Last active August 29, 2018 17:49
local date string in given time zone
(-> (java.time.ZonedDateTime/now)
(.withZoneSameLocal (java.time.ZoneId/of "America/Chicago"))
t/date-time->iso-local-date)