Live data from Hacker News

The Unix timestamp will begin with 16 this Sunday

unixtimestamp.com

31–40 of 214 posts

Re: The Unix timestamp will begin with 16 this Sunday

#31

The crazy thing is there has only been 1.6 billion seconds since 1970. There have been more babies since 1970 than there have been seconds. Which is crazy. Back then, Earth's population was on 3.7 billion. Now it's 7.8 billion. That means that (ignoring deaths) 2.5 babies have been born for each unix second. Or roughly 1 baby every 400 milliseconds.

IIRC, it's ~5.5 births and 3 deaths per second (worldwide).

Also, see: https://www.worldometers.info/

Re: The Unix timestamp will begin with 16 this Sunday

#33

I make a bold prediction that we'll run out of digits rather soon.

2037 is a potential overflow, I believe. I imagine only pre 2000 systems would likely be affected.

And pre-2000 filesystems, like FAT. As well as a lot of filesystems developed after that, which also use 32-bit file creation/modification timestamps.

Re: The Unix timestamp will begin with 16 this Sunday

#36
post #24

`watch -n 1 date +%s` Wish I knew when 1234567890 happened, I was too dumb back then.

I still remember the huge 1234567890 party. It was one of the nerdiest gathering ever and the bar owner had no clue what was going on.

Coincidentally I consider this the end of "golden age" of the internet which ended as soon as the iPhone and smartphones in general got mainstream and everything moved to centralized services.

Re: The Unix timestamp will begin with 16 this Sunday

#37
When we one day become a space faring civilization we will probably stop using the gregorian calendar because why would you use that on say Mars?

But there really is no reason to get rid of the unix timestamp as a measure of time and this measure may stay around for a long time. This may mean that people in the future might consider 1970 as year zero where modern civilization began.

Re: The Unix timestamp will begin with 16 this Sunday

#38
post #21

It is going to be at 2020-09-13 12:26:40 UTC. Python: $ python3 -q >>> from datetime import datetime >>> datetime.utcfromtimestamp(1_600_000_000) datetime.datetime(2020, 9, 13, 12, 26, 40) GNU date (Linux): $ date -ud @1600000000 Sun Sep 13 12:26:40 UTC 2020 BSD date (macOS, FreeBSD, OpenBSD, etc.): $ date -ur 1600000000 Sun Sep 13 12:26:40 UTC 2020 All such dates (in UTC) until the end of the current century: $ pyth…

To add, Powershell:

    (Get-Date "1/1/1970").AddSeconds(1600000000).ToUniversalTime()
or alternatively for your local time:

    (Get-Date "1/1/1970").AddSeconds(1600000000).ToLocalTime()

Re: The Unix timestamp will begin with 16 this Sunday

#39
post #37

When we one day become a space faring civilization we will probably stop using the gregorian calendar because why would you use that on say Mars? But there really is no reason to get rid of the unix timestamp as a measure of time and this measure may stay around for a long time. This may mean that people in the future might consider 1970 as year zero where modern civilization began.

Or some other significant event in the eye of this civilization.

Re: The Unix timestamp will begin with 16 this Sunday

#40
post #37

When we one day become a space faring civilization we will probably stop using the gregorian calendar because why would you use that on say Mars? But there really is no reason to get rid of the unix timestamp as a measure of time and this measure may stay around for a long time. This may mean that people in the future might consider 1970 as year zero where modern civilization began.

Next iteration of unix-time should include the concept of local time in context of relativty if we are going to travel or communicate over significant distances.
Post reply on HN