8
votes
4answers
4k views
How do I convert local time to UTC in Python?
How do I convert a datetime string in local time to a string in UTC time?
I'm sure I've done this before, but can't find it and SO will hopefully help me (and others) do that in future.
…
5
votes
13answers
815 views
Displaying time and timezone information to the user (what, not how)
(This is a question about the UI rather than the technology required to do it)
What is the clearest way to display a time for events occurring in different timezones to a user? Does your "average" …
4
votes
2answers
147 views
Converting old and new local times to UTC under Windows XP/Server 2003
My application converts past and present dates from local time to UTC.
I need to ensure I will honor any future DST updates to Windows while still correctly handling past dates.
The application is …
4
votes
2answers
255 views
how to render a user the local-time using a UTC Time (asp.net & ajax)
Hi,
I've an issue while my data persisted as utc date-time
and I want my users see the right time (thier) local time.
I can do this using javascript that sends the local time from the client machine …
4
votes
3answers
161 views
Scheduling & DST
I am writing a calendar/scheduling app in php right now. Right now I take the day of the week you want the event to occur on and the time. I also ask for the timezone and adjust accordingly to get …
4
votes
4answers
281 views
What is the common practice with regards to differentiating between UTC and GMT?
I finally found out the difference between UTC and GMT by making the effort to look it up on Wikipedia today. Technically speaking it appears that GMT != UTC because you do not know if it is UTC or …
4
votes
2answers
580 views
UTC Offset in PHP
What's the easiest way to get the UTC offset in PHP, relative to the current (system) timezone?
3
votes
2answers
328 views
How can I determine a timezone by the UTC offset?
I have a scenario where I have a timezone offset (in minutes) and need to determine the timezone for it. I know that all the data is not available (for example, there may be several timezones with an …
3
votes
4answers
401 views
How does DateTime.ToUniversalTime() work?
How does the convertion to UTC from the standard DateTime format work?
More specifically: if I create a DateTime object in one time zone and then switch to another time zone and run ToUniversalTime() …
3
votes
3answers
613 views
Why does DateTime.Now.ToString(”u”) not work?
I currently in British summer time which is UTC +1 Hour. I confirmed my PC is correct with the following code and it returns true.
System.TimeZone.CurrentTimeZone.IsDaylightSavingTime(Date.Now)
My …
3
votes
9answers
13k views
C# - Convert UTC/GMT time to local time
We are developing a C# application for a web-service client. This will run on Windows XP PC's.
One of the fields returned by the web service is a DateTime field. The server returns a field in GMT …
2
votes
4answers
78 views
How to manage timezones in a web application?
Hi, I wan't to manage the different timezones of my users in my web application, but I have no idea where to start. I have to save the local time of each user in my database?, or maybe make the …
2
votes
7answers
129 views
How to determine the localtime of a timestamp for different timezones?
Hi all,
I got UTC timestamps and want to display them for different timezones.
Maybe an example can clarify what I am trying to do:
Given the timestamp 1259431620000 those times should be …
2
votes
3answers
132 views
How to I accurately get current UTC time via strtotime?
In PHP, how do I get the current time, in UTC, without hard coding knowledge of where my hosting provider is?
For example, I tried the following:
time() + strtotime('January 1, …
2
votes
2answers
107 views
pytz utc conversion
Hi,
What is the right way to convert a naive time and a tzinfo into an utc time?
Say I have:
d = datetime(2009, 8, 31, 22, 30, 30)
tz = timezone('US/Pacific')
First way, pytz inspired:
d_tz = …
