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

prev 1 2 3
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

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

Twitter

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

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

link|flag
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 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

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

    link|flag
    vote up 3 vote down

    jQuery

    It singlehandledly (IMHO) made Javascript usable.

    link|flag
    vote up 1 vote down

    Monad transformers, of course.

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

    Ctrl-Z

    and

    Source Control

    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 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

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

    link|flag
    vote up 0 vote down

    Experience and knowledge gained over these years.

    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

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

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

    link|flag
    vote up 0 vote down

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

    link|flag
    vote up 0 vote down

    syntax highlighting

    link|flag
    prev 1 2 3

    Your Answer

    Get an OpenID
    or

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