vote up 20 vote down star
10

I might be one anal programmer, but I like code that looks good from a distance. I just found myself lining up a CSS style so that instead of this:

#divPreview {
	text-align: center;
	vertical-align: middle;
	border: #779 1px solid;
	overflow: auto;
	width: 210px;
	height: 128px;
	background-color: #fff"
}

it now looks like:

#divPreview {
	width: 210px;
	height: 128px;
	overflow: auto;
	text-align: center;
	vertical-align: middle;
	border: #779 1px solid;
	background-color: #fff";
}

I will almost always write numerical comparisons in order of size like

if (0 < n && n < 10)

instead of

if (0 < n && 10 > n)

and finally I will tend to arrange if-then-else code so that the THEN part is smaller than the ELSE part (cause the heavier stuff goes to the bottom, right?)

if (afflicted == true) {
  GetSome();
  HelpRight();
}
else {
  NowPlease();
}

ugh!

if (afflicted == false) {
  HowMuchTrouble();
}
else {
  IsItToDo();
  ThisReally();
}

aahhh

I could go on and on with more examples, but you get the idea...

Question: Am I alone in my neurosis here? What's your coding kink?

flag
show 13 more comments

34 Answers

prev 1 2
vote up 0 vote down

I always make my code look pretty. I find it easier to read. I format all variables and their values so they line up, and I use white space to logically group things together. I also try to declare variables in the order they are used and at the top of the scope they belong to.

link|flag
vote up 2 vote down

Code should be easy to read an maintainable. "Pretty" is entirely consistent with those requirements, so long as you don't get too cute with it.

link|flag
vote up 9 vote down

it should be

if (!afflicted)
{
    HowMuchTrouble();
}
else 
{
    IsItToDo();
    ThisReally();
}

buy a prettyprinter, and get treated for OCD ;-)

link|flag
show 7 more comments
vote up 12 vote down

I'd probably go even further and do this :

#divPreview {
        width            : 210px;
        height           : 128px;
        overflow         : auto;
        text-align       : center;
        vertical-align   : middle;
        border           : #779 1px solid;
        background-color : #fff";
            }
link|flag
1  
:) .. yeah but .. hmm, i dunno .. that 'border' line looks out of place hmm .. – Scott Evernden Nov 14 '08 at 17:40
2  
i don't like those hanging braces, seems sloppy/unbalanced... – Steven A. Lowe Nov 14 '08 at 17:54
show 6 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.