Tagged Questions

33
votes
6answers
638 views

Get the Olson TZ name for the local timezone?

How do I get the Olson timezone name (such as Australia/Sydney) corresponding to the value given by C's localtime call? This is the value overridden via TZ, by symlinking /etc/localtime, or setting a ...
10
votes
3answers
3k views

Python - Convert UTC datetime string to local datetime

Experienced programmer here, but I've never had to convert time to and from utc. Recently had a request to have my app be timezone aware, and I've been running myself in circles. Lots of information ...
3
votes
4answers
2k views

Convert local time (10 digit number) to a readable datetime format

I'm working with pbx for voip calls. One aspect of pbx is that you can choose to receive CDR packages. Those packages have 2 timestamps : "utc" and "local", but both seem to always be the same. ...
1
vote
0answers
50 views

Timezone conversions for DateTime in Ruby 1.8.6

(Stuck in Ruby 1.8.6 land) Until recently I was using Time to parse UTC dates and print them in a local timezone dt = Time.parse("20111225080000Z") puts dt.localtime Sun Dec 25 21:00:00 +1300 2011 ...
1
vote
2answers
53 views

Is there a way to change TimeZone for a request in C# (ASP.NET MVC3)?

Is here a way to change timezone setting for a request, for example, at Application_AcquireRequestState then for the whole request, no matter when I use Datetime.ToLocalTime (or new Datetime() etc), ...
1
vote
1answer
179 views

UTC Time to GMT+2 in AS3

I'm having a problem. Using the Date() functions AS3 provides natively, I'm converting UTC time to local machine time. The problem I have is this, look at month and hour. 2011-10-07 18:45:00 -> ...
1
vote
4answers
2k views

Why LocalTime displays server time and not browser time?

I am probably doing something wrong -- but cant figure why. I have a DateTime field in my DB keeping a UTC time My server is in the US, and the browser is in Europe. The PageLoad Code is as ...