Slashdot Mirror


User: Karl+Hungus,+nihilis

Karl+Hungus,+nihilis's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. Mirror with images on The 1991 "X-Box" · · Score: 3, Informative
  2. Re:redundant? on Using Redundancies to Find Errors · · Score: 4, Insightful
    Steve McConnell in the excellent book Code Complete talks about this sort of stuff. One of the big things was unused variables. Completely harmless, but a good indication that the code may have problems. If whoever is maintaining the code didn't bother to remove useless variables, what else are they not bothering to take care of?

    It's not, keep the code squeaky clean because cleanliness is next to godliness, it's keep the code clean so it's easy to read. Keep it clean because it's a discipline that will pay off when it's time to spot/fix the real errors in the code.