Why does anyone care about a decimal milestone? I thought the excitement would be when you flip a big bit.
In about 2 hours it’s 1400000000 unix time
11–20 of 21 posts
Re: In about 2 hours it’s 1400000000 unix time
#12Why does anyone care about a decimal milestone? I thought the excitement would be when you flip a big bit.
Re: In about 2 hours it’s 1400000000 unix time
#13Here's a webpage for it: https://thefiletree.com/jan/html/time.html
Re: In about 2 hours it’s 1400000000 unix time
#14Not sure why people suggest programs that people must run several times to view that timestamp, instead of solutions for everyone. Here's a webpage for it: https://thefiletree.com/jan/html/time.html
Re: In about 2 hours it’s 1400000000 unix time
#15Re: In about 2 hours it’s 1400000000 unix time
#16Basic countdown timer; tried to get that updating every second, what am I missing here? http://jsfiddle.net/BPKdQ/
Re: In about 2 hours it’s 1400000000 unix time
#17Basic countdown timer; tried to get that updating every second, what am I missing here? http://jsfiddle.net/BPKdQ/
It should be setInterval(updateClock, 1000) not setInterval(updateClock(), 1000)
Re: In about 2 hours it’s 1400000000 unix time
#18Re: In about 2 hours it’s 1400000000 unix time
#19watch -n 1 date -u +%s
Re: In about 2 hours it’s 1400000000 unix time
#20while [ True ]; do sleep 1; clear; echo $(date +%s); done