vote up 4 vote down star
3

I recently got a client who was dealing with another web design company who was working on his website for 2 years! I took over the coding aspect of the PHP-based website, and needless to say, it was a mess. I found this little gem while looking through the source code:

  if (validated() !== false || "2" == "")  {
    if (!(false))  {

Do you guys have any examples to post?

flag
1  
Send it to DailyWTF - I don't think SO is the right place for this. – Jay Bazuzi Jan 21 at 17:00
That actually hurt me eyes. – TWith2Sugars Jan 21 at 17:02
I agree there is a site dedicated to this. I vote to close this. – David Basarab Jan 21 at 17:23
Extreme Duplicate. I don't feel like fishing up the link, but it is one. – George Stocker Jan 21 at 18:55

closed as exact duplicate by Jay Bazuzi, Robert S., David Basarab, Bill the Lizard Jan 21 at 19:27

19 Answers

vote up 16 vote down

I'll just point you to my favorite site, which is riddled with examples of the crap code I've had to deal with.

http://thedailywtf.com

link|flag
vote up 14 vote down

Some of the worst code I have had to deal with turned out being my own. I worked a job many years ago when I first started programming. I left, matured and gained a lot of experience. Returned some years later and had to manage my own mess. The first day on the job I said, "I hate myself several years ago."

link|flag
lol, I had the same experience which has lead me to believe, never go back...you are better off with the illusion that you are perfect! – Flory Jan 21 at 16:58
I've had that experience many times. I think the only thing worse than this would be to come back after years and say "Yep, I still write code exactly the same way". Kudos for learning. – JosephStyons Jan 21 at 16:58
Less than a month after writing some code, I re-read it and had the same experience. In this case the difference was having since learned about all the utility functions and whatnot which were provided both in the language and as part of some utility classes my company used. – Brian Jan 21 at 17:18
I have to agree. IMO, if you don't say "what the hell was I smoking?" when looking back on your older code, then you are either 1) a genius or 2) not learning. – Randolpho Jan 21 at 19:01
vote up 4 vote down

We had to deploy some special-purpose server written by guys who obviously were reading Stroustrup (and "learning C++") in parallel. E.g., recently-changed files were filled with template stuff, while older files did not use templates. Earliest files were basically C with classes.

I had an annoying bug in file which was written while its author was reading a chapter on exceptions. So, of course, all control-flow was done with exceptions! Plain (sequential!) integers were used in throw statements:

if (fopen(...) == NULL) 
  throw 2;

if (fread(...) < nread)
  throw 3;

/* ... */

if (fclose(...) == EOF)
  throw 16;

(Of course, the chapter on iostream is much later in the book!)

link|flag
vote up 3 vote down

I direct you to The Daily WTF for all the awful code examples you could ever want.

link|flag
Ha ha, I got in first! :D Thank god we don't have all the crap first-post posts on this site you get on say, slashdot. – Randolpho Jan 21 at 16:58
vote up 3 vote down

Here is an example of a coworker of a friend of mine:

It is SQL has cursors, several update insert statements, 11 tables are being created

it is too long to post here but take a look here: http://forum.lessthandot.com/viewtopic.php?f=17&t=140

link|flag
Ah yes the famous Uncle Rico code – HLGEM Jan 21 at 18:11
vote up 2 vote down

If you are an Admin then you are assigned the variable IsADMIN (with a value of 1 I think although the value was never used). If you are NOT and Admin ... no variable.

<CFIF NOT IsDefined("IsADMIN")>
    ... do some non-admin stuff ... I think?!?!
</CFIF>
link|flag
I love those "if not not is not something" control structures, because they do make it not not unobvious to immediately grasp what's going on. – Michael Stum Jan 21 at 17:21
vote up 2 vote down

I won't post code examples, but the worst kind of code I've dealt with is when you have to add a new feature to a poorly documented, mission-critical system that nobody really understands.

You have to really dig to even find the relevant code, and when you do, it is a terrible database schema represented by obtuse classes, layered in 300-line functions, all of which do seven things. Unit tests? Don't make me laugh. Touching it is scary; deploying changes is an exercise in hair-raising thrills. Work like that is genuinely depressing.

link|flag
vote up 2 vote down
/*javascript*/
function ltBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function lrBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function lrbBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function ltbBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function ltrBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function tBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function trBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function trbBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function tbBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function lbBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function rbBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function ltrbBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function noneBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function lBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function rBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function bBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function ltroBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function lroBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function lrboBold(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 3;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function noBoldiVert(iRow, iCol, nRow, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iLeft).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iRight).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iBottom).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iTop).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders(iVert).Weight = 1;
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(nRow, nCol)).Borders.Color = "Black";
}
function bBold(iRow, iCol, nCol) {
    excel.Range(excel.Cells(iRow, iCol), excel.Cells(iRow, nCol)).Borders(iBottom).Weight = 3;
}
link|flag
vote up 1 vote down

I have to deal with a legacy Classic ASP (VBScript) codebase on a daily basis, and I've seem some truly terrible code. I mean no indentation, cryptic variable names, duplicate logic that's 99% the same between the If/Else clauses, For loops inside of other for loops inside of nested If statements, with the Else statement being the exact same loop... On Error Resume Next littered on every page and, because it's there, the programmer just wrote code without rhyme nor reason so if you remove On Error Resume Next, the page won't even load.

Here's a snippet (all indentation is left as-is):

ctr=0
if ubound(linary)>35 then

'loop through the lines to get at the data
for each a in linary

ln=cstr(linary(ctr))
if left(ln,1)="D" then
psku= trim(mid(ln,2,15))
puom= trim(mid(ln,17,2))
prest=mid(ln,19,800)
pstr=""
pstrt=1
pstp=8

for b=1 to 100 step 1
pstr=pstr&mid(prest,pstrt,pstp)&","
pstrt=pstrt+8
next
pstr=left(pstr,len(pstr)-1)
myFile.writeLine psku&","&puom&","&pstr
end if
ctr=ctr+1
next

Here's another one:

if pIdCustomer=0 then
pPriceColumn="retail"
else
mySQL="select priceColumn from customers where idCustomer='" & pIdCustomer & "'"
call getFromDatabase(mySQL, rsTemp, "ViewItem_1")
pPriceColumn=rstemp("pricecolumn")
end if

if pIdCustomerType=4 or pIdCustomerType=5 or pIdCustomer=17873 or pIdCustomer=21385 then
 mySQL="Select accessLevel,groupId from customers where idcustomer="&pidCustomer  
 call getfromDatabase(mySQL, rstemp, "comersus_customerUtilitiesMenu.asp")
end if
if not rstemp.eof then
paccessLevel=rsTemp("accessLevel")
pIdGroup=rsTemp("groupId")
else
paccessLevel=1
pIdGroup=0
end if

And the whole application is written like this, with over 5,000 ASP files.

Oh, I forgot - there's also a file of javascript functions called "jfunctions.asp" (Yes, it's an ASP file that's nothing but Javascript) that uses some weird IE-only Remote Scripting to mimic Ajax. Here's a sample from that file (as if I haven't blinded you enough). It's not so much that the code is BAD, just that it's a nightmare of spaghetti and nearly impossible to maintain; it's like reading hieroglyphics:

function movecalc(row){
    var row = row
    //alert(document.getElementById('wght'+row).value);
var prct = 0;
var qcst = parseFloat(document.getElementById("pQuoteCost"+row).value);
var cst = document.getElementById('pCost'+row).value;
var pqty = document.getElementById('pqty'+row).value;
var pprc = document.getElementById('pQuotePrice'+row).value;
var extqprc = 0;
var npprc = parseFloat(pprc);
//alert("New Price: "+npprc+" - QuoteCost: "+qcst+" - Qty: "+pqty+" - QuotePrice: "+pprc+" - Cost: "+cst);
document.getElementById('pQuotePrice'+row).value = npprc.toFixed(2);
if(pprc!=0){
//alert(pprc);
if (qcst>0){
prct = ((pprc - qcst)/pprc)*100;
} else{
prct = ((pprc - cst)/pprc)*100;
}
extqprc = parseFloat(pqty * pprc);
}
else{
var cprc = document.getElementById('pCustPrice'+row).value
//alert(cprc + " pprc=0");
if (qcst>0){
prct = ((cprc - qcst)/cprc)*100;
} else{
prct = (-(cprc - cst)/cprc)*100;
}
extqprc = parseFloat(pqty * cprc);
}
document.getElementById('pct'+row).value = prct.toFixed(2);
extqprc = parseFloat(extqprc);
document.getElementById('pQuoteExtend'+row).value = extqprc.toFixed(2);
//alert("fired");
allTotals();
}
link|flag
example 2, line 4 looks like a SQL injection vulnerability – amdfan Jan 21 at 17:52
Yes, it is - there was no input checking whatsoever (I've since added some back-end validation routines that clean the data before it's executed) because the previous guy didn't understand how to do it. – Wayne M Jan 21 at 18:03
vote up 1 vote down

Oh good god, you don't even want to know.

Typical would be this:

Public Shared Function CompressEncrypt(ByVal e As String) As String
          Dim _ces As String
          _ces = e
          _ces = _ces.Replace("00", "g")
          _ces = _ces.Replace("11", "h")
          _ces = _ces.Replace("22", "i")
          _ces = _ces.Replace("33", "j")
          _ces = _ces.Replace("44", "k")
          _ces = _ces.Replace("55", "l")
          _ces = _ces.Replace("66", "m")
          _ces = _ces.Replace("77", "n")
          _ces = _ces.Replace("88", "o")
          _ces = _ces.Replace("99", "p")
          _ces = _ces.Replace("aa", "q")
          _ces = _ces.Replace("bb", "r")
          _ces = _ces.Replace("cc", "s")
          _ces = _ces.Replace("dd", "t")
          _ces = _ces.Replace("ee", "u")
          _ces = _ces.Replace("ff", "v")

          Return e
  End Function

and I'll let the reader work out how badly wrongheaded this one is:

  Dim nodelist As XmlNodeList = RXMLSearchTerms.SelectNodes("//foo[@id='" & foo & "']//bar[@id=" & bar & "]//baz[@id=" & baz & "]")

  If nodelist.Count >= 1 Then
      Dim qry1, qry2, qry3, qry4, qry5 As String
      qry1 = ""
      qry2 = ""
      qry3 = ""
      qry4 = ""
      qry5 = ""

      For Each node As XmlNode In nodelist
    	  Dim nodeReader As XmlNodeReader = New XmlNodeReader(node)

    	  While nodeReader.Read()
    		  If nodeReader.NodeType = XmlNodeType.Element Then
    			  If nodeReader.Name = "querytxt" Then
    				  Select Case nodeReader.GetAttribute("id")
    					  Case "0"
    						  qry1 = nodeReader.ReadString()
    					  Case "1"
    						  qry2 = nodeReader.ReadString()
    					  Case "2"
    						  qry3 = nodeReader.ReadString()
    					  Case "3"
    						  qry4 = nodeReader.ReadString()
    					  Case "4"
    						  qry5 = nodeReader.ReadString()
    				  End Select
    			  End If
    		  End If
    	  End While
    	  nodeReader.Close()
      Next

      Dim queries() As String = {qry1, qry2, qry3, qry4, qry5}
      Dim randomQry As Random = New Random()
      qry = queries(randomQry.Next(0, queries.Length - 1))
  End If
link|flag
vote up 1 vote down

The worst codes I've had to maintained were usually C+ codes (i.e. C paradigms wrapped in a C++ Object-in-name-only syntax), where the developer refused to use standard API functions, and where they refused to use language features. Examples:

//java and C#
try {
  doSomething();
} catch(Exception e) {}

What you see above is exact--empty catch with no comments!!!!!!

object parser = null;
object result = null;
if(cmd == "cmd1") {
   parser = new Cmd1Parser();
   ((Cmd1Parser)parser).parse(data);
   result = ((Cmd1Parser)parser).getStringResult();
} else if( ....) {
   ...
} else if(cmd == "cmdN") {
   parser = new CmdNParser();
   ((CmdNParser)parser).parse(data);
   result = ((CmdNParser)parser).getStringResult();
}

No, CmdNParser's do not inherit from a common "Parser" interface. No, they don't use a common base class. No they don't use composition to re-use the same code. Just copy-paste.

//Note this is languages that support generic programming, C++, Java, C# with no
//legacy code to support.
class Utils {
   public static String getString(java.util.List list, int index) {
     try{
      if(list!=null) {
         if(index>=0) {
            if(index<list.size()) {
               return (String)list.get(index);
            } else {
               if(log.isInfoLog()) log.info("index invalid.");
               return null;
            }
         } else {
            if(log.isInfoLog()) log.info("index invalid.");
            return null;
         }
      } else {
         if(log.isInfoLog()) log.info("list null.");
         return null;
      }
     } catch(Exception e) {
         if(log.isInfoLog()) log.info("exception.");
         return null;
     }
   }
 }

Yes, it was really nested this way. Yes, every log statement was guarded (even though there's no concat). Yes, there's an empty catch block. Yes, null is also a valid element in the list. Yes, all the code is written this way.

And my personal favorite:

class MyClass {
   public static ERRNO methodA(StateObject o, Parameters...);
   public static ERRNO methodB(StateObject o, Parameters...);
   public static ERRNO methodC(StateObject o, Parameters...);
   public static ERRNO methodD(StateObject o, Parameters...);
}

WTF?!?!?! This is NOT a utility class...

link|flag
vote up 1 vote down
DELETE
FROM [Order]
FROM [Order]
	INNER JOIN Customer ON [Order].CustomerID = [Order].CustomerID
WHERE Customer.Code = @Code

I've lost far to much data to delete statments like this over the years.

link|flag
vote up 1 vote down

I inherited some assembly code. It was built in different ways to do different things, using preprocessor statements, so for example:

if IS_THIS_NETWORK_TYPE
if IS_CLIENT
include <something_this_client.asm>
else
include <something_this_server.asm>
endif
else
if IS_CLIENT
include <something_that_client.asm>
else
include <something_that_server.asm>
endif
endif

You'd get these conditional includes in the middle of a routine, sometimes more than once, so ...

proc my_routine
  ...statements...
  ...statements...
  ...statements...
if etc
  include one of 4 different source files !
endif
  ...statements...
  ...statements...
  ...statements...
if etc
  include one of 4 more different source files !
endif
  ...statements...
  ...statements...
  ...statements...
endp

Furthermore:

  • The code didn't use the stack to save register values across subroutine calls; so when reading even one subroutine, you'd have to branch to several (4 or more) other source files, and remember which registers did and/or didn't contain important values to be preserved across these source files.
  • The code was also squeezing itself into 64KB (so it couldn't be expended to make it clearer)
  • The code hooked (and included the interrupt service routines for) three different hardware interrupts; each ISR reenabled interrupts a.s.a.p. (so the ISRs themselves were interruptable)
  • When I started there was no debugger that could debug this code, and no log files (due to its running at interrupt level)
link|flag
At lease they are not using the preprocessor statements to perform release and version control as to avoid branching within the source control system. – James Schek Jan 21 at 17:29
vote up 0 vote down

My favorite came with an application that I inherited.

It's a VB.Net app and instead of fetching the selectedvalue from a dropdown in a one-liner like this:

    dim value as string = dropdown.selectedValue

The original developer looped through the list

    Dim value as string
    For i As Integer = 0 To Me.dropdown.Items.Count - 1
        If dropdown.Items(i).Selected Then
            value= dropdown.Items(i).Value
        End If
    Next

Now this is a working solution and it solves the problem. But when you have 20+ dropdowns on a screen, this becomes a nightmare to maintain.

link|flag
It's possible that selectedValue was not available in the version of vb that the code was first written in? But even if that were the case, they should have used a subroutine (or whatever vb calls them). – danio Jan 21 at 17:30
No this was written as is in a .net 2.0 web app. I replaced this ~20 times throughout the code with the one-liner. The page posts back so much faster now. – Eppz Jan 22 at 14:33
vote up 0 vote down

I encountered this free MD5 code. The VB code for getting an md5 of a file:

Private ByteBuffer(63) As Byte
...
Do While Not EOF(1)
    Get #1, , ByteBuffer
    If Loc(1) < LOF(1) Then
        ByteCounter = ByteCounter + 64
        MD5Transform ByteBuffer
    End If
Loop

Yeah, reading a file 64 bytes at a time is not a good idea. SLOW. And hardcoding a file handle is not so smart either.

link|flag
vote up 0 vote down

I once took over a set of Perl scripts that was someone's first programming project. I don't remember much, but one block that I recall being representative of his programming style was:

if ($day eq "Monday") { print "Monday" }
else {
    if ($day eq "Tuesday") { print "Tuesday" }
    else {
        if ($day eq "Wednesday") { print "Wednesday" }
        else {
...

There were dozens places in the code where if statements nested ten or twelve levels deep. He had completed the project, then left for another job... I was stuck with maintaining these scripts. I cursed his name whenever I had to track down a bug in that jungle.

link|flag
vote up 0 vote down

Null checking ad-naseaum.

int CreateObjectX(X** object, int param) {
   try {
      *object = new X(param);
      if(*object!=NULL) {
         *X->init();
         return 1;
   } catch(X_Exception) {
      log("error X_Exception.");
      if(*object!=NULL)
         delete *object;
   } catch {
      log("error X_Exception."); //honestly, WTF?! Just supress a bad_alloc???

   }     return 0;
}

object* x1 = NULL;
int res = CreateObjectX(&x1,1);
if(res) {
   if(x1!=NULL) {
      x1->DoSomething();
      if(x1!=NULL) {
         delete x1;
      }
   }
}
//who cares if it's correct... all the null's have been checked!!!!
link|flag
vote up 0 vote down

There was a case where 1 was false, and 2 was true. It was used in a 'deleted' column. So in code you would see

if (row.Deleted==1)
// do stuff which one would assume mean't deleted
else
// do stuff which one assumed not deleted
link|flag
vote up 0 vote down

I can't post the code due to its size and NDA-ness...but you'll get the idea pretty quick.

Thousands of lines of code. I could count the comments in TOTAL on my fingers.

I was a poor commenter before that job, and since I have been accused of over-commenting...I wouldn't wish maintaining that code on anyone.

link|flag

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