vote up 6 vote down star
3

I have a romantic idea about programming, that a great programmer would sit down, code would effortlessly flow from their fingers to the screen, and a beautiful system would emerge.

After programming professionally for a few years my personal experience is that it's a lot of unromantic hard work, plodding, trudging. The programmer icon locked himself in his room for months. He is water, and his perseverance means it is inevitable that he will carve a canyon out of the rock.

And so often "programming" works out to spending all day trying to find exactly where to place the two necessary lines of code.

Thomas A. Edison said "Genius is one percent inspiration and ninety-nine percent perspiration."

So what is "good", not "great", programming like? Does Edison know anything about programming computers?

  • You are probably not "great". Unless you are, answer only for the "good" case.
flag
This should be a wiki, joe – Mark Brittingham Feb 3 at 16:00
i agree with brulak, who agree's with joe – Ólafur Waage Feb 3 at 16:17
I agree with Olafur, who agrees with brulak who agrees with joe – Kezzer Feb 3 at 16:27
Technically you all are agreeing with Mark, not Joe :-) – Paul Lefebvre Feb 3 at 16:38
I disagree with Paul – Albert Feb 3 at 16:50
show 6 more comments

18 Answers

vote up 2 vote down check

The desire to be a omnipotent programmer is a weakness and a distraction. It also can lead to competition and comparisons, then drama; the kind of drama that distracts everyone from the problem at hand.

It's better to focus on the task at hand and be recognized as being a consistent and reliable resource.

link|flag
vote up 21 vote down

Good programming is 99% laziness. Our job consists almost entirely of automating complicated tasks to be simple. Give it a UI, you're still making a complex task simple, under the hood.

If your job stays 99% perspiration, you're not applying the rules of using programming to improve efficiency to yourself.

link|flag
I have said this before too! good programming is all about being lazy - DRY, Agile, frameworks, high-level languages, SOA, are all about doing less work. – Nick Feb 3 at 15:51
True, but you also have to be willing to do the hard work when the above things let you down. That is what separates the good from the mediocre. – DMKing Feb 3 at 15:53
No silver bullet. There will always be hard work to do. If there's not, you aren't doing your job (or you have a clueless employer). – Steve S Feb 3 at 15:56
@Steve - Of course there's always hard work to do. When I automated 5hrs/wk of programming to 5 minutes at my old company, we were able to take on more business. If we'd continued on that path, we could've downsized more. Still, laziness. – cmartin Feb 3 at 16:03
I guess my point isn't that laziness (as we are defining it here) isn't important, just that hard work is also always going to be important. But you are right about laziness -- properly applied it can be good for avoiding needless work. – Steve S Feb 3 at 18:09
show 6 more comments
vote up 18 vote down

Good programming is 90% thinking. The rest is an implementation detail.

If you're just banging out code, then you're probably not a good programmer.

link|flag
I would go for a smaller percentage, but 90% is close enough. – stefan.ciobaca Feb 3 at 15:58
I would say "thinking and research" rather than just thinking... a lot of programming is reading, googling, asking around, etc., at any rate, much more than just sitting in deep meditation. – Nik Reiman Feb 3 at 16:13
Sure, unless you get stuck with writing the documentation... :\ – Bernard Feb 3 at 18:03
@stefan.ciobaca: replace 90% with 'most of the time'. The numbers are inexact. @Paul: How does maintenance programming which is mostly reading code and thinking about where to put or change it work into your 90% thinking calculation? – joeforker Feb 3 at 18:33
tdd changes that somewhat. And the thinking is often aloud. Getting the requirements right is not 90% thinking, and it is often 90% of the work. – Stephan Eggermont Feb 3 at 18:54
show 3 more comments
vote up 7 vote down

When you get into the zone you will know it. That's what I call the state of being fluent with your language and unafraid of your problem domain.

link|flag
Yet that will only be for five minutes before you're interrupted by the petty nuisances of the external environment. – Ross Feb 3 at 15:46
But it's still hard work. It's easy to write code, even for a crappy programmer. The hard part is writing good, correct and robust code. And that is definitely 90% perspiration. Even in the zone. – jalf Feb 3 at 15:50
That's great, but my problem domain is hundreds of thousands if not millions of existing lines of code, structure, and scaffolding. At which line is this zone of which you speak? – joeforker Feb 3 at 16:07
The "zone". I just made that up on the spot because it seemed to describe the state of mind of enjoying my work. I don't claim to be in that state all that often, but when I am it makes all the perspiration worthwhile. – Andrew Cowenhoven Feb 4 at 16:37
vote up 7 vote down

In order to wind up with good code, you're probably going to start out with really bad code. Then you'll refactor, and wind up with kinda-bad code. Then you refactor a few more times. Eventually you'll might get into a state where you feel "Whew, it was a lot of work, but this code is pretty good!"

link|flag
vote up 7 vote down

Laziness is indeed the first of the Three Programming Virtues, but it is misunderstood. Programming Perl defines it well (emphasis mine):

Good programming calls for laziness, but laziness requires hard work. Good programmers must constantly think of and implement new ways to be lazy. The first compiler had to be written in assembly, and the first assembler had to be written in machine language. Wonderfully lazy, but hard.

You don't get to call it a day after an hour just because what used to take a day takes an hour.

link|flag
That's about as close to encapsulating my programming philosophy as anything I've ever read. And the quote comes from a perl book, which just shows there's some good in everything. Excuse me while I copy it.... – Mike Woodhouse Feb 3 at 19:51
vote up 5 vote down

I think that defines programming pretty well. That is also why a programmer that can finish things is worth his weight in gold. Many programmers can come up with a good idea, being able to follow through to completion is much tougher.

link|flag
vote up 5 vote down

If by perspiration you mean hard thinking, implementing, testing, rethinking, rinse and repeat in a vastly different number of solution domains?, yes. Good programming is a lot of effort.

link|flag
vote up 2 vote down

I would tend to say that yes, good programming is 99% perspiration… with the caveat that the "perspiration" involved is mental, rather than physical.

When programming, you spend more time implementing your ideas than having them — that's an unalterable fact. A single, transcendent flash of inspiration can take you hours, days, or even weeks to fully (and correctly!) implement. That implementation doesn't just involve typing, either. You'll spend your time hitting language and API docs, searching Google, asking questions here, testing, debugging, and sometimes just staring aimlessly at your keyboard, turning things over in your head and generally doing the mental gruntwork of "inspired" creation.

The important part of being a good programmer, rather than just a decent one, is to recognize the relationship between inspiration and effort and focus your attention appropriately. Inspiration is a result of becoming a better programmer; actually putting forth the time and effort to implement those ideas causes you to become a better programmer.

link|flag
vote up 2 vote down

For business applications, it is 90% talking... Getting the requirements right.

link|flag
vote up 1 vote down

Nearly every man who develops an idea works it up to the point where it looks impossible, and then he gets discouraged. That's not the place to become discouraged. -- Thomas A. Edison

link|flag
vote up 1 vote down

Edison is hardly a good example of a "genius" - he was more of a hacker. A plodding one at that. There is a reason he said that 99% crap. It was because most of the time he had no idea what he was doing. Most of his stuff was trial and error.

link|flag
How are you supposed to know what you are doing if you are doing something new? Write, then read, a book about it? – joeforker Feb 3 at 16:29
compared to his contemporaries he was a hack. He was after patents. I guess that in the end he can be looked up to, but I choose other heroes, and again, he doesn't fit my description of a genius. – tim Feb 3 at 21:54
I guess. Of course, there are a lot of people out there that use "trial and error" for a lot of things they do that don't end up with diddly. You've got to have good ideas and know how to whittle your trials down to minimize errors. That's part of genius. – Beska Feb 3 at 22:15
On the other hand, I don't see that this has anything to do whatsoever with programming. Programming shouldn't be trial and error, and great programming isn't ever trial and error. – Beska Feb 3 at 22:16
@Beska what then do you say about "write one to throw away. you will anyway." – joeforker Feb 4 at 2:08
vote up 1 vote down

The recurring theme I have experienced is, while I build and design a new system I think its my greatest creation yet. And it is! I have never made anything so clean and simple.

But then a few months later when I look back at what I have done I see flaws and then more flaws. But I do learn from these mistakes and avoid them in future designs.

So while you may feel great while doing it, your future self will always have a better vantage point.

link|flag
vote up 1 vote down

To be a good programmer you have to be prepared to work hard at it and keep going even when it gets tedious or difficult.

The harder you work the more you achieve and the more you achieve the more rewarding it becomes.

If you allow yourself to get distracted from the job in hand then results will come very slowly and you can easily get into a negative spiral of procrastination.

I think you need a bit more than 1% inspiration though.

link|flag
vote up 1 vote down

Is good programming 99% perspiration? What should it feel like?

Wet

link|flag
vote up 1 vote down

Design + Proof of Concept is 99% perspiration until it comes to you.

Coding should be building what you know you have to do.

link|flag
vote up 1 vote down

I've never noticed how it feels, only how it smells.

link|flag
vote up 0 vote down

Depends on the kind of code you're doing. If you're writing new code in a fuzzy system and a small team then maybe.

I'm currently in maintenance mode and I find the best work I do is when I think of a number of solutions to a bug dismiss them all as crap and finally find a solution that has the minimum impact (in terms of API changes etc). So that's like 1% perspiration.

link|flag

Your Answer

Get an OpenID
or

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