HN user

erictobia

171 karma
Posts12
Comments8
View on HN

You make a great point and I do agree to a certain extent. However, there have been some projects I've worked on where having a great manager made all the difference in the world. Having someone that deals with all of the non-technical minutia so that programmers can keep building stuff is really valuable IMHO.

Maybe software could fulfill this role one day, but as you say we're not there yet.

It may be that I'm getting too old and cynical, but when I hear arguments about eliminating the middle-man I can't help but think of a quote from Malcolm Reynolds in the show Firefly:

"About 50% of the human race is middlemen and they don’t take kindly to being eliminated."

The latest (licensed) version of Office we have is 2003. As far as we know using Office 2003 for server side Excel generation is not recommended.

Thanks for the link to the Python framework though.

It's actually possible to write slightly less verbose code with C# 3.0. For example:

  //...

  char[] someChars = {'A', 'B', 'C'};

  var moreChars = new [] {'D', 'E', 'F'};

  SomeMethod(new[] { 'G', 'H', 'I' });

  //...
I do, however, agree with your sentiment. The language still has some aspects that are quite verbose when compared with dynamically typed languages. You are also right in pointing out that these new features are irrelevant if programmers are not taking advantage of them.