in reply to The cost of unchecked best practices
That's all best practices are - things that reduce your chance of error when changing code. It's no different than the C best practices that go into changing
intoif ( foo == 5 ) call_function( foo );
Not much of a difference at first glance, but those "minor changes" took thousands of man-hours to coalesce and we ignore them at our peril. Don't blindly accept, but look deeper before suggesting a rejection.if ( 5 == foo ) { call_function( foo ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: The cost of unchecked best practices
by amarquis (Curate) on Mar 20, 2008 at 14:29 UTC | |
by kyle (Abbot) on Mar 20, 2008 at 16:32 UTC | |
by mr_mischief (Monsignor) on Mar 20, 2008 at 16:33 UTC |