* [ ] Go between Java SQL APIs to JSR-310 APIs: ``` java.sql.Date <=> java.time.LocalDate java.sql.Time <=> java.time.LocalTime java.sql.Timestamp <=> java.time.Instant ``` * [ ] Go between legacy Java date APIs to JSR-310 APIs ``` java.util.Date <=> java.time.LocalDate java.util.TimeZone <=> java.time.ZoneId ``` * [ ] Go between Scala's Duration to JSR 310 Duration ``` scala.concurrent.Duration <=> java.time.Duration ``` Anything else?