There was a recent .NET Rocks podcast in which panelists were lamenting the fact that programming as it is now is becoming more complex. Some people disagreed vehemently, for example Jesse Liberty as a representative example of those who thought the panelists were off base.
The grounds for many of those claiming complexity is that the lifecycle of products (Microsoft and others) is much faster and there are many to choose from. For example, in the simple question of an ORM, a person in the Microsoft stack (I'm most familiar with) may have 4 or 5 mainstream choices like (LINQ to SQL / NHibernate / SubSonic / EF / LLBLGen) each with a learning curve and complexity on its own. If it's a web application they will choose ASP.NET vs ASP.NET MVC, whether to use Silverlight and what JavaScript libraries (jQuery, ASP.NET Ajax, Prototype/Scriptaculous, etc and that's not including plugins).
I won't belabor the examples but suffices to say many think this makes life these days "more complex."
Others think that all the plumbing that's already done for you, whether it's at a language advancements (Generics, LINQ, Dynamic Typing) or at a Framework level (ASP.NET MVC) makes life easier and therefore "less complex" than the past since it would involve a lot of a person building things up for themselves.
So my question:
Is modern programming "more complex" than previously or are things greatly simplified?
