A time zone is a region on Earth that has a uniform, legally mandated standard time.
0
votes
1answer
15 views
How do I change java's timezone?
There is something wrong with my linux desktop's timezone and its getting changed to "London" sometimes. I have now manually changed it to "Los Angeles/Pacific". But when I run a java program, the ...
0
votes
0answers
10 views
Timer, timezone, server side time, client side countdown
I've launch a project recently (here), and I'm stuck with a timer/time question :
I have a cronjob who runs everyday, twice a day : midnight and midday in french timezone.
I want to display a ...
0
votes
0answers
26 views
Getting the correct timezone offset in Python using local timezone
Ok let me first start by saying my timezone is CET/CEST. The exact moment it changes from CEST to CET (back from DST, which is GMT+2, to normal, which GMT+1, thus) is always the last Sunday of October ...
1
vote
0answers
15 views
Django Timezone Support Outside of Templates
Django's timezone-aware output apparently only applies when rendering a template. Is there a way to get that same auto-conversion to the currently active timezone for responses returning CSV or JSON?
0
votes
1answer
30 views
Java SOAP Web Service to return local time for a given locale
I am trying to implement a java SOAP web service that takes a string locale (such as FR or US) and returns a string of the local time for that locale. This is the code I have so far:
public String ...
0
votes
1answer
17 views
DST in Javsscript
How can I check in JS file whether current Date is in DST or not?
In C# there is below code available to check this things.. can anyone suggest similar code in JS
var timezone = ...
0
votes
0answers
20 views
set global timezone with momentjs
I am using momentjs to handle dates in my web application. The server returns all the dates in milliseconds utc. Now I have to display the dates applying a specific timezone (based on the user ...
0
votes
1answer
30 views
Different timezone_types on DateTime object
I use Doctrine2 on Postgres. In one table I have got two different date types: birthdate:date and created_at:datetimetz. Both become DateTime object but with different timezone_type.
Here are ...
1
vote
0answers
11 views
Kendo MVC Datepicker timezone translation
We are observing the following issue related to the time differences between our MVC app and a Kendo DatePicker. The web server is running in UTC+0. The web clients are running in different time zones ...
0
votes
0answers
15 views
Parsing http expires header into Date
im writing a little http cache for my android project. It does HTTP Request and should cache the HTTP Responses with taking the expire header and max-age into count. So my question is, how do I parse ...
1
vote
1answer
20 views
Blocking visitors by time zone?
I was searching for a solution to block visitors from a specific country, and saw that it is not that simple (requires an updated database of IPs, etc.).
So I was thinking... what if I recognize the ...
0
votes
1answer
10 views
NSDateFormatter Corruption
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
dateFormatter.dateFormat = @"yyyy-MM-dd HH:mm:ss";
NSTimeZone *gmt = [NSTimeZone systemTimeZone];
[dateFormatter setTimeZone:gmt];
...
0
votes
2answers
28 views
`[Exception] DateTime::__construct(): `It is not safe to rely on the system's timezone settings [duplicate]
I 'm using codeception (bdd) making test but gives error
[Exception]
DateTime::__construct(): It is ...
0
votes
1answer
16 views
timezone issue in amazon aws ec2 linux hosting
I have recently set up my hosting service in amazon aws, From the moment i have started , it keep gives me an error
It is not safe to rely on the system's timezone settings. You are *required* to use ...
0
votes
1answer
21 views
one day gap between datepicker and php date
So I have this jquer datePicker (no special configuration), it goes like:
$(function() {
var startTs = new Date("' . gmdate('D M d Y', $timeStamp) . '");
var endTs = new Date("' . ...