vote up 22 vote down star
10

We've all been there (usually when we are young and inexperienced).

Fixing it properly is too difficult, too risky or too time-consuming. So you go down the hack path. Which hack from your past are you most ashamed of, and why? I'm talking about the ones where you would be really embarrassed if someone could attribute the hack to you (quite easily if you are using revision control software).

One hack per answer please.

Mine was shortly after I started in my first job. I was working on a legacy C system, and there was this strange defect where a screen view failed to update properly under certain circumstances. I wasn't familiar with how to use the debugger at this time, so I added traces into the code to figure out what was going on. Then I realised that the defect didn't occur anymore with the traces in the code. I slowly backed out the traces one-by-one, until I realised that only a single trace was required to make the problem go away. My logic now would tell me that I was dealing with some sort of race-condition or timing related issue that the trace just "hid under the rug". But I checked in the code with the following line, and all was well:

printf("");

Which hacks are you ashamed of?

flag
4  
That's called a Heisenbug - where the act of observing the bug makes it go away ... en.wikipedia.org/wiki/Uncertainty_principle/… – Booji Boy Oct 1 '08 at 3:10
en.wikipedia.org/wiki/Unusual_software_bug – Booji Boy Oct 1 '08 at 3:11
Not to be obnoxious, but I'm thinking this falls under 'community wiki' – pbh101 Oct 28 '08 at 2:20
Done! Changed to community wiki. – LeopardSkinPillBoxHat Oct 28 '08 at 2:38
I have the same line of code in one of my production programs, with a little comment beside it that reads "Remove this line and the program fails." I eventually traced it down to a memory overrun that somehow magically was fixed by the empty printf. – EvilTeach Oct 28 '08 at 2:40
show 1 more comment

23 Answers

vote up 62 vote down check

How to hide HTML source.

Preparing a product demo, the boss required that the source code of the web page would not be visible when the user right-clicked in the browser and selected "view source", because he tought that "probably" someone would steal the code and duplicate the product.

So, I put in the html file about 100 blank lines and then all the content, so when my boss right-clicked the page and selected "view source" he only saw an aparently empty file. Fortunately, he didn't notice the diminute scroll bar of the file viewer indicating that the "empty file" had more content.

link|flag
2  
that's brillant! – nickf Oct 1 '08 at 3:38
That's a smart boss you had there :) – Mike F Oct 1 '08 at 4:35
2  
nickf: Boss was probably called Paula. :-) – Chris Jester-Young Oct 1 '08 at 6:09
5  
Does your boss have pointy hair? – Chris Lutz Apr 24 at 10:29
3  
Is it just me, or does it sound to anyone else like German is actually not ashamed of this hack at all? ;) – Dan Jun 22 at 15:44
show 4 more comments
vote up 2 vote down

I was young, inexperienced and way behind budget and deadlines...

I needed to add a feature to an accounting system I had written, this feature was supposed to pull a list of unique checks from an array of payments (One check could contain money for more than one payment).

I wrote this:

Dim UniqueCheckNum(1000)
Dim TotalUniqueChecks
TotalUniqueChecks = 0

for i = 0 to TotalUniqueChecks
	for j = 1 to TotalElem
		if NOT StCheckNum(j) = UniqueCheckNum(i) then
			UniqueCheckNum(TotalUniqueChecks) = StCheckNum(j)
			TotalUniqueChecks = TotalUniqueChecks + 1
		end if
	next
next

To this day, I don't know why I did it that way, especially considering the strange way I abused the for statement...but it works, and the system is still production, handling payments everyday...

This is my favorite snippet of WTF the code, and I've always kept a copy of that file around.

link|flag
I tried that stunt once "in time out of mind" but VB 6 wouldn't cooperate ... – Booji Boy Oct 1 '08 at 3:05
Weird. That probably works only on a specific version of VB. Most of the time modifying the loop terminator does nothing. – Joshua Jun 18 at 15:07
vote up 2 vote down

In my teenage days, I was writing a code-golfed biorhythms calculator in x86 assembly. As x86 programmers know, the shortest way to divide by small numbers is to use the aam instruction (see my fizzbuzz solution for an example of its use).

Well, aam's argument is an immediate operand. So, in order to loop through with the various divisors (23, 28, 33), my code incremented the immediate operand by 5 each time. Yes, self-modification of the running code. Luckily in DOS code, this is all very kosher. :-P

link|flag
only in real mode, not protected mode though! (right? or am I smoking something) – Booji Boy Oct 1 '08 at 3:02
Sorry, I did mean real-mode DOS code. :-) (Not any of that DOS extender business.) – Chris Jester-Young Oct 1 '08 at 3:08
no problem, just making sure I didn't mis-remember that. We are showing our age ... – Booji Boy Oct 1 '08 at 3:14
IIRC the immediate operand wasn't documented as such, but rather as a continuation of the opcode. A consequence of this was that a value of other-than-10 wouldn't work on some non-Intel x86 chips. – Jeffrey Hantin Apr 7 at 23:25
vote up 46 vote down

In a Windows95-era game, I wrapped the mainloop in an exception-handler. Any time the game crashed, for whatever reason, I popped up message purportedly from Windows, with some impenetrable-looking message designed to put the blame squarely on the OS's shoulders.

link|flag
Now I'm intrigued, which game? – Brad Gilbert Oct 1 '08 at 3:14
I knew it, Tribes 2? – Dan Blair Oct 1 '08 at 3:20
No comment :) But no, not Tribes 2. – Mike F Oct 1 '08 at 3:25
That's beautiful! – Michael Burr Oct 1 '08 at 4:26
8  
And thus the hatred for Windows and MSFT begun. LOL – Jon Limjap Oct 28 '08 at 3:04
show 3 more comments
vote up 9 vote down
/* printf("%s",meaningoflife); */ 
printf("%d",42);
link|flag
lol... HHGTTG, Answer to Life, the Universe, and Everything -> en.wikipedia.org/wiki/… – Leon Tayson Oct 1 '08 at 2:38
I figured this audience would appreciate that joke. :-) – Onorio Catenacci Oct 1 '08 at 9:19
vote up 10 vote down

Hard Coded account numbers and customer names into a COBOL program so it would pass testing, then I worked ALL NIGHT to get the COBOL code to read the IMS database correctly and display the data properly (not hard coded obviously!). What still baffles me to this day is how the testing department (we had a dedicated group of software testers) looked at the screen output from my program and let is "pass".

Knowing it would fail in production that next day, I came back after dinner and worked until 5am! I was 23 and 1/2 a lifetime ago!

link|flag
vote up 3 vote down

When I first built an ASP.NET AJAX site I wrapped the entire page body in an UpdatePanel, it was a massive form (comprising of 20 - 40 controls).

Oh the humanity...

Thankfully I did actually learn what AJAX was all about and the potential evils of the UpdatePanel

link|flag
1  
is that what caused the power failure across the northeast back when? :-) – Optimal Solutions Oct 1 '08 at 2:58
vote up 5 vote down

5 years ago I had to write the business logic behind a front end GUI written by another programmer in VB.NET 1.1 (He was the employee and I was the consultant ...[sigh]) He had created the front end using a hodge-podge of nested and poorly tested user controls. I just could not get a parent control to get the focus at certain point once the focus was in child control. Soooo, I used cough sendkeys{tab} to fix the issue... The app is still in production w/ the hack running on citrix farm of three terminal servers w/ 120 or so win-terminals ;D

link|flag
vote up 3 vote down

In the days before AJAX, Internet Explorer exposed a method called ShowModalDialog. Working in classic ASP, I figured out a technique that called ShowModalDialog with an ASP page as the URL. This page would query the database and response.write the information out in the form of a client-side javascript object that was returned when the modal browser window was automatically closed.

If the read operation took a bit of time, the modal browser window could even be made to show a progress bar.

With this technique I was able to update page contents without a full reload, a la AJAX.

EDIT: I just looked this stuff up, and showModalDialog() premiered in IE 4 in 1997, and XMLHttpRequest (aka AJAX) came out with IE 5 in 1999. But the IFrame sort of beat them all in 1996.

I'm ashamed because I came up with my AJAX-like hack in 2000.

link|flag
hell yeah, I wrote a whole system using "xml data islands" and xmlhttprequest. it was well before it's time. – TheSoftwareJedi Oct 1 '08 at 3:52
I did a similar thing before AJAX, what I loaded an iframe of data then rad the content of iframe and change the current page :) it was almost like AJAX before AJAX. I thought that was so clever. – dr. evil Apr 24 at 10:27
vote up 0 vote down

Well, this hack comes because of the tight deadline. I guess all the hacks come out this way. Anyway, I was working on a school project and the next day the students must get an exam but they are not supposed to start the exam until 8:00 AM next day. So, I just hard coded the line:

if(date is less than 8:00 datetime) then tell the student that it is not time to start the exam.

Sometimes the working software is more important then a hack.

link|flag
vote up 0 vote down

There's this one I used to do (and I see done all the time) to convert a number to a string in Java:

int n = 12345;
//...
String s = "" + n;

Of course, this is better done like this:

int n = 12345;
//...
String s = Integer.toString(n);

Heck, for all I know the Java compiler may have a special case for empty-string plus primitive that makes this hack just as efficient. But if not, this method requires creating a StringBuilder object behind the scenes, which is just unnecessary.

link|flag
If your n is constant (using your example of 12345), it gets turned into the string constant "12345". If it's not constant, then yes, a StringBuilder is used (tested with OpenJDK 7). Hmmm.... – Chris Jester-Young Oct 1 '08 at 6:14
1  
Holy Crap it works in C#! – Lucas McCoy Jun 18 at 15:47
vote up 4 vote down

There's this one I'm ashamed to say I've done. Given code like this:

RC = doSomethingThatShouldNeverFail();
if(FAILED(RC))
{
  if(pObj1) { delete pObj1; pObj1 = NULL; }
  if(pObj2) { delete pObj2; pObj2 = NULL; }
  TRACE << "Failed to do something" << endl;
  ErrorStack.Push("Err Message");
  return E_FAIL;
}

Since doSomethingThatShouldNeverFail() should never fail, no test case covers the lines inside the statement. This makes code coverage suffer. Instead of writing a test case that does fail (if that is even possible), you can in-line the whole if statement, like this:

RC = doSomethingThatShouldNeverFail();
if(FAILED(RC)) { if(pObj1) { delete pObj1; pObj1 = NULL; } if(pObj2) { delete pObj2; pObj2 = NULL; } TRACE << "Failed to do something" << endl; ErrorStack.Push("Err Message"); return E_FAIL; }

Now there are no lines of code which aren't covered, but you've got this really ugly line of code that is hundreds of characters long.

link|flag
vote up 0 vote down

I needed to read the file listing of pkziped files in a Quake III launcher app I wrote something like 8 years ago. This would let me get the maps included in the pak files installed in the system.

I ended up patching in the source from the open source unzip executable by renaming its main and then changing the code to write the file listing to a global buffer. I then called the unzip_main with the pak file name and the parameter to list the contents in the argc and argv parameters.

Much later, I saw that there was an open source library that probably would have been better and easier.

link|flag
vote up 2 vote down

This was with Java and I was actually working as a junior Java developer.

Long long time ago I stuffed various objects in a list. But objects were not representing same class... If I remember right the reason for this was to allow method to return multiple objects.

List funkyMethod() {
    List resultList = new ArrayList();
    resultList.add(new BusinessItem());
    resultList.add(new StatusBean("2", "ok"));
    return resultList;
}

Accessing was then serious casting:

StatusBean status = (StatusBean)funkyMethod.get(2);

Horrible for team mates but luckily I rewrote it afterwards. I wonder how come my mentor missed that...

link|flag
vote up 8 vote down

In basic (ashamed already), but at least was for a C64.

If you have lines like this:-

1000 GOSUB 2000
1010 RETURN

Then you can save a line with this:-

1000 GOTO 2000

Since the RETURN somewhere after line 2000 will pop stuff off the stack. You save yourself a line of code and a couple of cycles.

link|flag
6  
blink That's standard tail-call optimization. First time I've seen it in BASIC, though. – Jeffrey Hantin Apr 7 at 23:21
vote up 9 vote down

I got a PHP gig on craigslist to convert a site from PHP4 to PHP5. I finished the job in under 5 minutes by placing this in the header:

extract($_REQUEST);
link|flag
Before anybody screams "insecure", the PHP4 code was probably armored against the insecurity this appears to create. – Joshua May 26 at 15:32
vote up 0 vote down

My biggest hack so far has been when writing some music in Lilypond. I wanted a horizontal bracket over some music, so I hacked it out of the ottavation bracket. I just removed the ottavation text and set it to not transpose by an octave...

startBracket =
{
    \ottava #1 %sets a one octave transposition
    \set Staff.ottavation = #""  %this gets rid of the ottavation text
    \set Staff.middleCPosition = #0   %this puts middle C back where it came from
                                      % ie it "untransposes" it
}
link|flag
Let me recommend lilypond.org/doc/v2.13/… and lilypond.org/doc/v2.13/… :) – thSoft Jun 24 at 0:26
vote up 15 vote down

In the first year of my Software Engineering course at the Uni I had to write some short Java programs, which I would then submit to an automated marking system. I noticed that what the system did was: run my code, compare the result with expected result and then produce a response like:

Got: 6
Expected: 7

The task at hand was not exactly too straight-forward, and English not being my first language, I couldn't 100%-positively say that I understood the task correctly. Instead of worrying about how to write the code so that it produces the right result, I changed my code to:

return 7;

And in it went and passed all checks. Got me a nice 100% in coursework for that module...

The dirties hack ever :D ;)

(No, not really, I do a lot of quick-and-dirty hacking... :D)

EDIT I just realised the exact wording of the question was "[...] are you most ashamed of?" and I must admit, I am not ashamed of this hack, no-no, not the least bit. I'm actually quite proud of it :)

link|flag
1  
Didn't your teacher check that code? – Arnis L. Jun 22 at 15:19
In my experience, most don't bother as long as your code looks like it works. – MiseryIndex Nov 23 at 0:22
vote up 1 vote down

As the Database Administrator was away on holiday's, management wanted a feature ASAP.

We ended up implementing a flag on a single Id in compiled code for an c# events system.

if (Id == 141) {
    //Do Some Action
}
link|flag
vote up 3 vote down

New to programming and not understanding instance variables i wrote an app with every variable as global. that's a LOT of variables to keep track of. And the password was hardcoded in. but hey the app worked.

link|flag
Seems familiar to me. :D – Arnis L. Jun 22 at 15:24
vote up 2 vote down

(Not really ashamed of this, but it is a big hack)

When I wrote my first game in 386 assembler, but I needed access to memory above 1Mb to store data in but still run in real mode. Back then, there was no StackOverflow, so I wasn't able to find information about EMS/XMS APIs, so I decided to roll my own version. For those who don't know, on the 8086 memory was accessed in 64Kb blocks, the block to use was defined using a segment register. The address was calculated as follows:

address = segment * 16 + offset

so, to write to display memory, you'd need the following:

mov ax,0b800h
mov es,ax
xor di,di
mov ax,0730h
mov cx,80
rep stosw ; writes ax to 80 words starting at es:di, or 0b8000h

On the 386 in real mode the above code produced the same effect. However, the internal mechanism was totally different. Instead of:

address = segment * 16 + offset

it was:

address = segment.start_address + offset

where each segment register was a structure of data that defined the segment. In protected mode, the commands:

mov ax,1
mov es,ax

would load es with the second entry in the segment descriptor table. The value of es was 1 but es.start_address was whatever was defined in the table. In real mode, the segment data was set up to mimic the 8086, so:

mov ax,0b800h
mov es,ax ; es.start_address = 0b8000h

So, in my game, to access the extra RAM I disabled interrupts, swapped to protected mode, set up the es segment to access all RAM, swapped back to real mode and enabled interrupts. Swapping between protected and real mode did not reset the internal data for the segment registers so I could then access all memory in real mode provided I didn't write to the segment register.

It still works this way today, although Intel could change the way it works as I believe it is undocumented. I don't think the will as there is probably a few apps out there that rely on this behaviour.

Skizz

link|flag
vote up 1 vote down

This is in VBA and I gather in this crowd that's reason enough to be ashamed ;D But it's a pretty common task in Excel Automation (in C# too for that matter) to need to replace the formulas with just the results. Particularly if you are distributing the workbook outside the company. At some point I realized this could be done by assigning Range.Value to itself. Thus this:

Sheet1.UsedRange.Value = Sheet1.UsedRange.Value

Is enough to cause all formulas to become literals.

link|flag
vote up 1 vote down

My stupidest hack was a workaround for a stupid compiler bug.

For Mac programmers about 1987, Lightspped C was the C compiler of choice. It had a built-in hack where if you invoked certain MacOS system calls, they didn't actually emit the correct machine code. No, they built the call on the stack and jmp'd to it. And it worked fine on the 68000.

Then Apple released the Mac II, and it had this fancy 68020 with a thing called a 256 byte "instruction cache". Sped up things like tight loops a whole lot!

Only one little problem. Say you used Lightspeed C, and it built calls A and B on the stack. If your program called B within 256 bytes of having called A... A got executed again! Whoops!

And you couldn't use the 68020 "flush the cache" instruction, because it required the 68020 be in "supervisor" mode, which crashed Mac OS.

So I flushed the cache with 256 assembly language NOPs.

link|flag

Your Answer

Get an OpenID
or

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