Tagged Questions
0
votes
1answer
23 views
Convert Unix Timestamp to time zone?
I have a unix timestamp that is set to +5, but I'd like to convert it to -5, EST Standard time. I would just make the time stamp be generated in that time zone, but I'm grabbing it from another source ...
1
vote
1answer
29 views
How can I convert a Time from some timezone to UTC, taking into account Daylight Saving, in Ruby?
I have an app where different users are in different parts of the globe (I know their timezone), and they can enter dates and times, and I need to store everything in UTC on the DB.
Normally to ...
1
vote
1answer
37 views
Expression of timezone offset - clarification appreciated
Something I'm currently working on requires localised times for users around the world. All datetimes are stored as UTC, so converting them is easy enough and we have a known, safe, point of ...
1
vote
2answers
34 views
Does date_default_timezone_set() effects time()?
If I set a time zone like:
date_default_timezone_set('America/Los_Angeles');
Will it affect the value of time()?
0
votes
2answers
43 views
How to convert datetime.time from UTC to different timezone?
I have variable which holds time which is of type datetime.time in UTC, I wanted it to convert to some other timezone.
we can convert timezones in datetime.datetime instance as shown in this SO link ...
1
vote
0answers
30 views
converting getTimezoneOffset() into static timezone
I have the problem of trying to convert a GMT timestamp on some json to localtime for use in Highcharts. But because there is a lag between getting the json with the timestamp and when the function ...
1
vote
2answers
33 views
Firefox returning invalid for timezone offsets?
I've come across what appears to be an odd result from Firefox. Using the following format:
2013/01/01 00:00:00-0000
For my date, I run into an issue when the timezone goes "positive". For example.
...
1
vote
3answers
66 views
Odd DateTime.Now() behaviour
I'm having a weird issue where DateTime.Now is returning the incorrect time when I'm calling it for the purposes of timestamping a logfile. The code in question is as follows:
string logDate = ...
2
votes
1answer
91 views
Timezone conversion from GMT to local
I have the following information:
string shippedTime = "10:53 AM";
string shippedDate = "12/12/2012";
string shippedTimeZone = "(GMT-05:00) Eastern Time (US & Canada)";
string receivedTime = ...
0
votes
1answer
82 views
How to get Client Local Date from TimeZone in asp.net?
I have my database server located in U.S. The user makes entry from INDIA the date must be stored of client and not the server. but, unfortunately the server date is stored in database. I am showing ...
0
votes
0answers
24 views
Does DateTime/date.timezone/date_default_timezone_set() all return the same data? [duplicate]
I've been developing a small web application and everything worked great in IDE, but the first time I sent it to the server I got this error:
PHP Fatal error: Uncaught exception 'Exception' with ...
1
vote
0answers
51 views
How can I convert timezone of one City to another?
I want to convert timezone of one city to another, using Joda DateTime, the process is straight forward, but I have a problem.
I am referring to Joda Database and I am unable to locate specific ...
0
votes
2answers
41 views
PHP date returning wrong value
I have a date format like this 'Tue May 01 00:00:00 +1000 2012' (from array data on json file)
when I use date() function it returning April, :D
echo date('F Y', strtotime('Tue May 01 00:00:00 ...
2
votes
2answers
57 views
DateTime Localization. Any standard/best practices
The only thing i know is, that DateTime should always be stored in UTC, but while displaying or getting the input it has to be the logged in User's local time.
This is to mitigate the timezone ...
2
votes
2answers
51 views
Timezone inconsistency in momentjs and php
We are having problems to get the datetime representation in php and momentjs in sync. Lets say we are having a datetime with a time zone in Moscow:
2013-06-10T10:40:00.000+04:00
The user should see ...
1
vote
2answers
130 views
What does the “.000Z” of “yyyy-mm-ddT00:00:00.000Z” mean? [closed]
I've gotten a response from one application with the following date & time format:
yyyy-mm-ddT00:00:00.000Z
I need date and time for a report I have to present. What does the .000Z mean? ...
2
votes
2answers
56 views
What's wrong with this python timezone conversion?
I want to convert a datetime with US/Eastern timezone to Budapest/Europe timezone this way:
import pytz
from datetime import datetime
ET = pytz.timezone('US/Eastern')
CET = ...
0
votes
1answer
36 views
Get time value only from timestamp values
I am fetching dateLocal variable as "2013-04-18T12:25:00.000"
How can I retrieve only 12:25:00.000 in this ?
I am calling this value in below code
echo ...
-3
votes
2answers
32 views
getting the local time [closed]
int tzO = TimeZone.CurrentTimeZone.IsDaylightSavingTime(DateTime.Now) ? -4 : -5;
(It is a single line of code. Some browsers wrap it to two lines.) Why does this code suck?
0
votes
2answers
46 views
Filtering by Date - Taking into Account the User's TimeZone
I have a list of posts where posts has a "DateAdded" field which has been set to the UTC time. I need to filter the posts for a particular month/year. The part I'm struggling with is how I would take ...
1
vote
1answer
30 views
Django: Set datetime in views to utc+1
I have checked around a bit, both here and Google, without finding an exact answer to what I'm looking for.
I'm currently working on a Django-project and I seem to live in one of those areas where ...
1
vote
1answer
18 views
Standard for specifying times that happened twice?
Given the discontinuity in timezones, is there a standard method of specifying which of two repeated clock times you are interested in? This came to my attention from a Java discussion "Why is ...
1
vote
1answer
56 views
DST_OFFSET changes when it should not
I am trying to run below code. I define a timezone with dst starting from 4th Sunday March 2 am and end it on 5th Sunday March 2 am.
SimpleTimeZone st = new SimpleTimeZone(-18000000, "DSTTesting", ...
1
vote
3answers
78 views
Java Datetime with Timezone format
I am currently using SimpleDateFormat to create a datetime value in the format yyyy-MM-dd HH:mm:ss. Here is my code:
Date date = new SimpleDateFormat("yy-M-d H:m:ss").parse(datetime);
...
0
votes
1answer
66 views
Parse DateTime without Timezone information into specific Timezone
This is a follow on from a question answered yesterday..
Convert 12hr Time String to DateTime object
Those times in the xml feed are EST (who does that?) but our timezone is BST.
so 10:30PM is ...
1
vote
1answer
59 views
ActiveRecord does not respect daylight saving time (DST)?
We're in the timezone Bern, which is +0100. But since we're now in summertime (we have daylight saving time), the current offset is +0200. In my rails app, I set the timezone using a wrapper in the ...
0
votes
1answer
85 views
How to create a Ruby DateTime in a specific time zone for a Rails app?
I have users entering in dates in a Ruby on Rails website. I parse the dates into a DateTime object with something like:
date = DateTime.new(params[:year].to_i, params[:month].to_i, ...
1
vote
2answers
19 views
What does a utc replace do on a utc timestamp?
I have come across the following code:
datetime.datetime.utcnow().replace(tzinfo=tzutc())
I can't see what the replace() call is doing, from reading the docs it seems to convert it into a UTC ...
0
votes
1answer
81 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 ...
1
vote
2answers
89 views
C# Adjust DateTime based on TimeZone
Hello I keep two times stored in the database in military time based on the timezone of a user (Ex: Start: 08:00 - End: 14:00). I also keep the user's timezone stored in the database in the following ...
1
vote
1answer
34 views
Python: time stamps incorrect after changing Windows time zone [duplicate]
Running Windows XP, in a Python application, I get the current time with:
import datetime
now = datetime.datetime.now()
And the time matches the time on the system clock display. However, now, ...
1
vote
1answer
34 views
How to calculate the correct offset?
Beginning to learn about the php dateTime & dateTimezone objects. Assuming a server in US/Eastern and creating a time in another timezone, the goal is to convert and store the time (ie London) on ...
0
votes
1answer
139 views
How to Instantiate Joda DateTime from TimeZone String ID and Epoch
I am taking a look at the Joda Time library. I am trying to figure out how to construct a DateTime object given an epoch time stamp and a timezone. I am hoping that allows me to find the day of ...
0
votes
1answer
113 views
python: datetime tzinfo time zone names documentation
I have a date that I build:
from datetime import datetime
from datetime import tzinfo
test = '2013-03-27 23:05'
test2 = datetime.strptime(test,'%Y-%m-%d %H:%M')
>>> test2
...
-2
votes
1answer
144 views
How to set Timezone per thread? [closed]
I know we could change the current culture for the current thread.
And I know we couldn't get TimeZoneInfo from the CurrentCulture because one culture may has many TimeZones like USA
But to use use ...
0
votes
1answer
45 views
Show current time with a given GMTOffset in Windows 8
I have the GMTOffset in the format UTC/GMT +1.00 hour. I am creating a clock app in windows 8 and want to show the clocks current timing with this GMToffset. What should I do?
0
votes
2answers
37 views
Python: timezone.localize() not working
I am having some issues getting timezone.localize() to work correctly. My goal is to grab today's date and convert it from CST to EST. Then finally format the datetime before spitting it out. I am ...
0
votes
2answers
40 views
How to get time at midnight of an user from my server?
I have an user with the timezone (for example: +7 GMT).
In PHP language:
My server is set timezone at 0-GMT.
How could I know from my server that now is midnight of that user?
2
votes
3answers
76 views
How to convert between time zones in PHP using the DateTime class?
I am trying to convert time between current time to UTC and UTC to current time zone.
Here is what I have done:
$schedule_date = new DateTime($triggerOn, new DateTimeZone('UTC') );
$triggerOn = ...
2
votes
2answers
120 views
Why does joda DateTimeZone's getOffset() method require an “instant”?
What I'm trying to do:
From a DateTimeZone object, I'm trying to get the GMT offset in milliseconds. Example:
DateTimeZone gmt= // somehow get gmt zone object
long offset = gmt.getOffsetSomehow(); ...
0
votes
2answers
54 views
How to create DateTimeZone object from time zone string?
Is there a way to create a (joda) DateTimeZone object from a time zone string representation, like "EDT", or "+0330"?
0
votes
1answer
91 views
Converting DateTime to local not working
In MVC4 C# application I tried convert server time to local time. It works in local, but it does not working when site deploying. For testing I checked some code results in deployed site. They are:
...
1
vote
2answers
60 views
How to be sure that Date.today is in Pacific Time Zone?
I am tracking user activity:
def track
UserActivityTracker.new(date: Date.today.to_s).track
end
#application.rb
config.time_zone = 'UTC'
How to be sure that days are tracked in the Pacific Time ...
1
vote
3answers
103 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
1answer
71 views
Django: Naive datetime on query
I'm trying to retrieve all data between two dates (monday -> monday). Here's my code:
some_day_last_week = datetime.datetime.now() - timedelta(days=7)
monday_of_last_week = some_day_last_week ...
0
votes
1answer
88 views
Convert GMT date to other timezone date using offset [duplicate]
I wanted to convert date which is in GMT to other Timezone date.
All i have is the offset of that timezone which is in following format GMT+05:30.
I have refereed many question but most of it was ...
3
votes
3answers
152 views
There is a difference between local and server time
In MVC4 C# application I used DateTime.Now when object created in my application. After deploying, there was +8 hours difference between local computer and hosting. Then I changed it to ...
2
votes
1answer
46 views
Get all available timezones
I'm currently working on an application that is required to support multiple timezones.
For that, I'm using dateutils library. Now, I need a way to present the user a list of all available timezones ...
0
votes
1answer
45 views
How to display a DateTime in the timezone of a browser using Rails?
Rails stores all DateTimes in the UTC timezone. I need to display that time now to the user in the timezone that their browser reports they're in. Is there an easy way to do this?
Using latest Rails ...
0
votes
1answer
38 views
Can someone please clarify how MySQL's TIMESTAMP is used in conjunction with PHP's DateTime class?
I've been studying the differences in usage between MySQL's DATETIME and TIMESTAMP. It seems that it's pretty straight forward with DATETIME. I would use the following procedure:
Choose the default ...

