I'm honestly a bit surprised that we don't hear more about startups that use C#/.NET for their apps. Especially when you can download the Express editions of Visual Studio for free (which is good enough to at least get your startup to a demo phase, after which you'd actually have to buy it.)
Or maybe it's because more of the tech entrepreneurs are also linux types, and are more familiar with python and Java?
Yeah, that's a sweet program. I'm definitely signing up for it once I actually get my startup incorporated...CUDA requires Visual Studio to compile your kernels on Windows.
Historically there has been a backlash on HN for .NET. The HN community tends to be less so than reddit but still has a preference for non-MSFT languages.
I am using vs express for a long time but recently fallback to vs 2008. It is really hard to develop windows gui program with vs express. As a compiler and editor, vs express is good. But because Microsoft makes it so hard to program from scratch (the vs automatic tool generated tons of codes for ActiveX), personally, it is really an unhappy experience to develop ActiveX control with vs express.
The Y combinator allows the definition of anonymous recursive functions. These have names ("fac").
Personally, I have never found much of a reason to use the Y combinator. I typically use the method you used in the second example; I declare a named function within the scope of the anonymous one. I find it to be a readability win.
But I agree with you that Y combinators are not generally a good approach for working programmers because there are clearer ways of accomplishing the same thing. However I've heard that in some functional languages they can be very useful as a pattern to compile language constructs to.
While this is definitely good geek porn, I have to say as a C# programmer that there might be some things which C# can do but which you might want to abstain from :)
22 comments
[ 7.0 ms ] story [ 65.1 ms ] threadOr maybe it's because more of the tech entrepreneurs are also linux types, and are more familiar with python and Java?
You don't have to buy it. Microsoft explicitly says you can use Express versions for commercial purposes.
Personally, I have never found much of a reason to use the Y combinator. I typically use the method you used in the second example; I declare a named function within the scope of the anonymous one. I find it to be a readability win.
But I agree with you that Y combinators are not generally a good approach for working programmers because there are clearer ways of accomplishing the same thing. However I've heard that in some functional languages they can be very useful as a pattern to compile language constructs to.
http://foohack.com/tests/ycomb.html
a = (function(x) {return x == 0 ? 1 : x * arguments.callee(x - 1)})(8);