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 ...
2
votes
3answers
260 views
Make Python respond to Windows timezone changes
When Python is running under Windows, time.localtime does not report the correct time if the timezone is changed during the life time of the Python instance. Under Linux, time.tzset can always been ...
1
vote
3answers
59 views
how to extract timezone from localtime()
I'm using the following code to print the current time.
use Getopt::Long;
use Time::Local;
sub gettime
{
my $t = time();
my ($sec,$mn,$hr,$mday,$mon,$yr,@left, $dstr);
...
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
3answers
533 views
Determining Local Time in another Timezone
How can I determine the current date and time of various countries using a PERL script that executes on a server in the US? For example, getDTnow() should determine the current date and time on the ...
1
vote
3answers
236 views
What is the difference between the current timestamp in the GMT time zone and the current timestamp in your local time zone?
This is a sample question i found at ZEND php certificate practice test, the correct answer of this question is:
"
There is no difference between the current time in any time zoneāthe current time is ...
1
vote
3answers
788 views
/usr/share/zoneinfo epic fail [closed]
I have just, in my groggy morning state, reversed & confused the arguments to ln, replacing /usr/share/zoneinfo/America/Toronto with a link to the non-existant /etc/localtime, when I really wanted ...
0
votes
1answer
35 views
Java (Processing Environment) will not provide me with the local time
I'm trying to get the epoc time adjusted for the local timezone (i.e. GMT-7, but it displays GMT). I'm fairly sure this should work, but it's not...
Calendar localTime = new ...
0
votes
2answers
274 views
Perl: How to convert a unix timestamp+timezone into local time
the basic question is in the header: I have a unix timestamp and a timezone, e.g. "America/Caracas" and I would like to convert it to the timezone's local time.
Searching through stackoverflow, I ...
0
votes
3answers
314 views
Timezone in date?
From where does the date command in Linux get the timezone information?
I cannot see /etc/localtime file and /usr/share/zoneinfo direcory in my system. Still when i execute the date command i get the ...