Post Made Community Wiki by Community
show/hide this revision's text 2 added 7 characters in body

I do for most of my personal hobby projects. The main reason being that I usually create those projects because I need to solve a problem or make something easier, and I wouldn't be creating them in the first place if I wasn't going to use them. The same goes for internal tools and utilities I create while working on commercial projects.

However, when developing commercial software this is not always the case. As others have mentioned, there are many types of software for which the developer is not a target user. For example, if I was developing a medical software package for a hospital, why would I be using it if I didn't work at a hospital?

On a side note, as much as "eating your own dog food" is generally considered a good thing, it will not always help improve the quality of your software. In some cases it may even make the user experience worse.

For example, if I was developing a compiler and I often used inline assembly but never used generics, it is very likely that the compiler's support for assmbly would be better than its support for generics. Now, if I was the only one who actually used the inline assembly feature, while most other users were programming with generics, I don't think me using the compiler would benefit them much. In fact, if I was the only developer, my usage of the compiler might actually hurt them, as I may decide to prioritize the development of the assmbly feature instead of working on the buggy generics implementation.

Another example would be software wich is easy to use once installed, but very hard to install or configure for a non-technical person.

Don't get me wrong, I encourage everyone to use their own software, but I think it's naive to believe that using the software yourself is a sign "guarantee" of quality.

show/hide this revision's text 1

I do for most of my personal hobby projects. The main reason being that I usually create those projects because I need to solve a problem or make something easier, and I wouldn't be creating them in the first place if I wasn't going to use them. The same goes for internal tools and utilities I create while working on commercial projects.

However, when developing commercial software this is not always the case. As others have mentioned, there are many types of software for which the developer is not a target user. For example, if I was developing a medical software package for a hospital, why would I be using it if I didn't work at a hospital?

On a side note, as much as "eating your own dog food" is generally considered a good thing, it will not always help improve the quality of your software. In some cases it may even make the user experience worse.

For example, if I was developing a compiler and I often used inline assembly but never used generics, it is very likely that the compiler's support for assmbly would be better than its support for generics. Now, if I was the only one who actually used the inline assembly feature, while most other users were programming with generics, I don't think me using the compiler would benefit them much. In fact, if I was the only developer, my usage of the compiler might actually hurt them, as I may decide to prioritize the development of the assmbly feature instead of working on the buggy generics implementation.

Another example would be software wich is easy to use once installed, but very hard to install or configure for a non-technical person.

Don't get me wrong, I encourage everyone to use their own software, but I think it's naive to believe that using the software yourself is a sign of quality.