About 52 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. 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 …

  3. O que significam GMT e UTC? - Stack Overflow em Português

    Jul 22, 2019 · Recentemente descobri o Unix Timestamp e acabei me deparando com as siglas GMT e UTC, gostaria de saber o que significam. Já dei uma pesquisada, mas não achei nada muito claro.

  4. You are trying to merge on datetime64[ns, UTC] and datetime64[ns ...

    Oct 5, 2022 · Essentially I have a script that is running through a database and collecting information on different assets that have datetime64 [ns, UTC] dtypes. This script can return a dataframe with data …

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

  7. c# - Why can't DateTime.Parse parse UTC date - Stack Overflow

    Nov 18, 2009 · As other answers point out, the UTC date string with Z designator would indeed be successfully parsed, but it would also be converted to local time, i.e. it returns DateTime with a Kind …

  8. 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 …

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

  10. How do I get a value of datetime.today() in Python that is "timezone ...

    The ideal solution would be for it to automatically know the timezone. Right now, it's giving me the time in local time, which happens to be PST, i.e. UTC - 8 hours. Worst case, is there a way I can manually …