@worldsendless java.time which is in bb can do this
@borkdude Well, it isn't one line, but it is basically one function. It took some research into how and what libraries to use, but here it is: https://gitlab.com/toryanderson/bb-julian-converter/
@javahippie @borkdude Thanks for that!
```
(def from-fmt (java.time.format.DateTimeFormatter/ofPattern "yyyyMMdd"))
(def date (java.time.LocalDate/parse "20101022" from-fmt))
(def to-fmt (java.time.format.DateTimeFormatter/ofPattern "E yyyy.MM.dd"))
(println (.format to-fmt date))
```
@borkdude thanks!
@worldsendless @borkdude This one is more common https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html