What's a programming book that...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • BigBen
    Confirmed User
    • Nov 2004
    • 2299

    #1

    What's a programming book that...

    What's a programming book that addresses code design, layout, development lifecycle, etc? I want to write cleaner and more efficient code, but not interested in a particular language.

    Any recommendations?
  • BigBen
    Confirmed User
    • Nov 2004
    • 2299

    #2
    Any programmers around tonight?

    Comment

    • ilsoph
      Confirmed User
      • Aug 2002
      • 225

      #3
      its a difficult question to answer without knowing your skill level..

      with regards to "cleaner more efficient code", you can make micro and macro optimizations... micro is typically language specific.. ie c++ tricks to decrease memory footprint, loop reduction, etc. (you can squeeze even more juice if you go machine level.. )

      macro is the other type, which is design related - how the system was engineered.. macro optimizations are (generally) language independent.. google for 'design patterns'; its a solution methodology.. typically employed for large scale enterprise solutions, etc..

      coders often fall victim to post-optimization.. like building a house and finding out you need to move it over 2 inches.. take the time to build the foundation correctly and everything will follow..

      hth
      Last edited by ilsoph; 04-06-2006, 10:37 PM.

      Comment

      • Stamen
        Confirmed User
        • Aug 2004
        • 698

        #4
        Check out "The Pragmatic Programmer"

        ISBN: 020161622X
        Show me the pistil porn!

        Comment

        Working...