Mark Bowytz

Besides contributing at @TheDailyWTF, I write DevDisasters for Visual Studio Magazine, and involved in various side projects including child rearing and marriage.

May 2011

Invisible Developers?

by in CodeSOD on

Earlier this year, Manuel started working as a consultant in a big service company.

The project he was assigned to has an interesting history - the entire dev team that started the project over a year before had suddenly evaporated a couple of months before he arrived. 


A Problem Has Been (The Sequel)

by in Error'd on

 "Saw this on the way home," writes Jason C., "Could this be turning into a trend?"


Count on it every day!

by in Error'd on

Writes Casey B., "As it turns out, there are two conditions which must be met before one can count on it every day."


No, Continue, Chancel?

by in CodeSOD on

Robert V. writes, "I was investigating an issue that came up with one tool in our test automation framework and found following code:"

Select Case DataConnection.GetDataCellValue(_
                "Document Marketing", DataConnection.CurrentBlockID, _
                "TaxExemptionMatrix", "ClickButton", iRow)
   Case "No", "NO", "no"
      Connector.Connection.PressItem("0", 2, "3", 0) 'No
   Case "Continue", "CONTINUE", "continue"
      Connector.Connection.PressItem("0", 2, "1", 0) ''Continue   
   Case "Chancel", "CHANCEL", "chancel"
      Connector.Connection.PressItem("0", 2, "2", 0) 'Chancel
   Case Else
End Select