About 45,200,000 results
Open links in new tab
  1. What is the difference between UTC and GMT? - Stack Overflow

    Feb 23, 2018 · UTC, which stands for Coordinated Universal Time in English, is defined by atomic clocks, but is otherwise the same. In UTC a second always has the same length. Leap …

  2. SQL Server - Convert date field to UTC - Stack Overflow

    Apr 23, 2010 · I have recently updated my system to record date/times as UTC as previously they were storing as local time. I now need to convert all the local stored date/times to UTC. I was …

  3. datetime - How to get UTC time in Python? - Stack Overflow

    Apr 11, 2013 · datetime.now(timezone.utc) datetime.now(timezone.utc).timestamp() * 1000 # POSIX timestamp in milliseconds For your purposes when you need to calculate an amount of …

  4. Storing DateTime (UTC) vs. storing DateTimeOffset - Stack Overflow

    I usually have an "interceptor" that right before reading/writing from/to the database does DateTime conversion (from UTC to local time, and from local time to UTC), so I can use …

  5. How do I get the current time in Python? - Stack Overflow

    UTC is a time standard that is nearly equivalent to the GMT timezone. (While GMT and UTC do not change for Daylight Savings Time, their users may switch to other timezones, like British …

  6. Oracle SQL: converting timestamp to UTC - Stack Overflow

    Mar 27, 2014 · Starting from Oracle 19c, a new function is introduced which is TO_UTC_TIMESTAMP_TZ The SQL function TO_UTC_TIMESTAMP_TZ takes an ISO 8601 …

  7. c# - Entity Framework DateTime and UTC - Stack Overflow

    Is it possible to have Entity Framework (I am using the Code First Approach with CTP5 currently) store all DateTime values as UTC in the database? Or is there maybe a way to specify it in the …

  8. Converting datetime.date to UTC timestamp in Python

    Jan 8, 2012 · I am dealing with dates in Python and I need to convert them to UTC timestamps to be used inside Javascript. The following code does not work: >>> d = datetime.date …

  9. get UTC timestamp in python with datetime - Stack Overflow

    Feb 21, 2011 · Is there a way to get the UTC timestamp by specifying the date? What I would expect: datetime(2008, 1, 1, 0, 0, 0, 0) should result in 1199145600 Creating a naive datetime …

  10. How to initialize a JavaScript Date to a particular time zone

    Background JavaScript's Date object tracks time in UTC internally, but typically accepts input and produces output in the local time of the computer it's running on. It has very few facilities for …