Complexity fills the space it's given
wilsoniumite.com·2h·
Discuss: Hacker News
Flag this post

I want to talk about an idea that I’ve started seeing everywhere during my work. To introduce it, here are a number of cases where excessive pressure in the software development process leads to certain perhaps undesirable designs.

  1. You have a slightly slow algorithm, but you have enough processing power to handle it so you leave it as is (runtime fills the computing power it’s given)
  2. The same is true for memory, see any meme about chrome ram usage
  3. You have a big class with far too many responsibilities but you don’t break it up (usually this leads to spaghettification of code)
  4. You see a class that shouldn’t really exist, it’s too simple and only used in one or two places, but you might need it later so you leave it …

Similar Posts

Loading similar posts...