show/hide this revision's text 3 added 457 characters in body; added 112 characters in body

I have seen this formula somewhere:

skill = complexity of problem / complexity of solution

In other words, it requires skill to create a simple solution to a complex problem. If somebody purposefully designs and takes pride in complex overengineered solutions, then he is unconsciously incompetent.

Personally, what helps me to keep my designs simple, is the TDD cycle. First write a test that specifies what you're trying to reach, and then produce "the simplest thing that could possibly work"work". And every now and then, reflect on what you have produced, and think about how to make it more simple.

Never build extra flexibility and abstraction layers into the system, until it is required by something that you have now. Changing the code is easy, when you have a good unit test suite, so you can add those abstraction layers later, when the need arises, if it ever arises. Otherwise, "you ain't gonna need it".

Some symptoms of too complex design are when writing tests is complicated. For exampleIf the tests require a long setup code, if maybe you have too many dependencies or in some other way too much complexity. If you run into concurrency bugs, then maybe you should think about how to design the system so that concurrency is restricted to the absolute minimum number of classes. Maybe use a message-passing architecture, such as the Actor model, and make practically every component single-threaded, even though the system as a whole is multi-threaded.

show/hide this revision's text 2 added 664 characters in body; added 14 characters in body; added 53 characters in body

I have seen this formula somewhere:

skill = complexity of problem / complexity of solution

In other words, it requires skill to create a simple solution to a complex problem. If somebody purposefully designs and takes pride in complex overengineered solutions, then he is unconsciously incompetent.

Personally, what helps me to keep my designs simple, is the TDD cycle. First write a test that specifies what you're trying to reach, and then produce "the simplest thing that could possibly work". And every now and then, reflect on what you have produced, and think about how to make it more simple.

Some symptoms of too complex design are when writing tests is complicated. For example, if you run into concurrency bugs, then you should think about how to design the system so that concurrency is restricted to the absolute minimum number of classes. Maybe use a message-passing architecture, such as the Actor model, and make practically every component single-threaded, even though the system as a whole is multi-threaded.

show/hide this revision's text 1

I have seen this formula somewhere:

skill = complexity of problem / complexity of solution

In other words, it requires skill to create a simple solution to a complex problem. If somebody purposefully designs and takes pride in complex overengineered solutions, then he is unconsciously incompetent.