<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Red Leopard &#187; book</title>
	<atom:link href="http://www.redleopard.com/tag/book/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redleopard.com</link>
	<description>A Stranger in a Strange Land</description>
	<lastBuildDate>Tue, 20 Dec 2011 14:55:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Beginning Rails 3</title>
		<link>http://www.redleopard.com/2011/03/beginning-rails-3/</link>
		<comments>http://www.redleopard.com/2011/03/beginning-rails-3/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 20:11:19 +0000</pubDate>
		<dc:creator>kelly</dc:creator>
				<category><![CDATA[Book Review]]></category>
		<category><![CDATA[KellyBlog]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.redleopard.com/?p=1225</guid>
		<description><![CDATA[I read a paper some time ago&#8211;but for the life of me cannot remember where&#8211;presenting study findings on student recall and comprehension. The irony of not recalling the details of a paper on the subject of recall spurred me to examine my own recall in other areas. I may have forgotten the source but the [...]]]></description>
			<content:encoded><![CDATA[<p><img width="145" height="182" alt="Book Cover, Beginning Rails 3 by Cloves Carneiro Jr. and Rida Al Barazi" style="float: left; margin: 0 0.5em 0.5ex 0;" src=" http://www.redleopard.com/images/beginning-rails-3.gif"></p>
<p>I read a paper some time ago&#8211;but for the life of me cannot remember where&#8211;presenting study findings on student recall and comprehension. The irony of not recalling the details of a paper on the subject of recall spurred me to examine my own recall in other areas. I may have forgotten the source but the <em>gist</em> of the paper&#8230; <em>that</em> I remember: The best way to improve comprehension and recall is to write an essay. I&#8217;ve long believed that writing develops a concept more fully (Galbraith, Torrance &amp; Hallam, 2006) but the <em>lost paper</em> suggests that essay writing on a new subject internalizes the content.</p>
<p>Blogging is (or can be) a form of essay writing. I read a lot for both work and <a href="http://itp.edu">school</a>. Would writing about what I read improve my recall? The lost paper seems to suggest so. With that in mind, I have decided 2011 is my year to write book reports. Since I&#8217;m writing for myself, these reports may be peculiar and I make no apology for it. I make no claim of their utility in anyone&#8217;s purchasing consideration. In fact, I may not even write about the content but rather the mechanics of the content.</p>
<p>My recent review of <i>Beginning Rails 3</i> (Carniero &amp; Al Barazi, 2010) dated February 23, 2011 can be found on <a href="http://my.safaribooksonline.com/book/web-development/ruby/9781430224334">safari.oreilly.com</a> [repeated below]. I don&#8217;t know if it&#8217;s a proper or even a traditional review. It contains my pressing thoughts upon finishing the book. Reading back over it, I can think of several essay topics that have little to do with Rails but rather with the construction of a book on Rails. That, however, is a different posting.</p>
<div class="apa-citation">
<p>Carneiro, C. Jr. &amp; Al Barazi, R. (2010). <i>Beginning rails 3</i>. New York, NY: Apress Publishing.</p>
<p>Galbraith, D., Torrance, M. &#038; Hallam, J. (2006). Effects of writing on conceptual coherence.  <i>Proceedings of the 28th Annual Conference of the Cognitive Science Society</i>, 1340-1345. Retrieved on March 4, 2011 from http://web.staffs.ac.uk/schools/business/iepr/docs/workingpaper35.pdf</p>
</div>
<hr />
<p>I found Beginning Rails 3 to be a gentle introduction to rails. I came from a C/java background and comfortable with ruby, sql and bash.</p>
<p><b>Intro</b>: Ch 1,2,3 contain the obligatory &#8216;getting started&#8217; material. Fortunately the material is easily digestible and relatively brief. I wanted to build the sample application as I read the material and went through processes of updating rails (on OS X) and getting the first app running. Everything here worked on my laptop as described in the book.</p>
<p><b>Models</b>: Ch 4,5 walk through just enough ORM to carry the reader through the rest of the book. The authors didn&#8217;t get wrapped up in sidebar discussions of ActiveRecord outside the scope of the sample project. I liked using the rails console to learn the minimum basics of creating and using models. </p>
<p><b>Controllers/Views</b>: Ch. 6,7 walk through building the &#8216;web side&#8217; of the app based on the models from the previous two chapters. A good understanding of the models before building the controllers and views made the exercise much easier to follow and anticipate.</p>
<p><b>Samplers</b>: Ch 8, 10, 11 are sampler chapters each of which could warrant an entire volume. A consistent theme throughout the book is &#8216;just enough&#8217; and these sampler chapters give the flavor if not the feast. The chapter on ajax replaces prototype with jquery (thank you) and ajaxifies a single form. It&#8217;s enough to get started. The chapter on internationalization gives just one approach to creating a multilingual site. It&#8217;s an ugly problem and this book should only be viewed as an introduction&#8211;a good introduction but an introduction nonetheless. The same can be said for the chapter on testing. For someone just getting into rails, the material on writing tests is enough without being overwhelming.</p>
<p><b>Skipped</b>: I read but skipped working the tutorial for Ch 9, 12, 13. The material seemed simple enough and I felt the other chapters gave me an adequate base of understanding to start working on a simple app of my own.</p>
<p>These guys really worked to keep their code clean and in sync with the book. I kept getting a warning (Object#id will be deprecated; use Object#object_id) on a partial when working through the chapter on testing. It turned out that the error was upstream (a case of id vs. :id). I downloaded the chapter source and diff&#8217;d against my work. Aside from some whitespace differences (and typo&#8217;s on my part), the files matched.</p>
<p>This is where I&#8217;d normally offer my suggested revisions. I really don&#8217;t have any. This is, after all, *Beginning* Rails 3. No book can cover everything. Nor should it try. So, what&#8217;s next? Speaking for myself, the next book to read is on test development.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redleopard.com/2011/03/beginning-rails-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Sure</title>
		<link>http://www.redleopard.com/2006/11/im-sure/</link>
		<comments>http://www.redleopard.com/2006/11/im-sure/#comments</comments>
		<pubDate>Sun, 19 Nov 2006 16:56:48 +0000</pubDate>
		<dc:creator>kelly</dc:creator>
				<category><![CDATA[Book Review]]></category>
		<category><![CDATA[book]]></category>

		<guid isPermaLink="false">http://www.redleopard.site/?p=69</guid>
		<description><![CDATA[I travel. A lot. Not as much as I used to but it&#8217;s still a bit. When I travel, I take a stack of unread books. The stack I bring is always one or two books more than I believe I&#8217;ll finish. For example, my last trip to Delhi lasted two weeks. The reading list [...]]]></description>
			<content:encoded><![CDATA[<p>I travel. A lot. Not as much as I used to but it&#8217;s still a bit.</p>
<p>When I travel, I take a stack of unread books. The stack I bring is always one or two books more than I believe I&#8217;ll finish. For example, my last trip to Delhi lasted two weeks. The reading list for that tripâ¦</p>
<p><span id="more-69"></span><br />
| Marketing and Promoting Your Own Seminars and Workshops<br />
| by Fred Gleeck<br />
| Self-published, 2001<br />
| 188 pages</p>
<p>| How to Run Seminars &amp; Workshops<br />
| by Robert L. Jolles<br />
| Wiley; 3 edition, 2005<br />
| 320 pages</p>
<p>| Why&#8217;s (poignant) Guide to Ruby<br />
| by Why the Lucky Stiff<br />
| Self-published<br />
| 126 pages</p>
<p>| Blink: The Power of Thinking Without Thinking<br />
| by Malcolm Gladwell<br />
| Little, Brown and Company, 2005<br />
| 288 pages</p>
<p>| Head First Servlets and JSP<br />
| by Bryan Basham, Kathy Sierra, Bert Bates<br />
| O&#8217;Reilly Media, 2004<br />
| 886 pages</p>
<p>On these trips, I save the most anticipated book for last. That book, in this case, was Blink. I didn&#8217;t get that far this trip. I enjoyed Gladwell&#8217;s previous work, &#8220;The Tipping Point&#8221;, and want to take some time with Blink.</p>
<p>I read the two geek books. &#8220;Head First&#8221; is as good a book as you&#8217;ll find on Java Servlets and JSP. &#8220;Why&#8217;s Poignant guide&#8221; is difficult to classify, tedious to read and thoroughly enjoyable.</p>
<p>The remaining two booksâboth related to running seminars and workshopsâare the subject of this post.</p>
<p>I&#8217;ve not finished Jolles book &#8220;How to run Seminars &amp; Workshops&#8221; and will review more completely when I have. I will, however, make a few statements here.</p>
<p>Robert L. Jolles and Fred Gleeck are cut from different cloth. Their books could hardly have been more distinct from one another.</p>
<p>The manner in which Jolles and Gleeck each present their material reflects the core tenants of their respective approach to running a seminar business. This is how each of the two authors occur to me.</p>
<p>Jolles&#8217; position is that your seminar participants paid to be informed, to be trained, to walk out of your seminar with an increased level of mastery of the material that youâas seminar leaderâwere entrusted to deliver.</p>
<p>Gleeck&#8217;s position is that your seminar participants walk out having bought products you presented during the seminar and, perhaps, register for another of your seminars.</p>
<p>This isn&#8217;t to say that Gleeck&#8217;s book is bad. It&#8217;s not. He is very consistent and upfront in what he says. And, he practices what he preaches. If the point of a seminar is to have people buy your products and register for another of your seminars, then it should come as no surprise that the point of Gleeck&#8217;s book is to have you buy his products and register for one of his seminars.</p>
<p>That&#8217;s the beauty of &#8220;Marketing and Promotingâ¦&#8221; Reading this book is to be in his seminar.</p>
<p>I found myself at once marvelling at and revolted by this book. It starts off light enough with an overview and some of the nuts and bolts of running a seminar business. Much of the material is univerally relevant, if colored by Gleeck&#8217;s view of the intent of a seminar.</p>
<p>There are better books for learning event production and management. Far better books.</p>
<p>But there is value to be had in &#8220;Marketing and Promotingâ¦&#8221; as a companion to &#8220;Influence: Science and Practice&#8221; by Robert B. Cialdini. Whereas Cialdini&#8217;s book offers a systematic view of the psychology of influence, Gleeck&#8217;s book immerses you in his efforts to influence â¦ you.</p>
<p>By the time I finished Gleeck&#8217;s book, I was exhausted. &#8220;Marketing and Promotingâ¦&#8221; is a self referential study in offering just enough information to keep an audience interested, but not enough to satiate curiosity; employing various techniques of influence to position products as &#8216;the missing piece&#8217;; and closing the sale.</p>
<p>The first half of the book is weighted towards building curiosity. The second half is weighted towards closing sales with <em>you</em>.</p>
<p>Throughout the book, Gleeck talks of his desire to sell &#8220;a ton of product.&#8221; It should come as no surprise then that he wants to sell a ton of product <em>to you</em>.</p>
<p>He offers you a free gift. The offer is printed in the footer <em>on every page</em>.</p>
<p>He talks about upselling. That is, have various price points available and when someone keys in on a product, work to sell them the next higher priced item.</p>
<p>He sprinkles invitations to call him throughout the book. They occurred to me as invitations to hear another sales pitch. Gleeck is upfront about this. &#8220;Don&#8217;t be surprised if I suggest you buy something from me when you call,&#8221; he writes.</p>
<p>I&#8217;m sure.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redleopard.com/2006/11/im-sure/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Talent</title>
		<link>http://www.redleopard.com/2006/09/talent/</link>
		<comments>http://www.redleopard.com/2006/09/talent/#comments</comments>
		<pubDate>Mon, 04 Sep 2006 18:55:40 +0000</pubDate>
		<dc:creator>kelly</dc:creator>
				<category><![CDATA[Book Review]]></category>
		<category><![CDATA[book]]></category>

		<guid isPermaLink="false">http://www.redleopard.site/?p=67</guid>
		<description><![CDATA[Peters, Tom. <i>Talent: Develop it, Sell it, Be it</i>. London: Dorling Kindersley Limited, 2005.

I picked <i>Talent</i> up in the <a title="Hong Kong International Airport" href="http://www.hongkongairport.com/">Hong Kong airport</a> last month. I thought I would read it on the flight to Delhi but found the format too annoying. The colored text on colored pages was simply too trying.]]></description>
			<content:encoded><![CDATA[<p>Peters, Tom. <i>Talent: Develop it, Sell it, Be it</i>. London: Dorling Kindersley Limited, 2005.</p>
<p>I picked <i>Talent</i> up in the <a title="Hong Kong International Airport" href="http://www.hongkongairport.com/">Hong Kong airport</a> last month. I thought I would read it on the flight to Delhi but found the format too annoying. The colored text on colored pages was simply too trying.</p>
<p><span id="more-67"></span><br />
Yet, I did read the book the following week. I stayed in a guesthouse in <a title="Official Information about Noida" href="http://www.greaternoida.com/">Noida</a> not far from the office. August is nasty hot and humid in Delhi and the early morning is really the best time to be outside. Iâd sit under the front patio ceiling fan sipping Nescafe instant coffee and read a chapter of <i>Talent</i> before breakfast.</p>
<p>[Note to self] Next trip to India, I’m bringing my own <a title="Peet's Coffee" href="http://www.peets.com/">coffee</a> and cone filters.</p>
<p><i>Talent</i> is one of four booklets in Peters’ “The Essentials” series. It’s a smallish book with five chapters.</p>
<p>Chapter 1 – Your <i>career</i> is dead. Develop yourself as <i>talent</i> and think like a freelancer.</p>
<p>Chapter 2 – Make everything you do matter. And brag about it.</p>
<p>Chapter 3 – Volunteer for crappy jobs and make them <i>WOW!</i> project. And brag about it.</p>
<p>Chapter 4 – Success = Sales Success. Sales is politics. If you suck at sales and politics, you are a loser. Period.</p>
<p>Chapter 5 – Surround yourself with the weird. If it ain’t weird, it’s mainstream. If it’s mainstream it’s mediocre.</p>
<p>Okay. This is a bit terse but it capture the essence of my experience with <i>Talent</i>. And I used Peters words in the context I believe <i>he</i> used them.</p>
<p>I’m not going to write a long review; It’s not a long book. I discovered that five short chapters is a nice format. You can read a chapter a day before breakfast and view the rest of the day in context of that chapter.</p>
<p>I have but one criticism of Peters’ message in <i>Talent</i>: For all his talk about <i>re-invention</i>, there is a stronger undercurrent of <i>revolution</i>. Much of Petersâs rhetoric is about bringing down the establishment. âViva la RevoluciÃ³n!â blah, blah, blah. It’s a little naïve.</p>
<p>Peters achieved his stated goal: “I don’t expect you to agree with everything I say in this book. But I hope that when you disagree … you will disagree <em>angrily</em>. That you’ll be so pissed off that you’ll … Do Something.”</p>
<p><i>Talent</i> reads like a dogmatic prescription to fix whatâs broken but if you recast that dogma in terms of “what if?”, you’ll see the world in a different way. In this sense, <i>Talent</i> is a good supplemental text in the challenge of conventional thought.</p>
<p>I find myself threading his comments and ideas in my comments and debates. I say that <i>that</i> alters the conversation which, in turn, alters the course of events.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redleopard.com/2006/09/talent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book: Battle for the Mind</title>
		<link>http://www.redleopard.com/2003/11/book-battle-for-the-mind/</link>
		<comments>http://www.redleopard.com/2003/11/book-battle-for-the-mind/#comments</comments>
		<pubDate>Fri, 14 Nov 2003 19:33:38 +0000</pubDate>
		<dc:creator>kelly</dc:creator>
				<category><![CDATA[Book Review]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.redleopard.site/?p=59</guid>
		<description><![CDATA[I read a fair amount. I wouldn&#8217;t say a lot only because I don&#8217;t really read that fast. Well, that&#8217;s not true. Fictional and biographical works I cruise through fairly quickly. It&#8217;s non-fiction that slows me to a crawl. It was a decade ago that I realized the obvious. Just because you start reading a [...]]]></description>
			<content:encoded><![CDATA[<p>I read a fair amount. I wouldn&#8217;t say a lot only because I don&#8217;t really read that fast. Well, that&#8217;s not true. Fictional and biographical works I cruise through fairly quickly. It&#8217;s non-fiction that slows me to a crawl.</p>
<p>It was a decade ago that I realized the obvious. Just because you start reading a book doesn&#8217;t mean you have to finish it. I can still remember the book that broke the spell: <a href="http://www.redleopard.com/text/bibliographies/0930031199.txt">The Vermont Papers</a></p>
<p>If I&#8217;m reading a book for my own enjoyment and edification, if I can&#8217;t relate the book to my life, if I&#8217;m getting nothing out of the book, it&#8217;s history. Ciao, baby. The Vermont Papers was my last &quot;I&#8217;ll finish the book simply because I started it&quot; experience. When I finished that book, I said, &quot;What a waste of my time.&quot;</p>
<p>Currently, I&#8217;m reading <a href="http://www.redleopard.com/text/bibliographies/1883536065.txt">Battle for the Mind</a>. This book I will finish and read again.</p>
<p><span id="more-59"></span><br />
The text is easy to read but it&#8217;s been slow going for me. As I read, I can immediately relate the concepts and observations Sargant makes with an endless stream recollections. It is as if someone has come with a hand full of puzzle pieces that have fallen from the table.</p>
<p>This reading, I&#8217;m looking mostly externally. To movies. To history. To trends. To current day personalities. I&#8217;ll read some and then think some. Read some &#8211; think some. Again and again.</p>
<p>Next reading, I&#8217;ll look internally. Should be interesting.</p>
<p>I just finished chapter five. Here&#8217;s my description thus far.</p>
<p>William Sargant was an English psychiatrist who, while working with battle fatigue victims in WWII, made the connection between symptoms and treatment of battle fatigue (now called Post Traumatic Stress Disorder &#8212; PTSD) and the work of I.P. Pavlov (of &quot;Pavlov&#8217;s Dogs&quot; fame).</p>
<p>I gained an appreciation for who Pavlov was and the context of his work. I had heretofore believed Pavlov simply discovered the conditioned response commonly referred to: The dog learns that when the light comes on he gets fed; soon, the dog will slobber whenever the light comes on, food or no.</p>
<p>Not exactly. Pavlov traumatized these dogs, and in different ways, to see how much they could take before they broke down. He noted that there were different types of dog. Each type broke down with different levels of trauma and with different results. Pavlov also found that with a nervous breakdown, he could reprogram the dogs.</p>
<p>Sargant doesn&#8217;t go into all the various ways Pavlov broke his dogs down but did comment that the methods would be unacceptable in Britain (circa 1950). I gather that some dogs were brutally tortured.</p>
<p>It was the various phases/stages of neuroses that Sargant connected with PTSD victims, especially after the Normandy invasion. Well presented arguments and observations.</p>
<p>Chapter two centers mainly on dispelling that Pavlov&#8217;s works are not useful in human psychiatry as dogs are dogs and men are men. Interesting read but I was already convinced before reading the chapter.</p>
<p>Chapter three and four talk about psychoanalysis, psychiatric drug treatments, shock treatments and leucotomy (lobotomy?). This was one of those &#8216;a-ha!&#8217; moments when all those old 70&#8242;s movies about mind control suddenly made sense. The big take away here is that sometimes psychoanalysis is not effective and other, more drastic measures, can help the patient. Sargant lays out, in lay terms, how these different measure work.</p>
<p>Chapter five is where Sargant moves out of PTSD treatment techniques and their background and into techniques for religious conversion. Had I read this chapter 25 to 30 years ago, it would have changed my whole perspective on how the world works (or doesn&#8217;t). I&#8217;ve lived much of my life skeptical of emotional assaults on the intellect. No longer. Sargant presents a compelling intellectual argument with numerous historical illustrations including mass conversions, serpent handling, speaking in tongues, miracle healings, voodoo, and other primitive tribal rituals.</p>
<p>I have a better appreciation for the historical and social importance of oracles, witch-doctors, voodoo and other priests.</p>
<p>This mid-book review is unusual for me. I almost didn&#8217;t write it. In light of my slow progress through the pages (reading as an academic work rather than pleasure read), I wanted to say something now. I&#8217;ll finish the review when I&#8217;ve finished the book.</p>
<p>But right now, the clock struck 11:30 and I&#8217;m suddenly hungry. <img src='http://www.redleopard.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.redleopard.com/2003/11/book-battle-for-the-mind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

