Do you use project management on your personal projects

project-management

I got some projects at home, and I want to get them done already.
I was wondering, is it common to use project management for this?
Even though it would only be for me, do you use some kind of project management
for personal projects?

Best Answer

If this is a project you finish in an evening, there is no need for a project management.

If, on the other hand, you are dealing with medium or large scale project, project management is strongly recommended for both commercial and personal projects. Unless you do those personal projects just to write code, with no intent to finish them one day.

If you don't use project management for a personal project, how do you:

  • track what was done and what you must do (and it is not unusual to not having too much time for personal projects for months, so when you rediscover your projects four months later, chances are you don't remember anything about it),

  • track bugs (if you care about bugs),

  • collect requirements (because there are few chances to succeed if you start writing code without thinking about what will be the final result),

  • etc.?

This being said, you don't have to use every feature of project management.

For example, usually, I never deal with time management on my personal projects. If the project is finished in two months, well, I'm happy. If instead I work on it for three years because meanwhile, there were a lot of requests for commercial products by our customers, I don't really care, since I don't have a deadline and don't lose any money if I finish the project a few years later.

Related Topic