About 759,000 results
Open links in new tab
  1. Display the time in a different time zone - Stack Overflow

    Is there an elegant way to display the current time in another time zone? I would like to have something with the general spirit of: cur = <Get the current time, perhaps …

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

    558 How do I get the current time in Python? The time module The time module provides functions that tell us the time in "seconds since the epoch" as well as other utilities.

  3. How to convert from date.now to pacific time - Stack Overflow

    Aug 5, 2020 · On my current project, I have to implement elapsed time for each user and display it on the webpage. However, using the date.now will return utc and I would like to get it in pacific …

  4. Convert Local Time Zone to PST Time Zone in C# - Stack Overflow

    Jan 15, 2012 · Let say my time zone in system right now is +5GMT right now on my machine 01/14/2012 05:52PM I want to convert it into PST time zone like 1/14/12 4:52:50 AM PST and …

  5. Python datetime.now() with timezone - Stack Overflow

    Jun 8, 2015 · I have a timezone which is float (for example 4.0). I want to construct datetime with given timezone. I tried this, datetime.now(timezone) but it throws TypeError: tzinfo argument …

  6. Pacific Time in C# regardless of daylight saving time

    I need to ALWAYS stamp my DB with Pacific Time, regardless if it's August or February. Pacific Time is, the actual US west coast time at anytime of the year: During Daylight saving times PT …

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

    Apr 23, 2010 · The reason is that it depends upon the difference between the current date in local and UTC times. For example, here in California we are now in PDT (Pacific Daylight Time); the …

  8. Convert UTC datetime to Pacific datetime in Python

    Apr 5, 2018 · You need to make now_utc a datetime object, not a string or integer. Presumably, you would need to find a fmt string that matches, or skip the timezone part and just convert the …

  9. Timezone conversion in a Google Sheets with DST (Daylight savings)

    I know this looks simple. In a Google spreadsheet, I have a column where I enter time in one timezone (GMT) And another column should automatically get time in another time zone …

  10. DateTime.Now and Culture/Timezone specific - Stack Overflow

    The problem is we used DateTime.Now to store the record created/updated date, etc. Since the Server runs in USA all user data are saved as US time : ( After researching in SO, we decided …