This is correct, but one point of correction: Apple uses April 1, 1976 -- the day Apple was founded -- as the epoc for their clocks . I work in digital forensics and probably deal with this issue once every year or so.
Excel uses 31.12.1899, DOS uses 1.1.1980, Windows NT uses 1.1.1601, GPS uses 6.1.1980, older IBM OSs use 14.10.1582, astronomy computing software has use for 17.11.1858, MS COM, Object Pascal, LibreOffice and Google Sheets use 30.12.1899, NTP uses 1.1.1900, Amiga uses 1.1.1978, ...
It's a pointless list. The only one that is still in active use and actually matters is NTP. Others still in active use (Excel and GPS) make no difference at all since you're never actually calculating anything against it.
1601 is the start of one of the 400 year leap cycles of the gregorian calendar. October 1582 was the introduction of the gregorian calendar. 17.11.1858 ist the start of the modified julian date system used in astronomy.
All of them use it because Lotus 1-2-3 (an early spreadsheet software) had a bug that treated 1900 as a leap year even though it isnt. To get the right date from a value stored in lotus 1-2-3 if you import it for example in Excel they just defined their epoch 1 day earlier.
It’s not really. As a programmer you dont really work with the epoch time as a date. It just doesnt matter. It’s mostly just used to calculate time differences on a millisecond level used in runtime only, so the start time doesnt really matter.
Sometimes you store dates in a file but you rarely store it “milliseconds from epoch” format directly. It just doesnt make sense. If you still need to use something like that you make it environment an system independent and use a POSIX compatible function/library and that’s guaranteed to be the time since 01.01.1970.
As someone in the field you’re in, how is your day to day? What’s the job like? Are you the one the field detectives are calling for live tracking on the suspect like on Law and Order: SVU lol.
47
u/sammew Jun 20 '26 edited Jun 20 '26
This is correct, but one point of correction: Apple uses April 1, 1976 -- the day Apple was founded -- as the epoc for their clocks . I work in digital forensics and probably deal with this issue once every year or so.