<?xml version="1.0" encoding="UTF-8"?>
<GoodreadsResponse>
	<Request>
		<authentication>false</authentication>
		    <method><![CDATA[]]></method>
	</Request>
	
<book id="105124">
  <title><![CDATA[Effective STL: 50 Specific Ways to Improve Your Use of the Standard Template Library]]></title>
  <isbn><![CDATA[0201749629]]></isbn>
  <isbn13><![CDATA[9780201749625]]></isbn13>
    <image_url>http://photo.goodreads.com/books/1171537535m/105124.jpg</image_url>
    <work>
  <best_book_id type="integer">105124</best_book_id>
  <books_count type="integer">1</books_count>
  <default_description>Written for the intermediate or advanced C++ programmer, renowned C++ expert Scott Meyers provides essential techniques for getting more out of the Standard Template Library in &lt;I&gt;Effective STL&lt;/I&gt;, a tutorial for doing more with this powerful library.&lt;p&gt;  STL is a hugely powerful feature of today's C++, but one with a well-earned reputation for complexity. The book is organized into 50 tips that explore different areas of the STL. Besides providing a list of dos and don'ts, Meyers presents a lot of background on what works and what doesn't with STL. Each tip is demonstrated with in-depth coding samples, many of which make use of two-color printing to highlight the most important lines of code. (Advanced developers will enjoy Meyers's in-depth explanations, while those who are in a hurry can skip ahead to the recommended tip itself.) &lt;p&gt;  A good part of this book involves using containers, like vectors and maps, which are built into STL. (Besides the standard built-in containers, the author also highlights recent additions to STL like &lt;I&gt;B-trees&lt;/I&gt;, which are available as extensions from other vendors.) You'll learn the best ways to allocate, add, change, and delete items inside containers, including associative containers like maps. You'll also learn to avoid common pitfalls, which can result in writing code that is slow or just plain wrong.&lt;p&gt;  Other areas covered in &lt;I&gt;Effective STL&lt;/I&gt; cover getting the most out of the 100-plus STL algorithms that are bundled with this library. Meyers shows you how to choose the correct algorithm for sorting and other functions. (Even advanced developers will learn something here.) Sections on using function objects (called &lt;I&gt;functors&lt;/I&gt;) round out the text. Meyers shows you when these classes make sense and the best ways to implement them. Besides specific tips, you'll get plenty of general programming advice. A useful appendix shows the limitations of STL as implemented in Microsoft Visual C++ 6.0 and how to overcome them.&lt;p&gt;  Overall, &lt;I&gt;Effective STL&lt;/I&gt; is a really invaluable source of programming expertise on an essential aspect of today's C++ for anyone who is using--or planning to use--STL in real production code. It is quite simply a must-have. &lt;I&gt;--Richard Dragan&lt;/I&gt;&lt;p&gt;  &lt;B&gt;Topics covered:&lt;/B&gt; &lt;ul&gt;&lt;li&gt;Introduction to advanced Standard Template Library (STL) programming techniques &lt;li&gt;50 tips and best practices for STL illustrated with sample tutorial code &lt;li&gt;Choosing containers &lt;li&gt;Efficient copying of elements inside containers &lt;li&gt;Removing, erasing, and cleaning up items from containers &lt;li&gt;Using custom allocators with STL containers &lt;li&gt;Thread safety with STL &lt;li&gt;Tips for programming with the STL &lt;I&gt;vector&lt;/I&gt; and &lt;I&gt;string&lt;/I&gt; classes (including reserving memory and calling legacy C/C++ code) &lt;li&gt;Tips for associative containers (including comparing items, sorted vectors, and non-standard enhancements to STL) &lt;li&gt;Tips for selecting and using STL iterator classes &lt;li&gt;STL algorithms (including sorting, removing, and comparing items) &lt;li&gt;Using functors with STL &lt;li&gt;General tips for STL programming (including advice for choosing algorithms and understanding compiler diagnostic messages) &lt;li&gt;String locales &lt;li&gt;Overcoming STL imitations in Microsoft Visual C++ 6.0&lt;/ul&gt; </default_description>
  <id type="integer">101341</id>
  <media_type nil="true"></media_type>
  <original_language_id type="integer" nil="true"></original_language_id>
  <original_publication_day type="integer">16</original_publication_day>
  <original_publication_month type="integer">6</original_publication_month>
  <original_publication_year type="integer">2001</original_publication_year>
  <original_title>Effective STL: 50 Specific Ways to Improve Your Use of the Standard Template Library</original_title>
  <rating_dist>total:32|5:14|4:14|3:3|2:1|</rating_dist>
  <ratings_count type="integer">32</ratings_count>
  <ratings_sum type="integer">137</ratings_sum>
  <reviews_count type="integer">63</reviews_count>
  <text_reviews_count type="integer">5</text_reviews_count>
</work>

  <average_rating><![CDATA[4.28]]></average_rating>
  <ratings_count><![CDATA[32]]></ratings_count>
  <text_reviews_count><![CDATA[5]]></text_reviews_count>
  <url><![CDATA[http://www.goodreads.com/book/show/105124.Effective_STL_50_Specific_Ways_to_Improve_Your_Use_of_the_Standard_Template_Library]]></url>
  <authors>
        <author id="60832">
      <name><![CDATA[Scott Meyers]]></name>
      <role><![CDATA[]]></role>
      <url><![CDATA[http://www.goodreads.com/author/show/60832.Scott_Meyers]]></url>
      <average_rating><![CDATA[4.36]]></average_rating>
      <ratings_count><![CDATA[175]]></ratings_count>
      <text_reviews_count><![CDATA[30]]></text_reviews_count>
    </author>
      </authors>
    <reviews start="1" end="20" total="63">
    <review id="70070251">
    <user id="1267732">
    <name><![CDATA[Gareth]]></name>
    <location><![CDATA[The United States]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/1267732-gareth]]></url>
  </user>
      <rating>4</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Fri Sep 04 13:52:15 -0700 2009</date_added>
  <date_updated>Fri Sep 04 13:57:00 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[Another great &quot;Effective&quot; book.  Every book this guy puts out is great and I would recommend this one to any c++ programmer.  For a technical book this it is an easy read and extremely informative.  It's the sort of book you should read once and then refer to when you screw up and need to ...<a href="http://www.goodreads.com/review/show/70070251">more...</a>]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/70070251]]></url>
</review>
    <review id="46576962">
    <user id="1090446">
    <name><![CDATA[Graham]]></name>
    <location><![CDATA[Beverly Hills, CA]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/1090446-graham]]></url>
  </user>
      <rating>5</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
        <shelf name="c" />
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Mon Feb 16 18:17:13 -0800 2009</date_added>
  <date_updated>Mon Feb 16 18:19:07 -0800 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[Although this book doesn't have C++ in the title, those in the know will understand its relationship to the aforementioned programming language - it is about the effective use of the Standard Template Library, a set of algorithms and data structures for use in C++ programs.<br/>]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/46576962]]></url>
</review>
    <review id="27075730">
    <user id="1323371">
    <name><![CDATA[Matt]]></name>
    <location><![CDATA[The United States]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/1323371-matt]]></url>
  </user>
      <rating>4</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
      </shelves>
  <recommended_for><![CDATA[C++ Programmers, Computer Scientists, Software Engineers]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at>Sat Aug 30 00:00:00 -0700 2008</read_at>
  <date_added>Sat Jul 12 18:16:58 -0700 2008</date_added>
  <date_updated>Mon Sep 01 11:36:22 -0700 2008</date_updated>
  <read_count></read_count>
    <body><![CDATA[I appreciate the practial approach of Scott Meyers' <em>Effective...</em> books.  Although this book is recommended for intermediate to advanced C++ programmers, I would expand that recommendatin to any C++ programmer with a computer science background that has done <em>any</em> work with the Standard Template Librar...<a href="http://www.goodreads.com/review/show/27075730">more...</a>]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/27075730]]></url>
</review>
    <review id="5067050">
    <user id="159880">
    <name><![CDATA[Mark]]></name>
    <location><![CDATA[La Jolla, CA]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/159880-mark-chaisson]]></url>
  </user>
      <rating>0</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
        <shelf name="currently-reading" />
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Fri Aug 24 17:06:00 -0700 2007</date_added>
  <date_updated>Fri Aug 24 17:06:47 -0700 2007</date_updated>
  <read_count></read_count>
    <body><![CDATA[So far nothing is really new, but I'll probably learn a few things from this book. ]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/5067050]]></url>
</review>
    <review id="43067">
    <user id="4613">
    <name><![CDATA[mekin]]></name>
    <location><![CDATA[India]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/4613-mekin]]></url>
  </user>
      <rating>5</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
        <shelf name="techstuff" />
      </shelves>
  <recommended_for><![CDATA[all c++ programmers]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at>Wed Jan 01 00:00:00 -0800 2003</read_at>
  <date_added>Thu Feb 15 03:06:02 -0800 2007</date_added>
  <date_updated>Fri Feb 16 21:58:27 -0800 2007</date_updated>
  <read_count></read_count>
    <body><![CDATA[Again a must-have for all serious c++ developers.]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/43067]]></url>
</review>
    <review id="77841351">
    <user id="2945795">
    <name><![CDATA[Paul]]></name>
    <location><![CDATA[Eastleigh, F2, The United Kingdom]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/2945795-paul-rutland]]></url>
  </user>
      <rating>0</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
        <shelf name="own" />
        <shelf name="programming" />
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Sun Nov 15 07:30:51 -0800 2009</date_added>
  <date_updated>Sun Nov 15 07:30:51 -0800 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/77841351]]></url>
</review>
    <review id="69743501">
    <user id="1887332">
    <name><![CDATA[Andrew]]></name>
    <location><![CDATA[Wayne, PA]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/1887332-andrew]]></url>
  </user>
      <rating>0</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Tue Sep 01 17:36:06 -0700 2009</date_added>
  <date_updated>Tue Sep 01 17:36:06 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/69743501]]></url>
</review>
    <review id="68561167">
    <user id="1846026">
    <name><![CDATA[Christoph]]></name>
    <location><![CDATA[The United States]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/1846026-christoph]]></url>
  </user>
      <rating>0</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
        <shelf name="c-plus-plus" />
        <shelf name="to-read" />
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Sun Aug 23 10:40:15 -0700 2009</date_added>
  <date_updated>Sun Aug 23 10:40:15 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/68561167]]></url>
</review>
    <review id="68480392">
    <user id="599339">
    <name><![CDATA[Dmitry]]></name>
    <location><![CDATA[Israel]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/599339-dmitry]]></url>
  </user>
      <rating>4</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Sat Aug 22 14:37:53 -0700 2009</date_added>
  <date_updated>Sat Aug 22 14:37:53 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/68480392]]></url>
</review>
    <review id="68001140">
    <user id="2640930">
    <name><![CDATA[Christa]]></name>
    <location><![CDATA[St. Pölten, 09, Austria]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/2640930-christa]]></url>
  </user>
      <rating>5</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
        <shelf name="non-fictional" />
        <shelf name="software-development" />
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Wed Aug 19 01:04:34 -0700 2009</date_added>
  <date_updated>Wed Aug 19 01:11:27 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/68001140]]></url>
</review>
    <review id="66968839">
    <user id="2614144">
    <name><![CDATA[Alexander]]></name>
    <location><![CDATA[Saint Petersburg, 66, Russian Federation]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/2614144-alexander-smal]]></url>
  </user>
      <rating>4</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Tue Aug 11 11:21:38 -0700 2009</date_added>
  <date_updated>Tue Aug 11 11:21:38 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/66968839]]></url>
</review>
    <review id="63443652">
    <user id="1707869">
    <name><![CDATA[Nall]]></name>
    <location><![CDATA[The United States]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/1707869-nall]]></url>
  </user>
      <rating>0</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Tue Jul 14 09:53:31 -0700 2009</date_added>
  <date_updated>Tue Jul 14 09:53:31 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/63443652]]></url>
</review>
    <review id="62636855">
    <user id="2500638">
    <name><![CDATA[Remko]]></name>
    <location><![CDATA[Brussels, 11, Belgium]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/2500638-remko-tron-on]]></url>
  </user>
      <rating>4</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
        <shelf name="software" />
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Wed Jul 08 10:35:35 -0700 2009</date_added>
  <date_updated>Wed Jul 08 10:35:35 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/62636855]]></url>
</review>
    <review id="61848830">
    <user id="929282">
    <name><![CDATA[Ben]]></name>
    <location><![CDATA[Sammamish, WA]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/929282-ben-watson]]></url>
  </user>
      <rating>0</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
        <shelf name="to-read" />
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Wed Jul 01 21:08:33 -0700 2009</date_added>
  <date_updated>Wed Jul 01 22:22:26 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/61848830]]></url>
</review>
    <review id="61418481">
    <user id="2431827">
    <name><![CDATA[Graham]]></name>
    <location><![CDATA[Sheffield, Q5, The United Kingdom]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/2431827-graham]]></url>
  </user>
      <rating>0</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
        <shelf name="wanted" />
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Sun Jun 28 15:05:44 -0700 2009</date_added>
  <date_updated>Sat Jul 18 17:03:49 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/61418481]]></url>
</review>
    <review id="55132408">
    <user id="1482810">
    <name><![CDATA[Scott]]></name>
    <location><![CDATA[Brazil]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/1482810-scott]]></url>
  </user>
      <rating>0</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Wed May 06 07:46:00 -0700 2009</date_added>
  <date_updated>Wed May 06 07:46:00 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/55132408]]></url>
</review>
    <review id="53864369">
    <user id="2250875">
    <name><![CDATA[Tara]]></name>
    <location><![CDATA[Austin, TX]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/2250875-tara]]></url>
  </user>
      <rating>5</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Fri Apr 24 15:59:18 -0700 2009</date_added>
  <date_updated>Fri Apr 24 15:59:18 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/53864369]]></url>
</review>
    <review id="53649060">
    <user id="2247101">
    <name><![CDATA[Ab]]></name>
    <location><![CDATA[Mountain View, CA]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/2247101-ab]]></url>
  </user>
      <rating>0</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Wed Apr 22 16:37:59 -0700 2009</date_added>
  <date_updated>Wed Apr 22 16:37:59 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/53649060]]></url>
</review>
    <review id="52414324">
    <user id="1767898">
    <name><![CDATA[Alan]]></name>
    <location><![CDATA[Atlanta, GA]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/1767898-alan-fay]]></url>
  </user>
      <rating>0</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
        <shelf name="programming" />
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Sun Apr 12 14:49:34 -0700 2009</date_added>
  <date_updated>Mon Apr 13 18:50:00 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/52414324]]></url>
</review>
    <review id="51544482">
    <user id="2021567">
    <name><![CDATA[Syedtehsin]]></name>
    <location><![CDATA[The United States]]></location>        
    <url><![CDATA[http://www.goodreads.com/user/show/2021567-syedtehsin]]></url>
  </user>
      <rating>4</rating>
  <votes>0</votes>
  <sell_flag>false</sell_flag>
  <spoiler_flag>false</spoiler_flag>
  <shelves>
      </shelves>
  <recommended_for><![CDATA[]]></recommended_for>
  <recommended_by><![CDATA[]]></recommended_by>
  <read_at></read_at>
  <date_added>Sat Apr 04 21:20:59 -0700 2009</date_added>
  <date_updated>Sat Apr 04 21:20:59 -0700 2009</date_updated>
  <read_count></read_count>
    <body><![CDATA[]]></body>
    <url><![CDATA[http://www.goodreads.com/review/show/51544482]]></url>
</review>
    </reviews>
  <popular_shelves>
        <shelf name="to-read" />
        <shelf name="programming" />
        <shelf name="software" />
        <shelf name="wanted" />
        <shelf name="computers" />
        <shelf name="c-plus-plus" />
        <shelf name="software-development" />
        <shelf name="non-fictional" />
        <shelf name="techstuff" />
      </popular_shelves>
  <book_links>
    <book_link id="8">
  <name><![CDATA[WorldCat]]></name>
  <link>http://www.goodreads.com/book_link/follow/8?book_id=105124</link>
</book_link>
  </book_links>
</book>
</GoodreadsResponse>