Tagged Questions
0
votes
3answers
30 views
Time zone confusion processing javascript generated date in php
I am located in the (PDT) time zone at time Sat May 11 2013 20:58:51 (my time) I generated a date/time using the following code.
var date = new Date();
alert(date);
This returns the result
"Sat ...
0
votes
0answers
12 views
Will mktime string reflect time offset as a date() variable?
I'm using the following code...
$TOffset = 3;
$TIME = mktime(date("H")+$TOffset,date("i"),date("s"),date("m"), date("d"),date("Y"));
$DateTime = date("YmdHis",$TIME);
$Date = date("Ymd",$TIME);
...
0
votes
2answers
27 views
how to show the time correctly in ruby on rails
I have a function in ruby on rails project.
it can create a certain task with task name and due date. after created it will show the due date of a task.
When I create a task the task name and due ...
2
votes
1answer
28 views
Time.toMillis(false) of 1/1/1941 always returns -1 if timezone is Pacific/Tongatapu in Android
When I test below code, t1 is -1.
Time t = new Time();
t.clear("Pacific/Tongatapu");
t.set(1, Calendar.JANUARY, 1941);
t.normalize(false);
Log.d("ss", "[onCreate] t1= " + t.toMillis(false));
then I ...
1
vote
1answer
37 views
DateTime.now not setting timezone in Rails
I have a column called "Archived" in my message table and a button that when pushed will write the current time and date into the db column. Right now I can get it to write the time, however it's in ...
1
vote
3answers
29 views
UTC time explanation
Can anybody explain me what it means when I have the following time:
2012-12-28T18:12:33+01:00
I'm new to the whole datetime stuff and I can't find a good explanation on the web.
Currently I'm in ...
1
vote
0answers
49 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
0answers
47 views
How to ask boost to refresh the time clock
I'm writing a software that is very sensitive to local time. I'm using boost::posix_time to get the local time of the computer. However, I noticed that if we change the time and the timezone during ...
3
votes
1answer
64 views
Time zone confusion (1 hour off)
Time.use_zone('Pacific Time (US & Canada)') do
p Time.zone.now
end
I get the following: => Sun, 14 Apr 2013 20:30:53 PDT -07:00
Yet when I do Rails Time Zone Select.... it ...
3
votes
2answers
96 views
I want to get time from GSM network
I am using this code but it gives time by wifi..when i turn off wifi,it is not giving me the time...
I want to get the time from my GSM service provider...
The code which I am using..
LocationManager ...
1
vote
0answers
42 views
Why is my timezone one hour off?
Running this code...
Time.use_zone('Pacific Time (US & Canada)') do
p Time.zone.now
end
I get the following: => Sun, 14 Apr 2013 20:30:53 PDT -07:00
Yet when I do Rails ...
2
votes
4answers
86 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 ...
0
votes
2answers
65 views
Determining when DST is in effect [duplicate]
I've recently come across a problem...
Lets say I have some Javascript like this, for example:
var timezone = -(new Date()).getTimezoneOffset() / 60; // Get the TZ offset
var local = [];
var gmt ...
0
votes
1answer
28 views
time_zone is correct, however the time returned is off by an hour
I have a feeling this is going to be some complication caused by DST, but here is my issue:
The system time is set to UTC +00:00 , so I ran SET time_zone='+00:00'. However, when I ran a SELECT NOW(), ...
0
votes
1answer
121 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
193 views
Dealing with daylight savings time - C++
Given an input date and time (in string format), I am trying to get the epoch time for it using time functions given in ctime like mktime. Converting the time_t epoch time back to a date and time ...
0
votes
0answers
46 views
Timezone with TZ Environment Variable - Safety and issues
first of all, I want to know if the changing of the TZ Environment variable is secure, I was working on it because I didn't find another method for an efficient convertion.
I am not sure if TZ is ...
-1
votes
2answers
52 views
Get date from specific timezone - C
I need to get the date/time from a specific timezone without setting the TZ variable.
I tried to use the gmtime and plus to the hour the difference, the issue I got with this method, is that time ...
0
votes
0answers
50 views
Database in UTC but need to display different time now for different countries
Could someone please help me with my problem. Ive been on it a couple of days now, and just cant get my head around it.
So I have an existing database, that contains all times in UTC.
Each post in ...
0
votes
2answers
58 views
Get current time with a phone number
I want to write an RoR mobile app which gives me the current time at the country for a given phone number, with its area code. Is there a good api for this?
0
votes
1answer
37 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 ...
1
vote
2answers
76 views
How to make my ASP.net web application know what time it is at the user's location?
I'm working on a web application that keeps track of scheduling for my organization. There are over 100 different official locations that it can be used from. When a user logs in, the user's ...
0
votes
2answers
95 views
Cakephp CakeTime DST handling
I store all dates in UTC in my database. Cakephp runs in UTC and communicates with mysql in UTC. Now i have following scenario:
debug(CakeTime::format('Y-m-d H:i', '2013-03-22 03:00', false,
new ...
0
votes
0answers
17 views
date and time notation
I have 2 questions:
1) is it possible to change the date from 19/2 (now) into Tue, 19 Feb 2013.
This is the data given in my firebug console: Date {Tue Feb 19 2013 14:22:00 GMT-0400 (AST)} but I ...
0
votes
2answers
43 views
Time format conversion
I need to convert a specific date format into local time (Europe/Sarajevo), I have the time in this format 2013-02-17T15:00:00Z which I don't really understand and this is why I don't know how to ...
1
vote
1answer
41 views
Couldn't get correct system time and time set by user
Im working on an app in which i want to fire local-notification on time set by user im just facing problem in getting correct time , So what im doing is this:
NSDateFormatter *current = ...
-1
votes
2answers
115 views
How to get the time of specific timezone using javascript, but without being relevant to the current system time?
Now, before you mark this as a duplicate, please note that all the useful answers in the possible duplicate provide functions which work in relation to the current system time, which I cannot accept.
...
4
votes
1answer
60 views
How to map to historically accurate local times in Java when time zone rules change?
I have a database that contains UTC (GMT+0) timestamps. Here is the problem: they refer to billing activity that occurred in the state of Indiana.
As some may know, Indiana ...
did not observe ...
1
vote
2answers
90 views
write a query that converts a timestamp to a date and add hours
I hope someone can help me with this. My knowledge of sql and programming is pretty rudimentary.
I've written a query that looks like this.
SELECT FROM_UNIXTIME(EventStartDate)
...
1
vote
3answers
36 views
What way is better to use date with timzone for clients
I am bulding a component for joomla which has announcements for others. And that announcements have creation date and date for its events. My clients can be in different countries. One can be in two ...
1
vote
0answers
47 views
Time in the FreeBSD jail is “jumping” every hour
I can't resolve my problem with time in FreeBSD JAIL :(
I have set my timezone correctly.
And I have commented this line:
#1,31 0-5 * * * root adjkerntz -a
Here is my ...
1
vote
3answers
137 views
Issue in timezone with Node.js Module 'time'
I just came across an issue that has happened today (due to being 31st of January here in Australia Sydney). Basically, given a year,date,hour,minute,second. I want to create a date as if I am in a ...
0
votes
2answers
57 views
Change system time for UNIX process?
I need to test my C++ program, which uses system time.
The program is large and it uses third party libraries which possibly also use system time.
I want to see how my program behaves for different ...
0
votes
1answer
38 views
Working with Rails Timezones?
Working on a 3 week new registration chart for metrics, I have the following code:
(3.weeks.ago.to_date..Date.today).map { |date| Metrics.registrations_on(date) }
In Metrics.rb:
def ...
-1
votes
1answer
77 views
CURDATE() ADD INTERVAL on INSERT MySQL
What is the proper syntax for adding hours to CURTIME() in MySQL INSERT statment..
$query = "INSERT INTO `ordisp` (`date`, `time`, `operator`, `status`, `completed`, `name`, `email`) VALUES ...
4
votes
2answers
396 views
Confused about date and time in Excel
I have Java time (ms since 1/1/1970 UTC) and would like to write that time to a csv file, so that Excel can correctly interpret and format it. I understand, that excel uses "serial date time" as a ...
0
votes
1answer
396 views
Time zone name in SQL Server 2008
Is it possible to get the name of the current time zone, such as "Eastern Standard Time" or "EST" in SQL code on SQL Server 2008 R2 ? I know I can determine numeric local time offset by calculating ...
1
vote
2answers
273 views
Convert EST time to local time
I am new to C#
I am using YQL to obtain data in XML format.
i receive a time in such 10:47PM EST
i want to convert it to my time zone, let's say convert to CST (China Standard Time) or MYT ...
1
vote
1answer
137 views
Get the time according to timezone of user - PHP
I am developing a Q/A forum on sports. How do i get the timezone of logged in user so as to post his/her queries according to that timezone. Currently I am doing this
Javascript
var current_date = ...
1
vote
1answer
131 views
Flooring a unix timestamp with timezone support
I have a table, where each row has a timestamp. The timestamp is a unix timestamp. I'd like to do some reporting using this data, which requires me to group this data by a specific period (for now, ...
0
votes
4answers
70 views
Getting the components of a Date after applying a timezone in JavaScript
Here's the thing: I'm currently programming a "time availability" functionality.
Example:
Sunday: 7:00 a.m. to 9:30 p.m.
Monday: 8:00 a.m. to 10:00 p.m.
Tuesday: 7:30 a.m. to 8:30 p.m.
...
0
votes
2answers
69 views
PHP: Getting the time for a specific timezone, which can't be changed by the system owner
I've got a question for you guys. I'm currently creating some kind of license system, written in PHP. And of course, this has to be a secure system, and the license should be checked in many different ...
-5
votes
2answers
106 views
How can i display abbreviation for timezone in php [closed]
I have a list of timezones to select. For eg:
`Africa/Abidjan, Africa/Accra, America/Cambridge_Bay, Asia/Bahrain, Europe/Helsinki`
When i select one, i just want to display the abbreviation ...
0
votes
3answers
315 views
Extjs 4 Date - Change Timezone
Simple question, as the title say, how do I change the timezone of the Date object in Extjs 4?
Using:
var today = new Date()
gets the date of a PC not the server so I have to change the timezone ...
0
votes
2answers
100 views
Get time & date independent to the local time of client pc
How to get the Exact time and date of the client area, without depending to the local time & date of client's pc. Even if the time and/or date of that pc is set to a wrong time, I want to show the ...
0
votes
2answers
135 views
Display html content between defined hours mon to friday
i was wondering if there is a quite simple solution to display content between certain hours and only during working days in a Europe timezone?
The hours will be everyday (except weekends) between ...
6
votes
5answers
254 views
How does one compute a time_t for the epoch in pure ISO C?
Using nothing but the C standard library (plain ISO C, no POSIX, and thus no assumption that time_t is represented in "seconds since the epoch"), what is the simplest way to get a time_t value ...
1
vote
2answers
191 views
Timestamp for different timezones in php
In the below code i need to get unixtimestamp for 2 Country timezone. The output of the code will give me a date with difference but the timestamp is not differ each other. It remains same. Can anyone ...
1
vote
3answers
7k views
Timestamp Python
I know this is a very basic question but I couldn't find any good conclusive answer to this.
So I wanted to know does time.time() in python time module return according to system's time or is it ...
3
votes
1answer
121 views
Strange behaviour when printing/reading time
I am trying to save std::time_point into a std::stream and read it back. One problem is that using the standard functions 'loses' an hour somewhere. I.e., the time I read is 1 hour behind the time I ...
