Register a SA Forums Account here!
JOINING THE SA FORUMS WILL REMOVE THIS BIG AD, THE ANNOYING UNDERLINED ADS, AND STUPID INTERSTITIAL ADS!!!

You can: log in, read the tech support FAQ, or request your lost password. This dumb message (and those ads) will appear on every screen until you register! Get rid of this crap by registering your own SA Forums Account and joining roughly 150,000 Goons, for the one-time price of $9.95! We charge money because it costs us money per month for bills, and since we don't believe in showing ads to our users, we try to make the money back through forum registrations.
 
  • Post
  • Reply
very
Jan 25, 2005

I err on the side of handsome.
Don't you know the virtue of avoid magic numbers in your code?

Adbot
ADBOT LOVES YOU

very
Jan 25, 2005

I err on the side of handsome.

ashgromnies posted:

Are you being sarcastic? Please please please be being sarcastic.

Haha. Yeah.

very
Jan 25, 2005

I err on the side of handsome.

Bonus posted:

I see someone has been reading Schrödinger's book on programming.

Don't worry, the software is working perfectly in another universe.

Edit: Some of my old code:
code:
static int oldscore = 999, oldlevel = 999, 
    oldblocks = 999, oldcombolevel = 999;
I hope you don't score more than 999 points.
code:
  piece = next[0];
  next[0] = next[1];
  next[1] = next[2];  
  next[2].randompiece();
And then there's this.

very fucked around with this message at 15:19 on Mar 22, 2008

very
Jan 25, 2005

I err on the side of handsome.
Recently I found a
code:
if ( big long condition &&
     blah blah blah )
{
    return true;
}
else
{
    return false;
}
and started to wonder who checked that in.. and then I realized.. it was me. :(

But also I had to hunt down one of the senior dev's anonymous enumerations, because he thought int was a good enough data type to represent it. I should bother him about where that darn enumeration is every time I have to use his functions.

Speaking of misspelled constants, we've got one somewhere that is hilariously and obviously misspelled. I wish I could remember what it was.

  • 1
  • 2
  • 3
  • 4
  • 5
  • Post
  • Reply