The most important skill in software development
Here's an insightful paragraph from James Hague's blog post Organization skills beat algorithmic wizardry:
When it comes to writing code, the number one most important skill is how to keep a tangle of features from collapsing under the weight of its own complexity. I've worked on large telecommunications systems, console games, blogging software, a bunch of personal tools, and very rarely is there some tricky data structure or algorithm that casts a looming shadow over everything else. But there's always lots of state to keep track of, rearranging of values, handling special cases, and carefully working out how all the pieces of a system interact. To a great extent the act of coding is one of organization. Refactoring. Simplifying. Figuring out how to remove extraneous manipulations here and there.
Algorithmic wizardry is easier to teach and easier to blog about than organizational skill, so we teach and blog about it instead. A one-hour class, or a blog post, can showcase a clever algorithm. But how do you present a clever bit of organization? If you jump to the solution, it's unimpressive. "Here's something simple I came up with. It may not look like much, but trust me, it was really hard to realize this was all I needed to do." Or worse, "Here's a moderately complicated pile of code, but you should have seen how much more complicated it was before. At least now someone stands a shot of understanding it." Ho hum. I guess you had to be there.
You can't appreciate a feat of organization until you experience the disorganization. But it's hard to have the patience to wrap your head around a disorganized mess that you don't care about. Only if the disorganized mess is your responsibility, something that means more to you than a case study, can you wrap your head around it and appreciate improvements. This means that while you can learn algorithmic wizardry through homework assignments, you're unlikely to learn organization skills unless you work on a large project you care about, most likely because you're paid to care about it.
Related posts: