Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
29k views

How to get time difference in minutes in PHP

How to calculate minute difference between two date-times in PHP?
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, ...
2
votes
5answers
741 views

Scrum meeting minutes collaboration tool

I'm looking for light weight, free and installable scrum meeting minutes collaboration tool. Twiki seems pretty heavy weight for just this purpose. I've seen several other SO threads but they all ...
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
3answers
457 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 ...
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
4answers
518 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 ...
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
3answers
628 views

Excel Overtime Calculation

I need to calculate the number of hours and mins I have gone over 1 hour/60 mins. So if I did 1 hour and 6 mins of something and i write that in one cell (E9) I want the other cell (G9) to show 6 ...
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
76 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
121 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
0answers
20 views

Android: extend from UI display switching off timer

How can i interact with the system options and particularly with the display switch off timer? I would like to create an activity which permit user to change the display time showing him a list of ...
0
votes
1answer
63 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 ...
0
votes
1answer
268 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
248 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 ...
0
votes
2answers
101 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 ...
0
votes
4answers
644 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" ...
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 ...
-1
votes
1answer
115 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 ...