1
vote
3answers
49 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
102 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 …
0
votes
2answers
98 views
Timestamp comparison in MySQL and PHP ( UTC, +0000, Timezones )
I'm trying to determine whether a string that represents the date and time, given in a JSON Twitter feed is within a range of timestamp columns in MySQL.
Here's the example string …
0
votes
4answers
132 views
Convert to UTC Timestamp
//parses some string into that format.
datetime1 = datetime.strptime(somestring, "%Y-%m-%dT%H:%M:%S")
//gets the seconds from the above date.
timestamp1 = time.mktime(datetime1.ti …
0
votes
2answers
119 views
Convert UTC string to TDatetime in Delphi
eg.
var tm : string;
dt : tdatetime;
tm := '2009-08-21T09:11:21Z';
dt := ?
I know I can parse it manually but I wonder if there is built-in function or win32 api function to …
1
vote
2answers
90 views
javascript conversion of yyyy-mm-dd hh:mm:ss aa help
Hi, can anybody spot any mistake in this function? .. This is a function which receives a string of type yyyy-mm-dd hh:mm:ss aa and converts to UTC and builds up a string yyyy-mm-d …
1
vote
1answer
63 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 …
1
vote
3answers
151 views
Boost C++ date_time microsec_clock and second_clock
I discovered a strange result in Boost C++ date time library. There is inconsistency between microsec_clock and second_clock, and I don't understand why is that. I am using Windows …
1
vote
1answer
36 views
Rehydrating fluent nhibernate configured DateTime as Kind Utc rather than Unspecified
Is there a way in fluent nhibernate to map a DateTime to rehydrate my entity with DateTime.Kind set to Utc rather than unspecified? I'm currently persisting a DateTime that is Utc, …
0
votes
4answers
63 views
Javascript: JSON Strigify changes time of date because of UTC!
Hi,
can anyone help, my date object in javascript are always represented by UTC +2 because of where i am located. hence like this
Mon Sep 28 10:00:00 UTC+0200 2009
Probl …
2
votes
3answers
102 views
How to I accurately get current UTC time via strtotime?
In PHP, how do I get the current time, in UTC, without hard coding knowledge of where my hosting provider is?
For example, I tried the following:
time() + strtotime('January 1, 2 …
0
votes
2answers
62 views
pytz localize vs datetime replace
I'm having some weird issues with pytz's .localize() function. Sometimes it wouldn't make adjustments to the localized datetime:
.localize behaviour:
>>> tz
<DstTzInf …
0
votes
2answers
54 views
rails time demon in my machine… it eats 2 hours have checked everything!
I have my checked my environment.rb
config.time_zone = 'Prague'
Nothing in development.rb regarding time
This seems to work, in theory...
Time.zone.now # Thu, 10 Sep 2009 17:5 …
2
votes
2answers
100 views
pytz utc conversion
Hi,
What is the right way to convert a naive time and a tzinfo into an utc time?
Say I have:
d = datetime(2009, 8, 31, 22, 30, 30)
tz = timezone('US/Pacific')
First way, pytz …
3
votes
2answers
293 views
How can I determine a timezone by the UTC offset?
I have a scenario where I have a timezone offset (in minutes) and need to determine the timezone for it. I know that all the data is not available (for example, there may be sever …
