vote up 341 vote down star
400

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 8 9 10 11 12 20 next
vote up 2 vote down

Getting frustrated at not being able to 'Undo' what I erased on my whiteboard.

link|flag
vote up 2 vote down

laziness is a good thing

link|flag
vote up 2 vote down

Well...

  • Whenever someone ask me something, I give them a detailed step-by-step answer, and that tends to exasperate people
  • I try to find patterns in almost everything I see, and then I write a function in my mind to optimize it (finding patterns in discotheque-lights is particularly sad)
  • I hate ambiguous questions/answers
  • I can't write (not even handwrite) spanish with spanish characters (á é í ó ú ñ) because I don't use them in my code
  • I usually talk with programming terms in regular conversations
link|flag
show 1 more comment
vote up 2 vote down
  • When I posting comments in the forums, I don't use [QUOTE] tag, instead use '/*' or '//'. ;-)
  • Sometimes when I watching a TV or walking on the street, I see a some advertisement, in my mind I asked question how it's made, and how can I made it with Photoshop. For example, Sprite logo: -- drop shadow; black storke, 1px; & etc...
link|flag
vote up 2 vote down

Finishing sentances with ;

I spend waaay to much time going through reports correcting that!

link|flag
vote up 2 vote down

When asked a question on class I always give precise, neatly packed up answers consisting of only a couple of sentences but including a maximum of information, as opposed to my classmates who seem to enjoy giving answers that are as diffused, wishy-washy and as long as possible, while revealing hardly any new facts but simply repeating what other people said the other way round. Sadly, my teachers don't really appreciate the way I do it.

link|flag
2  
I have this pattern. Fortunately for me It has never caused me much grief. Term papers which are assigned to be 12 pages long are typically turned in at just over 3 pages. One of those pages is sources. the remaining content bears about one citation per sentance. Never got less than an A on such a paper. – TokenMacGuy Apr 20 at 18:33
vote up 2 vote down

Sometimes I find I wish I could debug my life (set breakpoints, move the execution point around, etc!)

link|flag
vote up 2 vote down

I catch myself forming Google search queries during the day.

  • Looking at a nice porsche passing by: "cheapest sports car reviews"
  • Walking during a nice summer day: "best camping spots toronto"
  • Entering my apt. building: "anti-smoking laws ontario"
link|flag
vote up 2 vote down

I can't drive a car.

Everytime I drive, my brain keeps going back to that piece of code which I'm working on.

link|flag
vote up 2 vote down

When go back to home, I try to open Door with Access card... Insted of Knocking it or using key

link|flag
vote up 2 vote down

After too many years of working on a business system under a lousy manager, I inevitably write "contract" when I mean to write "contact" and "Theresa" when I mean to write "bitch."

link|flag
vote up 2 vote down

I have found myself "tabbing in" a complex e-mail to my wife for readability only to realize that it looks ridiculous to non-coders.

link|flag
1  
That is awesome, I have never done that but I can imagine myself doing something like that! – Akers Jun 30 at 0:48
vote up 2 vote down

When some physical object breaks, like one of my table chairs, I find myself thinking that the first solution is to Ctrl-C and Ctrl-V one of the good chairs...

EDIT: Just the other day I was watching someone use two microwaves at once in our break room and the first thing I thought of was that he was good at multi-threading...

link|flag
vote up 2 vote down

Not strictly programming-related, but I once tried to dial an IP address on a phone. I got as far as the first octet before giving up when I couldn't find the decimal separator.

link|flag
vote up 2 vote down
  1. Looking for clock in bottom right while reading newspapers

  2. One time, while I was writing an email, I commented paragraph of text instead of deleting it :)

link|flag
vote up 2 vote down

I once noted that I used parentheses around sin/cos functions and the word PI instead of the symbol in the math class while writing on the blackboard..

The teacher was a little bit inrritated..He should be glad that I didn't start to end each formula with a semicolon!

link|flag
vote up 2 vote down

Debugging firmware of household and office appliances, like elevators (what model does it use to answer requests and why doesn't it use a more efficient method) and coffee machines (what happens, if I purchase a "cup only" with the "without cup" option, or if I select a "milk only" with a "more milk" option, or what is the result of a "cup only" with "more milk", etc.). The lack of reason in the first and the results of the second activity never fail to amuse me.

link|flag
vote up 2 vote down

What real life bad habits has programming given to customers?

2min 19 sec youtube video

link|flag
vote up 2 vote down

I would really like a house that just needs Ctrl-Shift-B and be built.

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

Because of my software job, I learned a few things about real life:

Lesson 1: Real life has a VERY HIGH dpi resolution:

"What is the resolution of my retina?", I often wonder.

Lesson 2: Real life needs to be much more modular:

"I have to DRILL A HOLE?" - What about the Adapter or Facade pattern?

Lesson 3: In real life, I still hate marketing/sales departments.

"You've called me twice today about my car warranty. Stop it. Forever." - As if they had no concurrency handling at all?!?

Lesson 4: Real life is not unit-testable:

"The laundry machine stopped working again." - Forget it: reactive support is good 'nuff.

link|flag
vote up 2 vote down

I knew I needed a vacation from IBM once when two things happened close to each other:

  • I tried to badge into my car.

  • I had a piece of paper propped up in front of my monitor and out of instinct I tried to click a window to bring it in front.

Bad habits?

  • I use the word "instance" in conversation about real world objects.

  • I get confused when reading restaurant menus which use which use "and" and "or" in non mathematical ways (that comes with potato or french fries and carrots).

  • I almost drove a real estate lawyer nuts once when every time he brought up some contingency possibility I would ask what would be the result of that happening. He thought I was a worrier, but programming is all about risk management/acceptance.

link|flag
vote up 2 vote down

Sometimes I try to move my mouse pointer off screen to access the properties of physical objects. Most recently I've tried to right click on my webcam in order to correct an issue I was having with it at the time. There are also many instances of when I've tried to use my mouse to point out things in the room to people next to me....

link|flag
vote up 2 vote down

I get so stunned when people insists that I'm using rhetorics, it is like if my brain works on a typefied language.

Me: "Are you going to eat that?"

"Why?"

Me: "Wait, what?"

link|flag
vote up 2 vote down

Not about me but:

A novice programmer thinks than kilobyte is equal to 1000 bytes and geek thinks that kilometer is equal to 1024 meters...

link|flag
vote up 2 vote down

Because, as programmer, I am constantly confronted with my own errors (bugs), I tend to put every choice I make in question. In a way, it is a lack of confidence.

link|flag
vote up 1 vote down

First, not so much programming per say, but I have been caught saying brb instead of saying be right back a few times.

link|flag
5  
It's "per se". This is a Latin phrase. It translates as "as such". – Peter Wone Oct 3 '08 at 3:52
vote up 1 vote down

I agree with Glomek. I tend to be precise in what I say and also expect others to be. I too often hear what people say and not what they mean. Well most times I know what they mean I just ignore it...

Also I started hating quick dirty fixes of problems. If I want to solve a problem I schedule it to find a time and then totally commit to it and do it right. In real life that means that I either clean the whole room rather than just cleaning up one corner. My girlfriend doesn't like that.

BTW: It's a real relief to read that other programmers also expierenced this. I immediately forwarded this post to my girlfriend.

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

Nomad Dervish's answer reminded me — I used to be a level designer, and on more than one occasion I looked at a beautiful sunset and thought that it was a really good skybox.

On another occasion I chose my route across a courtyard to optimize my r_speeds.

I spend too much time on the computer :)

link|flag
vote up 1 vote down

I'd say excessive pedantry (which is an asset in programming) is a bad habit in many real life situations.

Also thinking in terms of templates makes our mind less flexible. Almost every time when I'm looking for something in a paper-printed book, I'm catching myself wanting to press that "/" :-)

link|flag
vote up 1 vote down

In my first two years of Computer Science at university, I learned patience and problem solving: how to chip away at things that were being very frustrating by not doing what I thought they would instead of just getting angry. I think that's a good habit.

Like others, I have lately tend to query rather than guess at the meaning of poorly or ambiguously phrased statements. or just those with no clear context. After clarification, I tend to explain how they could have phrased it better. This doesn't usually go down well.

It's hard to say if being neat made we want well organised code, or if the habit of well-organised and laid out code has made me neater around the house, but it's sometimes a source of tension.

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

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