About 57 results
Open links in new tab
  1. c# - How to convert DateTime to Eastern Time - Stack Overflow

    May 13, 2011 · or anyone else, does this also account for Eastern Daylight Time? Or do you have to detect if DST is on, and then specify which zone to use?

  2. "US/Eastern" vs. "EST" time zone in Python - Stack Overflow

    Jun 28, 2022 · Due to daylight savings, New York will observe either EST or EDT depending on the time of year. "US/Eastern" is preferable to "EST" as it represents the Eastern Time Zone in …

  3. How to get EST timezone in Python - Stack Overflow

    2022-03-29 09:52:55.130992-05:00 But when I google the EST time zone, I find out that the time right now is 10:52 am EST, which essentially is the right time. Why does my code show the 1 …

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

    Aug 10, 2022 · Since 2014 Time zone info has been implemented in Sql Server. The general way of doing this is to convert all dates to a UTC, using the TimeZoneInfo functions, which account …

  5. How to set date always to eastern time regardless of user's time …

    Mar 21, 2016 · is your unix time always in EST timezone? If so then you need to add the correct GMT offset for your input (-4 hours), then translate THAT to the local time zone by adding the …

  6. datetime - How to convert UTC to EST with Python and take care …

    Jan 24, 2018 · If I have a bunch of data with date & time in UTC format, how can I convert them to EST. It can determine when they will be -4(in summer) and - 5(in winter) automatically every …

  7. How to convert GMT time to EST time using Python - Stack Overflow

    Jun 12, 2012 · 20 I want convert GMT time to EST time and get a timestamp. I tried the following but don't know how to set time zone.

  8. How to convert new Date ().getTime () to EST? - Stack Overflow

    May 10, 2021 · 3 Hello I have this countdown timer code and it's picking up the users time in whatever time zone they are in. How can I convert var now = new Date().getTime(); to be in …

  9. how to Convert EST time to IST time in excel? - Stack Overflow

    Jul 11, 2017 · I have a requirement where I get the data in Excel column like "7/12/2017 3:00:00 AM" (EST timing). Now I need to convert it into IST time of the same format.

  10. Convert a UTC timezone in postgresql to EST (local time)

    Oct 24, 2015 · I am new to PostgreSQL and I was wondering if there is a direct way to just convert the timestamp values in a table to a different timezone using a function. In my case it …