Tagged Questions
The unix-time tag has no wiki summary.
6
votes
9answers
612 views
What time format is this? (not UNIX, not UTC, nothing)
I'm importing data from another system to MySQL, its a CSV file. The "Date" field however contains cryptic of 3-digit time entries, here's a random sample set:
> 540
> 780
> 620
> 965
...
3
votes
4answers
1k views
Python Unix time doesn't work in Javascript
In Python, using calendar.timegm(), I get a 10 digit result for a unix timestamp. When I put this into Javscript's setTime() function, it comes up with a date in 1970. It evidently needs a unix ...
2
votes
1answer
114 views
UNIX time command - is input time factored in?
I'm using the unix time command to record times for running a java program.
The first thing my program does when it begins running is ask the user to input a file path.
Is the time taken to type ...
2
votes
2answers
2k views
How to specify time zone (UTC) when converting to Unix time? (Python)
I have a utc timestamp in the IS8601 format and am trying to convert it to unix time. This is my console session:
In [9]: mydate
Out[9]: '2009-07-17T01:21:00.000Z'
In [10]: parseddate = ...
1
vote
3answers
416 views
Midnight in UTC time zone with unix timestamp
I was looking for a numeric representation for a date and unix time for midnight (in UTC) seems to be reasonable choice for that. However, as I'm not sure in my math skills, so is
date = date - date ...
0
votes
1answer
255 views
Removing an hour from PHP (FROM_UNIXTIME)
Could you please advice how to remove an hour from unixtime.
I have a unixtime and i need to remove an extra hour before converting to normal time. Could you please advice how to do this?
Also, is ...
0
votes
1answer
360 views
Unix time to Humanreadable Date and Time
Im working in lua with out date support so what are some ways th convert unix millisecond time to time and date
mm/dd/yyyy hh:mm:ss
i have the time and day but year and month are hard
Thanks.
...