vote up 17 vote down
star

We all have our own pet peeves and things that get under our skin, whether it's scope creep, unrealistic timelines, Hungarian notation, or that smell that emanates from that guy on your team. Let's hear them. What annoys you as a programmer?

[GateKiller should have provided a reason he closed this post here. Not disagreeing, but just pointing out an explanation is in order when you close something -- Jeff]

offensive?
add comment

Question closed as "not a programming question" by GateKiller Aug 26 at 23:32

39 Answers:

vote up 50 vote down
check

My own code, after it grows older than about 6 months.

link|offensive?
add comment
vote up 35 vote down

People that use Stack Overflow like it's a discussion forum / message board. :P

link|offensive?
add comment
vote up 19 vote down

XML.

XML annoys me.

link|offensive?
add comment
vote up 17 vote down

Marketing made design decisions.

link|offensive?
add comment
vote up 17 vote down

The war between languages. A lot of people think that every language can be judged in a single category, rather than each having its own niche area.

link|offensive?
add comment
vote up 14 vote down

Good and proven practices that are implemented in an ad-hoc manner and thus rendered completely useless. For example, I'm sure everyone has experienced iteration abuse where the word "iteration" is just a unit of time and has no actual meaning.

Half-assed work in general is very annoying for me - not keeping documentation up to date; ugly hacks; "object oriented design" that consists of procedural code that just happens to be in a class.

Quiet geek types who are placed in a position of authority simply because they seem to know a lot. Any person of authority needs to be a good communicator. The IT infrastructure of my previous employer ground to a halt because they took one of these people and made him the administrator.

Bad management, in general - I once had a group of managers that considered people simply resources and nothing more. This completely destroyed several people, including some of the managers themselves. I've had a project manager that thought only about the words written down in the contract, not what the customer actually wanted. At the end, the customer was unhappy, the developers were unhappy and the manager was utterly preplexed at what was wrong.

link|offensive?
add comment
vote up 12 vote down
  • Management not maintaining a good "Developer Abstraction Layer"
  • Team members who don't pull their weight
  • Team members that do what they're told instead of asking 'Why?' and understand the reason
  • Noise in the team's room
  • People that come and ask you questions, no matter of how much you're 'in the zone' at the moment or not
link|offensive?
add comment
vote up 11 vote down

The more time I spend learning, the more I realise how much I don't know.

link|offensive?
add comment
vote up 11 vote down

Unwarranted interruptions by people who have simple jobs and can't understand the amount of productivity that their inane phone calls cost me.

link|offensive?
add comment
vote up 11 vote down

Managers with a retail/sales background in charge of IT guys.. They get the job because they can talk the talk, but have no idea about how IT/IT guys work and screw up everything.. (this may not be just developers per se).

For example, they have the bright ideas like:

  • Productivity of developers == number of lines of code.
  • We can build anything, so after a catch up with the client, they think its totally fine to rip out a almost-complete feature and do something else. "Its just one screen though".
  • If you are not looking at code, you are not working.
  • You should wear a suit/tie to work.
  • "I dont need to know anything about what you do to manage you".
  • "Why do you need to do all this testing? Is your work that bad?"

etc. etc.

link|offensive?
add comment
vote up 10 vote down
  • Comments that don't reflect the code they are commenting
  • co-workers with a lack of passion for the trade
  • Bad quality coffee and broken coffee machines
link|offensive?
add comment
vote up 9 vote down

Incomplete, inaccurate, vague requirement docs.

link|offensive?
add comment
vote up 9 vote down

Open plan offices, where others' phone calls are a constant distraction.

link|offensive?
add comment
vote up 9 vote down

Crappy, useless comments like:

//add 3 to i so that it is equal to 3 in this case.
int i = 0; //declare i and set it to zero so we can add 3 to it
i += 3; //if you want to add more than 3 to i, just change 
        //this number to the number you want to add to i.
link|offensive?
add comment
vote up 7 vote down

Checking out code files with vast swaths of code that have been commented out. Then to be told by the commenter-outer that the code is there for reference. Or maybe posterity.

link|offensive?
add comment
vote up 7 vote down
  • Useless Business Analysts.
  • Team members who don't understand the basic concepts of inheritance, yet have been "programmers" for 5+ years.
  • People who can't write a web application without a framework and a ORM.
  • People who think that web applications are the only kind of applications.
  • People who think that a CRUD application is complex.
  • RESTafarians who bash on SOAP, while not actually implementing REST correctly.

I could go on...

link|offensive?
add comment
vote up 6 vote down

XML Comments in c#... they're kind of cool the first time you see them, but once you start wading through classes that have more xml comment than actual code you quickly learn to hate them

link|offensive?
add comment
vote up 6 vote down

People, i.e. esp. managers who believe documentation only exists if it is in an MS document.

We have to duplicate test results from archived flat files into MS Excel spreadsheets. We have to duplicate test setups from our wiki into MS Word doc.'s. We have to duplicate text that was entered into the Remedy bug report, sorry Joel ;-) , into daily emails and into an MS Excel spreadsheet.

That is, if it ain't a Microsoft artefact it don't exist!

What a waste of time.

cheers,

Rob

Edit: People having a knee jerk reaction to Hungarian notation have probably only seen "System" HN and not Charles Simonyi's original "Apps" HN which is, in fact, a great idea. See Joel's article "Making Wrong Code Look Wrong" for the difference.

link|offensive?
add comment
vote up 3 vote down

Another thing that annoys me as a programmer is that my hardware seems to be a constant bottleneck. Sometimes I'll do a build in VS and it'll take 30 seconds, then another 30 to fire up my app in debug mode.

I have a quad core machine with 4GB ram and things still tend to be "sticky" when I'm debugging and building applications frequently.

I wish there was less friction from my hardware during the edit, build, test cycle.

link|offensive?
add comment
vote up 3 vote down

Zealots and haters, whether in the Microsoft, Open Source, or Python camps.

They really just ruin everything.

link|offensive?
add comment
vote up 3 vote down

Half finished projects left in the wake of management completely changing gears on you and sending everyone in another direction.

link|offensive?
add comment
vote up 2 vote down

The user.

Your team spends the last 16 hours alert, working out the final details of the app. Barely make your 2nd delivery attempt (already late) only to hear some tart (admin assistant to the boss), "I don't like the menus. Do they all have to be the same color?"

Honest. I almost took it back, (knowing we'd miss another deadline - again!) to give her the option of muti-colored menus. ;) I should've.

link|offensive?
add comment
vote up 1 vote down

SOAP, I love my poorly implemented and lazy REST.

link|offensive?
add comment
vote up 1 vote down

Having to use a framework that has no documentation, where you have to use trial and error to find out how it works and at the end it still has quirks

link|offensive?
add comment
vote up 1 vote down

Weird bugs.

link|offensive?
add comment
vote up 1 vote down

Constantly saying that we should not waste anymore time of not doing something while actually not doing something. And then a project comes along where developers didn't waste their time not doing something. "[BLEEP!] I thought of that before!"

link|offensive?
add comment
vote up 1 vote down
  • Hungarian notation
  • K&R bracing in C#
  • Doing:

    if (TRUE == myvar)

  • Poor Coffee
link|offensive?
add comment
vote up 1 vote down

My no-development-background-what-so-ever boss.

link|offensive?
add comment
vote up 1 vote down

Overhearing: "This is our IT guy, he'll help you setup your email too"

Anything help desk, really.

link|offensive?
add comment
vote up 0 vote down

Nothing yet!

link|offensive?
add comment

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