Tagged Questions

10
votes
4answers
5k views

Difference between UTC and GMT Standard Time in .NET

In .NET, the following statements return different values: Response.Write( TimeZoneInfo.ConvertTime( DateTime.Parse("2010-07-01 5:30:00.000"), TimeZoneInfo.FindSystemTimeZoneById("Pacific ...
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). ...
4
votes
3answers
9k views

Force Java timezone as GMT/UTC

I need to force any time related operations to GMT/UTC, regardless the timezone set on the machine. Any convenient way to so in code? To clarify, I'm using the DB server time for all operations, but ...
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 | ...
2
votes
2answers
50 views

Why is GMT the standard for computer time instead of UTC?

It feels to me like everywhere I've seen time related algorithms in programming, GMT was the base time. For example, I was told to always store time in a DB in GMT+00 so that time zone changes don't ...
2
votes
1answer
900 views

How to determine UTC offset from server timezone?

I've found many examples about UTC tables and php date methods to convert it, but I still miss a simple way after got server date, to converting it into an user timezone selection on my web page. On ...
1
vote
1answer
45 views

Difference between GMT and UTC in Android

The function System.currentTimeMillis() returns the number of milliseconds since January 1, 1970 00:00:00 UTC. The function Date.getTime() returns the number of milliseconds since January 1, 1970 GMT ...
1
vote
2answers
62 views

Output time with custom format (GMT instead UTC)

I'm wondering how to get time in exactly this format using ruby 1.9.2: I'm using rails 3.1 may be need to setup some environment constants to have it out of box with to_s method? 2011-11-11 15:20:01 ...
1
vote
1answer
110 views

Historical time to GMT\UTC with DST

Similar to: Convert historical time to GMT This time my scenario is: I need to convert some string times in the format "2011061411322100" into GMT. The problem is that the times are coming from ...
1
vote
3answers
1k views

UTC vs. GMT - Java vs. .Net

In .Net UTC and GMT are not the same Difference between UTC and GMT Standard Time in .NET Is it the same with Java? Does Java has the notion that GMT has DST changes while UTC doesnt? Thanks!
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
1answer
812 views

MySQL default time format UTC or GMT?

Hi I'm so confused with this UTC and GMT I'm inserting in MySQL table as ex column "event_date" like "2010-07-01 23:50:00" (datetime) my client asking an option in front end as GMT +1 GMT +2 GMT -1 ...
1
vote
1answer
454 views

Web Service to Get Current UTC Time?

I'm building a PHP web application and need to know what the current date/time is. I cannot depend on the server's setting. Any web service I can use? I know there will be some delay accessing the ...
1
vote
2answers
526 views

HOW TO GET: Time Zone Setting of FTP Server?

I'm using PHP's ftp_rawlist function to get a listing of files and their associated last-modified date/time. For my purposes, I need to know the time zone (or offset) of the the last-modified ...
0
votes
1answer
44 views

NSTimeInterval in UTC?

I am calculating current time Interval using following codes: NSTimeInterval tInt=[[NSDate date] timeIntervalSince1970]; int tInterval=(int)tInt; Is this timestamp is in utc time ? I need ...
0
votes
0answers
16 views

MySQL Summary table for statistics and UTC, GMT time

I have to design a summary table for consolidating statistics from a transaction table. Here is my summary table (it is a proof of concept not the real one table wich is much more complicated): ...
0
votes
1answer
659 views

NSDate dateWithTimeIntervalSince1970 NOT returning GMT/UTC time

I tried an experiment because I need to be able to generate a unix timestamp (since 1970) in the app I am working on. NSLog(@"Getting timeIntervalSince1970"); double ...
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
608 views

Which php date and time tools to use for GMT offsetting

It appears there are many ways to approach date and time massaging in php. I usually am only every dealing with local time. Today, I need to work in UTC. I am querying against an API, the data they ...