The minute tag has no wiki summary.
0
votes
1answer
19 views
Crontab keeps running
I have the following cronjob (crontab) running on an amazon ec2 server with Linux AMI:
*/20 8-22 * * * php -q /var/www/html/xxx.php
Unfortunately, the script keeps executing every 20 minutes AFTER ...
0
votes
1answer
179 views
How do i change the Android TimePicker minute intervals?
I am writing an application where the user needs to specify a given point in time, but i can't seem to figure out how to set the minute values that the user can choose from, to only use increments of ...
0
votes
2answers
51 views
Sort by minute doesn't work
I'm trying to sort my photos by hour and minute but it will not catch the minutes - it's just keep saying that nothing exists for that hour and minute. If I'm trying to sort only after the hours, it ...
0
votes
1answer
27 views
MS Access - on lost focus calculation
I am working on MS Access database and creating a form in access.
I have a field total_hrs. here I need help.
I want to just fill minutes and it should be converted into hrs.
for that I am using ...
1
vote
4answers
131 views
How to sum 5 minute intervals in R
I have a dataset with precipitation records for every minute, for 6 different stations. I'd like to have summations for every 5 minutes, for every station.
These are the first 5 rows of my dataset ...
3
votes
3answers
55 views
Return the time(int) in a String method
So I have this method that returns the time when a tv-show ends(e.g.: 21:15),but when the hour or minute is under 10 I need the method to return something like this : 21:05.
I tried like this, but ...
3
votes
1answer
61 views
Add Field that has hrs and mins value
Im trying to display the total for each project group. The Problem is that all the values for that field are recorded like so:
0h 06m
The sum is displaying as:
0
with the following code. How do ...
1
vote
3answers
226 views
C# sorting values with respect to time
i wanted to create a program like this .
For every minute the time should be printed in the format of
h:m .For every 5 min it should print "break" this should continue for 24 hours ..
like this
0:0
...
0
votes
1answer
1k views
how to make digital clock display only hours and minutes
I have a digital clock on an activity in my app and I want to display only hours and minutes on it and don't want to display seconds.
0
votes
1answer
1k views
SQL - Rounding off numbers [duplicate]
Possible Duplicate:
Accuracy in rounding numbers
I have the following requirement-
Get the A_MINUTES column value from TableA for all rows
Sum the A_MINUTES.
Convert the summed minutes ...
4
votes
1answer
5k 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 ...
5
votes
3answers
8k 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, ...
0
votes
1answer
584 views
Building a countdown clock in JavaScript
I'm building a countdown clock in JavaScript and am having trouble formatting it exactly how I want. Basically, I have a variable called totalTime which is initially set to the total number of seconds ...
0
votes
3answers
590 views
jQuery - 3 minutes in seconds
I thought this would be easy, but seems i either to way to short or way to long.
I am trying to make it sign the user out after 3minutes
this is the count down I thought would work I have tried ...
0
votes
1answer
117 views
PHP Time Differences Problem
$myTime = "1311059513";
$now = time();
$timeDiff = ($now - $myTime)/60;
I'm trying to subtract $myTime from $now to get the difference and divide by 60 to get the minutes difference.
For some ...
1
vote
4answers
2k views
Change an image every minute using the computer's clock to time the changes
I want to change an image every minute. When the computer's clock moves from 8:50 to 8:51 then to 8:52 all the way back to 8:49 I want my picture to change from 0001.jpg to 0002.jpg to 0003.jpg all ...
0
votes
1answer
694 views
Extract Minutes Control from time picker in android
Hi can any tell me how to get a control similar to the minutes control in time picker control. Is there any other way of achieving it. All that i need is just the minutes selector.
Thanks in Advance
0
votes
2answers
655 views
perl POSIX::strptime - my data looks like 9:31:00 AM - I want to extract the minute and perform a calculation
I want to extract the minute from a specified time that exists in the 2nd column of a comma delimited file and perform a calculation. The format of the time is as follows:
9:31:00 AM
I want to ...
1
vote
2answers
145 views
Taking information from other apps (specifically iPhone's Phone app)
I'm trying to figure out if there is any way to track the usage of a phone's minutes from an iPhone app. I think there must be a solution since iData Usage can track the data a phone has used, there ...
-1
votes
4answers
2k views
Convert minutes into seconds in php
I have a time related php question!
I have html input boxes that asks the user for minutes and seconds like so:
<input type="text" name="n" size="2">minutes
<input type="text" name="s" ...
3
votes
2answers
4k 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
1k 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 ...
1
vote
1answer
3k 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
votes
1answer
140 views
BATCH Windows: 30 minutes
I want to do something:
i have a LARGE batch file, but this is what i want to apply to HOLE the batch:
After 30 Minutes, it should display a message.
How is this possible, and can i set this to the ...
2
votes
3answers
542 views
Run Function Every Minute In Cocoa
I am wondering if there is some way to run a function every minute in Cocoa. I, personally, will be using this for saving content as the user types it in case they quit - But I have seen this effect ...
3
votes
2answers
2k 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),
...
40
votes
4answers
77k views
How to get time difference in minutes in PHP
How to calculate minute difference between two date-times in PHP?