#13 in Windows operating system books
Use arrows to jump to the previous/next product

Reddit mentions of Code Complete (Microsoft Programming)

Sentiment score: 1
Reddit mentions: 1

We found 1 Reddit mentions of Code Complete (Microsoft Programming). Here are the top ones.

Code Complete (Microsoft Programming)
Buying options
View on Amazon.com
or
    Features:
  • Used Book in Good Condition
Specs:
Height9.17 Inches
Length7.38 Inches
Number of items1
Weight3.1305641204 Pounds
Width1.79 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 1 comment on Code Complete (Microsoft Programming):

u/catharso ยท 1 pointr/as3

Get yourself a copy of Code Complete or something similar. I own the first edition, which is super old, but still very applicable and super cheap if you buy it used (cheapest i saw: $0.21 + 3.99$ shipping). Read it and try to figure out that way how you could improve your code.

Don't use the Flash IDE. Use FlexBuilder or the open source and (partially) super awesome FlashDevelop instead, because a good programmer will always try to use the best tools available. The FlashIDE simply isn't made for complex programming work.

Try to always create classes with a single field of responsibility. Read about some patterns like ModelViewController and try to grasp what it tries to achieve; then try to achieve the same thing. Even it doesn't fit or seems confusing; if you get something done that looks different but behaves similar you're on a good path.

Use only strict static typing and try to set the compiler to treat warnings as errors.

have fun.