Archive for November, 2010

Old random scribbles

Posted by Michael Hendrickx on November 16, 2010
misc / No Comments

Copied from the old code.ae archives.. :)

Differences between 1987 and 2007:

Ctrl-Z:

Continue reading…

Spaces, or parentheses are important

Posted by Michael Hendrickx on November 07, 2010
rails / No Comments

In Rails,

    j = points.size -1

is not equal to

    j = points.size - 1

Wouldn’t it be easier if Parentheses were mandatory, so that we could see the difference between:

    j = points.size -1

and

    j = points.size(-1)

Tags: ,