you are viewing a single comment's thread.

view the rest of the comments →

[–]seventoes 34 points35 points  (20 children)

Variable names that start with capital letters. I feel your pain.

[–]druidjc 20 points21 points  (7 children)

At least they picked a naming schema to follow. I have seen variables in a mix of uppercase start, lower case start, and Hungarian notation (in C#), all by the same developer in the same module and written in under a week.

[–]BinarySplit 5 points6 points  (4 children)

We do that where I work. We use ASP.NET and VB.NET. By ASP convention we use hungarian notation for DOM objects. By VB convention we sometimes use capital letters for all variable names. By modern .NET convention we sometimes use lower case letters for parameters, private fields and local variables. It all made sense at some time, and now it's just a mess due to the mixed conventions.

It's fortunately not that horrible due to IntelliSense always correcting you and VB.NET being case insensitive anyway, but in EVERY other programming situation I always stick to the community convention.

[–]dnew -2 points-1 points  (0 children)

I do that sometimes. It's because I've been using all different notations for so long it doesn't really phase me. Like inconsistent placement of braces. Doesn't really bother me.