Is it possible for developers to take on an existing project of another developer(s) or programmer(s)?


2

Wondering if it's possible to hire a new set of developers to take on an existing project not completed by previous developers? Some complained it may be difficult to understand the codes developed by the incumbents and as sort, would prefer to start afresh.

Opinions are welcomed.

Web Services Web Dev Developers Web App

asked Jul 17 '12 at 01:48
Blank
Wanda Pebbs
11 points

3 Answers


7

Yes, it is possible. If it is difficult depends on the work others have done. IF it is code and follows the "Clean Code" principles aswell as using standard frameworks then it should easy to take over the code.

If the previous programmers did not respect general coding conventions or use exotic frameworks, it might become difficult.

Personally I would never do a "fresh start" before investigating the codebase. Some programmers prefer "fresh starts" only because they are used to other frameworks or different styles (or languages).

If have worked on development projects for years (I mean, one project going on for years). The project team changed much since I joined. I was not the first one on the project and not the last one. Still it was possible to take over the project.

After all when a codebase grows it becomes more difficult and difficult to get into. But the risk to develop it newly is not to underestimate. Nobody can guarantee you it becomes actually better.

therefore I would look at the old code:

  • did the previous developers use standard frameworks (for example Zend Framework, jQuery, Wicket etc)
  • did the previous developers use tools to verify standard quality (code style tools like Checkstyle, or other tools like Findbugs)
  • did the previous devs create Unittests (phpunit, Junit etc) and how much do the test cover the code (40% is not acceptable, >85% is very good)
  • is the code documented (Java/PHPDoc, additional documents

Then look at the new devs.

  • have they experience with the same tools, languages etc?
  • do they follow clean code standards?
  • are they willing to write docs?

Ask them, why exactly they want a fresh start. There is a learning curve when adapting old software, but this cannot be the exact reaons. It must be something like circular dependencies, multithreading issues, exotic and not maintainable frameworks etc.

Only if I knew this I would decide if it is better to start over again. Remember, it is your money and they need to tell you why you should pay for the same work twice.

answered Jul 17 '12 at 02:53
Blank
Christian
3,590 points

5

I've worked on projects where there was an existing codebase - and sometimes I had to start over from scratch, but usually not. If possible, I prefer to use the existing codebase unless there is a really good reason not to.

A competent programmer, or team of programmers, should be able to inherit code and build on it. This should be the preferred approach, as it reduces the number of errors re-introduced (after all, the existing codebase had some testing done on it) and avoids completely redoing the work of others.

That being said, on occasion, the existing code will be of such poor quality (whether this is because it is poorly written, poorly documented, or written in some esoteric framework or language) that a redo will be required.

If the new team is suggesting a redo - be sure to get other opinions to ensure that this is not a form of laziness on the part of the new developers to avoid learning the existing code.

answered Jul 17 '12 at 03:13
Blank
Elie
4,692 points

1

Yes is posible.

The learning curve for them can be large or small depending on the previous team.

If a programmer already saw the codebase and said it is best to start fresh, keep that in mind, and ask others the same.

I would recommend to start fresh if the project allows, and use a open source framework to keep consistency over the project.

answered Jul 17 '12 at 02:42
Blank
User999629
11 points

Your Answer

  • Bold
  • Italic
  • • Bullets
  • 1. Numbers
  • Quote
Not the answer you're looking for? Ask your own question or browse other questions in these topics:

Web Services Web Dev Developers Web App