Given that I work mostly in the C++/Java/Perl world:
Global variables: They are the plague! Use them as a last resort!
Goto's: fall into this category too! Mostly for their tendency to create the most dreadful spaghetti-code.
Non-descriptive variable/function names: Really! Don't abbreviate & comment it. I don't want a lookup table. That's what the name is for in the first place! The point of code is to communicate effectively with other humans. Binary is for machines.
Abbreviations in variable/function names: You know what they mean. Nobody else does. (Bonus points if they are in your native tongue, and nobody else on the team speaks it!)
Similarly named identifiers: The joy of trying to discern FooBarCharlie and FooBazCharlie throughout your code really makes my day. (Bonus points when combined with abbreviations and multiplied: ABDF-HGIK-LMNP-STVW, ABDF-HGIK-LMNQ-STVW, ABDF-HGIK-LNNP-STVW, & ABDF-HGIK-LNNQ-STVW.)
Unrolling Loops: Trust me, the compiler is better at this than you are. You are just going to introduce some really painful bugs!
Excessive Complexity: If you have 20 lines that start out "foo(...).bar(...).charlie(...).delta(...).echo(...).", then for gods sake use a reference or a macro to make the code human-readable.
Lack of discernible design: If I can't tell what you are doing, this is not going to go well. Put some UML in the comments! Document!
Multiple names for the same concept: Use xColumnWidth and yRowHeight if you have to. But don't use (x,y) for one method, (column,row) for another, and (width,height) for yet a third! (Bonus points if you reversed the order between methods, mixing (x,y) and (row,column).)
Cut & Paste coding: Really! Others have said this too and I'll say it again! Don't put the same broken chunk of code in 10 different places. Some day, I'm going to have to fix that. Or maybe just change it. Use a macro or a static function!
Shadowing variables: 'Nuff said.
Fixing compiler warnings by commenting out -Wall in the makefile: Me, you, and Mr. Bat need to have a little talk!
Lack of comments: If you are going to put some hairy piece of math into the code, document where it came from! At some point I'm going to have to fix it! (I know, I'm hitting commenting twice. But it's important! Especially when your pulling math out of a book or matlab. (Just give me a prayer of a chance here! That's all I need!)
Checking in broken code: Just because it compiles doesn't mean you are done!
Core leaks: This is going to come back to haunt us... Or, more precisely, me!
Sadly, all of these have been experienced first-hand.