Tagged Questions
The seconds tag has no wiki summary.
4
votes
1answer
2k views
Android difference between two dates in seconds
I've tried different methods around the web but couldn't make it work.
Cursor cursor = sqlite.myDataBase.rawQuery("SELECT StartDate, EndDate FROM Tracks Where Id="+'"'+trackId+'"',null);
...
3
votes
2answers
152 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
76 views
Number of seconds since the beginning of the day UTC timezone
How do I find "number of seconds since the beginning of the day UTC timezone" in Python? I looked at the docs and didn't understand how to get this using datetime.timedelta.
3
votes
3answers
1k views
Get number of seconds since
I am writing an application in C#, and I would love to know how you can get the number of seconds in each month. For example, today, February the 3th, I would love to have:
January: 2678400
February: ...
2
votes
1answer
40 views
timestamp too big to be saved in a int variable
I'm working on my own calendar application, and I'm currently facing the problem that, as soon as I enter a time later than ca. 2040 the number (seconds) gets too big and can't be saved in a variable ...
2
votes
1answer
24 views
Creating and displaying game objects every 3 seconds on the screen
I am having trouble in creating and displaying multiple game objects on the screen for every 3 seconds. there is no problem when there's only one object but if I want to create multiple, the problem ...
2
votes
4answers
1k views
PHP — Convert milliseconds to Hours : Minutes : Seconds.fractional
I've got a script that takes in a value in seconds (to 2 decimal points of fractional seconds):
$seconds_input = 23.75
I then convert it to milliseconds:
$milliseconds = $seconds_input * 1000; // ...
2
votes
3answers
1k views
Android Clock Seconds Hand
I'm new to android development and i was wondering whether it's possible to add a "seconds hand" to the default analog clock in android?
I already have a working clock with a dial, hour and minute ...
2
votes
3answers
971 views
PHP: add seconds to a date
Hi all and happy holidays,
I'm getting quite confused doing the following:
I have $adate; which contains:
Tue Jan 4 07:59:59 2011
I want to add to this date the following:
$duration=674165; // ...
2
votes
4answers
270 views
Any class in C# that can tell me clock tick, seconds consumed by a function
Is there a class in C# that can give me clock ticks, seconds consumed by a method? I guess I have two wrap that functionality around function to time the ticks and seconds taken up.
2
votes
2answers
1k views
c# datetime to sql with including seconds
i am trying to save (using linq) the date and time to an SQL field (datetime data type) using Datetime.Now but the seconds are not coming through. Does anyone know how to rig that up?
Ta.
2
votes
1answer
166 views
Is there a way to count the number of seconds since bootup?
Is there a way to count the number of seconds(ticks?) since bootup even if a user change the time on computer?
1
vote
2answers
58 views
Why does adding a day to a time change the fractional part of seconds?
pry(main)> time = Time.now
=> 2012-01-20 00:10:44 +0000
pry(main)> (time + 4.days).to_f
=> 1327363844.9709609
pry(main)> time.to_f
=> 1327018244.970961
1
vote
1answer
94 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
194 views
using nanosleep() in c
could someone tell explain to me the use of tim.tv_sec and tim.tv_nsec in the following. What are those values. I would like to sleep execution for half a second, which is 500,000 microsecs. Could you ...
1
vote
3answers
82 views
PHP convert remaining seconds (from now) into date
Good morning, guys. I was just thinking about the small PHP crawler, that could browse my 2 favourite websites and show me some info about auctions from 1 category.
I haven't started to write ...
1
vote
1answer
482 views
UIDatePicker display seconds
Is there any chance to display seconds in uidatepicker? I don't really see reference for this.
1
vote
7answers
430 views
.NET constant for number of seconds in a day?
Does .NET have a constant for the number of seconds in a day (86400)?
0
votes
5answers
78 views
jQuery: Wait/Delay 1 second without executing code
I can't get the .delay method working in jQuery:
$.delay(3000); // not working
$(queue).delay(3000); // not working
I'm using a while loop to wait until an uncontrolled changing value is greater ...
0
votes
1answer
78 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
1answer
66 views
How to go back in time with cygwin date, returning dates with static second values
I am using git, trying to sync to the first commits of each month for the last year. I want to be able to go back month by month, on the first day of the month, ON THE FIRST SECOND OF THE MONTH. or ...
0
votes
3answers
125 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
51 views
Mouseenter on div “container”, show div, “showhider” and after 2 secs, hide div, “showhider”. But if mouseover on “showhider”, dont hide div
So far this is my code. Please try it for yourself here(DB)
But there are few glitches, eg.: When I move my mouse over container, then over showhider the clearTimeout is not happening, hence the ...
0
votes
2answers
157 views
jquery timer write time remaining
I have a paragraph field where I want to put the seconds remaining from this timer:
HTML:
<p>xx seconds remaining</p>
JavaScript:
window.setInterval(retrieveLog, 20000);
How can I ...
0
votes
1answer
118 views
How to convert a date time (in a specific timezone) to epoch seconds
I have a datetime object in a specific timezone namely 'Asia/Tokyo'.
I am getting this datetime using $dt = DateTime->now(time_zone => 'Asia/Tokyo');
The output of this is in the format ...
0
votes
2answers
357 views
How to make an horizontal progress bar depend on seconds in Android. Please help!
I want to know how to make an horizontal progress bar depend on seconds.
For example, what code i have to write to the progress bar start in 0% at 0 seconds and reach 100% after 60seconds.
Resuming ...
0
votes
2answers
98 views
How to run some code for 20 seconds in android? Please help!
I want to run some code for 20 seconds precisely. It is similar to a loop but instead of having a variable I have time (in seconds).
I should have a time condition like this:
do
{ variable++ }
...
0
votes
1answer
203 views
Calculate Date from seconds, since the A.D 01-01-0001
I want a .NET C#\VB.NET code for followng problem
I want to calculate the Date from seconds for example I have 1304393880 seconds and this represents 2011-05-06 and 0900 hrs .
So these seconds keep ...
0
votes
0answers
135 views
Django filter for converting the number of seconds into a readable form
I have model:
class Track(models.Model):
artist = models.CharField(max_length=100)
title = models.CharField(max_length=100)
length = models.PositiveSmallIntegerField()
where length is ...
0
votes
2answers
61 views
printing seconds one by one in loop with sleep() function
for(j = 1; j < 11; j++)
{
printf("%ds ",j);
sleep(1);
}
i have expected that this code will print "1s 2s 3s ... 10s" where there is 1 second interval ...
0
votes
4answers
656 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
261 views
PHP strtotime without leap-years
With regards to this thread, I've developed a partial solution:
function strtosecs($time,$now=null){
static $LEAPDIFF=86400;
$time=strtotime($time,$now);
return ...
0
votes
2answers
89 views
big values for strtotime()
I tried
echo strtotime('129:00');
but it will have an empty output.
This
echo strtotime('03:00');
will have 1288339200 as the output.
I guess strtotime() won't accept huge values?? What's the ...
0
votes
3answers
1k views
Ruby/Rails - How to convert seconds to time?
I need to perform the following conversion:
0 -> 12.00AM
1800 -> 12.30AM
3600 -> 01.00AM
...
82800 -> 11.00PM
84600 -> 11.30PM
I came up with this:
(0..84600).step(1800){|n| ...
0
votes
2answers
2k views
Convert seconds to Days, Minutes and Seconds
Hey everyone. I've continuing to learn C++ and I've been set the 'challenge' of converting seconds to format as the Days,Minutes and Seconds.
For example: 31600000 = 365 days, 46 minutes, 40 seconds.
...
0
votes
3answers
1k views
How to get seconds since epoch (1/1/1970) in VBA?
How can I get seconds since epoch (1/1/1970) in VBA?
0
votes
4answers
775 views
Lat Long to Minutes and Seconds?
Google Maps gives me the Lat and Long of a location in decimal notation like this:
38.203655,-76.113281
How do I convert those to Coords (Degrees, Minutes , Seconds)
-1
votes
3answers
93 views
AS3 How to add seconds to (game) timer after hittest?
I have a timer and a dynamic textfield wich displays the time.
Everytime my movieclip hits an enemy I want the timer to add 4 sec. to the current count.
I would like to know why this isn't working:
...
-2
votes
1answer
91 views
How to get the number of years, months, days, hours and mins of a certain number of seconds?
Given an arbitrary number of seconds, how can I get the number of years, months, days, hours and mins?
The algorithm should first compute the maximum number of years, then the number of months and ...