Top "Epoch" questions

Unix time, or POSIX time, is a system for describing points in time, defined as the number of seconds elapsed since midnight Coordinated Universal Time (UTC) of January 1, 1970, not counting leap seconds.

Convert Epoch seconds to date and time format in Java

I have seconds since 1970 january 1 UTC (Epoch time). 1320105600 I need to convert that seconds into date and time in below …

java datetime-format epoch seconds
Bash convert epoch to date, showing wrong time

How come date is converting to wrong time? result=$(ls /path/to/file/File.*) #/path/to/file/File.1361234760790 currentIndexTime=${result##*.} …

bash date epoch
Converting epoch time to "real" date/time

What I want to do is convert an epoch time (seconds since midnight 1/1/1970) to "real" time (m/d/y h:…

c++ algorithm datetime epoch
Convert Epoch Time to Date PHP

I'm using an API right now and it provides an epochTime. I've tried everything to convert this epochtime to date, …

php time epoch
Convert Unix Epoch Time to Date in Google Sheets

I have a sheet with a column of unix epoch times (in seconds): 1500598288 How can I convert these into normal …

javascript datetime google-apps-script google-sheets epoch
Converting TIMESTAMP to unix time in PHP?

Currently I store the time in my database like so: 2010-05-17 19:13:37 However, I need to compare two times, and …

php timestamp unix-timestamp epoch
oracle convert unix epoch time to date

The context is that there is an existing application in our product which generates and sends the EPOCH number to …

oracle datetime unix date-format epoch
How to get a timestamp in Dart?

I've been learning Dart, but I don't know how to generate a timestamp. I have tried this: void main() { print((…

dart epoch
Hive from_unixtime for milliseconds

We have a timestamp epoch column (BIGINT) stored in Hive. We want to get Date 'yyyy-MM-dd' for this epoch. Problem …

hive unix-timestamp epoch milliseconds
How to convert python timestamp string to epoch?

I have the following string: mytime = "2009-03-08T00:27:31.807Z" How do I convert it to epoch in python? I …

python datetime timestamp epoch