Showing posts with label Stray Tweets. Show all posts
Showing posts with label Stray Tweets. Show all posts

Sunday, August 4, 2013

Learning

"Learning Haskell even though you don't use it for work is just like running, cycling, and swimming even though you aren't a pro triathlete." -- https://twitter.com/raganwald/status/333945282226184192

Notable comment:

"@raganwald True for all new modalities. Learn orthogonal to what you know, increase the dimensionality of your mind!" -- https://twitter.com/drsteveplatt/status/335804367070445569


There's a chatter in office about the usefulness(or perceived non-usefulness) of Pluralsight account for all engineers. There are some engineers who thinks it's not useful for them, perhaps they are just learning what they already know. There are tons of courses on Pluralsight that can increase the dimensionality of your mind, don't get stuck with one form of knowledge.


Pluralsight is an apt name, it's where we can see many forms of knowledge.

Wednesday, April 24, 2013

JavaScript alphabet song

If JavaScript has an alphabet or elementary song, I think this is the one:

1: function foo(){} foo(); // calls foo 
2: foo = function(){}; foo(); // calls foo 
3: ( function(){} )(); // calls the anonymous function

Saturday, December 8, 2012