0
votes
3answers
467 views
Nil NSDate when trying to get date from UTC string in zulu time
Writing an iPhone app in Objective-C, I have a date in string form (in UTC format, with a Z on the end to denote zero UTC offset, or zulu time), which I need to parse into an NSDat …
0
votes
2answers
34 views
C# Define begin of day of a date in another timezone
Hi,
I want to define the begin of a day in another timezone with .NET/C#.
Example:
My current timezone = GMT+1
so DateTime.Today returns 19/11/2009 23:00 UTC
but actually …
0
votes
3answers
65 views
Converting string containing localtime into UTC in C
I have a string containing a local date/time and I need to convert it to a time_t value (in UTC) - I've been trying this:
char* date = "2009/09/01/00";
struct tm cal = {0, 0, 0, 0 …
0
votes
1answer
44 views
Convert a summer date to utc in the winter?
The function mktime takes a struct tm as argument. One of the members of struct tm is tm_isdst. You can set this to 1 for wintertime, 0 for summertime, or -1 if you don't know.
H …
0
votes
1answer
30 views
How to get current UTC time in JSON format using Javascript?
Hello,
I have a JSON Date for example: "\/Date(1258529233000)\/"
I got below code to convert this JSON date to UTC Date in String Format.
var s = "\\/Date(1258529233000)\\/";
s …
2
votes
4answers
64 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 m …
0
votes
4answers
432 views
How do I make MySQL’s NOW() and CURDATE() functions use UTC?
I want to make it so calls to NOW() and CURDATE() in MySQL queries return the date in UTC. How do I make this happen without going through and changing all queries that use these f …
0
votes
1answer
47 views
Why does Java return a date in GMT-4.5 when choosing Co-ordinated Universal Time time zone in Windows?
We have seen a strange issue on some Windows XP machines involving the "Co-ordinated Universal Time" time zone. Not all Windows XP machines seem to have it, but on those that do, t …
0
votes
3answers
81 views
Generating a drop down list of timezones with PHP
Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class i …
0
votes
1answer
15 views
Log Parser 2.2 skipping today’s IIS logs
I'm trying to count the number of hits for a particular URL on our web site by parsing our IIS logs using Log Parser 2.2. Everything seems to be working fine, except that its handl …
1
vote
2answers
95 views
How can I get an accurate UTC time with Python?
I wrote a desktop application and was using datetime.datetime.utcnow() for timestamping, however I've recently noticed that some people using the application get wildly different r …
0
votes
1answer
45 views
What is the difference between DateTime.ToUniversalTime and TimeZoneInfo.ConvertTimeToUtc
Hi,
I'm just starting to think properly about rolling out a webapp that will need to do things to users at the start of their day, say 6am. Also at the end of their days.
Everywh …
1
vote
7answers
190 views
Is there ever a good reason to store time not in UTC?
I am wondering if there are any good reasons to ever store time information in anything other that UTC (GMT)? I believe that this is a solid rule for all software engineering. The …
1
vote
3answers
56 views
Cache.Add absolute expiration - UTC based or not?
The examples for Cache.Add uses DateTime.Now.Add to compute the expiration, i.e. it passes:
DateTime.Now.AddSeconds(60)
as the value of the absoluteExpiration parameter.
I'd h …
2
votes
7answers
121 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 …
