François Constant

4 types of developers

June 2016
There are 4 types of developers, which one are you?
if ($v==1){s1();}

2.Line saver

"This is the proper way"

if ($var == 1) {
    do_something();
}

3.Aligner

"This is the proper way"

if ($var == 1) 
{
    do_something();
}

4.Minimalist

"This is the proper way"

if var:
    do_something()