The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
13 views

What is the timestamp reference after deducting from getTimezoneOffset()?

For example I have this: d = new Date(2013,04,20,14,56,10) Mon May 20 2013 14:56:10 GMT+0800 (SGT) dt = d.getTime() /1000 1369032970 Now, timezoneOffset value is d.getTimezoneOffset()*60 -28800 ...
1
vote
1answer
19 views

Determine how to calculate times across different timezones using nodaTime and withZone on ZoneDateTime

When converting times between time zones. I found the follow code works. However I am not sure how programmatically what to put as my offset for the constructor for the ZonedDateTime. I had a ...
0
votes
2answers
39 views

ICS file dynamic timezone issue [duplicate]

I am trying to generate ics file dynamically in PHP, where timezone is dynamic according to the location given. Everything works good but there is daylight time issue i.e it shows time difference of ...
0
votes
2answers
44 views

Calculating timezone from GMT value - Android

In a android form , i am accepting a GMT value(offset) from user such a +5:30 , +3:00. and from this value , i want to calculate the timeZone that is "India/Delhi". Any ideas on how to do it ...
2
votes
3answers
39 views

Is timezone just an offset number or “more information”?

I live in a country where they change the time twice a year. That is: there is a period in the year when the offset from UTC is -3 hours (-180 mins) and other period where the offset is -4 hours (-240 ...
0
votes
1answer
100 views

Windows GetTimeZoneInformation time difference doesn't match ISO web site or Google

My PC is Windows 7 64-bit; I'm on the U.S. East coast (Eastern Time); the "Date and Time" applet -- reached by right-clicking on the taskbar clock and choosing "Adjust date/time" -- labels my time ...
1
vote
1answer
98 views

Get users current time in php with their lat/long/city

I'm using http://ipinfodb.com/ api in order to get users lat/long... I have users timezone in the format of an array. The array returns the following information... array(11) { ...
2
votes
4answers
87 views

Elegant way to adjust date timezones in Python

I'm based in the UK, and grappling with summer time BST and timezones. Here's my code: TIME_OFFSET = 1 # 0 for GMT, 1 for BST def RFC3339_to_localHHMM(input): # Take an XML date ...
2
votes
1answer
161 views

How is timezone EST different from EST5EDT? [duplicate]

How different is EST from EST5EDT ? Isn't EST take into account DST? I wrote a small java snippet to figure out the difference and output says EST5EDT takes in to account DST while EST does not ...
0
votes
1answer
79 views

Jodatime timezone conversion

I'm using the Joda time to validate timestamp with time zone. When I passed invalid date or time it worked as expected. For example, when I pass 99 as seconds it gave the following error: Exception ...
0
votes
0answers
40 views

timezone_offset_get() not showing the correct offset

I have written the following script for getting the offset by passing the timezone: function timezone_offset_string($offset) { return sprintf("%s%02d:%02d", ( $offset >= 0 ) ? '+' : '-', ...
1
vote
3answers
100 views

GMT offset for date in objective c

I need GMT offset for date only. I am using this method double numberOfHours = (double)[timeZone secondsFromGMTForDate:date]/ 3600.0; Actually in Berlin, Germany DST would be ON at 31st March, 2013 ...
0
votes
2answers
281 views

Android time zone and DST issue

I have an application which uses a schedule. The user picks what time the schedule should start/end, and I display that start/end time back to the user. Problem is, the time that is displayed back is ...
0
votes
1answer
125 views

Google Script Date Showing wrong “hours”

I feel as if I have poured over nearly all of the documentation regarding dates in JS and GAS. Especially concerning DST issues. Since I have not had a problem like this until the DST change. I think ...
1
vote
1answer
69 views

Formatting Date Using Google Charts and Epoch

I have an epoch 1362873600 and I only care about the date portion, not the time. My goal is to get: 03/10/13 I'm doing the following: var dateFormatter = new ...
1
vote
1answer
74 views

Javascript GMT/BST dates on a BST machine

I have a web app that always stores the dates as UTC, but they need to be displayed to the user as GMT/BST, respectively. I have a UTC/GMT date (30th March 2013 22:00), I'm moving this hourly to ...
3
votes
1answer
92 views

UNIX timestamp(0): Europe/London returns UTC+1

Learning dates and they're giving me hard time right now. $london = new DateTime(); $london->setTimestamp(0); $london->setTimeZone(new DateTimeZone('Europe/London')); echo $london ...
0
votes
1answer
143 views

Date.getTimezoneOffset inverted?

I have a JSON response from my server giving me UTC Unix timestamps in seconds. I'm parsing that into JavaScript dates that will be used in a chart (displaying the time in the user's locale). I ...
1
vote
1answer
324 views

Get TimeZoneOffset - Java

I am trying to get "TimeZoneOffset" in java and with reference to this, I implemented this: long unix_time_at_midnight; DateFormat dateFormat= new SimpleDateFormat("MM/dd/yyyy"); Date d = new ...
1
vote
1answer
91 views

Is the javascritp getTimezoneOffset() function is reliable to return the accurate UTC offset?

To get UTC offset in php I could use date("Z") but as I think this will return the UTC offset relative to timezone of the server not relative to timezome of the user's computer, which I want to get. ...
0
votes
2answers
360 views

Unix C++: get time at a different zone

I'm trying to get the time in a different timezone (PST) using C++. #define PST (-8); char* Time::getSecondSystemTime() { time_t rawtime; struct tm * timeinfo; char buffer[80]; ...
-1
votes
1answer
148 views

I need change the jquery program into javascript with same output [closed]

This post has jQuery code to show the time in different time zones . You can use this code to display world clock. Here, I am displaying country names in dropdown, when you click on that it will show ...
2
votes
1answer
273 views

How Can I Determine My Time Zone Offset Using VBScript?

How can I determine my time zone offset using VBScript? The Windows OS provides the TZ environment variable. For Eastern Standard Time (New York), its value is EST5EDT. However, I am looking for the ...
1
vote
2answers
264 views

Timezone offset is not same in server side and client side

I am working on a web application where date time store in database in UTC. Now when I retrieve the date time to show in UI then I have to convert the date time to the specific time from where the ...
3
votes
1answer
177 views

Convert datetime object in a particular timezone to epoch seconds in that timezone

eg: >>> print dt 2012-12-04 19:00:00-05:00 As you can see, I have this datetime object How can I convert this datetime object to epoch seconds in GMT -5. How do I do this?
1
vote
2answers
184 views

Calculating time difference in Google App Engine/Java

I am working on google app engine. And I am working on something that requires me to do something if the time-difference between the time sent by the client and the time at server is less than 15 ...
0
votes
1answer
126 views

timezone with DST handling by PHP

I am working on a calendar application. In this users from different time-zones create/view events. I am thinking to follow below method to save event time in UTC and display them in user's local ...
10
votes
1answer
490 views

Wrong Olson Timezone Offsets?

Today I noticed that my script to convert and display Olson timezone IDs into Cities and GMT offsets was producing some very weird results: Argentina zones caught my attention because they were ...
1
vote
1answer
185 views

ASP.NET WebAPI XmlFormatter Missing UTC Offset for Dates

I have an ASP.NET WebAPI implementation that I am allowing clients to consume and request either XML or JSON formatting of the HTTP response. Some of the response objects include date/time values. I ...
2
votes
3answers
96 views

Workflow suggestion for handling time zones

Just to give an overview of my project, I have an ASP.NET WebForm application that allows users to log in and schedule an event. The event handling is handled and dispatched by a local Windows server ...
0
votes
1answer
62 views

Generating week start and end dates with timezone offset [duplicate]

Possible Duplicate: Convert time and date from one time zone to another in PHP I have two variables which show the weeks start and end date as follows: $week = strtotime('-' . date('w') . ...
1
vote
0answers
209 views

Best way to handle date times with respect to time zones in .Net

I have been messing around with time zones lately in a time zone aware web application in .net. I have come up with the following solution for handling time zones. My Solution is: Have the user ...
4
votes
1answer
165 views

Displaying local time from epoch date

I'm trying to display when a record was saved in local time using a javascript epoch date. The problem is that the epoch date seems to be "stuck" to CDT. Lets say I save the record at 9:18am CDT, ...
0
votes
0answers
162 views

TimeZone Data Management (DLS) with HighStock (HighCharts)

It's that time again to have Day Light Saving issues in Graphs. I'm curious how you guys have tackled with the problem. Our Case: We collect data every minute from a source and it's written in ...
0
votes
2answers
259 views

javascript timezone script for United States how to do daylight saving

I have a working script that I push out to everyone's IE favorites list in our organization (see below). Depending on where the office is geographically in the company they get routed to 1 of 4 urls. ...
0
votes
2answers
81 views

php/mysql proper way to query timezone sensitive rows

I'm storing rows users in my database as rows. I'm allowing the users to input their timezone, which gets stored in the db as well. My app will email them every day at a time they specify. I store ...
0
votes
1answer
105 views

How to pick end of day in a timezone with daylight savings?

Given a date, say 2013-03-24, I want to convert it to end of that day in the US/Pacific timezone. Is there a way to figure out whether the timezone on that specific date in the region is going to be ...
4
votes
1answer
173 views

Tomcat hangs calling TimeZone

I have this issue that is bringing down production. In an AWS/Ubuntu/Tomcat stack, the CPU's running Tomcat are jumping to 100% and when I get a thread dump, this one piece of code is constantly ...
1
vote
1answer
298 views

Creating a Facebook event whose date is after Daylight Savings Time ends: What UTC offset should be used?

Question: If I add an event using the Facebook API today (offset UTC-4 at my location) for an event that occurs in December (offset UTC-5 at my location), will it appear correctly? Or do I have to ...
2
votes
1answer
90 views

Get Olson timezone current offset

In our system we have list of olson timezones, which get from http://download.geonames.org/export/dump/timeZones.txt and in this data we have correct offset only for 1 January and 1 July of the year ...
0
votes
1answer
338 views

windows registry setting for timeoffset from gmt is not getting updated

windows server has a registry key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation where the field ActiveTimeBias will return the offset in minutes from GMT for the machine that ...
1
vote
1answer
199 views

What the valid value range for getTimezoneOffset()?

My client's browse return timezone offset value is 1020. Is it valid? If it's valid what Etc/GMT zone it is? Thanks a lot.
0
votes
1answer
57 views

TimeZone offset bug – Rails

ActiveSupport::TimeZone.new(-4).parse("2012-08-20T14:00:00-0400") returns Mon, 20 Aug 2012 15:00:00 ADT -03:00 I would expect parse() to return a Time with -04:00, like Mon, 20 Aug 2012 ...
2
votes
3answers
2k views

Convert UTC offset to timezone or date

A head scratcher for you. I am grabbing geo IP data from IPInfoDB's API and it returns a timezone offset from UTC including DST (if currently reflected). For example, I live in EST (-5) and ...
2
votes
1answer
531 views

What is the best way to store timezone information in my DB?

I have a asp.net-mvc web site that i took over and there is a page page where people enter information and times (including local timezone). The database is persisting a start time, an end time and a ...
0
votes
1answer
103 views

MySQL: Wondering how to select records based on day, after adjusting for timezone

I want to select records that are "currently available" based on specifics in the tables. I think it should be easy but, of course, I'm not seeing it. I'm hoping that asking here will jog my head ...
0
votes
1answer
1k views

Javascript parsing json date timezone mismatch causes wrong date to display

The displaying of a javascript-parsed date is different based on the timezone of the machine loading the page. SERVER TIME: EST MACHINE #1 TIME: EST - shows proper date MACHINE #2 TIME: EST - shows ...
0
votes
1answer
608 views

mysql NOW() return wrong value whereas global timezone is set +00:00

I am facing timezone issue since 15 days. everytime i puzzled into this, everything working fine on my localhost BUT it returns wrong value on dedicated server. let me tell what i have done so far. ...
1
vote
2answers
261 views

IBM vs Oracle/Sun JDK, java.util.Timzone getOffset () behaving differently

IBM vs Oracle/Sun JDK, java.util.Timzone behaving differently , IBM JDK 1.5 vs Sun/Oracle JDK 1.6 import java.util.*; class TimeTest { public static void main(String args[]){ long now = ...
0
votes
2answers
125 views

Find out DST safe time of last N days

Let's say today is Monday. I want to find out what is the date for last Wednesday. the logic I thought is 1) No of days difference from today to last saturday ( ie. 6 ) 2) Substract those many ...

1 2