2
votes
4answers
471 views
Are Javascript date/time functions dependent on the client machine?
I was wondering if Javascript date/time functions will always return …
1
vote
2answers
480 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]: parsedda …
2
votes
4answers
235 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 tim …
