tags:

views:

138

answers:

3

I have a big program (I think, this is my first real game, its a little over 800 lines), and while the code itself is error free, because of how I designed it (see below) its very messy and I'm guessing inefficient.

So I'm wondering what sites/forums would be a good place to ask for someone to look it over and just point out to me any parts of it that are syntatically messy, ie:

int x = 0;
START:
x++;
if(x < 100) goto START;

should be

for(int x = 0; x < 100; x++){}

Or any parts that could be made more efficient. I use C++ for the majority, but I am open to using other languages to create certain parts of the program.

A: 

The DailyWTF is a good place to start ;)

Chris Lively
I'm sure morb hasn't ate in weeks.
TheTXI
Nice one! Just you aren't going to find much value from the code samples there :)
Hugoware
Au contraire, HBoss - if your code looks like that, you KNOW it's not good! :)
Harper Shelby
Ah - I can't argue with you on that - :)
Hugoware
+1 for the LOL, so long as the OP knows you weren't being serious :)
chimp
+4  A: 

I stumbled across this website recently - Sounds like it could be useful.

http://refactormycode.com/

Hugoware
I always maintain that for closing questions inappropriate to SO, one reason should be: "belongs on refactormycode.com".
Chris Jester-Young
I'm all for sending traffic to refactormycode. Sometimes that place is ~dead~!
KingNestor
A: 

#somafia on irc.slashnet.org.

belgariontheking