vote up 8 vote down star
3

Like children, programmers are often given the information that they need for their profession in the form of inviolable "rules". Like children, we often follow these rules unflinchingly until one day, by accident more often than deliberately, we don't follow the rule, and nothing bad happens. Maybe we even see that not following the rule makes our lives easier and our code works better.

My favorite abandoned rule is:

Never use SELECT * in a query

I absorbed this rule while learning SQL the night before my first day at my first IT job (1996) by cramming a book on Access. The book spoke with the ferocity of a televangelist about how a baby kitten is drowned whenever a programmer uses SELECT * in a query, and I believed.

For years I never ever used SELECT *. One day, I was writing a query like

SELECT COLUMN1, COLUMN2, ... COLUMN472 FROM tblWHYTHISMANYCOLUMNS

when it occurred to me that since I was just asking for every column in the table, I could save some time by typing

SELECT * FROM tblWHYTHISMANYCOLUMNS

I tried it, and amazingly it compiled and ran perfectly. I've been an asterisk-man ever since. Nothing bad has ever happened to me as a consequence.

So what's your favorite abandoned rule?

flag

1  
We ran into a problem using SELECT * on an Oracle 10 database a couple years ago because it returned otherwise-hidden system-generated columns that were not part of the actual table definition. This broke our application. So, there you have a good reason to not use it with Oracle. – hurst Sep 22 '08 at 3:30
1  
I still comply with this rule: using SELECT * from program is bad (especially if you refer to columns by their indices) because one day or the other, someone will add/delete a column... – bortzmeyer Sep 22 '08 at 11:34
1  
Good thing I don't ever refer to columns by their indices (not all rules should be abandoned). – MusiGenesis Sep 22 '08 at 12:16
3  
This would be better as a community wiki. – Alex Angas Nov 18 '08 at 14:56
haha, I actually had to listen to another developer bitch about this the other day because a 4 month co-op like me had done this + used column indices. When he added a column to the database everything blew up and he had to spend all afternoon fixing it. That's what's officially scared me off doing it, at least while I'm at this job. Don't want to anger the Phd Wielders. – Sector Corrupt Jun 16 at 9:08
show 1 more comment

19 Answers

vote up -5 vote down check

I quit using CamelCase a while back, and I feel better about not using it every day.

Note: IIRC, among other things, asterisk makes two trips to the database, one to get the column names and another to run the query. A lot of these rules have uses that make sense (otherwise they wouldn't ever have become rules), so I would not ever permanently abandon any of them as options.

link|flag
2  
SELECT * doesn't make two trips to the database. – MusiGenesis Sep 22 '08 at 12:21
You should mention what you use instead of CamelCase. All lower case identifiers? The monstrosity of underscores? One word identifiers? – Wedge Sep 23 '08 at 0:18
1  
As long as it's readable English, it's OK with me. That's why I accepted his answer: it's an example of a rule that doens't hurt if you don't follow it. – MusiGenesis Sep 24 '08 at 20:43
vote up 0 vote down

Never tell "I will never use <bla-bla-bla> ".

link|flag
vote up 4 vote down

This might be naughty...but:

Write tests for your code before you write the actual code.

Oops...that almost never happens.

link|flag
2  
It can't be abandoned if you never followed it in the fist place. :P – KTC Sep 22 '08 at 3:16
Ha, we were forced to in class. – jjnguy Sep 22 '08 at 3:19
This rule seems hard to follow, but test-driven development helps you to write clearer and better code. And if you really start to try this method ... it is fun. It makes fun to write a test, run the test knowing it should fail. Sometime the test doesn't fail, and you know the test isn't sufficient. – Mnementh Sep 24 '08 at 18:24
vote up 0 vote down

Depending on how much of an exaggeration COLUMN472 is, having to specify columns may not be the only issue with your application.

(I'm kidding, I'm kidding ;)

link|flag
I think the actual epiphany occurred with a 60-column table (not my design). I was getting ready to write a little desktop app to auto-generate the SELECT statement for me, when the somewhat-simpler SELECT * solution occurred to me. – MusiGenesis Sep 22 '08 at 2:55
i mean yea might as well use * if your app is that f'd up already. what happens when someone adds another text/blob column to your table and your queries now return huge amounts of unnecessary data? – Shawn Sep 22 '08 at 3:30
If he adds the BLOB column without telling me first, I kill him. If he gives me advance warning and lives, I create a view on the table that includes all the original columns but excludes the new BLOB column. I then call SELECT * FROM {the view}. – MusiGenesis Sep 22 '08 at 3:51
vote up 4 vote down

Hungarian notion (at least in the microsoft longpointertosomethinginmemoryonacomputer form)

ps. Yes I do know the correct use of Hungarian notation and I do use that.

link|flag
my boss made us use that, i finally got him to stop, makes no sense in a dynamically typed language – Shawn Sep 22 '08 at 3:28
1  
Shawn, check out joelonsoftware.com/articles/Wrong.html for what Hungarian is really meant, not what most of the world imagined it was supposed to be like. – Nouveau Sep 22 '08 at 6:17
vote up 6 vote down

Never use gotos.

Used correctly they can be immensely useful!

link|flag
To be honest, it has never occurred to me to use goto since I programmed in BASIC. I wonder in how many places it could have helped me... – Thomas Sep 22 '08 at 3:25
Im guessing zero. Ive yet to find a use for them in any language that supports both loops and exceptions. – metao Sep 22 '08 at 3:30
1  
@metao: You should NEVER, EVER use exceptions for control flow. – TraumaPony Sep 22 '08 at 3:39
1  
I've seen people write code like: do { ... break; ... } while (false); to simulate a goto. I would rather they used gotos in that case! – Ferruccio Sep 22 '08 at 11:04
1  
@metao: That's not true at all. In C they are quite useful for breaking out of nested for loops and for grouping clean up code into one place in a function. – Eric Sep 23 at 10:27
show 4 more comments
vote up 4 vote down

"Premature optimisation is the root of all evil."

People -always- take it out of context. There was the question just asked an hour ago about it on the algorithmic scale; people usually don't know the full sentence. He was talking about things like using "myInt << 1" instead of "myInt * 2" etc.

I used to try and keep my algorithms as... Well, not simple, but brute forced. I quickly learned, however, that in a real time ray tracer, you kind of need decent PVS (Potentially visible set); I had to rewrite most of my code to do it properly.

link|flag
I'd say your PVS example is more an issue of design, rather than optimization. – Mikeage Dec 29 at 4:11
First: your code must work. Later: Optimize if you have time. – yelinna Oct 28 at 15:50
-1 for not mentioning profiling – finnw Nov 11 at 12:32
vote up 33 vote down

Every function should have only one exit point.

This got thrown away as soon as I graduated.

link|flag
5  
It's a crappy theory. I swear to god, if I see one more switch with "retval = ..." in it, I'll fucking explode – TraumaPony Sep 22 '08 at 2:59
1  
multiple exit points can make code so much shorter, cleaner and easy to read and write. – Booji Boy Sep 22 '08 at 3:12
1  
I never have understood this rule. My best guess is that in the days of GOTO vs GOSUB, it meant that your GOSUB should always RETURN, not GOTO. Which is logical, but in most modern programming languages it's irrelevant. – Kyralessa Sep 22 '08 at 4:04
1  
That's indeed the most retarded rule in computer science. It doesn't make code clearer, it doesn't make it run faster... I wonder who came up with it for the first time. – Vicent Marti Sep 22 '08 at 17:30
2  
It is no more difficult to formally verify a subroutine with multiple exits than with one exit. – Dour High Arch Jan 11 at 18:11
show 10 more comments
vote up 5 vote down

I've been known to abuse loop (mostly for loops) semantics to do some fun/interesting stuff before. I mostly blame the time I spent as a perlite, where you can get some interesting one-liners that way. The most recent of these would have to be (C#):

readonly string[] prefixes = new string[] { "", "K", "M", "G", "T" /* etc */ };
public function NumBytesToString(int bytes)
{
    double d;
    int i = 0;
    for (d = bytes; d > 1024; d /= 1024) { i++; }
    return string.Format("{0:0.00} {1}B", d, prefixes[i]);
}
link|flag
Wow, that's a pretty neat trick. – TraumaPony Sep 22 '08 at 2:54
i becoming the index into an array of strings that are prefixes ("K", M", etc) and d being the value, hence in C#, string.Format("{0} {1}B", d, prefixes[i]) – Matthew Scharley Sep 22 '08 at 3:00
uh, what's that i++ all about? Presumably it later indexes into some suffix table {"Bytes", "KiB", "MiB", "GiB"}[i]. – davenpcj Sep 22 '08 at 3:53
Or you could do: i = floor( log(bytes) / log(1024) ) – fenomas Dec 9 '08 at 3:15
for ( ... ; ... ; ++i, d/= 1024 ) { /* who needs bodies */ } – derobert Dec 9 '08 at 3:45
show 3 more comments
vote up 5 vote down

"Never take sleeping pills and laxatives at the same time" - oh wait, that's not to be abandoned :)

I was particularly happy to abandon the "use tables for layout" from web 1.0.

link|flag
4  
I was even happier to abandon the "never ever use tables for layouts" from web 2.0. – Wouter van Nifterick Jul 19 at 0:47
vote up 0 vote down

I dropped any rule that began Never do ... I'd say never say never or, if you prefer, there are usually exceptions ;D Select * is ok, although I personally use tools to do the bulk of the writing when doing large queries. FWIW I'd say don't use select * when also using "into" like: "SELECT * INTO #TEMP FROM REALTABLE WHERE COLX = 1" because if the structure of REALTABLE changes it can mess stuff up...

link|flag
vote up 3 vote down

This is more of a design principle than a "rule", but 3-tier design is something I've enjoyed abandoning (in the sense of I don't feel obligated to use it everywhere).

I have seen countless applications in the wild that had a middle "business logic" tier that did nothing more than hand data tables back and forth between the data layer and the UI layer.

Sometimes (if not most times) your app is just tables in a database and a UI for manipulating that data.

link|flag
Indeed, for most stuff, it's so needlessly enterprisey. – TraumaPony Sep 22 '08 at 3:19
3-tier is confusing sometimes. – yelinna Oct 28 at 15:49
vote up 7 vote down

I was once told that writing clean code for everbody understand included not using short if form like:

$data = (isEmpty($field)) ? "Default Data" : $field;

But I just can avoid it ... I even think this is more clear than

$data = $field;
if (isEmpty($field)) {
    $data = "Default Data";
}

or the else {$data = $field;} variation ...

link|flag
Usch. The ternary operator is far too useful not to use. As your examples shows, it can compress four lines into one. I once converted a screenful of ifs into five ternary ifs. A HUGE improvement in readability. – Antti Rasinen Sep 22 '08 at 4:09
The ternary operator should be used, nested where possible. And for even more fun, Ruby's ifs return values. – derobert Dec 9 '08 at 3:41
I love Short If :D – yelinna Oct 28 at 15:25
vote up 3 vote down

Unit Tests on the UI, they're a bugger to do and too easy to ignore

Hungarian for UI Controls (makes them easier to spot in Intellisense)

Commenting ("Good code should comment itself - just don't ask me to explain why in a month's time" :)

link|flag
Self commenting code is easier in something like VB or well structured Perl where you can actually very nearly approximate structured english with your code. – Matthew Scharley Sep 22 '08 at 7:13
vote up 15 vote down

Think everyone's broken this one:

Design first, code second?

link|flag
4  
What is this "design" you speak of? – Rich Bradshaw Sep 22 '08 at 9:42
Why can I only vote this up once? – fenomas Dec 9 '08 at 3:04
I do both at once: I start by writing interfaces. I guess that still counts as "coding without a design" as I'm typing into a code editor not a word processor. – finnw Nov 11 at 12:27
vote up 7 vote down

Always use curly-braces around code-blocks, even though the language may not require it

This is a common "best-practice" suggestion that I have heard throughout the years, and it wasn't until recently that I have realized why I adamantly disagree with it.

Consider the following example:

if(myDevice.hasConnectionError())
  FaultResponseManager.submit(myDevice.getLastError());

If we assume the above code snipplet is apart of a code-base where all error conditions are expected to be handled exclusively by the FaultResponseManager (as per design decision), a perfectly clean way to discourage other developers from adding other code to the block of this if-statement is to simply drop the curly braces. This makes it clear that the original intent of the code block is to do exactly one thing.

link|flag
That's gonna be tough in VB :) – chris Feb 26 at 0:58
1  
IMHO without the surrounding text (i.e. just look at the code sample) it isn't in any way clear that the code block should only do one thing. It's just clear that you haven't put braces around it. And it's not clear why you haven't done that. – Greg Beech Apr 21 at 14:06
The point is that the lack of braces can "enforce" conventions within a given code-base. Let us say that there exists a convention that all error handling must be routed through a single delegate (in this case a "FaultResponseManager") and that if anything else needs to happen: it must be added to the implementation of said delegate (not within code blocks surrounding invocations of it). Applying such semantics to {}-less constructs is a light-weight approach to achieve this. – Ryan Delucchi Apr 21 at 23:56
I hate curly braces when they're not necesary. I think the code is more readable this way. – yelinna Oct 28 at 15:47
vote up 2 vote down

In Java some people keep coding following the rule, that you should assign null to references that are no longer in use. That should help the garbage collector to reclaim the memory taken by the object the reference was pointing to.

This rule is completely outdated, on modern virtual machines it makes the Garbage collector actually less efficient!

link|flag
vote up 3 vote down

I'm taking JayTee's comment at face value, although I don't believe that "use tables for layout" was ever a rule, so much as a de facto standard.

There is, however, that "don't use tables for layout" — or anything other than "tabular" data — rule, which is my personal favorite to abandon.

I've never been punished, or suffered in any way for breaking this rule! I've suffered a lot more over trying to answer questions like "How do I achieve x without tables?" In "both" browsers. Good riddance!

link|flag
vote up 1 vote down

Never use "magic numbers".

Often they are obvious, and a constant/#define actually obfuscates. In other cases, a judcicious comment is preferable anyway, as the description is where it is actually being used, rather than hidden elsewhere.

link|flag
A magic number is often unnecessary when localized in a well defined method or block. i.e. it may be obvious what it's for. If it's used in more than one place though - then it's best to provide a constant. – Conor Nov 11 at 12:31

Your Answer

Get an OpenID
or

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