Tagged Questions
The badcode tag has no wiki summary.
13
votes
9answers
829 views
How to migrate ugly and undocumented VB6 Code to .NET
I know that there are already Questions about VB6 migration, but the code base of my project brings some new questions here.
I have to say the Code quality, structure and architecture is just a ...
12
votes
4answers
241 views
How can I write classes that don't rely on “global” variables?
When I took my first programming course in university, we were taught that global variables were evil & should be avoided at all cost (since you can quickly develop confusing and unmaintainable ...
3
votes
13answers
859 views
What do you think when a Boolean “if” has three resulting code paths?
(Background: from a previous job, a co-worker and I would end up discussing the bug pile during lunch. We began to develop a topic called "bug of the week". I doubt I have material for 52 posts a ...
2
votes
7answers
251 views
What is the worst function in PHP? [closed]
There are a number of functions that have bugs / weird interfaces / security issues etc. which do you think is worst?
1
vote
6answers
934 views
Bad Code example
i am sure all of us must have written some bad code at some point in their life. I am a kind of guy who would love to learn from other people mistakes. So can you give some examples of bad code you ...
1
vote
2answers
127 views
Instruments says I have 12 memory leaks in this, how do I get rid of them?
I am honestly not able to figure out when to releas these objects, Please help
+ (DrawData*) load {
DrawData *newDrawData = [[DrawData alloc] init];
NSAutoreleasePool *pool = ...
0
votes
4answers
90 views
Some bad code to look at — Is it ok to iterate over a list within another iteration of the same list (N^2)?
I have some objects in an arraylist and I want to perform collision detection and such. Is it ok to do something like:
List<Person> A;
iterA0 = A.iterator();
while (iterA0.hasNext()) {
...
0
votes
1answer
77 views
Bad Situation importing/exporting img files - mysql database
I inherited a poorly created mysql database and now I need to migrate data to a new server.
Long story short, I need to keep it stored this way and I use phpmyadmin. Know of any tools to help the ...
-6
votes
0answers
45 views
What destroys or corrupt OOP? [closed]
while Programming in C# I found some bad aspects in OO-Languages.
So please write your opinion about bad behavior while programming. (Please no discussion use Votes)
Interfaces: If program always ...