Any tips on using code to convert from "Days since Jan 1, 1900" (an integer like 41181) to a useable date format (e.g. "28.08.2012")?
I'm looking to do this in #rust, but general tips may be useful. I'd fumble through it from scratch, but the thought of dealing with leap days seems like no fun...
Here's an issue about it with some more info: https://github.com/tafia/calamine/issues/116
@schlink it's very simple, just add your duration in days to the start date: https://play.rust-lang.org/?gist=773d7969f8f293e02301b372462eaade
@schlink manually calculate number of seconds from Jan 1 1900 to the start of the Unix epoch. Then use existing unix time functions, adding that offset.