http://www.perlmonks.org?node_id=777143


in reply to Re: Why Create Coding Standards and Perform Code Reviews?
in thread Why Create Coding Standards and Perform Code Reviews?

I don't understand your argument though. What have first principles to do with coding, or coding standards?
Someone like Damian Conway has derived each of his 256 best practices in PBP "from first principles". In the interests of development speed, I don't want each member of my team to similarly repeat his research and analysis.

Regarding development speed, the places where a good coding standard has the potential to help is in areas (often "cross-cutting concerns") that are common to many projects and many teams. For example:

Note: More bullet points were added long after the original reply

Replies are listed 'Best First'.
Re^3: Why Create Coding Standards and Perform Code Reviews?
by JavaFan (Canon) on Jul 04, 2009 at 00:51 UTC
    In the interests of development speed, I don't want each member of my team to similarly repeat his research and analysis.

    I'd expect of my team members to have encountered such situations many times in the past, and have done the research and analysis long before being hired. For junior programmers, I expect them to do the research once they encounter a situation for the first time, and remember them. It's called experience.

    Now, there maybe situations that require different solutions for different projects. But you cannot both follow a company wide coding standard, and use a different solution each time.