vote up 341 vote down star
407

Programming has given me a lot of bad habits and it continues to give me more everyday. But I have also gotten some bad habits from the mindset that I have put myself in. There simply are some things that are deeply rooted in my nature, though some of them I wish I could get rid of.

A few:

  • Looking for polymorphism, inheritance and patterns in all of God's creations.
  • Explaining the size of something in pixels and colors in hex code.
  • Using code related abstract terms in everyday conversations.

How have you been damaged?

19  
Syntax error: identifier 'habbit' not found. (You mean 'habit') – Jared Updike Oct 2 '08 at 21:25
53  
Roses are #FF0000, violets are #0000FF – Chris Noe Oct 3 '08 at 12:33
20  
I love how this implies that programming isn't real life, yet everyone glosses right over that. – Jonathan Tran Oct 3 '08 at 20:11
21  
I just can't imagine many people would go through all 240+ answers. This site isn't meant for discussion type questions, and this is a perfect example. GTKY questions are the worst type of discussion questions too... Recommend closing - no new answers are going to be advanced. – Adam Davis Nov 4 '08 at 7:37
31  
@all who wish to stop these posts: I love it when you say pollute the system... People keep posting stuff on internet and never once remove a single blog post and the internet is not yet polluted. It's impossible to pollute a website, if it's well designed and organised. If you're not Googling for "bad habits programming" you will not end up here. If you're interested in answers to YOUR questions, then check YOUR questions and STEER CLEAR of these off-topic discussions, as you named it. – MasterPeter Apr 18 at 14:08
show 24 more comments

locked by Jeff Atwood Aug 28 at 7:31

closed as no longer relevant by Jeff Atwood Aug 28 at 6:24

599 Answers

prev 1 7 8 9 10 11 20 next
vote up 5 vote down

I find myself wishing people came equipped with a -q or --quiet flag/option.

link|flag
vote up 0 vote down

I can't stand owning ANYTHING that doesn't have preferences!

link|flag
vote up 13 vote down

The phrase "I could count them with the fingers of my hand" doesn't suggest scarcity to me.

I say, "cool, there were like 1023 of them".

link|flag
2  
I can count to 1023 on two hands, but only 31 on one... – Sparr Jan 29 at 2:31
3  
What about tri-state fingers, also counting half-unbent as a discrete value? Never mind hand orientation as another virtual finger. Never mind the arthritis you'll get from contorting your fingers into patterns that they can't do without excessive pain. – JeeBee Jan 29 at 16:51
show 4 more comments
vote up 2 vote down

I see interfaces everywhere i.e.

I think of a chair, a stool, and pants as all implementing the IFitAss interface.

link|flag
vote up 13 vote down

Like the old joke about good programmers, I often catch myself looking both ways before crossing a one-way street.

Not sure if you would consider that habit "bad".

link|flag
1  
Down here it is a vital survival instinct. – Sylverdrag Mar 6 at 15:10
2  
I'm from the US. Last time I visited London, I developed the habit of looking both ways, after a constable had to stop me and told me, "We lose more tourists that way." – David Thornley Aug 5 at 21:07
show 1 more comment
vote up 0 vote down

Getting in trouble for teaching my nephews how to count in binary.

link|flag
vote up 0 vote down

None except sedentarism, (which aint's programming's "fault" but my own).

I think most of the answer on this topic are forced attempts at drama/humor. Well.. I'm just being a hypocrite, I liked a bunch of them.

link|flag
vote up 1 vote down

I always end up using variables in my day to day speech : "I am going to need X widgets."

link|flag
vote up 0 vote down

Well, as a programmer, you get used to having arbitrary levels of 'undo'. It is useful sometimes to wipe out what you have done or to stash it away temporarily and start over. Real life just doesn't give you the chance to have a doOver whenever you want it. Sigh.

link|flag
show 1 more comment
vote up 1 vote down

Working with other people. Computers do exactly what you want and if an error occurs its your fault.

link|flag
vote up 2 vote down

I do binary search on everything, it works quite well though :)

link|flag
show 2 more comments
vote up 1 vote down

Once in college a friend showed up to class late. As he was frantically copying down the notes from the board, the teacher erased them. The next time he looked up, they were gone and I saw him tap his desk with his pinky & thumb on his left hand.

When I asked him why he started laughing. He had absent-mindedly Ctrl-Zed the board to get the lecture notes back.

link|flag
show 3 more comments
vote up 1 vote down

I get really annoyed at stores/restaurants when I see something that could be optimized by parallelization or better queuing. Imperfection in processes haunts me ^^

link|flag
vote up 0 vote down

i use breadth first search when looking for stuff in my house. if it is important it should be on top of its respective stack. i end up running circles inside my house searching the same stack 14 times before looking at the 2nd element and finding what i wanted.

link|flag
vote up 1 vote down

I can't understand why everyone doesn't use a version-control system for everything on the computer. I use it for everything from taxes to wedding announcements.

I find that most non-technical folks like the idea (having all your documents versioned with notes), but introducing the concepts is hard for some reason.

link|flag
vote up 2 vote down

Responding to questions using boolean logic, eg.

Question: What's the opposite of inclusive? Answer: Not inclusive.

link|flag
show 1 more comment
vote up 0 vote down

I get totally irritated when someone uses the word "I think blah blah" when they are guessing something. Either they know it or they dont and should say whatever they exactly mean.

link|flag
vote up 5 vote down

I flinch whenever I see low-resolution images printed onto official-looking paper. (low-res as in you-can-count-the-pixels-low-res, that is)

link|flag
vote up 0 vote down

One of the guys at work regularly says "sadface" and "sigh". I want to bash him over the head with his laptop!

link|flag
show 1 more comment
vote up 1 vote down

Is that counting in Zero or One-Indexing?

Is that homework interval 5...9 open or closed?

link|flag
vote up 1 vote down

I organize all of my papers as a stack. It looks unorganized to others, but it makes perfect sense! Papers, houndouts, etc I've recently been given or worked on are always near the top, and as things get older, they sink down. Why others cant understand why this is useful is beyond me...

link|flag
show 1 more comment
vote up 8 vote down
  • A very literal sense of argument, and backtracking to hunt for the logical truth - my girlfriend absolutely hates that.
  • I assume that everyone is rational

As to lifestyle bad-habits:

  • bad slouchching
  • being in a chair and consume a massive amount of caffeine
link|flag
show 1 more comment
vote up 2 vote down

I keep wishing for a debugger with breakpoints for my cooking.

link|flag
show 1 more comment
vote up 0 vote down

Thinking about everything first and foremost in terms of how it can, and therefore will, go wrong. Not as universally appropriate in real life as it is in coding, and tends to make people think of you as a pessimistic curmudgeon.

link|flag
vote up 2 vote down

Last night my wife and I were planning an app on the white board. She erased a spec far too quickly, and I immediately said "Undo!" That, and I recall once in the past reading a book or magazine with somebody, and as they progressed to the next page I asked politely that they "Scroll back."

Like the original poster, I too view God's Green Earth as a massive application comprised of numerous instances of billions of objects all implementing numerous interfaces - it blows my mind that reality is able to process all of these calculations and manage all of this memory so neatly!

Furthermore, my wife finds conversing with me to be annoying at times because I cannot accept a conclusion unless it logically makes sense, or all possible exceptions have been covered. Today she said, "I'll never live in Alabama." I then corrected her, "You mean, 'I do not want to live in Alabama.' We may very well have to live there. I don't plan on it, but it is POSSIBLE." Needless to say, much of our discussions could be much shorter if I could just let that type of stuff go :)

Programming has turned me into a social-reject incapable of having an intelligible conversation with real people :)

link|flag
vote up 1 vote down

I know this has been touched on a bit before, but I'm increasingly intolerant of people answering a question with another question, even if it implicitly contains the answer. The assumption is that they know what I'm driving at, and jump there ahead of me. But how do they know why I want to know what I just asked. There could be any number of reasons I wanted to know that.

Just ... answer the question, then I can decide what to do, for whatever reason I might want to do it. I've had my share of frustrating conversations caused by someone's assumption that what I really meant was big X, when all I asked was small x.

And I call that a bad habit, because assumptions are just what people do, and have to do, and most of the time they're ok. But I still get mad.

link|flag
show 1 more comment
vote up 0 vote down

I dont know what i was thinking when i wrote this. I know i must have been laughing. Maybe i'll rephrase this answer someday.

link|flag
show 1 more comment
vote up 1 vote down

I find that I want to tag things in real life. This happens most often with sections of books, but another example might be passing a restaurant I'd like to try some time. I want to slap "restaurant, thai, todo, food" on that building.

link|flag
vote up 1 vote down

This isn't so much of a habit that I've developed...it's more like everyone around me developed the habit that just because I know how to program, I know everything else about computers (hardware, networking, etc.)!

link|flag
show 1 more comment
vote up 1 vote down

When I see something wrong, that is, all the time, I want to report it, file a ticket or something. "They can't fix it if they don't know about it!"

link|flag
prev 1 7 8 9 10 11 20 next

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