Tagged Questions

6
votes
2answers
2k views

How I can I convert timezones in Perl?

I am trying to convert a date/time GMT 0 to GMT -6 in Perl. For example, a DHCP Server lease time is in the following format: 2010/02/18 23:48:37 I am trying to convert that time to the ...
5
votes
6answers
444 views

can 2 timezone be for 1 city?

I want to know if there can be 2 or more GMT timezones for one city or state. I know there can be more then one GMT timezone for a country, but not sure if it's for state and city too. Share your ...
4
votes
4answers
97 views

C# - Formatting current time

In C#, how can I get the current DateTime in the following format? 2011-08-10T21:36:01.6327538Z
4
votes
2answers
284 views

How to Convert to UTC

I'm getting dates & times from various sources (e.g. file's date/time from FTP server, email's date/tiem received, etc.) and need to store them all as UTC (so they all have a common reference). ...
3
votes
3answers
555 views

Convert historic dates from utc to local time

I have an sql table with data like this: | theDate (datetime) | theValue (int) | ---------------------------------------- | 2010-05-17 02:21:10 | 5 | | 2009-03-12 04:11:35 | ...
3
votes
1answer
197 views

iPhone CurrentTimeZoneOffset from UTC

Is there a way to get the offset time zone for a given date. For example, if I am in New York and I pass in 12-12-2009 4 PM I would get back "-4" as we are 4 hours off GMT. (In .NET land there is a ...
2
votes
2answers
3k views

MySQL query for current GMT time

This sounds simple enough but I haven't been able to figure out how to use a simple SELECT statement to return the current time in GMT. I have been trying to use CONVERT_TZ() to convert NOW() to GMT ...
2
votes
3answers
398 views

user datetime setting as GMT, how to convert date to their localized setting?

In my users setting I have a dropdown with all the GMT dates for the user to select. In c#, how would I convert a datetime stored in the database to their GMT time? The time stored in the database ...
1
vote
2answers
139 views

php “countdown til” and “since time” GMT UTC time function

I'm working with a function I found to do this, but I'm trying to make it work with a GMT utc timestamp: EDIT: Maybe my issue is with how i'm "converting" the user input time to GMT... I was doing ...
1
vote
3answers
203 views

PHP file modified time use GMT offset setting to report correct time

I'm currently reporting file modified time like so: $this->newScanData[$key]["modified"] = filemtime($path."/".$file); $modifiedtime = date($date_format." ".$time_format, ...
1
vote
1answer
172 views

How to subtract 3 hours from a datetime using SQL?

I get a date time string in the format Y-%m-%d, using the query SELECT DATE_FORMAT(x.date_entered, '%Y-%m-%d') AS date FROM x ORDER BY date ASC What I want to do is to subtract 3h from that date ...
1
vote
2answers
818 views

How to use an Internet time server to get the time?

I would like to get the GMT [ Greenwich Mean Time ], and also i don't want to rely on my system date time for that. Basically, I want to use time sync server like in.pool.ntp.org [ india ] for GMT ...
1
vote
2answers
453 views

Get the GMT time given date and UTC offset in python

I have a date string of the following format '%Y%m%d%H%M%S' for example '19981024103115' and another string of the UTC local offset for example '+0100' What's the best way in python to convert it to ...
1
vote
2answers
172 views

How can I calculate new time zone in python?

Lets say I have a time 04:05 and the timezone is -0100 (GMT) I want to calculate the new time which will be 03:05 Is there any function in python to do that calculcation ? Thanks
1
vote
1answer
580 views

Using Lambda expressions to order a list by GMT date

I have a list that contains dates that are in GMT format. What is the most elegant way to ensure that the following Lambda expression orders on the date field as GMT? ProductsList.OrderBy(Product ...
1
vote
4answers
90 views

Is there a function in c# which returns date&time when given GMT values(-12 to -1 and 1 to 12)?

Is there a function in c# which returns date&time when given GMT values(-12 to -1 and 1 to 12)? EDIT: I have a Dropdownlistbox which contains all GMT values.. Now i want to display date&time ...
0
votes
1answer
68 views

How to change SystemTime format?

In the event viewer in windows 2008, the events XML are showing this: <TimeCreated SystemTime="2011-11-21T19:42:45.000Z" /> The time currently is 2011-11-21 14:42:45. I understand that the ...
0
votes
2answers
93 views

Converting UTC time field from a POSTGRE/SQL database in SQL

I am having a problem from my database. I never been used to work in PostgreSQL, and i would like to make a select from a UTC datetime field and getting a GMT Datetime as result. Actually my request ...
0
votes
1answer
133 views

Convert boost ptime from GMT to UTC

I am trying to convert boost::posix_time::ptime from GMT to UTC. I went on Boost web site, and most of the examples are for US time zone, but I need the GMT one. All I need is the right parameters to ...
0
votes
2answers
171 views

How to convert datetime to GMT in php

Alright, so i'm not sure if im converting user input time to GMT properly. I will be having users across several timezones entering "events" and they will have to be able to see "how long untill" or ...
0
votes
1answer
42 views

Synchronizing GMT and Local Times

I'm pulling data from two different sources, both have timestamps. One of the sources uses GMT, and the other uses the time local to their server. I display the information from both of these ...
0
votes
1answer
271 views

Get last Sunday within a range of two dates (GMT, DST)

I'm trying to get the last Sunday between two week numbers - in order to avoid DST. IN ORDER WORDS: Start a range of time - from the last Sunday in March to the last Sunday in October. This is my ...
0
votes
1answer
686 views

vb.net - GMT Time?

Hey, I am trying to get the current GMT time in vb.net and can't seem to figure it out. A lot of google threads pointed to using DateTime.UtcNow but that gives an incorrect GMT time. Any ideas? ...
0
votes
3answers
759 views

Custom date time picker for Windows Forms that is locked to GMT time

Using Visual Studio 2008, c#, .net 2.0. I have a Windows Forms client application that contains a scheduling UI section, currently this is housed only in the London office with the standard ...
0
votes
2answers
422 views

“DateTime.Now” - why does it return GMT?

I am running on a Win2003 server, TimeZone set to (GMT -06:00) Central Time. I am programming with VS.NET 2005, f/x 2.x. When I execute the following code I do not get the expected results - but ...
0
votes
3answers
126 views

gmt or without gmt

this might be stupid question, but ill ask anyway. do i really need to implement gmt on site to get proper timestamp on a post? well im building a site like twitter. my feeds are working fine and ...