vote up 5 vote down star
2

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?

flag

57% accept rate
8  
Community Wiki. – Adam Robinson Sep 16 at 22:13
Good abstractions simplify programming. Bad abstractions make it more complex. Our jobs is to design and implement good abstractions. Unfortunately, it happens much less frequently than one would hope for. So, overall the entropy increases over time :( – Rom Sep 16 at 22:15
@David: I'd recommend ignoring the community wiki police on this one. "Community wiki" means "community owned", its not a synonym for "discussion question" or "subjective question". – Juliet Sep 16 at 22:33
6  
@Juliet: Discussion/subjective/poll type questions are often a popularity contest -- whoever gets the popular answer in first harvests free rep. In my mind this reduces the value of the system. Is there a good reason not to go CW for these questions? Is it just a matter of encouraging more answers? – Steve S Sep 16 at 22:51
I like the question. I finished that DNR podcast feeling unconvinced by either position. // But I also agree with @Steve S. This should be a community wiki. – Jim G. Sep 17 at 0:20

closed as subjective and argumentative by Adam Robinson, dmckee, finnw, Dour High Arch, Jason Sep 17 at 1:52

8 Answers

vote up 0 vote down

There has never been such a broad choice of programming tools. It may be "complex" to try and evaluate all/most/many of them and pick the best one for a given task. However, no matter which tool set you pick, once you get down to coding the project things are much simpler than they have ever been because so much of the infrastructure work has already been done. Programmers are now more free than ever to focus on the problem at hand, rather than on building tools and infrastructure to solve the problem at hand.

Having said that, the actual problems are getting more complex. Each generation of software system (ERP, CRM, industrial control, scientific computation, game, whatever) builds on and extends the concepts of its predecessor.

I hope the next evolution of tools will focus on managing the complexity of the entire software system.

link|flag
vote up 7 vote down

Things are more complex and greatly simplified. Yes, both are possible at the same time.

The simplification is that easy thing are now easier. This is what all of the prebuilt toolchains bring to the table. If all you want to do is display some data in CRUD form, you can use Dynamic Data, LINQ to Entities (pointed at your data source) and you are ready to go.

The problem is that most people want to go beyond the basics and all the infrastructure can easily get in the way of doing what you actually want to do. Even if it doesn't actively get in the way, there is a large learning curve where the prebuilt toolchain is concerned.

This means that the "unwashed masses" programmers have it easier, while those who are doing complex things... are still doing complex things and have to do those things while also learning a much larger infrastructure.

The good news is that a lot of what the frameworks allow us to do easily was once upon a time "hard work". A lot of the complex programming we are doing today would have been even more complex as we would have had to developed large swaths of code that we now can simply reference and use. The taller the tool chain, the more complex the project that we can contemplate and successfully implement becomes with one major limitation.

Relying on a tall tower of infrastructure takes the control away from the programmer, which means that in high reliability situations you are at the mercy of the framework. There is a reason that highly sensitive systems (say, where lives are at risk) are not built on teetering towers of infrastructure.

link|flag
vote up 0 vote down

The answer is a definite "maybe". :)

I say both is true. How well can a person/org/team can manage information and make good decisions based on that information is essential. How fast one can decide if they should research something further or leave it alone is a big key. We also have to realize that we will not always get it right and that's OK especially if our mindset is that we can improve over time.

Are we willing to keep our mind open to ideas / thoughts that may actually present a better way or at least a different way? The vast array of choices seems daunting but is a lot better than only having one or two tools/languages to choose from.

How fast can we assimilate enough information to make good decisions on what to do next with it is important. Speed reading or Just in Time compilation for the techie if you will. :)

link|flag
*The vast array of choices seems daunting but is a lot better than only having one or two tools/languages to choose from.*: No - I do not agree with this normative statement. en.wikipedia.org/wiki/… – Jim G. Sep 16 at 23:48
The link has some good points and I would definitely agree that the vast array of choices is not a panacea either. My answer was more geared around how fast one can reason out the options in a way that doesn't overwhelm them but also doesn't feel like one can't make a decision they are happy with. AKA the "how we choose" and the "why we suffer" thoughts as discussed in the wiki. – klabranche Sep 17 at 0:00
vote up 1 vote down

Unequivocally, yes.

The stack of knowledge needed to leverage any actual project is much larger now than it was. Most of this is due to frameworks.

An actual project may appear simple, but the knowledge needed to get there is pretty heavy. At least if you know what's going on.

link|flag
vote up 1 vote down

Developing web applications is does introduce different complexities than desktop programming as web app development requires much more breadth (artist for html/css, programmer, sys admin for maintaining server(s). Each of these areas are rapidly evolving so it becomes increasingly challenging for individuals to stay up-to-date while still having time to actually apply their skills.

I think the diverse set of skills required will lead to an increase in technologies like ASP.net MVC and Ruby on Rails that allow for this modular development where pieces can easily be interchanged.

As far as selecting a particular ORM or other technology, sometimes you have to "pull the trigger and ride the bullet" rather than waiting for the perfect solution.

link|flag
vote up 2 vote down

Who was a good programmer some 20 years ago?

Surely somebody who understood how a processor worked internally, knew all the opcodes, knew good tricks how to optimize the program for speed and performance, maybe some algorithms.

Who is a good programmer today?

  1. Surely somebody who has a good overview of the tools in existence, and is able to select the right tools for the right job, and then he learns to properly use these toole (until the next project).

  2. Besides of that, since projects are getting more complex they aren't made by individuals anymore but teams. So communication/social skills are now essential.

  3. Due to the fact that no software isn't standalone anymore but usually used together with other software, a good understanding of standards is required.

Is the latter more complex than the former? I don't know. But what we can surely say is that programming is different today and will keep changing in the future.

What will a good programmer be, say in 20 years?

Seeing the big differences between 20 years ago and today we can hardly dare to predict what will be in 20 years..

link|flag
1  
I agree with you. Do you agree with this? stackoverflow.com/questions/1286275/… – Jim G. Sep 16 at 23:44
Sure there are lots of programming jobs where only very basic algorithm understanding is required or none of them at all. But there also are fields in programming where you need a very deep understanding of algorithms and maths, but then it is more appropriate to employ a mathematician. – codymanix Sep 17 at 13:15
vote up -1 vote down

Programing is no more and no less complex than our ability to reason and learn as human beings, and is independent of technologies or languages.

Complexity is constant, and is proportional to human brain power.

Sure languages are more powerful and allow you to do more as time passes, but that means more powerful and vast libraries are used which adds complexity even if a more powerful language tries to reduce it.

When we use assembly language, the complexity comes from the fact that writing simple things required lots of state changes to be tracked: cpu registry units, memory locations, hardware instructions. Basically we need to have the entire hardware model in our head. Nonetheless we use all our mental capacity to do the task, better and faster, finding solutions and trying to simplify the problem space all the time.

When we use a modern OOP language, the complexity comes from the fact that we use vast set of libraries and we need to make sure the objects are well integrated, well separated, have a good OOP design and expose the proper contracts, and that everything interacts properly, on top of that we try to solve many more tasks in the same amount of time but using more powerfull tools. Again all the mental capacity is used to achieve the goal.

So, if both in the past and now we use all of our mental capacity to program and solve tasks, that means the complexity is constant, but the factors that determine the complexity vary.

link|flag
Can you explain the downvote? What is it you don't agree with? – Pop Catalin Sep 16 at 23:58
I agree that the complexity associated with software development has shifted, but the idea that 'Complexity is constant, and is proportional (sic) to human brain power.' is spurious. You could sell me on the idea that 'Complexity shifts with technological progress', but I'd argue that it also varies with technological progress in a non-linear fashion. In other words, rapid technological advancement can force more complexity on developers before advanced tooling becomes available. – Jim G. Sep 17 at 0:06
1  
The post reads like a McLuhanism en.wikipedia.org/wiki/Marshall_McLuhan I know the man is highly lauded, but when I read his quotes, he seems like he lacks commitment to discuss anything refutable. "Complexity is constant, and is proportional to human brain power" spurious indeed. – Kieveli Sep 17 at 1:56
I see, never heard of McLuhanism, until this moment, oh well... my answer was based on a little knowledge of cognitive psychology (I had lots of friends studying psychology in college) no this guys theories. – Pop Catalin Sep 17 at 7:07
vote up 0 vote down

I'd say that Programming itself is no more complex than it used to be, and is in fact simpler; however the projects we are now undertaking are substantially more complex than the old projects, given the tools to be able to attempt them.

New software has much higher expectations than older software. A text editor 15-20 years ago would expect to run the entire CPU and just let you type text, insert, delete, and save/load to it's own file format (or raw ASCII text). A new text editor is expected to work next to any number of apps, support drag/drop to/from random apps, copy/paste from anywhere, support a dozen different file formats and multiple text encodings, be fully WYSIWYG with custom fonts, sizes and styles, potentially syntax highlighting, and many other things.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.