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

1 2 3 next
vote up 139 vote down check

Any IDE with auto-completion :-)

link|flag
3  
im pretty sure crutches have been around for hundreds of years... – theman_on_vista Mar 10 at 16:43
10  
the wheel has been around for longer -- stop being lazy and just walk everywhere! – jonstjohn Mar 10 at 19:07
3  
@Bratch, a broken leg and not knowing common libraries are two different things. While CC is a nice feature, one should be able to work without their favorite IDE. Both the 'crutches' and 'broken leg' arguments are straw men, imho. – Tim Post Mar 12 at 16:50
2  
It's just an attempted analogy about making things easier. Many of us can work without an IDE, but this is about making it easier, and in many cases faster, which is not always better, as Petzold makes very clear. – Bratch Mar 18 at 20:11
2  
Before I had an IDE with autocompletion. Now I have a "dynamic" language that makes it impossible. We get quite a bit of autocomplete anyway, but it's not like with a static and statically-typed lang. – yar Aug 10 at 20:02
show 5 more comments
vote up 0 vote down

syntax highlighting

link|flag
vote up 0 vote down

I find having a larger screen helps me visualise more code at once.

link|flag
vote up 1 vote down

Decompilers to see how other applications work. And damn those obfuscators!

link|flag
vote up 0 vote down

Nothing! Programming is still really hard, even if you are highly skilled. I cannot think of anything that has arrived in the last 2 years that actually makes the hard part - designing and writing effective reusable and functional code.

Most of what's already been mentioned here has been around in some form or another for a lot longer than that.

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

Experience and knowledge gained over these years.

link|flag
vote up 0 vote down

valgrind ... at least, it sure makes debugging those mysterious crashes easier.

link|flag
vote up 0 vote down

Frameworks and IOC

When's the last time you sat down and typed out some form of (static) void main()? If you were writing the entry point for the app that you're developing now, what would you put in it?

link|flag
vote up 0 vote down

Something I wish was more prevalent in debugging is execution recorders, where some parent process traces the entirety of your program forward and backward, recording variable values, stack locations, etc, so you can rewind your application to find out where something got changed. It'd be perfect for throwing to customers for those hard-to-repro issues.

It'd be a PITA trying to get a sanitized version out of somewhere like Raytheon, but I'd kill to have one. Debugging would get so much easier if you could visualize the lifespan of a memory location over time and not just a snapshot in time.

link|flag
vote up 1 vote down

Ctrl-Z

and

Source Control

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 5 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
show 1 more comment
vote up 1 vote down

Monad transformers, of course.

link|flag
vote up 3 vote down

jQuery

It singlehandledly (IMHO) made Javascript usable.

link|flag
vote up 0 vote down

ReSharper. Had to sacrifice about $100 to gain a ton of productivity.

link|flag
vote up 0 vote down

Abstractness in the programming, High Level Programming Lanugages, IDE( auto complete, refactoring, code-to-build, Beaten problems Best Practices, on-demand coding, internet code browsing repositotires

link|flag
vote up 0 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 6 vote down

    Programming is easier??? Damn I knew I should stop using C++.

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

    I believe that the increase of the abstraction has made things really easy. Just compare writing a program in C++ with writing a program in C#...

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

    Twitter

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

    IMO Generics

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

    I've also been in the industry for over twenty years and have use a variety of programming languages. How about PICK? Anyone heard of that one? The years of old (1980's) we had to build our own code snippets, libraries and read these thick and not well written books on programming.

    The Internet has empowered the developer. With it, vast resources can be searched in less time than it take to breath! Good solid answers by technical peers are there!

    But again, without the Internet I could still do my designing, developing, documenting.

    Yes the Internet has made it easier but what I find that has really made a difference is the advances of the IDE. Whether it's .NET, Java or whatever language . Using an effective IDE that supports intelisence and gives you a clean graphical, powerful and intuitive environment to build the applications in, is probably the most important to me.

    I'm more productive than ever before, even though the languages keep evolving and I'm bombarded by new frameworks, design patterns, and technologies. I'm still productive because of my IDE.

    As you know, languages have really evolved as well. Now there are discussions about all the new features available to the .NET developer. So many enhancements in such a short time but we still want all the power and ease of building these highly graphical interfaces, so we accept the changes - bitch a little - and then use them.

    So to sum up before I write a book here, my order of what has made programming easier are:

    1. A graphical IDE
    2. The language (C#/VB.NET/Java) evolving
    3. New frameworks and technologies (WSE, ...)
    4. The Internet - because we need an open unbiased, unfiltered source of information

    BTW... Good Question.

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

    No single answer - many factors.

    This implies that virtually anyone who answered this question is wrong.

    link|flag
    vote up 2 vote down

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

    link|flag
    show 2 more comments
    1 2 3 next

    Your Answer

    Get an OpenID
    or

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