vote up 4 vote down star

G'day,

Inspired by this article here, what programming techniques are you glad to see the back of?

Has anything arisen to replace them?

For example:

  • I had to learn Miditran in first year at University and we had to use punch cards. But it got worse than that. Because the physics department had no punch card machine, the punch cards had perforations and we had to poke out the holes ourselves after working out what the pattern of holes was. A right pain in the butt.
  • Or using optical cards, where you had to black out the "holes". If someone used a marker instead of a dark pencil it would burn out the LDR in the reader and it would have to be replaced!

cheers

flag
9  
community wiki, please – Neil Butterworth May 1 at 8:02
Will make it community if it gets reopened. I think it's interesting. – Rob Wells May 1 at 9:34
4  
I like how almost all the answers to this question are either A) not obsolete, and/or B) not programming techniques. Good work, everyone! – Chad Birch May 1 at 19:57

17 Answers

vote up 4 vote down check

Standard libraries.

Re-inventing the wheel gets stale after a while (plus most of us aren't that good at it). In this day and age if I want to grab a web page I shouldn't have to write more than about 4 lines of code (try to get web page, if it fails do something about it like set an error). The mount of time this saves, and the fact that I can re-use code written by people much better and smarter at something than I am is a HUGE time saver and a HUGE improvement for my code quality (seriously, how many people are smart enough to write an HTTP client that handles cookies, authentication, POST/GET/HEAD/DELETE/4 more methods, etc, etc.). Things like CPAN, Pypi, etc. that make it absolutely trivial to get and install a really good library that is easy to use is a HUGE improvement.

link|flag
vote up 1 vote down

Non-automated profiling.

I say this mainly because at least 80% of the pain and stress in my life comes from the fact that the obsolete technology employed by a long-term project of mine does NOT support automated profiling of any kind. So it's more that I wish it would go.

link|flag
vote up 3 vote down

Hungarian Notation

God, I hate it. And uppercase constants. Yeeech.

link|flag
G'day, Don't forget that there are two kinds of HN. Charles's original excellent Apps Hungarian and the abominably crap Sys Hungarian. Joel has written an excellent article about it here <joelonsoftware.com/articles/Wrong.html>/…; cheers, Rob – Rob Wells May 2 at 9:57
vote up 4 vote down

Things I don't do anymore that I used to, and are mostly obsolete:

Punch cards. Heck, paper tape. Or, for that matter, cassette tape.

Computed and arithmetic GOTOs (from FORTRAN).

Having to write my own control structures (sometimes ifs, usually loops).

Working on systems that didn't multitask and didn't have any sort of memory protection.

Any compiler that required typing in more than one arcane incantation to get it going.

Languages where terseness was required for acceptable performance (such as the Microsoft BASICs around the beginning of the home computer era).

Languages with restricted variable names (like A1).

Working without a printer because they were so awfully expensive.

Things I don't do any more, and I wish were generally obsolete:

BASIC.

Cobol.

Hand-written memory management (and, yes, I still use C++).

Cobol.

Micro-optimization without profiling.

Cobol.

Hack-and-slash unstructured coding.

Cobol.

link|flag
vote up 4 vote down

Looping on an array with

for(i = 0, j = sizeof(array); i < j; i++)
   if(array[i].something)
       do_something_to(array[i]);

instead of

foreach(item in array)
    if(item.something)
        do_something_to(item);
link|flag
vote up 3 vote down

The dumb char []

link|flag
What does this mean? – jmucchiello May 1 at 20:45
char[] = character array – JRL May 2 at 0:46
vote up 3 vote down

Goto for control flow.

link|flag
vote up 2 vote down

Most of the answers here (and in the article) have something in common, so I'll try to state the meta-logic:

Some hard-or-error-prone technique that used to be desirable or necessary due to constrained [memory|processing power|compiler sophistication|hardware facilities], that can now be safely abstracted away, but which people keep using out of habit.

It also seems that "modern" means "agreeing with my pet-peeves".

Not that these answers are wrong.

YMMV.

link|flag
vote up 2 vote down

Well some that everybody was cheerish as it went but nobody recognized it just hided here and there:

GOTO

link|flag
vote up 1 vote down

Copy and paste ;)

link|flag
Sadly it hadn't been gone. Quite the opposite! But I like the answer ;) – Norbert Hartl May 1 at 8:19
Copy & paste certainly isn't obsolete. I know it's been discussed a lot but still. I use it quite frequently; especially in Query Analyzer. Nothing worse than UPDATE-ing a column WHERE you typed the wrong id instead of just c&p from your previous query. – T Pops May 1 at 20:03
vote up 3 vote down

Include files — a much obused feature and I'm glad it's gone from most of the modern languages.

It is way too easy to break incapsulation, scoping and obfuscate code readability by using includes, they are also a real pain to unit test.

It's easy for coupling to get out of control when using them. To me an include file is a code unit with a very loosely defined interface.

link|flag
vote up 4 vote down

XML. Good riddance.

link|flag
+1 We must be soul mates :) – Brian Rasmussen May 1 at 8:17
It's just being renamed to OEML, Over Engineered Markup Language – Chad Grant May 1 at 8:25
2  
I think its still prevalent. What is the leading replacement? – Unknown May 1 at 8:40
7  
"Obsolete" suggests that it has lost its usefulness or has been replaced. Given that RSS, Atom, OPML, Microformats, ODF, SOAP, SVG, SMIL/MMS, OWL, X3D, XUL/XBL, XHTML, etc. are all based on XML, and still widely used, I wouldn't call XML obsolete. It may not be ideal for certain applications (JSON is far more efficient for most AJAX applications than XML), but XML is still the most flexible (due to its extensibility), the most human-readable, and the most commonly used semantic mark-up language I know of. – Calvin May 1 at 8:53
3  
This answer is stupid. – Robert S. May 1 at 20:44
show 2 more comments
vote up 3 vote down

IE6 while not a technique, it has required inventions of many work around techniques.

link|flag
1  
IE6? How about NS4? =:O – Greg May 1 at 8:08
vote up 1 vote down

Visual Basic 6

Not a programming technique tho, but wasn't it considered GOD (Everything) in the past?!

link|flag
Visual Basic 6 was an extremely good language for its tasks (COM Interop, RAD Windows development). It was absolutely possible to write a good and readable program in VB6, even if it missed better OOP features. – Andrey Shchekin May 1 at 21:06
vote up 3 vote down

Postbacks.

link|flag
vote up 3 vote down

Boring answer: memory management (which I now see the article addressed)

Inflammatory answer: compilation on a different machine than that on which it's executed

link|flag
What do you say about compiling for a mac? Its the most expensive mainstream platform. – Unknown May 1 at 8:05
Also, memory management was fixed in 1959 with LISP. But of course it still is not "fixed". GC is still burdensome for realtime applications. – Unknown May 1 at 8:08
Well, memory management isn't really gone. It is just handled a little differently. – Brian Rasmussen May 1 at 8:09
What do I know about compiling on a particular platform? Not much; let the compiler writers worry about that. All me and my user should care about is the code and the result! – Anonymous May 1 at 8:10
vote up 1 vote down

Monolithic programming, why separate things into logical block when you can just mash it all together.

I know I know its never really gone....

link|flag

Your Answer

Get an OpenID
or

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