Tagged Questions
The hour tag has no wiki summary.
6
votes
7answers
3k views
How to do a cron job every 72 minutes
How would I get a cron job to run every 72 minutes? Or some not so pretty number like that?
4
votes
2answers
6k views
how to get hour and minute from NSDate
in my application I need to get the hour and minute separately:
NSString *currentHour=[string1 substringWithRange: NSMakeRange(0,2)];
int currentHourInNumber=[currentHour intValue];
...
3
votes
2answers
147 views
Java getHours(), getMinutes() and getSeconds()
As I know getHours(), getMinutes() and getSeconds() are all deprecated in Java and they are replaced with Calendar.HOUR_OF_DAY, Calendar.MINUTE, Calendar.SECOND.
These will in fact return the hour, ...
3
votes
2answers
100 views
Python: get datetime of last hour
I want to get the date time object for last hour.
Lets say the sys time is "2011-9-28 06:11:30"
I want to get the output as "2011-9-28 05" #{06 - 1 hour}
I used:
lastHourDateTime = date.today() ...
3
votes
1answer
98 views
Problem selecting date in UIDatePicker iphone
I´m using the UIDatePicker in a form but the problem is that when I select the date and time, the time in the text field is 5 hours after the time showed in the picker. I've read that there's a bug in ...
3
votes
3answers
85 views
Select data from the last hour, MS Access
I am working on doing some data transfers moving data from one database to another and I would like to do this without using to much memory on the computer that I am running this data transfer program ...
3
votes
10answers
16k views
Subtract n hours from a DateTime in Ruby
I have a Ruby DateTime which gets filled from a form. Additionally I have n hours from the form as well. I'd like to subtract those n hours from the previous DateTime. (To get a time range).
DateTime ...
2
votes
2answers
67 views
Selecting data from the start of every hour
I have an MS Access database table that populates every minute, and I need to write a query to select the data at the start of every hour. Does anyone how I would go about writing such a query?
...
2
votes
2answers
339 views
Time issues
I am facing some problems in a cross platform program :
when I open a python shell in Linux and in Windows, I don't get the same time from the Epoch.
In Linux, I tried to do dpkg-reconfigure tzdata.
...
2
votes
4answers
165 views
How to get the hour and the nearest hour
Hey guys, just a simple question.
How do you get the current hour and the nearest hour, e.g.
The time is now 2:25PM.
The current hour is 2:00PM
The nearest hour to be 2:59PM (not 3PM, as 2:59PM ...
2
votes
4answers
2k views
Convert seconds to Hour:Minute:Second
I need to convert seconds to Hour:Minute:Second
for example : 685 converted to 00:11:25
can you please help me achieve this
thanks
2
votes
1answer
89 views
Sql by hour starting at noon
I'm currently using a select statement with one column as DATEPART(hh, CallTime) AS Hour
and then doing:
GROUP BY DATEPART(hh, CallTime)
ORDER BY Hour
This displays the hours starting at midnight ...
1
vote
5answers
49 views
Changing Java Date one hour back
Just quick question
I have a java date object
Date currentDate = new Date();
Now it will be give current date and time
Example Thu Jan 12 10:17:47 GMT 2012
But I want to get the date chaning it ...
1
vote
3answers
45 views
Zero-pad hour in DateFormat
I am trying to display a time difference into a string which follows the form 00:00:00 (hours:minutes:seconds), zero-padded. I have the following code:
long timeDiff = System.currentTimeMillis() - ...
1
vote
1answer
90 views
Regex pattern for HH:MM:SS time string
I want to parse a hh:mm:ss string.
A simple one is ([0-1]?\d|2[0-3]):([0-5]?\d):([0-5]?\d) which expects 2:3:24 or 02:03:24 string.
I want to take it a step further and pass the validation even in ...
1
vote
1answer
181 views
SQL add Datetime add hour add Minute
In my table I have DateTime, Hour column.
example : 2012-05-14 00:00:00.000 and 1230
How can I add this hour column into my Datetime column, so I can have
2012-05-14 12:30:00.000
I tried with ...
1
vote
3answers
84 views
Is there a class in JDK to represent an hour of the day, but not necessarily a specific hour at a specific date?
Is there a class in JDK or Guava to represent an hour of the day, but not necessarily a specific hour at a specific date?
If not, why?
1
vote
2answers
204 views
subset data for a day if data between two hours of the day meets criteria?
I’m fairly new to R and it would be great if you could help out with this problem as i havent been able to find any answers to this problem online.
This is part of my data frame (DF) (it goes on until ...
1
vote
1answer
89 views
Convert string time to normal time value replacing the hour to the correct
I have the following example string values:
24:05 , 25:08 , 26:59
and I need a function or something else to get a correct time value (hh:mm) like:
00:05 , 01:08 , 02:59
Is there a method in C# ...
1
vote
2answers
140 views
Converting date into hours
I want to find time difference between two date and then compare the difference time in hours. Something like this,
StartTime = 2011-03-10 15:45:48
EndTime = 2011-03-10 18:04:00
And then find the ...
1
vote
1answer
278 views
Android - Find out what hour of day it is
I want to use and alarmManager that sets a repeating alarm to go off on the hour, every hour. I know how to set a repeating alarm every hour but not how to actually set it from the top of the hour, I ...
1
vote
1answer
107 views
How do I show hours instead of days for an interval in PostgreSQL?
One of my queries is returning the below interval. Istead of showing 6 days, I would like to show 6 x 24 + 19 hours. I would rather not convert to epoch using the extract (epoch from ...) operator. Is ...
1
vote
3answers
495 views
Problem using JPA with Oracle and grouping by hour
I have a problem using JPA with Oracle and grouping by hour.
Here's the scenario:
I have an entiry named EventData. This entity has a java.util.Date field named startOfPeriod. This field maps in a ...
1
vote
1answer
1k views
Problem with Gregorian Calendar hour of day in java
I'm using a Gregorian Calendar to set a specific date and time to an application using the set function of the Gregorian Calendar. When i use the getTime() method, it gives me the right output ...
1
vote
2answers
232 views
How do you set the time and only the time in a calendar in Java?
Having the hours and minutes, is there any easier or better way to set it into a Calendar object than:
calendar.set(calendar.get(Calendar.YEAR),
calendar.get(Calendar.MONTH),
...
0
votes
1answer
48 views
Runtime limit timer in C
I want to set a runtime limit (in hours) to my algorithm in C, so that when it reaches the limit, the algorithm stops (for example, at 12 hours). Does anyone have any suggestions? Thank you in ...
0
votes
2answers
77 views
Having trouble adding a 24 hour voting system?
There is a script that triggers the code below
I want to disallow executing the script more than once per 24 hours.
I wanted this script to store the last visit time in a table against the user id ...
0
votes
1answer
53 views
How can I prevent my Google App Engine cron jobs from burning through all my instance hours?
I have a google app engine where I have scheduled several cron jobs as database cleanup tasks, but these cron jobs are burning through all my instance hours (front or back), even though the actual ...
0
votes
3answers
108 views
GAE Pricing: Always On feature and instances charging
There's something I really don't get about the new pricing. As far as I can see, I am now billed (amongst others) for the number of "instance/hours". On the other hand, a while back I've opted for the ...
0
votes
3answers
85 views
How to calculate hour:minutes from total minutes?
For example i have 525 minutes, if we will divide it by 60 the result will be 8.75
But 1 hour have only 60 minutes not 75
How can i calculate the exact hour:minutes from total minutes?
0
votes
3answers
112 views
Ruby on Rails 3 Check In/Check Out ranges by hour
I'm using Ruby on Rails 3 and I have a "visit" model which stores a check_in and check_out datetime and I need to search through visits in a general date range and count the number of "visitors ...
0
votes
1answer
74 views
UIDatePicker without “hour” label
UIDatePicker in CountDownTimer mode shows the labels like this : 4 hours | 12 mins
How can you customize to look like this : 4 | 12 mins ?
Thanks
0
votes
1answer
59 views
Problem with data <0 not being removed from data set (despite seemly correct code?)
This is my dataset (called cc)
Counter Date Hour Counts
1296 02/05/2008 0 2
1296 02/05/2008 100 0
1296 02/05/2008 200 2
1296 02/05/2008 300 0
1296 02/05/2008 ...
0
votes
0answers
56 views
MySQL date and hour issue
I have read that MySQL has some issues regarding date type. I want to get a date interval taking into account the hour. My question is cand I do a between query, or make a colomn for the hour as well?
...
0
votes
4answers
214 views
C#, how do I make a clock work with added hours?
Using Visual Studio 2008 (C#) I have to make a working clock (digital) with the current time zone hour, and a few more with different time zones, like new york, etc.
inside the form I put 2 labels ...
0
votes
3answers
120 views
Can we use add time to the PHP date() function?
I am trying to make a schedule from the current hour
to 12 hours afterwards. I am using the date() function
to retrieve the current time but how can I increment the
hours and adjust the AM/PM? Can I ...
0
votes
4answers
501 views
PHP round time and hours
I need to round some times. I would like to know how I can round a time to the next hour and use that as an int in PHP.
Ex:
24:00:02 -> 25
33:15:05 -> 34
48:40:30 -> 49
Any ideas?
...
0
votes
3answers
450 views
java HOUR and HOUR_OF_DAY both returning 12-hr time
I am using the following code to try to get the HOUR_OF_DAY (0-23) of a unix timestamp, converted to milliseconds. The timestamp '1296442971' converts to Sun Jan 30 2011 22:02:51 GMT-0500 (EST).
I'm ...
0
votes
2answers
119 views
SQL statement to get the most frequent hours and/or period for a user
I'm new to SQL Datetime.
Considering I have records in MySQL with Datetime data (as seen below),
what is the best way to get the most frequent occurring HOUR or range/period for these records for a ...
0
votes
2answers
1k views
how to set hour minute in nsdate programatically?
hi i am having 2:01:20 PM format in one label,
after some calculations , i need to change the hour, minute , of that label
that is ,
is it possible to change that label value,by converting it as ...
0
votes
2answers
700 views
WPF Edit hours and minutes of a DateTime
I have 3 TextBoxes to edit a DateTime.
What is important to notice is that those 2 TextBoxes are editing the hour and minutes of the first TextBox DateTime value.
One to edit the Date and 2 to edit ...
0
votes
4answers
918 views
regex hour:minute (hour > 24)
I would like to validate and extract the hours and minutes from a string using Regex in .NET.
Just to recuperate the two numbers, separated(or not) by :. Accepted format
h:m or m. Unaccepted :m, h:.
...
0
votes
5answers
1k views
Java Swing GUI hour glass
In my Swing program there is a JTabbedPane, when user clicks on a tab, the program takes a while to get the data and process the results, then shows the results in the selected tab, how can I display ...
0
votes
6answers
318 views
Convert dates to hours
I'm trying to work with dates for the first time, I did it something about that with Flash but it's different.
I have two different dates and I'd like to see the difference in hours and days with ...