vote up 341 vote down star
399

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

Sadly, I can't play any computergames any longer without thinking about how some things are realised in code. You can't enjoy a game the same way if you're always trying to figure out how they've done it.

On the other side, it does add some "Wow, that's well done" thoughts to every gaming-experience and you can learn something. But who wants a learning effect during a match of halo?

link|flag
vote up 4 vote down

I'm always trying to refactor things so as to reduce duplication.

For instance while reading through the answers I noticed the following:

My first thought after seeing the same pattern repeated was that it could be replaced with a single line:

Console.WriteLine("I wish I could {0} {1}", tool, item);

That would give us the following outputs:

  • I wish I could grep keys
  • I wish I could Ctrl-F books
  • I wish I could Ctrl-Z the world
  • I wish I could RegEx physical objects

Nice and DRY!

*sigh* Why am I thus???

link|flag
vote up 4 vote down

When I'm driving and see a road sign which reads:

CAUTION: CONST. AHEAD

and I think why are there Constants ahead?

ugg

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

For me, as I live in Blighty, American spellings are a problem.

  • Correct in English: centre | Correct in programming: center
  • Correct in English: colour | Correct in programming: color
  • Correct in English: serialise | Correct in programming: serialize
  • and so on

Also, when typing normally I tend to enter the first three characters and then hit tab.

link|flag
vote up 4 vote down

When my younger brother was about 7 years old and I fetched him from school and we saw a beautiful scenery of the mountains after a heavy rainfall (the sky was clear and there was no smog).

My young brother said: "Oh look! Very nice graphics! (While he was pointing at the mountains)"

link|flag
vote up 3 vote down

When someone explains a problem they had (flat tire, wrong bank statements, bills) I can't help but imagine a sequence of states and actions which move that person from one container to the next (where he/he will have other actions to move to other containers).

It is kind of weird but it helps when you want to give someone options to get out of a problem.

link|flag
vote up 3 vote down

I lose my keys/sunglasses whatever...I want Google to find them for me!

link|flag
vote up 3 vote down

I frequently wish I had direct SQL access to databases for where items should be located. Mostly to see if they even (1) ever carried the item in the first place and (2) if they have any now.

Books-A-Million. WalMart or Target is another one. Are the coolers in the camping sections or on top of the drinks this time of year? (Camping during winter, near drunks during summer -- usually). I just need a sql prompt... I can figure the rest out. Or hell, any access to custom search queries. I can type faster than all those CSR's... :P

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

I tend to forget that to non-programmers numbers are numbers. The concept of short and long integers for example, is completely alien to them.

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

Due to the quick changes of requirements in the IT industry I rarely finish off anything I st

;-)

link|flag
vote up 3 vote down

Looking for code completion in all forms of text editors, including Word and Outlook.

link|flag
vote up 3 vote down

Expressing numbers in x times K. Like in: "My bed cost me two point one kay".

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

I can just love websites because they are well designed, intuitive and useful. And I will tell all my friends about them (http://www.skyscanner.com, http://www.nestoria.co.uk/, http://openstreetmap.com/, ...)

And along with that, I can hate others. Because some are just wrong in the way they do things. It is irritating. Especially when you know they could have done better with a couple of days of work and/or a better interface (http://www.voyages-sncf.com, ...).

link|flag
vote up 3 vote down

While most 'non-programmer' people have their outlook synchronized with their wifi-bluetooth strawberry phone, I use notepad for my tasks lists and memo notes ...

link|flag
vote up 3 vote down

Some one suggested me to move them into a post:

  • Looking for polymorphism, inheritance and patterns in ALL of "Gods" creations.
  • Explaining the size of something in pixels and colors in hex code.
  • Using code related abstract terms in everyday conversations.
link|flag
show 1 more comment
vote up 3 vote down

I'll often jump into a task (like, say, repairing the fence) somewhat thinking I can pause my work at any time, and worse, believing I can easily ctrl-z any major mistakes.

link|flag
vote up 3 vote down

After doing some web programming I found that I was in the habit of supplying sample answers to my own questions. "How long will it take? 5 min, 10 min, 15 min, longer?"

link|flag
vote up 3 vote down

I needed to watch Wall-E (or any other Pixar movie, for the matter) ten times before I could pay attention to the story: I spent most of my time trying to figure out the polygon count.

link|flag
vote up 3 vote down

My father asked me write a letter and he said "300 something.." I asked him is 300 integer or a string? he gave me a blank stare :-O

Regards V

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

ive become such a logical person after learning programming that it hurts. its like i feel life might crash if i dont make sense all the time. nice post btw, iwonder if anyone has taken time to study the effect of programming on people. :)

link|flag
vote up 3 vote down

You think you lot have got it bad? I'm 14 years old, and just recently my friend asked:

What is the easiest set of numbers for you to remember?

They go:

1,2,3 etc.

I go:

8, 16, 32, 64, 128, 256, 512, 1024, 2048...

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

When typing an e-mail or document, I can't help hitting Ctrl+Space expecting intellisense to pop up with a list of appropriate words.

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

Having learned to count in binary on my fingers, I now respond "Four to you too!" when someone flips the bird at me. Some people just don't appreciate geeky humour when they are angry.

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

Acting like a know-it-all all the time because my coworkers expect me to defend my decisions or lose.

This can be a drawback when dealing with normals.

link|flag
vote up 3 vote down

As my partner will tell you, everytihng has to be efficient.

If you cut the onions this way, it will be faster with the same result...

(That one really pisses her off)

And language has to be precise.

Can you get that? What do you want me to get? That, over there? Which thing?

link|flag
vote up 3 vote down

When trying to find a solution or anything, I eliminate all possibilities before going forward. For example: "bring me the glasses". I go, open a door, no glasses, open another door, glasses, but I would still continue opening all the doors to be sure there are no other type of glasses. Maybe what I'm seeing are not really glasses for this person. Maybe they are wine glasses, or whiskey glasses. And maybe I'll just find two types of glasses in which case I'll ask which one.

When I'm doing this in front of another person they go crazy. "You already found the glasses!", "No, I'm not 100% sure these are glasses.". At that time they start to back off slowly saying yes. I smile.

link|flag
vote up 3 vote down

Lately I've been interupting myself when I use poor boolean grammer.

I don't think... wait, I mean I think that you should not.... It is not that I didn't think, but rather that I thought and it was not appropriate.

link|flag
vote up 3 vote down

Waiting for an informative tooltip to appear when I stare at a photo in a newspaper or magazine...

link|flag
show 1 more comment
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
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.