vote up 1 vote down star
1

(A recent question was buried because it was asked in the wrong spirit. I began this as a comment to that infamous question and then realized it would be nice to collect the wisdom of the SO community in a post of its own.)

Not many years ago I shared many of the sentiments of a starry-eyed college student: I love programming and for me it is a creative act. Why waste time with what feels like busywork?

  • What are some of the basic reasons behind applying Engineering techniques to the field of Computer Science?
  • Why are optimistic programmers wrong when it comes to developing large projects the way they would develop a small project, in an ad hoc ("fun") manner?
  • Why is building a non-trivial (more than 10,000 lines) piece of software so hard?
  • What are the benefits, tradeoffs, and lessons to be learned from being forced through this process?
flag
This is a serious question and I think a problem a lot of programmers struggle with. Why the vote to close? – Jared Updike May 7 at 16:44
1  
The question as phrased is almost unanswerable. Each of the bullet points you ask is a reasonable question, though; try asking those individually. – McWafflestix May 7 at 16:47
2  
Try making it wiki - this seems to be more of a discussion than a question – Greg May 7 at 16:47
@Greg: Thanks for the suggestion. – Jared Updike May 7 at 17:07

closed as subjective and argumentative by McWafflestix, John Saunders, Patrick McElhaney, bdukes, TheTXI May 7 at 17:12

7 Answers

vote up 2 vote down check

The basic reason to apply engineering principles to software is to get something useful done. If you're doing things for your own amusement, do it whatever way you like. If you're getting paid, you need to be able to produce something worth your salary, and engineering principles are just another phrase for ways to get something done.

The next two questions are fairly closely intertwined. If you write a large piece of software, without using sound engineering principles, each little piece is likely to depend on lots of other little pieces all over. Once we lose the ability to hold the entire thing in mind, we're basically guessing at the effects of our changes. Therefore, ad hoc techniques are going to fail on a large project.

The benefit of learning how to do things right is that you learn how to accomplish things. You can write programs that are bigger and more complex than toys, and be reasonably assured that they'll work. You can work with others and divide up the work in a productive manner. This is not only good for the bank account, but it gives me at least a feeling of accomplishment.

This is no different from any other more or less creative activity. Doodling can be fun, but if you're going to be able to draw and paint complicated things to express an inner vision you're going to have to do a whole lot of work and learn lots of techniques. Many people like playing baseball, but to do it on a professional level requires a lot of learning and practice. Going on a date with a member of the appropriate sex is enjoyable, but making a committed relationships work requires a good deal of work and learning about one's partner.

You can do whatever you like for your own pleasure (well, within legal, moral, and social limits), but there's much to be said for pleasing others, and that frequently takes work.

link|flag
Well written and encouraging answer. Thank you. – Jared Updike May 7 at 17:56
vote up 0 vote down

You can't build a space shuttle with maverick hotshot programs and no process. People die. (Even with the process, people die, but at least we can learn why and never have that same deadly bug again.)

link|flag
vote up 0 vote down

Over the last few years, I have begun to develop some real software engineering chops and gained experience architecting a 50,000 line program in the Realworld (TM), after learning my lesson---my previous 20,000 line code-base began collapsing under its own weight.

I was reluctant to cloud some of the fun and spontaneity of programming behind the process and paperwork of Software Engineering practices (like Unified Process, etc.). Now my project is big enough and with enough users that most of the difficulties involve deciding what to do next, how to meet outside needs, how to document it, test it, etc.

There are real issues that cannot be ignored (or I get fired and replaced with someone who does things right). And this is just a small project in the scheme of things. Even bigger projects have unfortunate realities:

  • Scaling: the number of programmers and the size of the code base, etc. (cf. The Mythical Man Month), documentation for future teams that may not include any original programmers, communicating with other teams on disparate parts of the project, etc.
  • Compliance (external): Audit trails, due diligence, legal compliance (e.g. Part 11 / FDA / government compliance for medical devices), etc.
  • Client Needs: Stability (avoiding introducing new bugs), legacy/compatibility, etc.

Ignoring these realities does not make them go away. You will quickly find yourself making up your own process or else adopting an existing one (or combinations of various processes) out of necessity. Many cleverer people have tried and failed.

At this point I am hamstrung because I don't have enough process. Clients (inside the company) want to know when new features will be complete and what I am currently working on. I need to make important decisions on which features to complete or bugs to work on TODAY and what to postpone or cut. A lot of this doesn't involve writing code but is just as important if not more so. The good news is that it makes the programming part more fun because the code I write has more impact.

link|flag
1  
Honestly it sounds like you're looking for meaning in your work. That's human, nothing to worry about. – Mike Robinson May 7 at 16:47
Thanks for the encouragement. – Jared Updike May 7 at 17:06
vote up 1 vote down

Define "fun". Making a house out of Lego bricks is fun when you're a kid. Does that then relate to building a house / building? The fact there is so much more to it, so much planning, so many people involved, does that then stop it being a "fun" thing to do?

Software Engineering is a job. You have to do it well in order to be good at your job. Does that mean it's ALWAYS fun? Probably not. However, that doesn't you can't get a lot of enjoyment out of doing a proper job.

link|flag
vote up 2 vote down

Process doesn't have to be tedious -- or at least so tedious that it robs you of the joy of doing your job. I enjoy my job immensely, much more so though after adopting agile methods and an agile philosophy. Read the Agile Manifesto and the 12 Agile Principles. In particular, I like this principle:

Agile processes promote sustainable development. The sponsors, developers, and users should be able to maintain a constant pace indefinitely.

To me, for a process to be sustainable, it must provide positive feedback to the participants. If your process is making you sick of your job, you cannot sustain it in the long term. Eventually, you'll suffer burn out.

link|flag
vote up 0 vote down

If it was really fun they wouldn't pay you to show up.

link|flag
vote up 1 vote down

Perhaps I'm a bit cynical, but here's my take on it. On a large project involving lots of people, it can be disastrous if somebody does something bad. 'Process', then, frequently becomes (in my experience, at least) a way of keeping ANYBODY from doing ANYTHING, the idea being that if nothing gets done, at least nothing BAD gets done. While I certainly hope no company goes to this extreme, I do think that frequently the desire is to make it hard enough to get anything done that somebody will catch any errors. As an example, our abbreviated signature list for a simple document has 7 names on it, meaning 7 people (in fact, 7 different departments, ie, electrical, mechanical, software, program management, systems, etc) all have to look at what is being written. A much larger committee has to approve the release of any software, and the testing process is rigorous. Errors still go out, but usually after an attempt at bypassing some part of the process.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.