vote up 341 vote down star
408

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 2 3 4 5 20 next
vote up -1 vote down
  • Thinking about colors in terms of Red, Green and Blue
  • Insisting the fastest way to accomplish anything computer related is to write a computer program to do it for me
  • Looking everything up
link|flag
vote up 3 vote down

Some times I put underscores_instead_of_spaces in handwritten text

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

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 6 vote down

Sometimes I treat my desk as if it has a garbage collector. Wishful thinking, I suppose.

link|flag
vote up 6 vote down

youKnowYouHaveBeenCodingTooMuchWhenYouForgetSpacesAndCamelCaseTheWords; alsoWhenYouEndThoseSentencesWithSemiColonsOrParentheses()

link|flag
show 2 more comments
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 1 vote down

I try to do imaginary SQL queries in my head. For example if I go into a restaurant, I'll look at the menu and think "SELECT * FROM Menu WHERE Quality='Yummy' AND Spicy='Mild' ORDER BY Price ASC".

link|flag
vote up 1 vote down

More on the undo theme - at my last annual vision exam they dialated my eyes. After the exam I asked for the 'undo drops.'

link|flag
vote up 1 vote down

I notice that I apply the Rules of Optimization to every day life. I usually will just apply any silly process to complete a task without much regard as to where It could be improved.

while not dishwasher_is_full():
    walk_into_living_room()
    pick_up_a_dish()
    walk_into_kitchen()
    if sink_is_full():
        while sink_has_dishes():
            put_dish_in_dishwasher()
            pick_up_a_dish()
    else:
        put_dish_in_sink()
start_dishwasher()

Obviously not good, but I don't really have a profile_chores tool, and n has never grown so large as to require significant refactoring.

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 18 vote down

I think my main bad habit I got from my job as a developer is the relevancy filter.

I tend to zone out really quickly, becoming bored, when people are talking about something that my brain for some reason does not think to be "relevant". I find it hard to find other people's lives interesting…

link|flag
1  
Nice catch. It also irritates me when a person can't stay "on the subject" when we are talking. – Sergey May 27 at 21:47
vote up 2 vote down

Finishing sentances with ;

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

link|flag
vote up 0 vote down

If something goes wrong:
Before anything...
..."restart" and see if it is reproducible!

link|flag
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

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 0 vote down

I now divide every number larger than 1024 by 1024 as if it equals 1000. Very odd.

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

I think the most obvious one for me is to use nested parentheses in written English. I'll avoid the temptation right now though :o)

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

laziness is a good thing

link|flag
vote up 1 vote down

I can't function without being able to look things up on the search engine (google of course)!

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

Worst habit, trying to press Ctrl+S each 5 minutes, even without a keyboard!

link|flag
vote up 4 vote down

Sometimes I wish I could quick sort some of the laundry, dishes, or clutter in my home.

One of my favorites was when I was asked what I was doing, my response was, "compiling diner".

link|flag
vote up 1 vote down

I'm losing the ability to write manually because I've been typing everything for so long. I can no longer handwrite except for my signature. My standard writing sucks as well, and I have to keep it in all caps for it to be legible. And it all takes soooo much longer than typing.

Also, I've referred to cities as being not "user-friendly" because the street signs are hidden or missing.

link|flag
vote up 1 vote down

I thought the primary colors were red, blue, and green.

link|flag
1  
These are additive primaries. You're fine! – TokenMacGuy Apr 20 at 18:39
vote up 0 vote down

I lazy evaluate everything!

link|flag
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 4 vote down

Answering WORKSFORME or WONTFIX to "friends/relatives/spouses" when assigned chores around the house. Wives and girlfriends never like those types of responses, although bugzilla is completely fine with them. I think there is probably something wrong with "friends/relatives/spouses" so maybe there should be a bug to track that.

link|flag
vote up 2 vote down

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

link|flag
vote up 4 vote down

In the delirium between deep sleep and consciousness I tend to think that everything in the world can be programmed, and I end up trying to solve all my problems in code.

I have several small children and if one of them starts crying during the night, for instance, I may end up thinking about ways I can program this problem away. Our newborn baby girl apparently does not come with a very good ruby interpreter.

link|flag
vote up 1 vote down

I always try to (micro-)optimize everything!

link|flag
prev 1 2 3 4 5 20 next

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