Thomas Templemann wrote a nice blog post about his preferred coding style guidelines.
And most I absolutely agree with.
Except one.
His suggested style is to test booleans simply for the value they hold and not to test for TRUE or FALSE explicitly. He considers testing for TRUE or FALSE bad style. Examples of bad style are :
if hidden = true then ...
… Read the rest