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 18 vote down

Automated Refactoring Tools

The most important ones are Rename and Extract Method, but Extract Class, Move Method, Introduce Explaining Variable, and their inverses are pretty important, too.

Tools that get these right 90% of the time is great for labor saving, but then you must have good unit tests, the kind that only come from Test-Driven Development, so that means they're really for a restricted audience.

Tools that get them right 99.9% of the time are useful for everyone, regardless of development practice.

That's why the refactoring list in Visual C# is so small: we wanted to go for the "always right" algorithm, even though it took a lot more time on the schedule; time that could have been used to add more refactorings. (It's also why Rename is so slow.)

The result is that people buy Resharper to get a full catalog of refactorings (which are important), but I worry that they aren't aware of the differences between the builtin and addin refactorings.

Too bad we couldn't build a fuller catalog of refactorings, or made Visual Studio extensible enough that you could build your own high-reliability refactorings. Maybe in VS 10. I'm hoping.

link|flag
show 3 more comments
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 0 vote down

Abstraction. The more and more code others write for us, the less we have to do to get things working.

link|flag
vote up 0 vote down

More and better applications that needed to be created. Our society changed with the PC, as PCs became more integrated into everything, the need for programs. The need for programs meant competition. Programmers honed their skills, made better tools, and by repetition and the need to move forward - programming became easier. Though, I do believe "easier" is in the eye of the beholder. Perhaps in the future those things today will be "easier" when new skills, tools, and competition begin anew.

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 6 vote down

Built-in libraries and frameworks.

Need to interact with the file system? Need to make a web application? Need to talk to a database? Need to use regular expressions? Need to send email? Need to use a hash algorithm like MD5? Etc. All of these things used to be hurdles that would require either tracking down the right 3rd party library then figuring out how to license and use it or spending significant developer effort to create the functionality from scratch. Today all of these things come for free with the most popular languages (C#, Java, Perl, PHP, etc.) as built-in libraries or frameworks.

link|flag
vote up 21 vote down

CPU speed of course!!!

10 years ago, there were still 286 machines, and the simplest program could take minutes to compile.

None of the others mentioned factors would have succeed if we still had slow machines.

I remember the first time I opened ProjectBuilder or Netbeans. It took forever and eventually I had to restart the machine.

link|flag
show 8 more comments
vote up 0 vote down

Hmm, a little brainstorming. OO with Smalltalk and its IDE, oh, much older. Functional programming with Lisp and Emacs, hmm, by far older. Concurrent programming with Erlang/OTP, hmm, more than 20 years old. And logical programming with Prolog? Don't talk about it. So perhaps ODBMS or RDBMS, no, both older. And dirstibuted computing, hmm, no, RPC and CORBA have been around for a long time, even multi-platform. A good operating system? Unix is already very old. The internet? That too. at least open source software? No, that's also more than 10 years old.

Damned, I've got to admit that there's nothing real new for the last 10 years. So let's do our best to change this. +smile+

mue

link|flag
show 2 more comments
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

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 0 vote down

Web applications becoming prevalent have made things easier.

Don't have to deal with reproducing issues on individual client machines much. Many of the issues occur on the server and can be fixed and the app can be deployed again very easily.

They do have their problems, such as browser incompatibilities and the challenge of how to perform privileged actions on client machines.

IMO the pros outweigh the cons though.

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

IDE's and frameworks which highly reduced the time of development - called RAD.

link|flag
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 9 vote down

Sometimes I think that the Internet/Google has made programming harder rather than easier.

10-20 years ago pretty much every programming language or tool you bought would come with a nice ring-bound manual covering almost everything you need to know about it.

Whilst good hypertext documentation is obviously preferable to a big pile of paper, a lot of projects these days - both open source and commercial - seem to think they can ship with next to no documentation and solve this by giving you a couple of samples to download and installing phpBB and calling it a "Support Forum".

I do long for the days of exhaustive reference manuals rather than some default Javadoc that adds no value at all. (setAutoWidth(boolean autoWidth) turns AutoWidth on and off? Really? I'd never have guessed, but where do I find out what the AutoWidth feature actually freaking does?)

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

BLOGS

by great programmers like Guido von Rossum , Bruce Eckel, Jon Skeet ...

link|flag
show 2 more comments
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

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

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 43 vote down

Open source libraries. Most of the code you needed to write 20 years ago is now available for free. Today people assemble applications, they don't mainly write new code.

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

Hardware getting really fast and cheap.

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

Programming languages such as Java and C# were designed to remove and/or limit the source of software programming faults found in other programming languages such as C and C++ (think pointers, memory management...). Ada was designed that way earlier but did not have the public success of Java and C#.

These same programming languages also helped because their specifications cover:

  • Compile time behavior
  • Run-time behavior
  • Debug and run-time inspection of data-structures
  • Extensive standard libraries

And they completely avoided the grey-zones found in the specification of C or C++ where quite a number of aspects of the actual language functionality or behaviors are compiler specific.

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

Google

link|flag
show 1 more comment
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 24 vote down

For programmers targeting the Microsoft platform;

.NET has been a HUGE leap in every possible way.

Compare that with VB6 and classic ASP. It's massive!

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

Higher-level languages like Ruby and Python.

To take advantage of them we had to give up our perfectionist control on memory, performance, etc. and accept that higher-level languages cut down on the time it takes to make the damn thing work.

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

Jon Skeet ;)

link|flag
show 2 more comments
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 6 vote down

Greater acceptance/use of continuous integration.

link|flag

Your Answer

Get an OpenID
or

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