Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Project JSMeter: JavaScript Performance Analysis in the Real World
Apr 23, 2010 at 8:25 PMThere's a blog post about the report: www.belshe.com/2010/03/31/how-to-tune-a-porsche/
I wonder how the authors would respond to that.
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 6 of 13
Nov 07, 2009 at 7:11 PMhttp://www.cs.nott.ac.uk/~gmh/book.html#slides
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 6 of 13
Nov 05, 2009 at 6:01 PMIt's so cool to hear Erik saying that explicit recursion can be abstracted. I can't wait to see you mention the paper "Functional programming with bananas, lenses, envelopes and barbed wire"!
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 6 of 13
Nov 05, 2009 at 5:49 PMThe factorial function defined with the (n+k) pattern will not go into an infinite loop when given a negative number. (n+k) patterns only match with numbers >=k. So you would rather get an exception about non-exhaustive patterns.
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals, Chapter 2 of 13
Oct 16, 2009 at 9:35 PMGreat lecture.
Although functional programming can do multi-dispatching better, it has its own weaknesses in the expression problem.
I like how you digress and discuss about topics not typically seen in textbooks. Regarding intellisense, I think we can limit the candidate functions to those imported.