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 6 7 8 9 10 20 next
vote up 3 vote down

I attempt to optimise everything (and for too many factors). Queues, routes, budgets, gym routines etc. I go for maximum paralleling of any task to get it done in the shortest possible time. I cannot stop my brain from doing it. Sometimes it feels like it just thrashes... Never go to the airport with me....

I have this incredible feeling of WRONG that there are certain boring things I have to do over and over (washing, cooking, washing up, cleaning, maintenance) and it nags at me and I keep trying to solve it...

I cannot bear any inefficency or bad design that I can possibly affect (and get upset by those I can't).

I often wonder whether I am like this because I am a programmer, or I am a programmer because I am like this.

link|flag
vote up 3 vote down

I find that when I go grocery shopping with my wife that after she puts the groceries on the checkout conveyor (in no particular order), I begin bubble-sorting them from least break-breakable to most breakable, and sub-grouping cold, canned, boxed, and personal products so that they end up bagged in the cart in a sensible manner and unload more easily at home. Why she doesn't load them that way to being with I have no idea... :)

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

My writing has gotten worse. Too detailed now. Too wordy.

I used to write concise, interesting and stylish reports and web posts that would grab my reader's attention and adoration when I was in high school. I was one of the best writers in my class.

Now, unless, I take significant time to edit (and even then it doesn't always help) I write novellas of emails to co-workers trying to explain every aspect and avenue of a problem and situation to let them see my full perspective. A brief email for me is a paragraph. I just think of everything and believe omitting key information is a form of lying. But often people don't have the patience to read my verbosity. So, my current goal is to shorten it up a bit.

Definitely a result of me being a programmer/engineer.

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

When I worked as an undergrad in a tiny office with 2 other developers we also spoke in "or die" propositions. "Die" also became a common way of commanding someone to shut up, or stop working so we could go have lunch (or Play Quake 2, whatever).

I mentally shift-ctrl-s when I am writing on paper and get to the end of a page.

And to this day when I encounter a bug report that can't be accounted for I always ask "did s/he try rebooting the user?"

link|flag
vote up 3 vote down

When typing emails, documents or whatever, I sometimes end the sentence with ;

link|flag
vote up 3 vote down

Saying to my Girlfriend "Stop throwing exceptions that I'm not willing to catch."

link|flag
vote up 3 vote down

I always stay up way too late!

link|flag
vote up 3 vote down

Some times I put underscores_instead_of_spaces in handwritten text

link|flag
vote up 3 vote down
#ifdef sarcasm
It hasn't affected me at all.
#endif
link|flag
vote up 3 vote down

I (some times(especially when explaining some ideas(which happens a lot at work))) use nested brackets in my writing...

link|flag
vote up 3 vote down

I usually find myself trying to google about why my internet connection is gone...

link|flag
vote up 3 vote down

Dont know if this has been added yet but oh well:

I just hate it when people don't close their round brackets in emails..

For example: I was walking down the street and saw something at the store (you know the one owned by Mr X (who got divorced recently), and I was greeted by....

AARGH close those brackets!!

link|flag
vote up 3 vote down

I hate doing repetitive task, I always search a reusable solution. For example if I receive 50 mails with attachments I will write a program to retrieve it instead doing 50 times the same thing. Even if doing the program takes twice longer.

link|flag
vote up 3 vote down

I tend to try CTRL-Z when I do any mistake outside the computer. Besides that, I overuse the "default" word, like in "this is my default hairstyle" (and I'm not a native english speaker)

link|flag
vote up 3 vote down

I have a terrible habit of thinking of every "search related" problem I have in terms of SQL. Sometimes I'll just wonder, "How many insects do you think are in this house?" And come up with:

SELECT insect FROM house WHERE house_id = 123

It's horrible.

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

"Where's your keys, mate?" "First column." "Huh?"

link|flag
vote up 3 vote down

talking with my son about words and letters, i treat whitespaces as letters

link|flag
vote up 2 vote down

I watch Alton Brown's "Good Eats" cooking show on the Food Network and he refers to the food ingredients as the "software" and the knives, peelers, pots, pans, and other kitchen implements as the "hardware." Being a programmer, I appreciate his terminology, but I have also started to apply the terms to other activities where "software" and "hardware" can be separated like that.

I also tend to use more computing terms in day to day conversation, like downloading stuff from the car, or taking a "data dump." America needs to be "rebooted." Sometimes I ponder if I am in the matrix or not, and I really enjoy caffinated drinks, at almost any time of the day.

link|flag
vote up 2 vote down

I find it annoying when I'm typing anything that's not code, be it IM conversations, forum posts or general writing in Word, and I can't get IntelliSense or tab complete words and phrases.

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

I've learned to create test cases. Seriously, before I do something now I think about breaking it down into smaller tasks then how to verify that each part works, and how to continue to verify it as I do further tasks related to it.

link|flag
vote up 2 vote down

not concentrating on my studies

link|flag
vote up 2 vote down

I no longer count sheep... I iterate a loop.

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

Thinking that I'm dangerously under-caffeinated when I can't put two ideas together. Wondering, sometimes, why caffeine can't be injected. Would be much more efficient, wouldn't it?

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

Occasionally, I look at the wall in my room and think: "Look at those specular highlights! I wonder how many poly's that is?"

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

I try to ctrl + shift + f (Auto format in Eclipse) word documents and web pages that I don't feel are properly formatted. I feel pretty stupid when nothing happens.

link|flag
vote up 2 vote down

People have roles and things are objects. People can apply methods on these objects depending on their role. Ernie can drive a truck if he has a truck driving license.

link|flag
vote up 2 vote down

Nightmares of programming.

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

Does ADD count? Having projects frequently "switch gears" at my company, and constantly having my thought process interrupted by sudden e-mails, phone calls, meetings, annoying coworkers, and even shiny objects has caused me to feel like I can't pay attention to anything anymore! I rarely even watch 5 minute Youtube videos all the way to the end.

link|flag
1  
5 minutes? I generally leave at around the 30 second mark unless my relevancy filter is triggered. – X-Istence Oct 26 '08 at 17:21
vote up 2 vote down

I can't grasp the punctuation stuff either. I close things in the order I open them. Which is bad, because I like to use parentheses (a lot).

I have also many times made the mistake of believing people (parents, specifically) would be swayed by logic and reason.

link|flag
vote up 2 vote down

I was frustrated today : I had a crossword question where the clue was 'Collections'. I struggled for a long time to think of non-programming uses of the word. I struggled so hard that I missed the obvious answer : it was 'Arrays'. Apparently Arrays and Collections get used in real-world conversations as well !? Who knew?

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

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