Questions tagged [time-estimation]
43 questions
2
votes
2 answers
Estimated cost for the SP in asp.net
In my asp.net application, I want to show the user that when he is submitting the form how much time does that stored procedure is going to take. Is there any way I can find out from asp.net application? Just like we have estimated query plan with…

Zerotoinfinity
- 6,290
- 32
- 130
- 206
2
votes
1 answer
JIRA Remaining estimate
JIRA User Story Time Tracking
I recently adopted JIRA as a Scrum agile development tool.
This is my scenario:
Scrum board
Estimation Statistic: Original Time Estimate
Time Tracking: Remaining Estimate and Time Spent
Our Product Owner populates…

GC Soporte Epsilon Prog.NET
- 59
- 2
- 4
2
votes
4 answers
How do I estimate the execution time of a SQL Server Update Statement?
I would like to perform an update statement impacting 10 million rows. It is a simple update like
UPDATE Table
SET ColumnX = 0;
I did notice that a simple SELECT like
SELECT Column
FROM Table
takes about 34 seconds.
As it is a table used in…

Jennifer
- 23
- 1
- 5
1
vote
2 answers
How to get PHP cURL info such as execute time and number of HTTP request made
I am trying to calculate
No of HTTP request made by cURL to example.com
Total time taken for cURL to get string from example.com
No of Redirect count.
Code :
function file_get_contents_curl($url) {
$agent = $_SERVER['HTTP_USER_AGENT'];
$ch…

Mehul Kumar
- 461
- 8
1
vote
0 answers
how to estimate the life of a NOR flash
I have ISSI IS25LP016D flash, 16Mbit, 4KB sectors, 256 bytes program pages, 100000 erase cycles.
I use a filesystem that allows wear leveling, specifically littlefs.
Assume that I need to write logs in the following way:
each record of the log is N…

mastupristi
- 1,240
- 1
- 13
- 29
1
vote
1 answer
How does a project time estimation changes by adding more programmers?
Possible Duplicate:
Estimating a project with many unknowns
We have an estimation about our project time by man/hour. Now we want to know how much our project will take if we have more than one programmer? Do you have any idea how to estimate…

Saeed Salmani
- 31
- 1
- 1
- 5
1
vote
1 answer
Calculate estimated time remaining
I made a script which installs several applications (Adobe Reader, Spotify, Microsoft Office, etc.). It's used after Windows installation. I would like to display estimated remaining time of current installation.
The problem is it differs per…

shawwy
- 122
- 1
- 12
1
vote
2 answers
Integrating lesser known e-payment gateways full of surprises?
I've integrated about half a dozen e-payment gateways, from popular ones (like paypal) to not-so popular ones.
It seems every time I try to integrate a non-popular epayment gateway, I exceed my original time-estimation.
I think I'm a decent…

John
- 32,403
- 80
- 251
- 422
1
vote
2 answers
Java downloading a file and retrieving current download completion
In a program I have that auto-updates, I need it to download a specific file (working already) and it does so with the following code:
public static void getFile() {
try {
URL url = new…

Bryce Hahn
- 1,585
- 4
- 16
- 26
1
vote
5 answers
How do estimate the time line to an Research and Development task
What should be the main point to keep in mind when estimating the time for Research and Development task. Suppose I have to estimate "ABC" task using "WPF" technology and I have no experience for it, I need to some R&D for it.

Firoz
- 7,224
- 10
- 41
- 56
0
votes
2 answers
Compare the computation speed of (a+b)*c and a*c+b*c
I've just learned that additive operation is faster than multiplicative operation in C. Therefore, I'm curious whether (a+b)*c would be calculated faster than a*c+b*c ?

royal grasshopper
- 27
- 5
0
votes
0 answers
from one language to another : I currently have a program in R, but I need to convert it in Python
I am already familiar with the possibility to "call" some R functions from python, but what I'm looking for is a way to convert R code to Python code.
I doubt that there's an automatic way to do it '^^
(I know that it's possible to convert java code…

KDlotusk
- 1
- 1
0
votes
0 answers
Estimate time remaining with variable runtime
I have a project in Java that is scraping a fairly large amount of HTML and I'd like to display an estimate of the time remaining.
I thought I could grab the time (in milliseconds) at the start and at the end of each loop and then subtract to get…

Fxguy1
- 85
- 6
0
votes
0 answers
Will Caching affect time evaluation loops?
Consider a situation where I use the following code to evaluate time taken by a function to execute.
long double Measure_micro_sec ( void (*foo) () )
{
auto start = std::chrono::system_clock::now();
for(long i =0; i <1000000; ++i)
{
…

WARhead
- 643
- 5
- 17
0
votes
1 answer
Running Time Estimate for Stream Twitter with Location Filter in Tweepy
PROBLEM SOLVED, SEE SOLUTION AT THE END OF THE POST
I need help to estimate running time for my tweepy program calling Twitter Stream API with location filter.
After I kicked it off, it has run for over 20 minutes, which is longer than what I…

Counter10000
- 525
- 1
- 8
- 25