About 51 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 seconds are …

  2. Force Java timezone as GMT/UTC - Stack Overflow

    I need to force any time related operations to GMT/UTC, regardless the timezone set on the machine. Any convenient way to so in code? To clarify, I'm using the DB server time for all operations, b...

  3. Using current time in UTC as default value in PostgreSQL

    May 17, 2013 · I have a column of the TIMESTAMP WITHOUT TIME ZONE type and would like to have that default to the current time in UTC. Getting the current time in UTC is easy: postgres=# select …

  4. Excel Power Query - convert date time from UTC to Local

    DateTimeZone.ToLocal(DateTime.AddZone([date_created_UTC],0)) and Power Query will correctly convert my date created from UTC to AEST (or whatever is local).

  5. How to convert from UTC to EST in SQL? - Stack Overflow

    Aug 10, 2022 · I am currently using: sample_start_time AT TIME ZONE 'UTC' AT TIME ZONE 'Eastern Standard Time' AS sample_start_time_est from: Convert Datetime column from UTC to local time in …

  6. javascript - How to convert a Date to UTC? - Stack Overflow

    The resulting utc object isn't really a UTC date, but a local date shifted to match the UTC time (see comments). However, in practice it does the job. Update: The above answer from 2012 was a quick …

  7. Convert UTC date time to local date time - Stack Overflow

    Learn how to convert UTC date time to local date time with examples and solutions provided by the Stack Overflow community.

  8. java - Is there any reason to use ZoneId.of ("UTC") instead of ...

    Nov 15, 2021 · At UTC, there are no daylight saving times or historical shifts to consider, like in any other timezone. Thus, an Offset of 0 is in general enough for all use cases I encountered so far (like …

  9. 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 time spent …

  10. Convert date to another timezone in JavaScript - Stack Overflow

    Apr 10, 2012 · I am looking for a function to convert date in one timezone to another. It need two parameters, date (in format "2012/04/10 10:10:30 +0000") timezone string ("Asia/Jakarta") The …