Click here to Skip to main content
Click here to Skip to main content

An Idiots Guide to Really Really Bad Programming

By , 1 Feb 2010
 

Introduction

I have noticed that certain individuals persist in writing good clear code that is well documented and easy to understand. So I thought it was about time to draw the main techniques of really really bad programming together into a single reference document. Remember the most important two things when writing truly awful software are to include as many subtle bugs as possible and to make the code really confusing so that it is hard to track those devious little bugs down. That way you can annoy both users and programmers to the maximum extent.

If you follow these simple rules, I promise you that you will never be far from users’ and other programmers’ thoughts.

1. Turn Off All Compiler Warnings

If you want to write really awful code, this is a great place to start. After all, you do not want that pesky compiler nagging you all day. All real programmers turn the warnings off completely.

2. Variables

Beginners should ensure that all variables are global. It is much easier to keep them all together in one place. As you become more advanced, add local variables with the same names as the globals, this will allow you to create subtle bugs with ease.

3. Functions

Avoid using functions wherever possible. It is much easier to write one single enormous long passage of code than going through the tiresome process of trying to divide it into separate functions and having the tedious job of passing parameters to them.

4. Cut and Paste is your Friend

Avoid using loops at all costs, it might take longer to cut and paste a section of code over and over, but it is well worth it when you consider the hours of fun for anyone checking each and every repeat of that code for subtle variations.

5. Variable Names for Beginners

You can have so much fun with variable names, try using the most meaningless name that you can think of, Fred is one of my personal favourites. But always include a smattering of semi meaningful names to keep other programmers guessing.

6. Advanced Variable Name Techniques

Ideally try to think of names that are very similar for as many entirely different variables as you can. Another great idea is to create two variables with the same name, but one ending in ‘1’ and the other in ‘l’, these are very easy to confuse at a glance and should get other programmers really guessing. Example: Slopel and Slope1. However, you can achieve the best results by occasionally using a label to mean the exact opposite of what people would assume, a classic example is to use the label Horizontal to mean Vertical and vice versa, that will really please any reader of your code, causing hours of amusement and pleasure as they try to unravel it.

7. Initialising

Play programmers bingo by allowing all of your variables to start with whatever value the memory had in from the last application. Great fun!

8. Bounds Checking

Allow the user to enter whatever values they want, if they enter a stupid value the program may crash. So? What do they expect?

9. Comments

It is best for beginners to avoid comments at all times, they waste valuable space and take ages to type. As you become more advanced, you can begin by adding comments which are entirely useless, because they state the obvious such as:

i++; // increment i

However, the most advanced comments will be as cryptic as possible, such as:

i++; 	//check inside the chicken string

10. Layout

It takes real dedication to make your software layout truly bad. The most important thing is NEVER EVER be consistent. Whatever layout philosophy you choose, be sure to change it regularly. Advanced programmers should remember to use the same layout for long enough for any other programmer to become accustomed to it before changing to something entirely different.

11. Hungarian Notation

This is entirely optional, but for best results use a smattering of Hungarian Notation, thus annoying everyone (those who like it AND those who don't) and of course include a few incorrect uses just to make things more interesting.

12. Lastly Never Ever Test

Don't bother to test your code, just wait for people to complain, that way you will find out which are the most commonly occurring bugs first! Brilliant!

I have tried to cover most aspects of Really Really Bad Programming, but I am sure many of you can think of a few more. And don't be down hearted if after a while you start to slip into good habits, it doesn't take much effort to get back to those bad bad ways.

Disclaimer

I am not in any way suggesting that I never write bad code, nor am I suggesting that anyone else at CodeProject does. Just having a little fun!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

LittleYellowBird
Engineer
United Kingdom United Kingdom
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionLaughing out loudmemberWajihAhmed25 Dec '12 - 5:00 
AnswerRe: Laughing out loudmemberLittleYellowBird10 Jan '13 - 0:51 
QuestionNicememberCIDev8 Jun '12 - 11:08 
AnswerRe: NicememberLittleYellowBird10 Jan '13 - 0:50 
GeneralMy vote of 5memberTarek Elqusi17 May '12 - 6:08 
GeneralRe: My vote of 5memberLittleYellowBird10 Oct '12 - 3:16 
GeneralMy vote of 5memberLeonardo Paneque15 Apr '12 - 13:09 
GeneralRe: My vote of 5memberLittleYellowBird10 Oct '12 - 3:16 
GeneralMy vote of 5memberRC_Sebastien_C20 Jan '12 - 10:20 
GeneralMy vote of 5memberPranit Kothari30 Dec '11 - 1:54 
GeneralMy vote of 5memberS Houghtelin30 Jun '11 - 3:59 
GeneralRe: My vote of 5memberAlison P31 Oct '11 - 6:38 
GeneralMy vote of 5memberNaerling30 Apr '11 - 5:57 
GeneralRe: My vote of 5memberAlison P30 Apr '11 - 10:53 
GeneralThats me in a nutshellmemberasg196625 Apr '11 - 8:32 
GeneralRe: Thats me in a nutshellmemberAlison P25 Apr '11 - 21:40 
GeneralRe: Thats me in a nutshell [modified]memberasg19662 May '11 - 3:57 
GeneralRe: Thats me in a nutshellmemberAlison P13 May '11 - 19:12 
GeneralRe: Thats me in a nutshellmemberasg196614 May '11 - 2:43 
GeneralRe: Thats me in a nutshellmemberAlison P15 May '11 - 22:07 
GeneralMy vote of 5memberfrazzle-me27 Feb '11 - 12:42 
GeneralRe: My vote of 5memberAlison P30 Apr '11 - 10:54 
GeneralMy vote of 5memberhoernchenmeister22 Feb '11 - 4:05 
GeneralRe: My vote of 5memberAlison P30 Apr '11 - 10:56 
GeneralMore variables rulesmemberXmen W.K.16 Feb '11 - 15:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 1 Feb 2010
Article Copyright 2010 by LittleYellowBird
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid