Home
I write code.
Programming Philosophy
-
Static typing is very, very good.
-
It is not real static typing if it does not check for null pointer exceptions. That is some other, sadder thing.
-
A class is nothing more than a custom data type, some associated functions, and a lot of burdensome complications.
-
Having to look up
for (let i=0; i < arr.length; i++)
is a good sign. -
Immutable data structures save lives.