View Single Post
  #2  
Old 11-12-2003, 03:44 AM
Trumpcard
Demi-God
 
Join Date: Jan 2002
Location: Charlotte, NC
Posts: 2,614
Default

No, I think its great to share things like this..

The code started from a much earlier project, and there were no well defined coding standards in the beginning.. (Most of the coders havent been pro. coders)

What I've found useful for projects is a coding guru that does code reviews and helps the project adhere to well defined standards. People fix what they can here and there.

Any tips, tricks or suggestions are greatly appreciated.

And I know what you mean about Java.. I work in the java code world, and its amazing how many hands I have to slap for people bringing over bad coding practices from C++ into Java.. Ones that really piss me off are these..

for (int x=0;x<array.size();x++)

catch {}

and

people that think vectors should be used anywhere.. In multithreaded apps vectors can be the devil since they're synchronized...
__________________
Quitters never win, and winners never quit, but those who never win and never quit are idiots.
Reply With Quote