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

    punch cards! :)

    oh, wait. maybe not.

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

    Moore's Law

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

    Very little has made software development easier. The technology is certainly much better, but the difficulties are still due to communication and social issues. Those haven't changed.

    It's certainly a joy to not have to worry about every byte, and who doesn't love dual flat-screen color monitors?

    I think the scale of the problems have expanded to the limits allowed by all those technical improvements, so the cutting edge problems still seem hard.

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

    intellisense.

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

    The Internet. It allows us to find information on how to do things a lot easier. It also makes sharing libraries easier (think CPAN for perl).

    link|flag
    vote up 3 vote down

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

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

    www.google.com

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

    Edit And Continue.

    link|flag
    vote up 10 vote down

    Debugging environments that support edit & continue.

    link|flag
    show 1 more comment
    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 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 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 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
    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.