As an industry we tend to have a short attention span and be easily distracted by "new" things—which often turn out to be old things, effortfully re-invented.

Tony Hoare said that if we could learn the right lessons from the successes of the past we wouldn't have to learn from the failures.

What were those successes, in terms of techniques and approaches?

What effective (thinking)tools and programming techniques did you learn back in the day that you wish were used more often on the systems of today?

link|improve this question
6  
should be community wiki. – SilentGhost Jun 27 '09 at 21:13
3  
The problem with learning from successes rather than failures is that to succeed, usually many things should be done right and it's not obvious that what has really been the reason. While when you fail, there's usually a specific reason that has caused failure in the first place which is much easier to identify and learn from. My $0.02. – Mehrdad Afshari Jun 27 '09 at 21:14
This is a discussion question. It should either be made a community wiki or it should be a lot more specific. – Onorio Catenacci Jun 27 '09 at 21:27
wiki'd per community request – Marc Gravell Jun 27 '09 at 21:55
feedback

closed as not constructive by Tim Post Sep 27 '11 at 6:25

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

6 Answers

I miss programming languages that compile to machine code.

Everything these days seems to run in virtual machines or be interpreted. I bought a computer to run programs, not to have to load a virtual computer to run programs.

I know the benefits, I am just fed-up and grumpy.

Before anyone (smart arses :P) points out that the CPU microcode can be thought of as a virtual machine ... it doesn't stall for garbage collection or cost me 20% performance :)

link|improve this answer
2  
An interesting opinion, but the prob... ... ... Segmentation fault. – cherouvim Jun 27 '09 at 21:35
It does cost you a sensible amount of performance. Intel could used transistors that are decoding complex instructions for more useful stuff. – Mehrdad Afshari Jun 27 '09 at 21:35
Virtual machines and garbage collection are independent. You can have either one without the other. – Nosredna Jun 27 '09 at 21:43
@Nosredna - I know. – Aiden Bell Jun 27 '09 at 21:46
4  
@cherouvim: A VM doesn't sol... ... ... NullPointerException. – Roger Pate Jun 27 '09 at 22:00
show 5 more comments
feedback

Loop invariants, loop variants (a non-negative value that's guaranteed to decrease at every leg through the loop thus guaranteeing it will end), weakest preconditions, class invariants, and the like, are what I mostly miss from the old days.

Pre- and post-conditions of functions/methods, thanks maybe to the cool rebranding as "contracts", are still reasonably popular, but I see hardly any reference these days to these kinds of assertions which have more to do with the internal working of one component, than with the interface between components (I'll admit the latter is intrinsically a harder and more pressing issue, but ensuring each component is working soundly is hardly wasted effort;-).

link|improve this answer
1  
"contracts", I don't like rebranding :P – Aiden Bell Jun 27 '09 at 21:33
feedback

Stop and plan things out before you write any code.

link|improve this answer
When was that popular? – Nosredna Jun 27 '09 at 21:44
en.wikipedia.org/wiki/Waterfall_model – Roger Pate Jun 27 '09 at 22:02
1  
Back in the time when you had to wrote your code on paper, punch a card with it, and got the actual results the day after, you had to be extremely careful or you wouldn't have been a coder for long :) – wazoox Jun 28 '09 at 12:59
That is all good, but when I am planning I am planning for more complex eventualities than FORTRAN_C STOP – Aiden Bell Jun 29 '09 at 13:13
feedback

Languages that 'compile' to C code so that they're automatically portable but also end up generating efficient machine code.

link|improve this answer
feedback

How about being able to install an application by copying one file? Or maybe a flat directory. And uninstall an application by simply deleting the file or directory. What was wrong with that?

link|improve this answer
feedback

What about using more basic network technologies, instead of adding piles of protocols embedded in other protocols like SOAP over HTTP on SSL on TCP/IP tunneled on HTTP over SSL ?

link|improve this answer
+1, although protocol stacks do make application development more agnostic (of many things) and aid in the proliferation of web-innovation we see today by programmers who just know Java or PHP. – Aiden Bell Jun 27 '09 at 21:31
feedback

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