vote up 6 vote down star
3

Just saw a question about learning by dissecting open source projects. Made me think, what's the worst code you've seen in a noteworthy open source project?

Correct me if I'm wrong, but I've heard a gripe or two about WordPress' database interaction.

Also, what contributed to this? Too many developers? Too few developers? Failure to refactor as the design evolved? Poor documentation?

flag

73% accept rate
+close. Not a real question, subjective and potentially argumentative. You should check out thedailywtf.com – Shog9 Jan 24 at 0:30
Finding out what makes for bad code is most certainly in the realm of computer science and programming, and is probably even quantitative, IMHO. :) – Chris Jan 24 at 0:33
favorited for admittedly juvenile reasons (awesome, let's all flame each other!) – username Jan 24 at 0:42
Shh, don't let the Stack Overflow Gestapo know or they might come after you too! – Chris Jan 24 at 0:59
might I suggest making this question community wiki though – Newtopian Jan 24 at 2:21
show 2 more comments

closed as subjective and argumentative by Charlie Martin, Shog9, ocdecio, paxdiablo Jan 24 at 3:59

5 Answers

vote up 4 vote down check

I've written some pretty awful code in the past and I kind of regret making it open now, because Google's archived most of it forever :(

This was something that was supposed to be used for alternating HTML table row colours:

<?php
function colour()
{
    static $c;
    return '"c'.(1+(++$c&1)).'"'; 
}
?>

The rest of the code was full of unintelligible bit-twiddling code like that.

link|flag
I marked that up. Because it's horrid, and awful. – Paul Nathan Jan 24 at 2:56
vote up 2 vote down

A long time ago (I was still in college), we needed to adapt a spell checker. We were presented the source of ispell, a spellchecker for (La)TeX.

It was C code, and a lot of it. And somewhere deep in the code were three macros. One was using the second and the second was using the third. A comment that was written above them said it all: "This is a fine example on how not to write clear C code" or something like that.

It was hard to understand, but it was a huge learning experience. I will never forget that moment ;-).

link|flag
vote up 1 vote down

A few years ago I was evaluating the security for a well known configuration management open source project (as in maintaining system configuration files across multiple machines, etc etc)

Their solution to securing communication between the central configuration repository and the individual systems was to use 3DES. Note that 3DES is a symmetric key encryption system.

Their solution for sharing the key was to the precede the encrypted traffic with the unencrypted key.

They quickly fixed the issue.

link|flag
vote up 0 vote down

I'm working on some small rewrite of a wonderful program, which was originally written in Delphi, and ported to Java. The code is therefore in an entirely alien style, doing things that feel so terribly wrong to a java developer. That's not to say it is wrong or doesnt work, if it hadnt been ported I wouldnt have this project to work on, so I'm grateful.

link|flag
vote up 1 vote down

Some of the code in a certain monolithic kernel that's out in the wild right now. Next to it, the micro-kernels are beauty in motion, in terms of readability and understanding.

Wiki'ed for obvious reasons :-).

link|flag

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