Tagged 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.

learn more… | top users | synonyms

21
votes
4answers
2k views

Why is 1/1/1970 the “epoch time”?

Why is 1 January 1970 00:00:00 considered the epoch time?
16
votes
2answers
3k views

Python: Initialize a datetime object with seconds since epoch

The time module can be initialized using seconds since epoch: >>> import time >>> t1=time.gmtime(1284286794) >>> t1 time.struct_time(tm_year=2010, tm_mon=9, tm_mday=12, ...
14
votes
2answers
4k views

How do you convert epoch time in C#?

How do you convert Unix epoch time into real time in C#? (Epoch beginning 1/1/1970)
6
votes
6answers
263 views

In the database, why can't we just use “Long” integers for dates (millis since epoch)

I would like to use a Long datatype in the database to represent dates (as millis since epoch). The reason why, is that storing dates is so complex with the jdbc driver and Oracle engine. If you ...
6
votes
2answers
616 views

How do I convert epoch time to normal time in Perl?

I am attempting to write a Perl script that parses a log where on each line the second value is the date. The script takes in three arguments: the input log file, the start time, and the end time. ...
6
votes
4answers
4k views

Calculating Future Epoch Time in C#

I was able to find example code to get the current timestamp in Linux Epoch (Seconds since Midnight Jan 1st 1970), however I am having trouble finding an example as to how to calculate what the Epoch ...
5
votes
1answer
98 views

Is a day always 86,400 epoch seconds long?

While reviewing my past answers, I noticed I'd proposed code such as this: import time def dates_between(start, end): # muck around between the 9k+ time representation systems in Python # now ...
5
votes
3answers
174 views

What is special about dates before the year 1970?

I see a lot of discussion about getting dates that are pre-1970. For example, I see people ask a question like, "how do I get a date before 1970?" What I'd like to know is what is so special about ...
5
votes
2answers
3k views

jQuery Datepicker - How can I format the date as an epoch timestamp (in seconds NOT milliseconds)

I'm using the jquery datepicker plugin to set a date field that is stored as an epoch timestamp in the db (the field, publish_time, maps directly to the table schema). It seems that Datepicker only ...
5
votes
3answers
828 views

Epoch Time (Ticks since 1970) - Mac vs. Windows

I have some C# web services that return JSON. The .NET JavaScriptSerializer returns dates in Epoch Time (milliseconds since 1970). On any Windows machine, the web based application processes the ...
5
votes
8answers
1k views

Print Epoch Time in Different Languages

As you may know, tonight, at exactly 23:31:30 UTC, Epoch Time will reach 1234567890! Hurray! One way of watching epoch time is by using Perl: perl -le 'while(true){print time();sleep 1;}' Can you ...
4
votes
1answer
355 views

Is there a better way to convert from UTCTime to EpochTime?

I want to set a file's modification time to the time I got from exif data. To get the time from exif, I found : Graphics.Exif.getTag :: Exif -> String -> IO (Maybe String) To set the file ...
3
votes
2answers
278 views

Python datetime to microtime

I've looked all around, and there seem to be a lot of hacks, but no simple, "good" ways to do this. I want to convert a Python datetime object into microtime like time.time() returns ...
3
votes
4answers
93 views

strtotime php function not behaving as expected

I'm trying to write a bit of php to determine the date (Y-m-d format) for the next occurrence of a given weekday. date('Y-m-d', strtotime('next monday')); is returning 2011-08-29 instead of ...
3
votes
2answers
143 views

Using a different initial date for Epoch

All, I am working with a binary specification whose TimeStamp fields are defined as "Milliseconds since January 1, 2000 UTC time". I am doing the following calculation: public static final TimeZone ...
3
votes
1answer
2k views

How can I create a python timestamp with millisecond granularity from epoch?

I need a single timestamp of milliseconds since epoch. This should not be hard, I am sure I am just missing some method of datetime or something similar. Actually microsecond is fine too. I just ...
3
votes
1answer
171 views

Epoch to date is 3 years off

i get a epoch time returned from a webservice wich is about 3 years off in PHP but fine in javascript and the epochconverter.com JS: alert('book '+ new Date(1285565357893)); // returns a time ...
3
votes
4answers
1k views

How can I change the timezone of a datetime value in Perl?

Using this function: perl -e 'use Time::Local; print timelocal("00","00","00","01","01","2000"),"\n";' It will return an epochtime - but only in GMT - if i want the result in GMT+1 (which is the ...
2
votes
1answer
70 views

How do you use time as an axis in a Core Plot graph?

I have two arrays arr1 and arr2 containing datetime in dd/MM/yyyy HH:mm:ss and HH:mm:ss respectively. For eg. arr1[0] contains 23/12/2011 09:15:30 while arr2[0] contains 09:15:30. Note that arr1 ...
2
votes
1answer
54 views

JQuery Datepicker Set Value As Epoch Time

I use a data picker like that: $('#startTime').datepicker("option", "dateFormat", 'yy-mm-dd '); However when I want to set it I have a epoch time value that comes from my server (milliseconds since ...
2
votes
2answers
50 views

Finding second intervals in R time

I was going through some sample code in R that gets the last data for each second in a zoo object (time series). I get the code working, but i dont understand the following line: time(tmp) <- ...
2
votes
3answers
133 views

Is there a perl 5.005 core module that would convert epoch seconds to a datetime string?

Is there a perl core module in 5.005 that would convert epoch seconds to printable datetime? Our system has DateTime.pm, but the script in need of the functionality is still on Perl 5.005 and not ...
2
votes
3answers
275 views

python: getting millis since epoch from datetime

I have a Python DateTime object that I want to convert to milli seconds since epoch. How to do this?
2
votes
1answer
157 views

Convert DATE Format to Epoch

Hi I have a string of Date format Jun 13 2003 23:11:52.454 UTC containing millisec...which i want to convert in epoch. Is there a utility in Java i can use to do this conversion.
2
votes
2answers
342 views

Time issues

I am facing some problems in a cross platform program : when I open a python shell in Linux and in Windows, I don't get the same time from the Epoch. In Linux, I tried to do dpkg-reconfigure tzdata. ...
2
votes
3answers
407 views

SQLite query that calculates if Unix epoch time occurs on today's date

I have an integer column that holds a Unix epoch time value. I want to calculate if it falls within today. For example, let today be the 24th day in the month. The query should return rows that fall ...
2
votes
3answers
866 views

Python: Seconds since epoch to relative date

I'm working with dates since epoch, and already got, for example: date = 6928727.56235 I'd like to transform this into another relative format, so that I'll be able to transform this into something ...
2
votes
5answers
3k views

Convert UTC Epoch to local date with javascript

I have been fighting with this for a bit now. I'm trying to convert epoch to a date object. The epoch is sent to me in UTC. Whenever you pass new Date() an epoch, it assumes it's local epoch. I tried ...
2
votes
1answer
236 views

Number of digits in Epoch time

I'm working on a machine which has some code running on it which sets the time when I set the password. The time set is epoch time, but it has 13 digits in it, and when I wrote a simple program to get ...
2
votes
8answers
200 views

Wordpress doesn't allow me to post in really old dates (year 1800)

I'm making a timeline in Wordpress, and I'm trying to make a post with the date January 12, 1800, but Wordpress doesn't allow me. Apparently, it doesn't let me post anything before the year 1970. Is ...
2
votes
2answers
709 views

C++: How would I get unix time?

I need a function or way to get the UNIX epoch in seconds, much like how I can in PHP using the time function. I can't find any method except the time() in ctime which seems to only output a ...
2
votes
3answers
248 views

Storing date and time as epoch vs native datetime format in the database

For most of my tasks I find it much easier to work with date and time in the epoch format: it's trivial to calculate timespan or determine if some event happened before or after another, I don't ...
2
votes
3answers
270 views

Epoch is not epoch if do a new Date(0L). Why?

My problem is pretty straigtforward explained : if i do this : public class Main { public static void main(String[] args) throws Exception { Date d = new Date(0L ); ...
2
votes
5answers
6k views

Best way to convert 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:m:s) So far, I have the following algorithm, which to me feels a bit ugly: void ...
2
votes
2answers
5k views

Use Unix timestamp in Doctrine Timestampable

How do I use Unix timestamps with the Doctrine Timestampable behavior? I found the following code snippet here, but I'd rather not manually add this everywhere: $this->actAs('Timestampable', ...
2
votes
5answers
8k views

Get Current date in epoch from Unix shell script

How to get the current date value in epoch i.e., number of days elapsed since 1970-1-1. I need solution in unix shell script.
2
votes
6answers
8k views

How do I convert a date into epoch time in Perl?

Solaris 10 doesn't seem to like me a lot. I am trying to run a simple script to accept date and return epoch of that date: #!/usr/bin/perl -w use strict; use Time::ParseDate; my $date1 = "Mon Mar 27 ...
2
votes
4answers
779 views

What's the result of the SQL statement “SELECT DATEADD(s,1234567890, '19700101')”?

For some reason, my SQL installation isn't working :) SELECT DATEADD(s,1234567890, '19700101') Maybe this site would help (link from Moose).
2
votes
5answers
4k views

mm/dd/yyyy format to epoch with PHP

I have a mysql table that relies on the unix epoch time stamp equivalent of the date of the entry to sort and filter in various parts of the website. I'm trying to implement a date picker that will ...
2
votes
2answers
2k views

How do I compare an epoch time against 24 hours ago in SQL Server?

I am using MS SQL Server 2005, I have dates stored in epoch time (starting 1970) I need to create a statement that will affect any record that has not been updated in the last 24 hours.
1
vote
2answers
35 views

JSON epoch to date function brings back wrong date

When parsing the JSON, all variables are correct but when converting the epoch to a string like "The time is 19:06 PM, on Thursday, the 29th of December." it always outputs "The time is 8:06 AM, on ...
1
vote
1answer
99 views

Conversion of unix epoch time to windows epoch time in python

Quick question: Is there a pythonic (whether in the standard libraries or not) way to convert unix 32-bit epoch time to windows 64-bit epoch time and back again?
1
vote
3answers
61 views

python: convert year/month/day/hour/min/second to # seconds since Jan 1 1970

I know how to do it in C and Java, but I don't know a quick way of converting year/month/day/hour/min/second to the # of seconds since the Jan 1 1970 epoch. Can someone help me? So far I've figured ...
1
vote
1answer
66 views

jqGrid Doesn't Sort When Showing Epoch Time (since as milliseconds) as Date

I use jqGrid and my grid definition is like that: ... colNames:['Type','Date','Message','User Name','Host'], colModel:[{name:'type',index:'type', width:100}, {name:'date',index:'date', ...
1
vote
1answer
49 views

How can I convert epoch time to date and time in Java?

I need to convert epoch timestamp to date and time. I have used the following code to convert but it converts to a wrong date, year and time. String date = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss") ...
1
vote
3answers
81 views

Is time() guaranteed to be leap-second aware?

PHP time() says it returns the current UNIX timestamp. I'm wondering if PHP time() is guaranteed to be strictly conforming. In other words, on 1st Jan 1999, was it guaranteed that a constant poll on ...
1
vote
3answers
164 views

php date format inserting wrong date

I am confused as to why this piece of code does not convert a date in the UK format 00/00/0000 to mysql date format 0000-00-00. What i get in the db is 1970-01-01. It is in the date format not ...
1
vote
2answers
86 views

Does SQLite handle negative Unix time?

Some systems use negative Unix time values to represent dates before the epoch (1/1/1970). MySQL does not support this. Does anyone know if SQLite does?
1
vote
4answers
660 views

Get the number of days, weeks, and months, since Epoch in Java

I'm trying to get the number of days, weeks, months since Epoch in Java. The Java Calendar class offers things like calendar.get(GregorianCalendar.DAY_OF_YEAR), or ...
1
vote
5answers
907 views

jquery convert number to date?

i have a json file that returns "date_created":"1273185387" in epoch format i want to convert it to convert it to something like this Thu, 06 May 2010 22:36:27 GMT any script to do this conversion? ...

1 2 3