vote up 43 vote down star
20

I have been programming for 20 years. Many things changed since I wrote my first BASIC lines. Now we have IDEs, frameworks, debuggers, profilers, versioning tools and many other helpful toys.

So which developments in the past 10 years have made programming easier? And what was necessary to sacrifice for it?

flag

84 Answers

vote up 4 vote down

Loband MSDN!

Seriously, you need to look at this if you use MSDN! Props to Frank Krueger for pointing this out

link|flag
vote up 3 vote down

Edit And Continue.

link|flag
vote up 3 vote down

Google (well, the internet in general, but mostly Google)

link|flag
show 2 more comments
vote up 3 vote down

More powerful languages like C# 3.0, Ruby, and Python with features like closures (inner functions), generators/iterators (the latter being useful to simulate coroutines), delegates (passing bound functions as parameters), Ruby's continuations, and C#'s query language (LINQ). IMO C# and the lesser-known boo are especially exciting because you can get high performance comparable to C++. There had been some languages before that had features like this, but they never enjoyed popularity. In the future, I think more features imported from functional and logic programming languages will make skilled programmers even more productive.

Garbage collection makes a huge difference.

Intellisense.

The Internet.

link|flag
show 4 more comments
vote up 3 vote down

Design patterns, kinda.

While it is foolish to ask "What design patterns can I use to solve problem X" at the beginning of the project (since that mostly leads to overly complicated and ugly solutions) they are invaluable as a short hand when discussing solutions with other developers.

link|flag
show 2 more comments
vote up 3 vote down

Interestingly enough, I believe the very same answers provided are also true for the question "What has made programming more difficult in the last 10 years".

Are all these wonderful new 'toys' creating a layer of abstraction that spoils us into not really understanding the fundamentals of the underlying technologies, thus causing longer troubleshooting cycles? Especially for the new/younger breed of programmers?

See "Leaky abstractions" (http://www.joelonsoftware.com/articles/LeakyAbstractions.html)

link|flag
vote up 3 vote down

Short and simple answers (in no particular order):

  1. Model-View-thinking
  2. Agile methods
  3. Better hardware
  4. Internet
  5. Other
link|flag
vote up 3 vote down

Many of these things have been around in one form or another for a while. For me, if it was just the last couple of years, I would say advances in OS virtualization. I have 7 different VMs on one machine and can take a snapshot of any of them multiple times. If gives me great flexibility on developing against different platforms without having a pile of old boxes under my desk.

I do not believe that anything had to be sacrificed for this, except a bunch of disk space and some RAM, which is much cheaper than several years ago. And you can take more advantage of that multi-core CPU.

link|flag
vote up 3 vote down

Do you think programming is easier ? I still seem to spend 8-16 hours a day trying to make stuff work...

link|flag
show 4 more comments
vote up 3 vote down

jQuery

It singlehandledly (IMHO) made Javascript usable.

link|flag
vote up 2 vote down

Moore's Law

link|flag
show 10 more comments
vote up 2 vote down

Vim highlights the opening bracket when you type the closing one.

link|flag
show 2 more comments
vote up 2 vote down

Refactoring tools, to automatically (and without the risk of silly mistakes) perform common changes on code: extract method, inline method, extract class etc.

link|flag
vote up 2 vote down

Free learning on internet. Most of the people are learning online now, 10 years ago you had to go to some paid courses to get an introduction. You can do the same today in youtube.

The only sacrifice that we made is the time spent learning that people should share stuff on internet and that profit shouldn't be always the engine for everything.

link|flag
vote up 2 vote down

OO. And, largely as a consequence, libraries. We had them before, but now they are far more powerful.

link|flag
vote up 2 vote down

I am surprised that nobody said "open source licensing". It completely changed the life of programmers in the last 10-15 years (when Linux and the open source community began to grow). The availability of open source tools, code, information sharing, allowed large communities to grow and provide google, documentation, ideas, programs, snippets of code.

It gave microsoft competition, it gave OSX its environment, it created the web and the CC licensing that shapes a large part of the web today.

link|flag
show 2 more comments
vote up 1 vote down

The internet - makes it a lot easier to find answers to questions.

I'd add open source to the list too, as open source projects have provided lots of great tools that developers can use out of the box for free to do many complex tasks.

link|flag
show 1 more comment
vote up 1 vote down

Version control. Without it I wouldn't be able to tele-develop, and the open source community would probably not exist.

link|flag
show 3 more comments
vote up 1 vote down

Multi-monitor graphics cards.

Okay, that's whining on a high level but having the web browser open next to my IDE really helps.

link|flag
show 1 more comment
vote up 1 vote down

I'm not a web developer (yet), but for the desktop, tools have gotten a lot prettier and chrome-plated, but I think the most basic advances happened earlier:

  • Unix: C, diff, scs, ...

  • C++ and its ilk

At the same time, everything that has supposedly made programmers more productive has (for most of us) allowed us to do the same functionality with lots more code.

link|flag
vote up 1 vote down

Openness.

Today's it's expected of any decent language/stdlib that you'll have all the documentation available for free and searchable on the internet, backed up with public discussion forums.

Programming ‘in the dark’ because the docs were great big dusty books that cost a fortune and/or were only available to partners was a disaster.

link|flag
vote up 1 vote down

The internet and the wide-range, immediate availability of information and example code from various support communities.

link|flag
show 1 more comment
vote up 1 vote down

Looking over the previous answers, the only concept we didn't have ten years ago is:

Distributed version control systems (I didn't find a reference to them before this millenium).

Everything else has been implementations, earlier ideas becoming more popular, things becoming less expensive, and information becoming more available.

Either the pace of innovation in software development has gone down, or the length of time it gets a new idea to be implemented and into general use is normally greater than ten years.

link|flag
show 2 more comments
vote up 1 vote down

IMO Generics

link|flag
show 1 more comment
vote up 1 vote down

punch cards! :)

oh, wait. maybe not.

link|flag
vote up 1 vote down

What was sacrificed: Easier programming is accomplished at the cost of higher levels of abstraction - can't bang directly on the silicon like you used to. Means programs run slower and require more memory - but as long as computer speeds double faster than programmers' productivity and memory costs keep dropping, not such a terrible price to pay...

link|flag
vote up 1 vote down

I think that things such C++ std library or even boost or Java with its sets of libraries allowed some significant improvements in life of average programmer.

Another useful thing is of course knowledge exchange networks such as codeproject, codeguru or this site.

I don't think that things such as interactive debugging are truly ground breaking - they are more about convenience. However, ability to consult one's fellow programmers outside of one's direct organization is pretty remarkable thing.

link|flag
show 2 more comments
vote up 1 vote down

  • Richer set of available programming languages to choose for solving your problem. From high level, object oriented, to dynamic, to functional, to low level languages.
  • Better tools for writing codes.
  • Tools to help write quality code. Think TDD and available unit testing frameworks.
  • Better ways of sharing and finding information. Books, magazines, the internet, the search engines, blogs, forum, QnA websites (StackOverflow.com :)), etc.

  • link|flag
    vote up 1 vote down

    Monad transformers, of course.

    link|flag
    vote up 1 vote down

    Ctrl-Z

    and

    Source Control

    link|flag

    Your Answer

    Get an OpenID
    or

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