<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>sacha chua :: enterprise 2.0 consultant, storyteller, geek &#187; reading</title>
	<atom:link href="http://sachachua.com/wp/category/reading/feed/" rel="self" type="application/rss+xml" />
	<link>http://sachachua.com/wp</link>
	<description>I help people connect through blogs, wikis, other Web 2.0 tools. I'm also writing a book about Emacs.</description>
	<pubDate>Fri, 21 Nov 2008 21:28:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Ruby code to quickly convert titles to ISBNs</title>
		<link>http://sachachua.com/wp/2008/07/10/ruby-code-to-quickly-convert-titles-to-isbns/</link>
		<comments>http://sachachua.com/wp/2008/07/10/ruby-code-to-quickly-convert-titles-to-isbns/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 02:19:33 +0000</pubDate>
		<dc:creator>Sacha Chua</dc:creator>
		
		<category><![CDATA[book]]></category>

		<category><![CDATA[library]]></category>

		<category><![CDATA[reading]]></category>

		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://sachachua.com/wp/2008/07/10/ruby-code-to-quickly-convert-titles-to-isbns/</guid>
		<description><![CDATA[I love the Toronto Public Library system. I can&#039;t say that enough. I particularly love how I can go on a reading spree, place holds on a gazillion books, and have them delivered to the library branch that&#039;s about three blocks away from the house.
Ideally, of course, these books would arrive suitably spaced apart so [...]]]></description>
			<content:encoded><![CDATA[<p>I love the Toronto Public Library system. I can&#039;t say that enough. I particularly love how I can go on a reading spree, place holds on a gazillion books, and have them delivered to the library branch that&#039;s about three blocks away from the house.</p>
<p>Ideally, of course, these books would arrive suitably spaced apart so that a new batch arrives just as I&#039;ve finished another. This happens when I request popular books. Most of the time, though, the books that I want to read fall in the Long Tail&#8211;obscure titles, books that have fallen off the New York Times bestseller lists, and the occasional random find.</p>
<p>All of these books tend to descend on the unsuspecting library branch at the same time.</p>
<p>There were 27 books waiting for me earlier. The librarian thanked me for clearing the shelf. J- greatly enjoyed piling them into the shopping cart we had the foresight to bring. Yes, I&#039;ve got presentations to prepare and things to do&#8211;but reading is fun, and I&#039;m somehow going to find time to read all those books before my three-week loan period is up. I&#039;ll probably be able to renew them, but hey, might as well try.</p>
<p>So I decided I might as well try tracking them on <a href="http://www.librarything.com/catalog/sachachua">LibraryThing</a>. Instead of typing in all the details manually, I grabbed the list of titles from my account on <a href="http://libraryelf.com">LibraryElf</a> (good reminder system for books), used <a href="http://isbndb.com/">ISBNdb</a> to convert the titles into ISBNs (best guess), and imported the list of ISBNs into LibraryThing. Now my profile lists 163 books&#8211;a small fraction of the books that have passed through my hands, but it&#039;s better than nothing. Someday I might even get myself a barcode scanner so that I can just pick up the ISBNs from the book jackets.</p>
<p>Anyway, I promised the Ruby code I&#039;d quickly written to convert the titles to ISBNs:</p>
</p>
<pre>require 'net/http'
require 'CGI'
require 'open-uri'
require 'rexml/document' 

access_key = 'YOURACCESSKEYHERE'
while (s = gets)
  s.chomp!
  url = &quot;http://isbndb.com/api/books.xml?access_key=&quot; + access_key + &quot;&amp;index1=title&amp;value1=&quot; + CGI::escape(s)
  xml = REXML::Document.new(open(url).read)
  if (xml.elements[&quot;ISBNdb/BookList/BookData&quot;])
    puts xml.elements[&quot;ISBNdb/BookList/BookData&quot;].attributes[&quot;isbn&quot;]
  end
end</pre>
<p>Takes titles as standard input, prints out ISBNs. Enjoy!</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:8ccb5b36-1157-4aa3-8e2c-cdac22ae4da5" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a href="http://technorati.com/tags/isbn" rel="tag">isbn</a>,<a href="http://technorati.com/tags/ruby" rel="tag">ruby</a>,<a href="http://technorati.com/tags/librarything" rel="tag">librarything</a>,<a href="http://technorati.com/tags/isbndb" rel="tag">isbndb</a>,<a href="http://technorati.com/tags/books" rel="tag">books</a>,<a href="http://technorati.com/tags/book" rel="tag">book</a>,<a href="http://technorati.com/tags/reading" rel="tag">reading</a></div>

<!-- start wp-tags-to-technorati 0.95 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://sachachua.com/wp/2008/07/10/ruby-code-to-quickly-convert-titles-to-isbns/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Taking book notes</title>
		<link>http://sachachua.com/wp/2008/07/03/taking-book-notes/</link>
		<comments>http://sachachua.com/wp/2008/07/03/taking-book-notes/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 02:04:30 +0000</pubDate>
		<dc:creator>Sacha Chua</dc:creator>
		
		<category><![CDATA[book]]></category>

		<category><![CDATA[books]]></category>

		<category><![CDATA[lifehack]]></category>

		<category><![CDATA[pim]]></category>

		<category><![CDATA[productivity]]></category>

		<category><![CDATA[reading]]></category>

		<guid isPermaLink="false">http://sachachua.com/wp/2008/07/03/taking-book-notes/</guid>
		<description><![CDATA[It turned out that our newest team member, Tom Plaskon, is also a bookworm. Over lunch last Wednesday, we chatted about how we keep track of what we&#039;re learning from books. My system hasn&#039;t changed that much sinceI described it in February, but I thought I&#039;d post an updated blog post about it, just in [...]]]></description>
			<content:encoded><![CDATA[<p>It turned out that our newest team member, Tom Plaskon, is also a bookworm. Over lunch last Wednesday, we chatted about how we keep track of what we&#039;re learning from books. My system hasn&#039;t changed that much since<a href="http://sachachua.com/wp/2008/02/12/taking-quick-notes-for-books/">I described it in February</a>, but I thought I&#039;d post an updated blog post about it, just in case writing about it prompts ideas.</p>
<p><b>How I get books:</b></p>
<p>I still read <i>lots</i> of books. I usually order books from the Toronto Public Library system or pull them off the library shelves when I go on a library run, but sometimes I&#039;ll pick up books from the bookstore or order them online. I occasionally get book recommendations from other people, too. </p>
<p>I tend to read in sprints, focusing on a single subject. I&#039;m currently revisiting personal finance, and I&#039;ve read about comics and graphic novels, sketching, storytelling, writing, leadership, time management, Javascript, CSS, relationships, communication, management, consulting, entrepreneurship, photography, cooking, presentation skills, education, reading, economics, parenting (yes, I read my mom&#039;s parenting books when she was raising me - made for an interesting childhood!), social networking, quarter-life crises, career planning, learning, creativity, self-defense, exercise, romances (particularly classic Regency ones) gardening, and  other topics that slip my mind at the moment. Reading in sprints allows me to get through books quickly (few non-fiction books are packed with new ideas) and see the interconnections between ideas in books. Sometimes I&#039;ll go for variety when I&#039;m raiding the library shelves.</p>
<p>This is a pattern of reading that practically requires a well-stocked public library, as there&#039;s no way I&#039;m going to spend all that money doing a reading sprint by buying books from Chapters or Amazon. I&#039;d be limited by my book budget and I&#039;d end up with too many books full of too much filler. Using the public library allows me to get value from books I might not ordinarily buy and books that are mostly fluff except for one or two good insights. (Or books that have one good idea and just keep hammering it in.)</p>
<p><b>How I read books</b></p>
<p>While I&#039;ll slow down and enjoy a dense, well-written book, most books are worth cursory scans. Sometimes I&#039;ll look at the table of contents to get the lay of the land. Other times, I&#039;ll just plunge right into it, skimming the book for good quotes, interesting insights, or good explanations. </p>
<p>I read books on the subway, over breakfast or dinner, while walking (except across intersections), on evenings and weekends, and whenever I can steal a moment. I try to always have a book or two in my bag. </p>
<p><b>How I take notes</b></p>
<p>The first step is to mark the passages I want to keep. I don&#039;t like writing in books (and absolutely abhor the idea of writing in a library book!), so I have to keep track of the passages I want to put into my book notes system. I must confess that I&#039;ve resorted to dogearing pages. Post-It flags feel wasteful and torn slips of paper are inconvenient. I&#039;d be happy to switch to a better method for remembering pages if it was something I could do while walking around (rules out scanning text with a digitizing pen) and it allowed me to keep track of any number of pages (rules out bookmarks, unless I carry a whole stack of them).</p>
<p>After I&#039;ve gone through a book once, it&#039;s time to put the passages into my book notes system. If I have time, I use Dragon NaturallySpeaking to dictate the book details, page numbers, and relevant passages to my computer. It&#039;s fun, it reinforces my memory, and it helps me train the speech recognition engine. If I&#039;m pressed for time, I scan the relevant pages, then and use Tesseract Optical Character Recognition to convert the scans into text.</p>
<p>I currently keep my book notes in a large text file with a little markup to make it easier for Emacs to display it as an outline. (Hooray org-mode!) Each book is an outline item, and each quotation starts with the page number. I also add my own notes.</p>
<p><b>How I review my books</b></p>
<p>The human brain is good at associative memory. When a conversation topic reminds me of something I&#039;d read, I can usually come up with a few titles or keywords from the quotations. My book notes allow me to send not only the book details but also the relevant quote, which helps other non-bookwormish people zero in on the part they might want to check out. So far, my text file has been working well.</p>
<p>I occasionally review my book notes by flipping through my book notes on the computer or on my Nintendo DS, jumping to a random note, or searching for certain keywords. I also reread particularly good books to see if I&#039;ll get even more insight this time around. This helps me keep the content fresh, and it also prompts me to think about who I know would benefit from the book I&#039;m reviewing.</p>
<p><b>How I can make this system better</b></p>
<p>I think I&#039;ll start using <a href="http://www.librarything.com/catalog/sachachua">LibraryThing</a> to keep track of the books I&#039;ve read. This allows me to take advantage of social recommendations. I used to use Amazon for that, but it&#039;s also nice to run into fellow bookworms with similar interests and to see what else they&#039;re reading.</p>
<p>It might be good to capture diagrams neatly. I&#039;ve got the scanner, so I just need to work out a good image storage thing.</p>
<p>I want to be able to link related quotations and books with each other. Blog posts would be a good way to do that. I just need to make sure I save my post locally, too.</p>
<p>I need to think about which new books are worth acquiring. =) There are a few presentation-related books I&#039;m going to order (Back of the Napkin, Presentation Zen, Slideology).</p>

<!-- start wp-tags-to-technorati 0.95 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://sachachua.com/wp/2008/07/03/taking-book-notes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some thoughts on reading</title>
		<link>http://sachachua.com/wp/2008/05/26/some-thoughts-on-reading/</link>
		<comments>http://sachachua.com/wp/2008/05/26/some-thoughts-on-reading/#comments</comments>
		<pubDate>Tue, 27 May 2008 02:06:15 +0000</pubDate>
		<dc:creator>Sacha Chua</dc:creator>
		
		<category><![CDATA[book]]></category>

		<category><![CDATA[reading]]></category>

		<guid isPermaLink="false">http://sachachua.com/wp/2008/05/26/some-thoughts-on-reading/</guid>
		<description><![CDATA[Ben Casnocha&#039;s blog post about how to find new books to read (sparked by a blog post by Tyler Cowen on the same topic) made me think about how I pick books to read. I tend to go through six or seven books a week, squeezing pages out of subway moments, quiet evenings and weekend [...]]]></description>
			<content:encoded><![CDATA[<p>Ben Casnocha&#039;s blog post about <a href="http://feeds.feedburner.com/~r/ItsLikeBensBlog/~3/298725350/how-to-find-new.html">how to find new books to read</a> (sparked by a <a href="http://www.marginalrevolution.com/marginalrevolution/2008/05/how-to-find-new.html">blog post by Tyler Cowen on the same topic</a>) made me think about how I pick books to read. I tend to go through six or seven books a week, squeezing pages out of subway moments, quiet evenings and weekend afternoons, and even the occasional lunchtime read. A branch of the Toronto Public Library is just a few blocks away from the house, making it a pleasant walk now that days are long and nights are warm. </p>
<p>I enjoy pulling random books off library shelves, stepping out of the genres I typically read. For example, here are the results of today&#039;s library raid:</p>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=1592400337%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/Life-Odds-How-Improve-Them/dp/1592400337%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/41P8RG2SYAL._SL75_.jpg" border="1" /></a></td>
<td valign="top"><b>Life: The Odds: And How to Improve Them</b>           <br />by Gregory Baer           </p>
<p>I picked this up because a quick browse showed that the book managed to make numbers and statistics interesting, which is a skill I&#039;m sure to find useful.           </p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=1592400337%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/Life-Odds-How-Improve-Them/dp/1592400337%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=097100806X%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/Drawing-Comics-Easy-Except-When/dp/097100806X%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/51T5HNYCRTL._SL75_.jpg" border="1" /></a></td>
<td valign="top"><b>Drawing Comics is Easy! (Except When It&#039;s Hard)</b>           <br />by Alexa Kitchen           </p>
<p>I was curious about drawing. When I opened the book, I was won over by this:           <br /> <br />
<blockquote><strong>Publisher&#039;s note and author&#039;s disclaimer:</strong>             <br />The contents of this book were created in a short burst when Alexa was 7 years old. As this book goes to press she is all of 8 years old and, as a writer and artist, is now a quantum leap ahead of these early efforts. The publisher believes this book is worthly of publication or he would not have mortgaged his home and Shmoo collection to finance the 6-figure initial print run and national publicity campaign. However, the author wishes it to be known, for the record, that <strong>Drawing Comics is Easy!</strong> is &quot;not very good&quot; and &quot;full of mistakes,&quot; and wishes to emphasize that her &quot;next book will be much better.&quot;             </p>
<p><strong>Published by DKP, P.O.Box 2250, Amherst MA 01004-225.</strong> DKP is an acronym which the designer likes because it fits the spine dimensions much better, though at the same time, of course it also conveniently disguises the actual name of the company: Denis Kitchen Publishing Co., LLC. Thus, if you&#039;ve been persistent enough to read this far on the indicia page fine print (which nobody does) you realize that&#8211;yes&#8211;this book has been published by Alexa&#039;s own father&#039;s publishing company. However suspicious, unseemly or opportunistic that disclosure may seem to some, the publisher wants it known that Alexa&#039;s literary agent made this choice of companies objectively and at arm&#039;s length after no doubt weighing attractive offers from Pantheon, Norton, Knopf and other competing publishers. Thus any familial connection is strictly coincidental. </p></blockquote>
<p> Drawing Comics is Easy!          </p>
<p>I <em>had</em> to bring it home and blog about it. =)          </p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=097100806X%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/Drawing-Comics-Easy-Except-When/dp/097100806X%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=006441034X%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/Howls-Moving-Castle-Diana-Wynne/dp/006441034X%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/51SEOLxEPaL._SL75_.jpg" border="1" /></a></td>
<td valign="top"><b>Howl&#039;s Moving Castle</b>           <br />by Diana Wynne Jones           </p>
<p>I watched this in Japan&#8230; in Japanese&#8230; which didn&#039;t help my comprehension much&#8230; so I figured I&#039;d read it again to see if I could reinterpret my befuddled memories. Also, I like raiding the children&#039;s lit section. =)          </p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=006441034X%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/Howls-Moving-Castle-Diana-Wynne/dp/006441034X%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>I always appreciate recommendations from other people. I <em>love</em> finding other bookworms, and I love the way our shared books give us conversational shorthand. I love finding out what other people are interested in, and books are a great way to do that. Of course, I&#039;m thrilled whenever I can return the favor by prescribing some of my favorite books for whatever situation I come across. =)</p>
<p>When I was a kid, my parents used to let me pass the time in bookstores while they took care of other things. As a result, I&#039;ve gotten pretty good at skimming through books while standing or walking around, and I&#039;ve gotten pretty shameless about pulling ten to fifteen books off the shelf and scanning through them quickly to see if any of them are good. I usually find two or three to buy, so I guess it works out for the bookstore.</p>
<p>I tend to go on reading spurts, reading everything I can find in the library about a particular subject. The Toronto Public Library allows me to place holds on up to fifty items, and I often run into that limit. I use my Amazon wishlist to store other books I&#039;m interested in&#8211;books that didn&#039;t fit in the 50-book limit, books that haven&#039;t been acquired by the library, and so on. One of these days, I&#039;m going to get Amazon/Toronto Public Library integration working again. =)</p>
<p>When I read a book, I mark interesting segments by tucking scraps of paper between the pages. I used to dogear pages and I still occasionally do so, but I feel guilty about doing that to library books. I&#039;m horrified by the way that other people actually <em>scribble</em> in library books. Augh. Anyway, after I finish the book, I encode my notes in an outlined text file, along with the page numbers. I&#039;ve gotten my Dragon Naturally Speaking to the point where I actually enjoy dictating things to it, which is much better than typing because (a) I don&#039;t have to lift my hands from the book, (b) I can trace lines with my finger so that I don&#039;t get lost, and (c) I get to experience the words in another medium. Good stuff. </p>
<p>Every so often, I review my book notes and think about how I&#039;ve applied the ideas, how I might apply the ideas, how the ideas relate to other things I know, and who might be able to use those ideas as well. That&#039;s where the outline comes in handy. I can skim the outline to see which book I&#039;d like to think about, or I can search it for keywords to find a useful quote, or I can even jump to a random spot. I&#039;ve copied the text file to my Nintendo DS (yes, you can read text files on it), so I can even read on the go. (Next step: make an application specifically for reviewing my book notes? =) )</p>
<p>I&#039;ve gotten so many benefits from my insatiable appetite for books. Richer conversations, interesting connections, improved communication skills, and an abundance of material to share&#8230; I <em>love</em> reading, and I hope lots of people discover the joys of reading too!</p>

<!-- start wp-tags-to-technorati 0.95 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://sachachua.com/wp/2008/05/26/some-thoughts-on-reading/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Writing and &#34;Better: A Surgeon&#039;s Notes on Performance&#34;</title>
		<link>http://sachachua.com/wp/2008/02/10/writing-and-better-a-surgeons-notes-on-performance/</link>
		<comments>http://sachachua.com/wp/2008/02/10/writing-and-better-a-surgeons-notes-on-performance/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 03:35:22 +0000</pubDate>
		<dc:creator>Sacha Chua</dc:creator>
		
		<category><![CDATA[blogging]]></category>

		<category><![CDATA[reading]]></category>

		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://sachachua.com/wp/2008/02/10/writing-and-better-a-surgeons-notes-on-performance/</guid>
		<description><![CDATA[I don&#039;t remember where I got the book recommendation to read this book, but it&#039;s a fascinating read, and I aspire to this kind of life. (Although not in medicine - I couldn&#039;t bear the responsibility!). 




Better: A Surgeon&#039;s Notes on Performance           by Atul Gawande [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#039;t remember where I got the book recommendation to read this book, but it&#039;s a fascinating read, and I aspire to this kind of life. (Although not in medicine - I couldn&#039;t bear the responsibility!). </p>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0312427654%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0312427654%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/01m94qNmC%2BL.jpg" border="1" /></a></td>
<td valign="top"><b>Better: A Surgeon&#039;s Notes on Performance</b>           <br />by Atul Gawande           </p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0312427654%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0312427654%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>Here&#039;s a quote for all you writers, bloggers, and other aspiring communicators, from the afterword on how to become a positive deviant [p.249]</p>
<blockquote><p>My fourth suggestion was: write something. I don&#039;t mean this to be an intimidating suggestion. It makes no difference whether you write five paragraphs or a blog, a paper for a professional journal, or a poem for reading group. Just write. What you write need not achieve perfection. It need only add some small observation about your world.</p>
<p>You should also not underestimate the power of the act of writing itself. I did not write until I became a doctor. But once I became a doctor, I found I needed to write. For all its complexity, medicine is more physically than intellectually taxing. Because medicine is a retail enterprise, because doctors provide their services to one person after another, it can be a grind. You can lose your larger sense of purpose. But writing lets you step back and think through a problem. Even the angriest rant forces the writer to achieve a degree of thoughtfulness.</p>
<p>&#8230; Most of all, by offering your reflections to an audience, even a small one, you make yourself part of a larger world. Put a few thoughts on a topic in just a newsletter, and you find yourself wondering nervously: Will people notice it? What will they think? Did I say something dumb? An audience is a community. The published word is a declaration of membership in that community and also the willingness to contribute something meaningful to it. </p>
<p>So choose your audience. Write something.</p>
</blockquote>
<p>Atul Gawande, <a href="http://www.amazon.com/gp/redirect.html%3FASIN=0312427654%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0312427654%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Better</a> </p>
<p> My blog anchors my participation in the larger world, resulting in not only online interaction but real-world as was well. It makes me part of the conversation. </p>
<p>When I talk to people who don&#039;t blog. I feel a strange disconnect as if the conversation we have stops there: stops at the e-mail exchange with each other, stops at the meeting, is confined within the boundaries of our encounters. When I talk to people who blog, the conversation is wide open and embraces the world. </p>
<p>It&#039;s hard to explain that to the people who are afraid that they might have nothing to say. The truth is that you won&#039;t discover what you have to say until you say it. Sometimes it&#039;s hard to remember that not everyone has discovered the use of writing in reflecting and connecting with others. People have other priorities. They have no time. And perhaps at the core of it, they are shy as I was shy, as I still am shy. But I can overcome my shyness because I want to be part of that larger conversation with them. With you. </p>
<p>Write, and join the conversation.</p>

<!-- start wp-tags-to-technorati 0.95 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://sachachua.com/wp/2008/02/10/writing-and-better-a-surgeons-notes-on-performance/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Library Elf is awesome</title>
		<link>http://sachachua.com/wp/2008/02/03/library-elf-is-awesome/</link>
		<comments>http://sachachua.com/wp/2008/02/03/library-elf-is-awesome/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 16:06:19 +0000</pubDate>
		<dc:creator>Sacha Chua</dc:creator>
		
		<category><![CDATA[books]]></category>

		<category><![CDATA[library]]></category>

		<category><![CDATA[reading]]></category>

		<guid isPermaLink="false">http://sachachua.com/wp/2008/02/03/library-elf-is-awesome/</guid>
		<description><![CDATA[ 
When I blogged about my totally small-school library reminder script, Claudine recommended Library Elf, which helps people manage their library loans. I hopped over and set weekly reminders to go out on Sunday, just before my Monday book runs. I just got my first reminder e-mail from them, and I am impressed. C&#039;mon. Look [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://sachachua.com/wp/wp-content/uploads/2008/02/image.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="image" src="http://sachachua.com/wp/wp-content/uploads/2008/02/image-thumb.png" width="334" border="0" /></a> </p>
<p>When I blogged about my totally small-school <a href="http://sachachua.com/wp/2008/01/27/library-book-reminder-script-perl-geeking-required">library reminder script</a>, Claudine recommended <a href="http://libraryelf.com/">Library Elf</a>, which helps people manage their library loans. I hopped over and set weekly reminders to go out on Sunday, just before my Monday book runs. I just got my first reminder e-mail from them, and I am <em>impressed.</em> C&#039;mon. Look at that screenshot. It tells me when books are due and when my holds expire. If I hover over the links, I can see which books they are. The lists of holds ready for pickup and books that are checked out are sorted by date, which makes perfect sense. I can add W-&#039;s library card and track his books as well. =)</p>
<p>Awesome awesome awesome.</p>

<!-- start wp-tags-to-technorati 0.95 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://sachachua.com/wp/2008/02/03/library-elf-is-awesome/feed/</wfw:commentRss>
		</item>
		<item>
		<title>More books</title>
		<link>http://sachachua.com/wp/2008/01/22/more-books/</link>
		<comments>http://sachachua.com/wp/2008/01/22/more-books/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 02:28:28 +0000</pubDate>
		<dc:creator>Sacha Chua</dc:creator>
		
		<category><![CDATA[reading]]></category>

		<guid isPermaLink="false">http://sachachua.com/wp/2008/01/22/more-books/</guid>
		<description><![CDATA[&#34;I enjoyed lunch too  Please email the titles of all of those books! They all sounded wonderful,&#34; tweeted Heidi Hansen. E-mail, Heidi?  E-mail is so old-school. Here are the books we talked about:




The Leader&#039;s Guide to Storytelling: Mastering the Art and Discipline of Business Narrative         [...]]]></description>
			<content:encoded><![CDATA[<p>&quot;I enjoyed lunch too <img src='http://sachachua.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Please email the titles of all of those books! They all sounded wonderful,&quot; tweeted <a href="http://www.heidigoseek.com/">Heidi Hansen</a>. E-mail, Heidi? <img src='http://sachachua.com/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> E-mail is so old-school. Here are the books we talked about:</p>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=078797675X%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/078797675X%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/116EAPZZTQL.jpg" border="1" /></a></td>
<td valign="top"><b>The Leader&#039;s Guide to Storytelling: Mastering the Art and Discipline of Business Narrative</b>           <br />by Stephen Denning           </p>
<p>Read the first few chapters to learn about telling springboard stories. This book is more about influencing large groups of people, but you might find the tips on storytelling useful even if you&#039;re working one-on-one. Tell people stories about the ways social software saves you time and helps you do more, and tell those stories in a way that helps people imagine the time they could save and the things they could do. =) (Also, it&#039;s a good read.)           </p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=078797675X%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/078797675X%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=007148499X%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/007148499X%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/01UjeWMajKL.jpg" border="1" /></a></td>
<td valign="top"><b>Influencer: The Power to Change Anything</b>           <br />by Kerry Patterson, Joseph Grenny, David Maxfield, Ron McMillan, Al Switzler           </p>
<p>This one talks about the personal, social, and structural motivations and abilities that you need to think about if you&#039;re influencing adoption. Again written for the large-scale, but worth keeping in mind when you&#039;re trying to influence behavior one-on-one. Also good because it&#039;ll help you understand why you can&#039;t win everyone&#8230; =)           <br /><a href="http://www.amazon.com/gp/redirect.html%3FASIN=007148499X%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/007148499X%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<p>I also often recommend this:</p>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0060517123%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0060517123%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/01RMMSRF5FL.jpg" border="1" /></a></td>
<td valign="top"><b>Crossing the Chasm</b>           <br />by Geoffrey A. Moore           </p>
<p>also has some good stuff about technology adoption. Here you&#039;ll see the technology adoption curve, with innovators, early adopters, early majority, late majority, and laggards. (Or something like that&#8230;)           </p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0060517123%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0060517123%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>Alex might find these books about writing useful, as they talk about scientific writing as well:</p>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0062720406%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0062720406%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/01xLXjrk3pL.jpg" border="1" /></a></td>
<td valign="top"><b>Writing To Learn</b>           <br />by William K. Zinsser           </p>
<p>Start with this one; it&#039;s about bridging the gap between science and writing. =)          <br /><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0062720406%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0062720406%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0805210415%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0805210415%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/01DSR2ATVSL.jpg" border="1" /></a></td>
<td valign="top"><b>The Periodic Table</b>          <br />by Primo Levi          <br />One of William Zinsser&#039;s favorite examples of chemical writing. A friend lent this to me, and it&#039;s a great read.&#160;&#160; <br /><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0805210415%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0805210415%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>Jennifer Dodd, I think I mentioned the first three books to you as well, and these ones for independent consultants:</p>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=007138703X%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/007138703X%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/11ulOXsafmL.jpg" border="1" /></a></td>
<td valign="top"><b>Million Dollar Consulting: The Professional&#039;s Guide to Growing a Practice</b>          <br />by Alan Weiss          <br />A friend strongly recommended this. I haven&#039;t read it yet, but I trust his taste in books.          <br /><a href="http://www.amazon.com/gp/redirect.html%3FASIN=007138703X%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/007138703X%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0787948039%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0787948039%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/01H9XYB05EL.jpg" border="1" /></a></td>
<td valign="top"><b>Flawless Consulting: A Guide to Getting Your Expertise Used</b>          <br />by Peter Block          </p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0787948039%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0787948039%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0471783935%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0471783935%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/0153G0X6FKL.jpg" border="1" /></a></td>
<td valign="top"><b>Book Yourself Solid: The Fastest, Easiest, and Most Reliable System for Getting More Clients Than You Can Handle Even if You Hate Marketing and Selling</b>          <br />by Michael Port          </p>
<p>Just finished this one. Practical advice. Haven&#039;t read enough in this area to tell you if it&#039;s one of the better books, but it seems okay. =)          <br /><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0471783935%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0471783935%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>WLW really should have a frequently-recommended-books plugin.</p>

<!-- start wp-tags-to-technorati 0.95 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://sachachua.com/wp/2008/01/22/more-books/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Book notes</title>
		<link>http://sachachua.com/wp/2008/01/19/book-notes/</link>
		<comments>http://sachachua.com/wp/2008/01/19/book-notes/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 21:43:20 +0000</pubDate>
		<dc:creator>Sacha Chua</dc:creator>
		
		<category><![CDATA[reading]]></category>

		<guid isPermaLink="false">http://sachachua.com/wp/2008/01/19/book-notes/</guid>
		<description><![CDATA[



Writing To Learn          by William K. Zinsser          I can&#039;t do justice to this book. It&#039;s full of beautiful writing. After I return this to the library, I&#039;m getting my own copy to keep around for inspiration.  [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0062720406%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0062720406%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/01xLXjrk3pL.jpg" border="1" /></a></td>
<td valign="top"><b>Writing To Learn</b>          <br />by William K. Zinsser          <br />I can&#039;t do justice to this book. It&#039;s full of beautiful writing. After I return this to the library, I&#039;m getting my own copy to keep around for inspiration.          <br /><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0062720406%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0062720406%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0898795141%26tag=sacchu-20%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0898795141%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="" border="1" /></a></td>
<td valign="top">
<ul>
<li><b>How to Write Fast (While Writing Well)</b>               <br />by David Fryxell               </p>
<p>Great read. <strong>Recommend.</strong> Key points: discipline and organization. </li>
<li>There&#039;s plenty of time for writing books (examples of people who write books five minutes at a time). </li>
<li>Use outlines and other tools to help you organize your material.
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0898795141%26tag=sacchu-20%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0898795141%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a> </li>
</ul>
</td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0767922786%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0767922786%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/012H1KD2YPL.jpg" border="1" /></a></td>
<td valign="top"><b>Money Can Buy Happiness: How to Spend to Get the Life You Want</b>           <br />by MP Dunleavey           </p>
<p>Interesting read, nothing particularly new to me, but good advice.           <br /> 
<p>Asset 1: your valuable time            <br />Asset 2: your personal resources             <br />Asset 3: your health             <br />Asset 4: financial control             <br />Asset 5: mutual fund             <br />Asset 6: get into bonds             <br />Asset 7: giving to feel good </p>
<p>Page 32. Like many economists, he found that some arenas have a greater impact on people&#039;s contentment with life. For example, a rewarding family life was a key ingredient in overall life satisfaction, whereas work tended to not have as big an impact.</p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0767922786%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0767922786%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></p>
</td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0471783935%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0471783935%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/0153G0X6FKL.jpg" border="1" /></a></td>
<td valign="top"><b>Book Yourself Solid: The Fastest, Easiest, and Most Reliable System for Getting More Clients Than You Can Handle Even if You Hate Marketing and Selling</b>           <br />by Michael Port           </p>
<p>I&#039;d recommend this for independent consultants. Good, practical advice. E-mail me if you want my book notes. =)           </p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0471783935%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0471783935%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=1599180847%26tag=sacchu-20%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/1599180847%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/115OdS8Js9L.jpg" border="1" /></a></td>
<td valign="top"><b>Open an Online Business in 10 Days</b>           <br />by Melissa Campanelli           </p>
<p>Nothing particularly interesting.           </p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=1599180847%26tag=sacchu-20%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/1599180847%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td valign="top"><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0071426809%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0071426809%253FSubscriptionId=0525E2PQ81DD7ZTWTK82"><img src="http://ecx.images-amazon.com/images/I/11kQh%2B2Vk8L.jpg" border="1" /></a></td>
<td valign="top"><b>Business Leaders and Success: 55 Top Business Leaders and How They Achieved Greatness</b>          <br />by Investor&#039;s Business Daily, William O&#039;Neil          </p>
<p>Nothing spectacular here either.          </p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0071426809%26tag=ws%26lcode=sp1%26cID=2025%26ccmID=165953%26location=/o/ASIN/0071426809%253FSubscriptionId=0525E2PQ81DD7ZTWTK82">Read more about this book&#8230;</a></td>
</tr>
</tbody>
</table>

<!-- start wp-tags-to-technorati 0.95 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://sachachua.com/wp/2008/01/19/book-notes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Reading books</title>
		<link>http://sachachua.com/wp/2007/12/10/reading-books/</link>
		<comments>http://sachachua.com/wp/2007/12/10/reading-books/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 02:02:00 +0000</pubDate>
		<dc:creator>Sacha Chua</dc:creator>
		
		<category><![CDATA[reading]]></category>

		<guid isPermaLink="false">http://sachachua.com/notebook/wiki/2007.12.10.php#anchor-1</guid>
		<description><![CDATA[<p>I'm curled up in front of the fireplace, writing on my laptop as W- and J- read books. We've just come back from a trip to the library, and I brought back eight books that I'm looking forward to reading. I've started on a whole 'nother reading tear, this time about storytelling. My current source for book recommendations? <a href="http://www.librarything.com">LibraryThing</a>. In particular, the catalogs of people like <a href="http://www.librarything.com/catalog/victors">victors</a> (2211 books!) provide me with plenty of great titles for topics like <a href="http://www.librarything.com/catalog/victors">storytelling</a>. Tip: find mavens and read everything they read. ;)</p>

<p>On Technorati: <a href="http://www.technorati.com/tag/reading" rel="tag">reading</a></p>

<p>Emacs symbol: pgg-add-passphrase-to-cache - Function: Associate KEY with PASSPHRASE in time-limited passphrase cache.</p>
]]></description>
			<content:encoded><![CDATA[<p>I&#039;m curled up in front of the fireplace, writing on my laptop as W- and J- read books. We&#039;ve just come back from a trip to the library, and I brought back eight books that I&#039;m looking forward to reading. I&#039;ve started on a whole &#039;nother reading tear, this time about storytelling. My current source for book recommendations? <a href="http://www.librarything.com">LibraryThing</a>. In particular, the catalogs of people like <a href="http://www.librarything.com/catalog/victors">victors</a> (2211 books!) provide me with plenty of great titles for topics like <a href="http://www.librarything.com/catalog/victors">storytelling</a>. Tip: find mavens and read everything they read. <img src='http://sachachua.com/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>On Technorati: <a href="http://www.technorati.com/tag/reading" rel="tag">reading</a></p>
<p>Emacs symbol: pgg-add-passphrase-to-cache - Function: Associate KEY with PASSPHRASE in time-limited passphrase cache.</p>

<!-- start wp-tags-to-technorati 0.95 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://sachachua.com/wp/2007/12/10/reading-books/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Reading list</title>
		<link>http://sachachua.com/wp/2006/06/03/reading-list/</link>
		<comments>http://sachachua.com/wp/2006/06/03/reading-list/#comments</comments>
		<pubDate>Sat, 03 Jun 2006 06:04:00 +0000</pubDate>
		<dc:creator>Sacha Chua</dc:creator>
		
		<category><![CDATA[reading]]></category>

		<guid isPermaLink="false">http://sachachua.com/notebook/wiki/2006.06.03.php#anchor-1</guid>
		<description><![CDATA[<p>Peter Dawson just sent me his knowledge management reading list for
the second quarter. What an excellent idea! I should read lots of
books and write about them, as I enjoy reading books...</p>

<p>On Technorati: <a href="http://www.technorati.com/tag/reading" rel="tag">reading</a></p>

<p>E-Mail from Peter Dawson</p>

<p>Random Japanese sentence: ÃƒÂ£Ã‚ÂƒÃ‚Â©ÃƒÂ£Ã‚Â‚Ã‚Â¤ÃƒÂ£Ã‚Â‚Ã‚ÂªÃƒÂ£Ã‚ÂƒÃ‚Â³ÃƒÂ£Ã‚ÂÃ‚Â¨ÃƒÂ¨Ã‚Â™Ã‚ÂŽÃƒÂ£Ã‚ÂÃ‚Â¯ÃƒÂ§Ã‚ÂŒÃ‚Â«ÃƒÂ§Ã‚Â§Ã‚Â‘ÃƒÂ£Ã‚ÂÃ‚Â®ÃƒÂ¯Ã‚Â¼Ã‚Â’ÃƒÂ£Ã‚ÂÃ‚Â¤ÃƒÂ£Ã‚ÂÃ‚Â®ÃƒÂ©Ã‚ÂÃ‚Â•ÃƒÂ£Ã‚ÂÃ‚Â£ÃƒÂ£Ã‚ÂÃ‚ÂŸÃƒÂ§Ã‚Â¨Ã‚Â®ÃƒÂ£Ã‚ÂÃ‚Â§ÃƒÂ£Ã‚ÂÃ‚Â‚ÃƒÂ£Ã‚Â‚Ã‚Â‹ÃƒÂ£Ã‚Â€Ã‚Â‚	The lion and tiger are two different species of cat.</p>
]]></description>
			<content:encoded><![CDATA[<p>Peter Dawson just sent me his knowledge management reading list for
the second quarter. What an excellent idea! I should read lots of
books and write about them, as I enjoy reading books...</p>

<p>On Technorati: <a href="http://www.technorati.com/tag/reading" rel="tag">reading</a></p>

<p>E-Mail from Peter Dawson</p>

<p>Random Japanese sentence: ÃƒÂ£Ã‚ÂƒÃ‚Â©ÃƒÂ£Ã‚Â‚Ã‚Â¤ÃƒÂ£Ã‚Â‚Ã‚ÂªÃƒÂ£Ã‚ÂƒÃ‚Â³ÃƒÂ£Ã‚ÂÃ‚Â¨ÃƒÂ¨Ã‚Â™Ã‚ÂŽÃƒÂ£Ã‚ÂÃ‚Â¯ÃƒÂ§Ã‚ÂŒÃ‚Â«ÃƒÂ§Ã‚Â§Ã‚Â‘ÃƒÂ£Ã‚ÂÃ‚Â®ÃƒÂ¯Ã‚Â¼Ã‚Â’ÃƒÂ£Ã‚ÂÃ‚Â¤ÃƒÂ£Ã‚ÂÃ‚Â®ÃƒÂ©Ã‚ÂÃ‚Â•ÃƒÂ£Ã‚ÂÃ‚Â£ÃƒÂ£Ã‚ÂÃ‚ÂŸÃƒÂ§Ã‚Â¨Ã‚Â®ÃƒÂ£Ã‚ÂÃ‚Â§ÃƒÂ£Ã‚ÂÃ‚Â‚ÃƒÂ£Ã‚Â‚Ã‚Â‹ÃƒÂ£Ã‚Â€Ã‚Â‚	The lion and tiger are two different species of cat.</p>
]]></content:encoded>
			<wfw:commentRss>http://sachachua.com/wp/2006/06/03/reading-list/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
