vote up 3 vote down star
1

Teller (of Penn and Teller fame) used to double- and triple-stack magic tricks for the pure sake of making it appear as though he was doing something totally mundane - like placing a ball under a cup. He'd do it by a string of crazy palmings, misdirections, and slight-of-hand... he was, in a way, obfuscating his obfuscations.

On occasion, I've had the need to scratch the magically mundane itch: write something out the long way that I would usually get for free. In the following case (already part of a fibonacci thread,) I had a little fun with implementing a call stack and program counter for myself:

int s[999999];
int fib(int i)
{
_1: int t=0; s[t++] = i; s[t++] = 0; s[t] = 0;
_10: if (s[t-2] < 2) { s[t-2] = 1; t-=3; }
_20: if (t < 0) return s[0];
_30: if (s[t] == 1) goto _60;
_40: if (s[t] == 2) goto _70;
_50: s[t++]++; s[t++]=s[t-3]-1; s[t++]=0; s[t]=0; goto _10;
_60: s[t-1]=s[t+1]; s[t++]++; s[t++]=s[t-3]-2; s[t++]=0; s[t]=0; goto _10;
_70: s[t-2]=s[t-1]+s[t+1]; t-=3; goto _20;
}

So the question is really an open call for submissions of your most gratuitous treatments of the simplest concepts in programming. Do your worst.

flag

39% accept rate

4 Answers

vote up 9 vote down

The Daily WTF... Oh, sorry, you meant INTENTIONAL? =)

link|flag
vote up 3 vote down

We keep threatening to put together a "plusup" package here to allow for operations like:

assert plusUp(5, 7) == 12;

We've filled it out with methods like plussUpByOne(x) and subDown(a, b).

Every so often we end up with "Free code" in our company newsletter from the "plusUp" package.

Edit: I just remembered, I had an assignment in college in a Pascal based class. The teacher kept going off about how horrible Basic was and how awesome Pascal was.

The assignment wasn't bad, a few subroutines and some loops. I ended up coding the entire Pascal project using line numbers and gotos, not even a single function call or loop. Then I coded the entire thing in Basic (QBasic where you can use functions and calls, etc. Not a single goto of course). I turned them both in together.

This is probably the only programming project I didn't get an "A" on, actually got an "F" (even though he hadn't given us specific style requirements and the programs both worked flawlessly).

He was pissed off. Bet he never even realized how much work it took to write code THAT spaghetti!

link|flag
vote up 0 vote down

Things like

if (strcmp(s1, s2) != 0) {
}

are perfectly useless from C compiler point of view, but I do it anyway. Does this qualify?

link|flag
Code isn't written for the compiler, it's written for the next coder to pick it up. That said, you're right--this should be almost harder for a C programmer to understand than the obvious "C" way. – Bill K Nov 13 '08 at 0:12
vote up 1 vote down

Does it count that I write overly-optimised functions for things that I know I'm probably never going to use again?

For example, I wanted to output the ordinal suffix (the 'nd' in '2nd' etc) for a number in a site once, and wrote a function for it (instead of just hacking it out of the date function). I don't think I've ever used it since, but I just enjoyed working out the logic to get it into an efficient one-liner...

link|flag

Your Answer

Get an OpenID
or

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