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. – tinkertim 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 204 vote down

The Internet.

link|flag
1  
Google is not the internet. Pfffft. Lol! – oxbow_lakes Mar 10 at 23:58
2  
If google has the power to blacklist the whole of the internet (itself included), then I would contend that google IS the internet. – Kyle Trauberman Mar 11 at 4:37
show 11 more comments
vote up 114 vote down

Garbage collection.

link|flag
2  
While the whole concept of Garbage collection has existed for more than 10 years, It was really within the last 10 years that using garbage collected languages really got popular. – Kibbee Mar 10 at 14:56
show 4 more comments
vote up 104 vote down

Source control. Sure source control existed for much longer, but the advancement of source control systems with things like SVN, Git, and others have really helped make things a lot easier. Source control was much worse when all we had was CVS and SourceSafe.

link|flag
2  
CVS wasn't that bad, within its limitations. SVN is a better CVS, but not stupendously better. Distributed VCSs, like Git, do seem to be newer than ten years, and are much better. – David Thornley Mar 11 at 21:10
show 1 more comment
vote up 68 vote down

www.google.com

link|flag
vote up 59 vote down

Stackoverflow

link|flag
4  
Brown-noser :-) – Les Mar 10 at 18:52
3  
Nah, for the time waster SO is, I wouldn't give it so much credit ;) – Pop Catalin Mar 10 at 19:00
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 41 vote down

High-Level programming languages

  • LINQ ~ 2007
  • F# ~ 2005
  • C# ~ 2001
  • Python 2.0 ~ 2000 (I say 2.0 because the language began to gain ground here)
  • CSS ~ 1996
  • Ruby ~ 1995

  • link|flag
    2  
    Those have existed an been used for more than 50 years now, ever since Lisp (1959). – Jörg W Mittag Mar 10 at 16:38
    20  
    CSS isn't a programming language: it's some kind of voodoo... ;-) – peSHIr Apr 21 at 20:03
    show 2 more comments
    vote up 30 vote down

    Color screens :)

    link|flag
    3  
    Bah... two colors is enough! Black and amber! – Spoike Mar 11 at 9:31
    show 7 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 21 vote down

    I'm going to go with a refinement of the software development process.

    Moving from process models such as the waterfall model to newer methods like an agile/iterative approach have made software development much easier.

    Probably the biggest sacrifice of these new processes is a harder to determine code complete date.

    link|flag
    show 1 more comment
    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 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 17 vote down
    • Stepping/Breaking into code
    • IntelliSense
    • Improved GUI Interface
    • .NET Framework
    • Internet (HTML/ASP.NET/PHP etc)
    link|flag
    1  
    All but one of those (.NET Framework) were around more than 10 years ago. – Robert S. Mar 10 at 17:07
    1  
    I would argue that the .NET framework is just a refinement of Java. – cdmckay Mar 10 at 20:47
    show 2 more comments
    vote up 16 vote down

    Unit test frameworks and mocking. In order to effectively benefit from it you have to sacrifice "code-like-hell programming" and invest time and effort in disciplined test writing. I could go back to using VI and separate shells to compile in instead of an IDE, but I wouldn't give up unit testing.

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

    I think a big step forward was:

    • syntax highlighting
    • code completion
    • educational tools like ReSharper
    • Internet
      • online examples
      • online documentations
      • newsgroups
      • download of libraries
      • etc.
    • powerful IDEs
    • powerful debuggers
    • frameworks and access to them (see Internet)
    • 10 more years of experience in software-development
    link|flag
    vote up 12 vote down

    intellisense.

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

    Debugging environments that support edit & continue.

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

    Eclipse IDE.

    Had to sacrifice: Vim keyboard commands.

    link|flag
    2  
    You should check Eclim out: eclim.sourceforge.net – Jonas Mar 10 at 15:36
    show 2 more comments
    vote up 8 vote down

    Red Bull - it gives you wings.

    link|flag
    1  
    Yes! Although before that there was Jolt. – sk Mar 10 at 15:16
    1  
    before Jolt, Mountain Dew – jonstjohn Mar 10 at 15:28
    3  
    And before all of them... coffee :) – Sakkle Mar 10 at 15:35
    show 2 more comments
    vote up 6 vote down

    Greater acceptance/use of continuous integration.

    link|flag
    vote up 6 vote down

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

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

    Google

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

    IntelliSense and autocompletion (making it easier to use more descriptive names for classes / variables ... )

    Unit-tests (having some kind of permanent test-suite, making it easier to refactor code)

    Static code analysis tools

    ORM tools and DI containers

    As noted before; the Internet and the vast resources that can be found on it. (MSDN, blogs, articles on The Code Project, ... )

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