up vote 7 down vote favorite
share [g+] share [fb]

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

link|improve this question
9  
community wiki, please – anon May 1 '09 at 8:02
Will make it community if it gets reopened. I think it's interesting. – Rob Wells May 1 '09 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 '09 at 19:57
feedback

18 Answers

up vote 5 down vote accepted

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|improve this answer
feedback

Postbacks.

link|improve this answer
feedback

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|improve this answer
+1. Not only that, you have to tell the compiler everything twice: Once in the .c or .cpp file and again in the header. Keeping them in sync is a huge PITA. – dsimcha Feb 3 '10 at 1:24
feedback

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|improve this answer
I very often find myself writing a loop in the second style and then going back to the first later on when I need the index for something else. – Rehno Lindeque Jan 20 '11 at 9:13
Too bad Array<T> and List<T> don't implement IEnumerable<KeyValuePair<Integer,T>> nor provide a means to get one. Such a thing could be handy. – supercat Jan 22 '11 at 0:32
feedback

Hungarian Notation

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

link|improve this answer
2  
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 '09 at 9:57
I disagree. An App Hungarian prefix is often much more useful than constantly writing an explanatory comment every time you want to include some basic semantic information. Especially useful in cross-language interop. – Rushyo Jun 4 '10 at 15:18
feedback

XML. Good riddance.

link|improve this answer
+1 We must be soul mates :) – Brian Rasmussen May 1 '09 at 8:17
It's just being renamed to OEML, Over Engineered Markup Language – Chad Grant May 1 '09 at 8:25
3  
I think its still prevalent. What is the leading replacement? – Unknown May 1 '09 at 8:40
9  
"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 '09 at 8:53
5  
This answer is stupid. – Robert S. May 1 '09 at 20:44
show 2 more comments
feedback

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|improve this answer
feedback

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

link|improve this answer
1  
IE6? How about NS4? =:O – Greg May 1 '09 at 8:08
feedback

The dumb char []

link|improve this answer
What does this mean? – jmucchiello May 1 '09 at 20:45
char[] = character array – JRL May 2 '09 at 0:46
feedback

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|improve this answer
What do you say about compiling for a mac? Its the most expensive mainstream platform. – Unknown May 1 '09 at 8:05
1  
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 '09 at 8:08
Well, memory management isn't really gone. It is just handled a little differently. – Brian Rasmussen May 1 '09 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 '09 at 8:10
feedback

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

GOTO

link|improve this answer
feedback

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|improve this answer
feedback

Goto for control flow.

link|improve this answer
feedback

Copy and paste ;)

link|improve this answer
Sadly it hadn't been gone. Quite the opposite! But I like the answer ;) – Norbert Hartl May 1 '09 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 '09 at 20:03
feedback

Visual Basic 6

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

link|improve this answer
1  
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 '09 at 21:06
feedback

The C preprocessor. While I always admire the creative hacks people use it for, it seems like any real-world C project turns into a rat's nest of #IFDEF statements, such that it's virtually impossible to figure out what a given piece of code actually does in isolation. Furthermore, it's really a separate language from C and has no concept of scoping. This necessitates giving macros unreadable, ugly, ALL_CAPS names.

The preprocessor was a great idea back when C was invented, but compiler technology has advanced. Nowadays, we have real import systems instead of #include, template/generic functions instead of macros that act like functions, mixins instead of macros that exist for inserting snippets into various places, and more general/flexible forms of conditional compilation.

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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