Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
67 views

Differences in Elapsed Ticks property of Stopwatch

ElapsedTicks & Elapsed.Ticks are properties of Stopwatch, which I think should be same. And in case they are same, why they should give different outputs ? Code : Stopwatch spwt = ...
4
votes
3answers
336 views

Correct way to logging elapsed time in C++

I'm doing a article about GPU speed up in cluster environment To do that, I'm programming in CUDA, that is basically a c++ extension. But, as I'm a c# developer I don't know the particularities of ...
2
votes
3answers
211 views

php mysql time elapsed calculation

I have an app [iphone], that sends to a server some times [using json], so the times look like hh:mm 24 hour format, the time gets saved in the db as varchar, I need to calculate the elapsed time = ...
1
vote
2answers
35 views

Test the first time the Elapsed event is raised. Efficient or useless?

I have a timer and I want to know if its efficient or not to test if it's the first time the timer raise the elapsed event or not (I want change the Interval property after the first time the Elapsed ...
1
vote
2answers
45 views

Python - How to calculate the elapsed time since X date?

I have a database table with articles and each one of this articles have a submitted date. I need to calculate the days and hours since the article have been published in the database, like: This ...
1
vote
2answers
62 views

Calculating remaining time to a given benchmark (in weeks) in Oracle

Here's what I'm up to: I have some data that represents a goal that students are supposed to reach by a given benchmark (in this case, June 15th). I'm looking at a transactional table and running ...
1
vote
1answer
55 views

Display elapsed time with month an day support in JAVA

I need to display elapsed time in my application form. I currently do this using this code: AppTimer = new Timer(); AppTimer.scheduleAtFixedRate(new java.util.TimerTask() { ...
1
vote
2answers
71 views

Wait for random amount of time, then start updating elapsed time in a UILabel (iPhone)

I'm trying to implement a button that starts a timer after a random period of time (between 0-10s). While the timer is running it should update a label every 0.005s to show how much time has elapsed. ...
1
vote
2answers
635 views

timespec on windows compilers

On posix it is possible to use timespec to calculate accurate time length (like seconds and milliseconds). Unfortunately I need to migrate to windows with Visual Studio compiler. The VS time.h library ...
1
vote
3answers
318 views

How to get the time elapsed running a function in C++

I tried some codes by googling : clock_t start, end; start = clock(); //CODES GOES HERE end = clock(); std::cout << end - start <<"\n"; std::cout << (double) (end-start)/ ...
1
vote
3answers
489 views

For simple C cmd programs: how to add “program executed in 12,345 seconds”?

I'm a windows user, and I'm learning C. I use Codeblocks and visual c++ 2008 express at home to write simple C command line programs (I'm a beginner) and I find really useful when codeblocks adds a ...
1
vote
1answer
371 views

What is the appropriate initial value for a ElapsedTime Performance Counter?

What is the proper initial value for an ElapsedTime performance counter? When my app starts up I am setting the .RawValue of the performance counter instance to 0 but that is not correct. It looks ...
0
votes
0answers
79 views

how to measure elapsed time accurately for long time in C#/.NET

I need to measure elapsed time accurately for a very long time (over months) during application execution with millisecond precision. The application (C#) shall run 24x7 and elapsed time measure ...
0
votes
1answer
523 views

iPhone - NSDateComponents/NSCalendar and Elapsed time (e.g., Scanned 3 hours ago.)

I'd like to display to the user the following elapsed times: e.g, Scanned 13 seconds ago Scanned 2 minutes ago Scanned 1 hour ago Scanned 2 days ago Scanned 1 month ago Scanned 1 year ago I use ...
0
votes
1answer
436 views

How to display text underneath playing video in android?

I am developing an application in which I used VideoView to play a video. What I want is I need to display some text underneath the playing video and the text should be changed as the video plays I ...
0
votes
1answer
35 views

an item in a webshop has a timestamp, if x time passed i want the item removed

so, all the items in my webshop have timestamps on them. the date is updated every time the item is available and it will not update once the item has become unavailable. so far so good. for example ...
0
votes
1answer
417 views

How to get jQuery countdown plugin to work

I am using the jQuery countdown plugin and some how i just can't get it to work. the documentation on the plugin is not that helpful. I got to implement the basic/minimal version but after that I'm ...
0
votes
1answer
138 views

MySQL: Strange result when subtracting Date value and NOW()

I just tried to insert two rows with the current datetime and then calculated the elapsed time since that date. Here are the rows from my table after two insertions and using NOW() function to set the ...