3
votes
4answers
147 views
Efficient algorithm for determining if a date is in DST
I'm looking for a better than O(n) algorithm to determine if a date in the future will have daylight savings time applied (and how much). Given a year, month, day, hour, minute and time zone (and a …
0
votes
2answers
35 views
PHP Echo Timezone based on GMT offset
I have an application that stores GMT time data in a MySQL db like this: 2009-12-16 15:27:47.
The user's timezone offset is stored in another column like this: -6
The above timezone is GMT-6, which …
0
votes
2answers
48 views
How to get client’s timezone?
Hello!
I'm writting an application using Zend_Framework (so the solution can rely on it).
How to get client's timezone?
For example, if someone in Moscow, Russia, I want to get 3*60*60 (because …
0
votes
1answer
382 views
Hibernate Timestamp with Timezone
I'm new to Hibernate and am working with an Oracle 10g database. We have columns in our tables that are of type TIMESTAMP WITH TIMEZONE. Hibernate does not seem to support this mapping directly. Is …
0
votes
3answers
1k views
datetime time zone conversion in .net web service
I have a web service (actually a silverlight enable wcf service, but for all intents and purposes, it's a web service) with a method taking a datetime parameter. The method gets called from a client, …
2
votes
4answers
2k views
How do I use timezones with a datetime object in python?
How do I properly represent a different timezone in my timezone? The below example only works because I know that EDT is one hour ahead of me, so I can uncomment the subtraction of myTimeZone()
…
0
votes
4answers
72 views
How to properly add PyTZ to a Google App Engine application?
This is a little embarrassing, but I have not been able to find good resources on this topic.
I'm working on a Google App Engine application that requires sophisticated time zone conversions. Since I …
0
votes
4answers
55 views
Displaying date/time in user’s timezone - on client side
I have a web application that displays datetime stamps on every page, for example:
December 12, 2009 6:00 pm
I would like to dynamically detect the user's timezone and alter the display using …
0
votes
1answer
38 views
Django DateTime field to generate timestamp fields withOUT timezone
I am working on a Django application where I need all the postgres represented datetime fields to be saved in UTC (as they should). When I'm creating models with DateTime fields they database …
1
vote
3answers
145 views
How can I know the Timezone of my Web site Host
Hi,
I know this one is the weirdest of all weird questions I have asked till date. But I have a reason.
The problem is that I have a no of websites hosted in diff servers (I dont own these servers) …
2
votes
3answers
43 views
MySQL: keep server timezone or user timezone?
Hello, I'm thinking about to store dates on user login in my site, but I don't know what is the most logical solution.
Initially, I though to use server timezone, and then to manage it using …
0
votes
0answers
26 views
NTP server sync [closed]
Hi, I wish to understand following scenario with NTP server,
I have 3 systems in the network and on two I have configured the NTP server (these two systems doesn't have network in between them)
then …
1
vote
4answers
77 views
algorithm for getting time zone from geo coordinates
Hi,
I want to write app where user can point any place on map (not only cities) and get timezone in that place.
What data structure (app will not have Internet connectivity) and algorithm should I …
0
votes
2answers
27 views
Windows service and changing timezone
I have a windows service written in C# with .Net 3.5. It had been running on a server for a few weeks when it was discovered the that the server's timezone was not set correctly. This was corrected …
1
vote
2answers
66 views
Date conditions using Search logic
The Rails plugin - Searchlogic, from binary logic - offers the ability to filter by date. I have my form set up like so...
<% form_for @search do |f| %>
<%= f.label :start %> <%= …
