Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

well, the question focuses more about website development.
but it is still interesting,
how can one assume the time it will require to finish
a task which involves programming,
speaking of the whole process,
including design throw programming and debugging.

of course this is relating for the question
how much time it will take to develop a site.

it's a good answer to a boss requiring an estimate,
or a client.

thanks, arye

share|improve this question
Duplicate of stackoverflow.com/questions/353722/… which was closed because it was a duplicate of the migrated question programmers.stackexchange.com/questions/39386/… – JYelton Feb 11 '11 at 17:14
peachy, can't delete :( – shevski Feb 11 '11 at 17:18

2 Answers

up vote 1 down vote accepted

I tend to use the following approach:

  1. Break down the entire application into coarse grained functionality.
  2. Categorize these coarse grained items into 3 further categories: - Must have - Good to have - Good to have if time permits
  3. I attack the "Must Have's" 1st by breaking them into finer grained functional items.
  4. These fine grained functional items then lead me to a set of high level components. This is the most tedious part as it needs some experience in translating the functional elements into modules/ classes and determining the overlaps and eliminating duplicates.
  5. After step 4, I will be left with modules, some of which I can estimate the accurate amount of time needed to construct (based on previous experience in building/ configuring such modules). The others would be items which: - will require an educated guess - have no clue of the construction time required for it. These items , if time permits, will have to be prototyped to get a sense of the construction time. Else, attempt to break it down even further and then estimate based on the worst possible scenario. Note - the elements for which you do not have even a clue of the construction time need to be minimal. I generally allow about 10% of the project time as threshold for such items. In case it exceeds this threshold, the safest approach is to build prototype that aid in estimation.
  6. Finally, I also try and run it with my team buddies and try and compare the numbers with them. Construction for me = Design + Unit Test + In line comments + Code + Integration Test + Integration.
  7. While I do this very rigorously for the "must haves", for the "good to haves" I am a little more lenient.
share|improve this answer

I tend to write down all the features and functions of the website in a bulleted list. Then, for everything on that list, break it down into smaller functions that will be required to do the task required on that page. Then, remove duplicates, give it an hour per function (if you think it'll take longer than an hour total to write/test/reform ONE function, consider breaking it down farther) Then, plus 2-4 weeks to string it together.

Should be a slightly educated wild-ass guess. This type of stuff is very unpredictable.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.