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 5 6 7 8 9 20 next
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 1 vote down

Self-explanatory:

# find /home -name remotecontrol
link|flag
show 1 more comment
vote up 3 vote down

I tend to critique every UI, every program. And if it's only my head and don't tell - but I freaking often think things like "Why the hell is this button there and not there", "who the hell can possible grasp the meaning of these choice boxes".

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

Not sure if this is a bad habit or not, but I interrogate store cashier's when they ask for any sort of information when I am purchasing/returning an item.

Q: "What is your postal code (zip code)?"
A: "Now why would you possibly require that? Can I see your privacy policy? May I speak to a manager?"

Q: "Can I see some ID?"
A: "No."

link|flag
9  
When asked for a zip, I answer twelve thousand three hundred and forty five. – niXar Jan 30 at 16:13
show 5 more comments
vote up 0 vote down
  • writing functions as f(x){x^2+2*x+1} instead of f(x)=x^2+2x+1 during math class
  • adding additional apostrophes at the end of words that contain and odd number of them like can't'
  • wishing Word would synatax highlight things that I wrote.
link|flag
vote up 197 vote down

If I ask a question that's yes/no, I have serious difficulty processing an answer that isn't either one of those.

For instance, Q: "Do you care if I flip the channel?" A: "I'm IMing my sister."

To me, this is like: public bool canFlip() { return "I'm IMing my sister"; }

The return value here is clearly a string, and supposed to be a bool. From the other person's end they're answering the question. From mine they've just committed an invalid cast error. If I ask again and they answer the same, well, that's throwing an exception in a catch block.

link|flag
54  
They are operating in a scripting language with dynamic typing ... – Heat Miser Dec 12 '08 at 5:41
1  
You need to implement the adapter pattern to parse the string and determine if it's really true or false – Martin OConnor Jan 29 at 15:34
17  
Well, when they return you invalid types, you can always throw an exception of type EBluntObject. – Leonardo Herrera Apr 16 at 16:45
16  
See, in FLF (Female Language Framework), you have to realize each seemingly irrelevant answer is in fact a partially qualified class identifier, where this class should be automatically instantiated and actually be used as a Strategy design pattern... That is, "I'm IMing my sister" class can perform the canFlip method call for you - and it of course either returns a true response, or throws a IReallyDontCareDoWhateverTheHellYouWantException... – AviD Jun 15 at 9:37
5  
@Leonardo Herrera - Funny story. In a fit of frustration at my inability to fix her laptop, she once chucked a textbook at me. The title? "Conflict Resolution" – callingshotgun Jul 7 at 17:17
show 12 more comments
vote up 7 vote down

I often speak with people (usually my wife) expecting a boolean answer, and they return null, which spreads through the entire conversation and pretty soon we have no idea what we are talking about.

link|flag
vote up 0 vote down

As a debugger... I draw paralells between looking at whats behind what I see in software and what I see in real life...

For example... often times a small square on the screen took 4000 lines of superfluous code to put there... and did all sorts of things behind the scenes...

The innocent question... do you like my top???? well... I just know there is more to that...

link|flag
vote up 17 vote down

Seriously this happened today.My father asked what day of the week today is.I walked all the way to my computer room and looked into my computer's calender and said "Monday" ! I missed 3 calenders which were hanging on the wall , on the way to my computer room :-(

Regards, Vivek

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

I guess the question could be "what things do you do that your significant other finds annoying or inexplicable?"

One, I have a "search don't sort" philosophy when it comes to putting clothes away. Instead of putting shirts in one drawer, socks in another, etc. I put them in the first available drawer as it's much more efficient to just look when you want something then spend time putting certain things in particular places.

I feel compelled to run the dishwasher and laundry at bedtime, as it's just idle time and those activities do not require human intervention. Like doing a backup at night.

I once started listening to a radio program in the middle of a "top ten" countdown, after they played #1 I was confused as to why they didn't play the top song.

My five year old also begins lists with zero - as in plans for the day: 0 - pick up amanda from her appointment, 1 - go home, 2 - play my lego batman game. I asked him why he started with 0, his answer: "well, if we started with 1, we wouldn't pick up amanda."

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

When I send an e-mail, write a document or use im I very often end sentences with :wq

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

I try to compress orders at restaurants by giving all necessary information in one packet. This frequently does not work, because the order taker's task buffer is limited to one piece of data at a time.

Fast Food Girl: Can I take your order?

Me: number 6, BBQ, diet cola, debit.

FFG: What dipping sauce would you like?

Me: BBQ, diet cola, debit.

FFG: What would you like to drink?

Me: Diet Cola, debit.

FFG: Is Pepsi OK?

Me: [ponders Abstract Base Classes and the FFG's lack of Polymorphic Behavior] Sure. I'll pay with my debit card.

FFG: And how will you be paying?

Me: [sighs] debit.

link|flag
3  
I think its mostly due to the repetitive and mundane nature of the job, and the steps they must undertake to complete their task, that means they're on auto-pilot most of the time. – Phillip Oldham Nov 13 '08 at 20:53
7  
I worked on the till in McDonald's for a year. About 1 in 80 people (just my estimate) don't follow the normal ordering path and by the time you get to that one person your brain is well and truly in day dream mode. By the way, was that a large meal you wanted? – Martin Brown Dec 12 '08 at 17:36
71  
Haha - classic. This deserves to be in an xkcd comic. – Jonathan Sampson Jan 15 '09 at 17:42
10  
You're at +256, so I can't upvote. :) – Don Werve Apr 15 at 20:44
76  
Next time skip the debit card. "Thank you sir. That will be $4.78." Hand her a $10 Bill and a nickel ($0.05). Wait for the fun to start. – kenj0418 Apr 17 at 20:07
show 38 more comments
vote up 0 vote down

I tend to end sentences with semi-colens, and try to simplify everything and write it in the most efficient matter.... doesn't help with my english essays... also, i use why too many parenthesis

link|flag
vote up 0 vote down

I want a Ctrl+F in real life. I end IM lines with semi colons. I use bitwise logic at all times. Every time I see a pipe (|) I want to add another one, to make it an OR

Worst of all, I test of XSS exploits on almost every site I visit. I have angered more than a few admins when I email them about it.

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

I optimise everything in my head to come up with better implementations. This frustrates the hell out of me when it comes to things I can't control - like moronic airport security, or train timetables that run appallingly behind schedule.

It ends up being quite a source of stress :/

link|flag
vote up 1 vote down

After prolonged periods of writing C/C++ I find myself hitting ";" at the end of each sentence;
Not so good for documentation;

link|flag
vote up 1 vote down

I try to compile all of my word documents instead of save. I also start counting from 0 a lot of the time :p

link|flag
vote up 8 vote down

In high school, I could spell ANYTHING. Now I'm lucky to spell my own name right.

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

Seeing mapping everywhere and considering everything as a virtualisation of everything

link|flag
vote up 0 vote down

Whenever I turn on my laptop, I have to fight the urge to get on my work VPN. I also get anxious if I go a day without checking my work email.

Gaming related, after long stints of playing first person shooters, whenever I need to see something far away, I try to zoom in... and then become sad. I can see similar eventually happening due to iPhone/iPod touch pinch/strech functionality.

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

alt text

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

I find patterns and algorithms for everyone's behavior. They usually come out to be true, specially the ones for my wife and governments. It is seriously disappointing.

link|flag
vote up 0 vote down

My worst is to speech with variables inside my sentences, like

"If you wanna do this thing, go to $yourprovider and ask for $module_for[$action_you_need] "

this sometimes, is useful... .. someothertime make me not understandable..

I also speak about colors using HEX code...

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

when i write essays and am editing long sections, i find that i type // to comment out the old section.

link|flag
vote up 0 vote down

I'm not sure if this totally came from being a programmer, but I tend to try to fix any problem that is presented to me... which drives my wife crazy.

"I didn't ask you to solve my problem. I just wanted you to listen."

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

1) Zero is nothing. Zero is also a positive number. Therefore, nothing is a positive number.

2) I sometimes find myself riding my bike in the evening as the sun is getting lower, wondering how I am managing to get such nice graphics at such a perfect frame rate.

3) I have a habit - I don't know if this is a result of my computer use - of never looking continuously at a single object for more than about 10 seconds. It's probably the reason I haven't gone nearsighted from constantly sitting in front of computers. Even if I'm reading a book or concentrating really hard on some nearly unsolvable problem, I glance away every few seconds.

link|flag
vote up 0 vote down

It makes me think about scalability LITERALLY EVERYWHERE. The most common example? When accumulating milk cartons for recycling, my girlfriend just stacks them somewhere, but I know that it won't scale up to dozens of cartons, so I fold them maniacally so that I can collect up to probably 200 cartons in a drawer, before having to take them out. Same for plastic shopping bags: I keep them in another plastic bag, and then I usually reuse them as garbage bags. Normal people just pushes the new bag in the heap, somehow, and in the end no more than 20 bags will fit. I fold them perfectly and can store hundreds of them. Not surprisingly, people don't get it when I claim that my solution "scales better".

link|flag
vote up 0 vote down

I also have another one: if I get a shopping list by my girlfriend, I get to the shop, read the list, and wish she had sorted the items so that I would find them in the order I would walk the aisles of the supermarket. Of course this is not the case, so I mentally sort them to most optimal order.

link|flag
vote up 0 vote down

I used the terms "exactly", atleast" and "atmost" alot. (I got rid of it).

Someone: is there a bag on the table Me: Yes there is atleast one bag on the table (If i cant see the whole table) OR there is exactly one bag on the table

link|flag
vote up 0 vote down

I was out at lunch with my workmates. One of them kept pestering me to answer when a project I was working on would be finished. I kept telling him that it would be finished soon but I could not give him a precise time. He kept on pestering me. Eventually I exclaimed, "Jon, I don't want to parse this subtree again!" Probably a simple, "I'm will not explain this again." would have sufficed.

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

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