<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Books, Books &#38; More (New) Books</title>
	<atom:link href="http://sagecreek.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sagecreek.wordpress.com</link>
	<description>New Fiction, Nonfiction &#38; Poetry - Reviewed by Si Dunn</description>
	<lastBuildDate>Wed, 22 Feb 2012 03:25:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sagecreek.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Books, Books &#38; More (New) Books</title>
		<link>http://sagecreek.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sagecreek.wordpress.com/osd.xml" title="Books, Books &#38; More (New) Books" />
	<atom:link rel='hub' href='http://sagecreek.wordpress.com/?pushpress=hub'/>
		<item>
		<title>The Little Book on CoffeeScript &#8211; #programming #in #coffeescript #javascript #bookreview</title>
		<link>http://sagecreek.wordpress.com/2012/02/18/the-little-book-on-coffeescript-programming-in-coffeescript-javascript-bookreview/</link>
		<comments>http://sagecreek.wordpress.com/2012/02/18/the-little-book-on-coffeescript-programming-in-coffeescript-javascript-bookreview/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 20:02:03 +0000</pubDate>
		<dc:creator>Si Dunn</dc:creator>
				<category><![CDATA[Book reviews]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[CoffeeScript]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Kindle]]></category>
		<category><![CDATA[Paperback]]></category>
		<category><![CDATA[Programmer]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[O'Reilly]]></category>
		<category><![CDATA[paperback]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://sagecreek.wordpress.com/?p=1357</guid>
		<description><![CDATA[The Little Book on CoffeeScript By Alex MacCaw (with Jeremy Ashkenas) (O&#8217;Reilly, paperback, list price $8.99; Kindle edition, list price $7.99) &#8220;CoffeeScript (http://coffeescript.org) is a little language that complies down to JavaScript,&#8221; says this book&#8217;s author. &#8220;The syntax is inspired by Ruby and Python, and implements many features from those two languages. This book is designed to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1357&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color:#0000ff;"><a href="http://www.amazon.com/Little-Book-CoffeeScript-Alex-MacCaw/dp/1449321054/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">The Little Book on CoffeeScript<br />
</span></a></span></strong><em>By Alex MacCaw (with Jeremy Ashkenas)</em><br />
<em>(O&#8217;Reilly, <span style="color:#0000ff;"><a href="http://www.amazon.com/Little-Book-CoffeeScript-Alex-MacCaw/dp/1449321054/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">paperback</span></a></span>, list price $8.99; <span style="color:#0000ff;"><a href="http://www.amazon.com/Little-Book-CoffeeScript-ebook/dp/B006ZYZCRQ/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Kindle edition</span></a></span>, list price $7.99)</em></p>
<p><strong>&#8220;CoffeeScript <em>(<span style="color:#0000ff;"><a href="http://coffeescript.org/"><span style="color:#0000ff;">http://coffeescript.org</span></a></span>)</em> is a little language</strong> that complies down to JavaScript,&#8221; says this book&#8217;s author. &#8220;The syntax is inspired by Ruby and Python, and implements many features from those two languages. This book is designed to help you learn CoffeeScript, understand best practices, and start building awesome client-side applications.&#8221;</p>
<p>In just 45 pages, MacCaw does a good job of meeting those goals. It is important, he says, to note that &#8220;while CoffeeScript&#8217;s syntax is often identical with JavaScript&#8217;s, it&#8217;s not a superset, and therefore some JavaScript keywords, such as <em>function</em> and <em>var</em>, aren&#8217;t permitted, and will throw syntax errors. If you&#8217;re writing a CoffeeScript file, it needs to be pure CoffeeScript; you can&#8217;t intermingle the two languages.&#8221;</p>
<p>He explains that &#8220;CoffeeScript uses a straight source-to-source compiler, the idea being that every CoffeeScript statement results in an equivalent JavaScript statement.&#8221; So, to program in CoffeeScript, you need to also know JavaScript, so you can debug runtime errors.</p>
<p><strong>Along with showing CoffeeScript&#8217;s syntax differences</strong> from JavaScript, the book describes CoffeeScript&#8217;s features and compares CoffeeScript&#8217;s idioms with their JavaScript counterparts.</p>
<p>It also shows how to: (1)  compile CoffeeScript files in static sites, using the Cake build system; (2) structure and deploy CoffeeScript client-side application, using CommonJS modules; and (3) effectively use CoffeeScript&#8217;s &#8220;ability to fix some of JavaScript&#8217;s warts.&#8221;</p>
<p> The book has six chapters, and all are illustrated with code samples:</p>
<ul>
<li><strong><em>1. CoffeeScript Syntax</em></strong></li>
<li><strong><em>2. CoffeeScript Classes</em></strong></li>
<li><strong><em>3. CoffeeScript Idioms</em></strong></li>
<li><strong><em>4. Compiling CoffeeScript</em></strong></li>
<li><em><strong>5. The Good Parts </strong>- </em>Describes what CoffeeScript can&#8217;t fix about JavaScript and, more importantly, what it can.</li>
<li><em><strong>6. The Little Conclusion</strong> - </em>Discusses &#8220;the philosophy behind the changes that CoffeeScript makes to JavaScript&#8221;&#8230;CoffeeScript aims &#8220;to express core JavaScript concepts in as simple and minimal a syntax as we can find for them.&#8221;</li>
</ul>
<p>Alex MacCaw is a Ruby/JavaScript developer and entrepreneur and author of <em><span style="color:#0000ff;"><a href="http://www.amazon.com/JavaScript-Web-Applications-Alex-MacCaw/dp/144930351X/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">JavaScript Web Applications</span></a></span></em>. Jeremy Ashkenas is the developer of CoffeeScript.</p>
<p>If you are ready to learn CoffeeScript, this nicely focused little book can help you get up to speed quickly on best practices.</p>
<p style="text-align:center;">#</p>
<p><em>– </em><span style="color:#0000ff;"><strong><em><a href="http://www.sagecreekproductions.com/"><span style="color:#0000ff;">Si Dunn</span></a></em></strong></span><em> is a novelist, screenwriter, freelance book reviewer, and former software technical writer and software/hardware QA test specialist. His latest book is a detective novel, <span style="color:#0000ff;"><a href="http://www.amazon.com/Erwins-Erwin-Tennyson-Mystery-ebook/dp/B0055ULNM4/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Erwin’s Law</span></a></span>. His other published works include </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Jump-A-Novella-ebook/dp/B002KFYUG8/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Jump</span></a></em></span><em>, a novella, and a book of poetry, plus several short stories, including </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/7th-Mars-Cavalry-Short-ebook/dp/B006V5SV18/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">The 7th Mars Cavalry</span></a></em></span><em>, all available on Kindle.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sagecreek.wordpress.com/1357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sagecreek.wordpress.com/1357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sagecreek.wordpress.com/1357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sagecreek.wordpress.com/1357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sagecreek.wordpress.com/1357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sagecreek.wordpress.com/1357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sagecreek.wordpress.com/1357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sagecreek.wordpress.com/1357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sagecreek.wordpress.com/1357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sagecreek.wordpress.com/1357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sagecreek.wordpress.com/1357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sagecreek.wordpress.com/1357/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sagecreek.wordpress.com/1357/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sagecreek.wordpress.com/1357/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1357&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sagecreek.wordpress.com/2012/02/18/the-little-book-on-coffeescript-programming-in-coffeescript-javascript-bookreview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5cb031fe81692643e8f95eff3a941e42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Si Dunn</media:title>
		</media:content>
	</item>
		<item>
		<title>Understanding PaaS &#8211; Get your head in the cloud &#8211; #bookreview #cloud #programming</title>
		<link>http://sagecreek.wordpress.com/2012/02/17/understanding-paas-get-your-head-in-the-cloud-bookreview-cloud-programming/</link>
		<comments>http://sagecreek.wordpress.com/2012/02/17/understanding-paas-get-your-head-in-the-cloud-bookreview-cloud-programming/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 03:51:16 +0000</pubDate>
		<dc:creator>Si Dunn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Kindle]]></category>
		<category><![CDATA[Paperback]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Book reviews]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[O'Reilly]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[paperback]]></category>

		<guid isPermaLink="false">http://sagecreek.wordpress.com/?p=1344</guid>
		<description><![CDATA[Understanding PaaS By Michael P. McGrath (O&#8217;Reilly, paperback, list price $11.99; Kindle edition, list price $8.99) Ready to get your head in the cloud? Understanding PaaS is a well-written and straightforward guide to understanding one of  the three primary areas of cloud computing: Platform as a Service (PaaS). The other two primary areas, described briefly in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1344&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#0000ff;"><strong><a href="http://www.amazon.com/Understanding-PaaS-Michael-P-McGrath/dp/1449323421/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Understanding PaaS<br />
</span></a></strong></span><em>By Michael P. McGrath</em><br />
<em>(O&#8217;Reilly, <span style="color:#0000ff;"><a href="http://www.amazon.com/Understanding-PaaS-Michael-P-McGrath/dp/1449323421/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">paperback</span></a></span>, list price $11.99; <span style="color:#0000ff;"><a href="http://www.amazon.com/Understanding-PaaS-ebook/dp/B006YTGSLG/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Kindle edition</span></a></span>, list price $8.99)</em></p>
<p><strong>Ready to get your head in the cloud?</strong> <em><span style="color:#0000ff;"><a href="http://www.amazon.com/Understanding-PaaS-ebook/dp/B006YTGSLG/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Understanding PaaS</span></a></span></em> is a well-written and straightforward guide to understanding one of  the three primary areas of cloud computing: <span style="color:#0000ff;"><a href="http://en.wikipedia.org/wiki/Platform_as_a_service"><span style="color:#0000ff;">Platform as a Service (PaaS)</span></a></span>.</p>
<p>The other two primary areas, described briefly in this 37-page book, are <span style="color:#0000ff;"><a href="http://en.wikipedia.org/wiki/Software_as_a_service"><span style="color:#0000ff;">Software as a Service (SaaS)</span></a></span> and <span style="color:#0000ff;"><a href="http://en.wikipedia.org/wiki/Cloud_infrastructure#Infrastructure"><span style="color:#0000ff;">Infrastructure as a Service (IaaS)</span></a></span>.</p>
<p>PaaS fits in the middle of the cloud-computing stack, between SaaS on top and IaaS at the bottom.</p>
<p><strong>&#8220;SaaS simply refers to software</strong> that is provided on-demand for use,&#8221; notes the author, Michael P. McGrath, a founding member of Red Hat&#8217;s OpenShift and currently its &#8221;Principal Cloud Architect.&#8221; He also is operations manager for all of Red Hat&#8217;s PaaS offerings. &#8220;There&#8217;s no magic to it [SaaS],&#8221; he adds. For example:  &#8221;Anyone who has used web mail of any kind has been using SaaS.&#8221;</p>
<p>Meanwhile: &#8220;Proper IaaS provides a mechanism for people to replace all of their data center hardware needs.&#8221; The infrastructure services that can be obtained from the cloud include: host provisioning, load balancing, public and private network connectivity, firewalls, and storage.</p>
<p>&#8220;Additionally, all of the dependencies for these services also are provided&#8221; by IaaS providers, the author points out.</p>
<p><strong>&#8220;PaaS providers offer a platform</strong> for others to use,&#8221; he adds. &#8220;What is being provided is part operating system and part middleware. A proper PaaS provider  takes care of everything needed to run some specific language or technology stack.&#8221; And: &#8220;PaaS today focuses almost entirely on web solutions. The components an end user interacts with are all web-based and because of this, most PaaS providers excel when it comes to large numbers of short lived process requests.&#8221;</p>
<p>McGrath&#8217;s book is divided into six short chapters:</p>
<p><strong>1. What is Cloud Computing?</strong> &#8211; Describes the three levels and shows how to set up a virtual machine via Amazon Web Services&#8217; Elastic Compute Cloud (EC2). </p>
<p><strong>2. Why PaaS?</strong> - &#8220;PaaS provides a carefree environment for developers to work&#8230;.By utilizing PaaS, developers simply pick the languages and features they want, match those requirements with a provider that has them, and start coding.&#8221; Discusses common features, costs and maintenance.</p>
<p><strong>3. What to Expect</strong> - &#8220;PaaS makes it so easy to run code remotely that options are now available to do all development in the cloud.&#8221; Discusses why &#8220;a pre-built application may not automatically work when uploaded to PaaS.&#8221; Looks at tools, providers, development workflow and automated testing.</p>
<p><strong>4. Examples</strong> - Provide code for creating a sample application using Red Hat&#8217;s OpenShift platform.</p>
<p><strong>5.</strong> <strong>Architecture</strong> &#8211; Focuses on the &#8220;three primary concerns when dealing with networking in the cloud&#8221;: connectivity, bandwidth and latency.</p>
<p><strong>6.</strong> <strong>Summary</strong> - McGrath says PaaS offers many solutions and now is &#8220;an exciting time for cloud providers. Go out, try some, and see how they can make IT easier and once again, enjoyable.&#8221;</p>
<p>If you are curious about cloud computing or ready now to try some development in the cloud, add this well-focused little book to your reading list and reference library.</p>
<p style="text-align:center;">#</p>
<p><em>– </em><span style="color:#0000ff;"><strong><em><a href="http://www.sagecreekproductions.com/"><span style="color:#0000ff;">Si Dunn</span></a></em></strong></span><em> is a novelist, screenwriter, freelance book reviewer, and former software technical writer and software/hardware QA test specialist. His latest book is a detective novel, <span style="color:#0000ff;"><a href="http://www.amazon.com/Erwins-Erwin-Tennyson-Mystery-ebook/dp/B0055ULNM4/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Erwin’s Law</span></a></span>. His other published works include </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Jump-A-Novella-ebook/dp/B002KFYUG8/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Jump</span></a></em></span><em>, a novella, and a book of poetry, plus several short stories, including </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/7th-Mars-Cavalry-Short-ebook/dp/B006V5SV18/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">The 7th Mars Cavalry</span></a></em></span><em>, all available on Kindle.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sagecreek.wordpress.com/1344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sagecreek.wordpress.com/1344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sagecreek.wordpress.com/1344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sagecreek.wordpress.com/1344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sagecreek.wordpress.com/1344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sagecreek.wordpress.com/1344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sagecreek.wordpress.com/1344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sagecreek.wordpress.com/1344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sagecreek.wordpress.com/1344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sagecreek.wordpress.com/1344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sagecreek.wordpress.com/1344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sagecreek.wordpress.com/1344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sagecreek.wordpress.com/1344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sagecreek.wordpress.com/1344/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1344&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sagecreek.wordpress.com/2012/02/17/understanding-paas-get-your-head-in-the-cloud-bookreview-cloud-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5cb031fe81692643e8f95eff3a941e42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Si Dunn</media:title>
		</media:content>
	</item>
		<item>
		<title>Web Development Recipes &#8211; To make life easier for you &amp; your users &#8211; #programming #bookreview #in</title>
		<link>http://sagecreek.wordpress.com/2012/02/13/web-development-recipes-to-make-life-easier-for-you-your-users-programming-bookreview-in/</link>
		<comments>http://sagecreek.wordpress.com/2012/02/13/web-development-recipes-to-make-life-easier-for-you-your-users-programming-bookreview-in/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 22:37:54 +0000</pubDate>
		<dc:creator>Si Dunn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Book reviews]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Programmer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[paperback]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://sagecreek.wordpress.com/?p=1335</guid>
		<description><![CDATA[Web Development Recipes By Brian P. Hogan, Chris Warren, Mike Weber, Chris Johnson, and Aaron Godin (Pragmatic Bookshelf, paperback, list price $35.00) &#8220;It&#8217;s no longer enough,&#8221; this book&#8217;s authors state, &#8220;to know how to wrangle HTML, CSS, and a bit of JavaScript. Today&#8217;s web developer needs to know how to write testable code, build interactive [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1335&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#0000ff;"><strong><a href="http://www.amazon.com/Web-Development-Recipes-Brian-Hogan/dp/1934356832/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Web Development Recipes</span></a><br />
</strong></span><em>By Brian P. Hogan, Chris Warren, Mike Weber, Chris Johnson, and Aaron Godin</em><br />
<em>(Pragmatic Bookshelf, <span style="color:#0000ff;"><a href="http://www.amazon.com/Web-Development-Recipes-Brian-Hogan/dp/1934356832/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">paperback</span></a></span>, list price $35.00)</em></p>
<p><strong>&#8220;It&#8217;s no longer enough,&#8221;</strong> this book&#8217;s authors state, &#8220;to know how to wrangle HTML, CSS, and a bit of JavaScript. Today&#8217;s web developer needs to know how to write testable code, build interactive interfaces, integrate with other services, and sometimes even do some server configuration, or at least a little bit of backend work.&#8221;</p>
<p>Their handy, helpful new work offers more than 40 &#8220;practical recipes that range from clever CSS tricks that will make your clients happy to server-side configurations that will make life easier for you and your users. You&#8217;ll find a mix of tried-and-true techniques and cutting-edge solutions, all aimed at helping you truly discover the best tools for the job.&#8221;</p>
<p><span style="color:#0000ff;"><strong><a href="http://www.amazon.com/Web-Development-Recipes-Brian-Hogan/dp/1934356832/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Web Development Recipes</span></a></strong></span> is organized as seven chapters and two appendices:</p>
<ul>
<li><strong>Chapter 1: Eye-Candy Recipes</strong> &#8211; Covers a few ways to use cascading style sheets (CSS) and other techniques to improve the appearance of web pages.</li>
<li><strong>Chapter 2: User Interface Recipes</strong> &#8211; Focuses on techniques to make better user interfaces, including JavaScript frameworks like Knockout and Backbone. Also shows &#8221;how to make better templates for sending HTML emails.&#8221;</li>
<li><strong>Chapter 3:  Data Recipes</strong> - Explores ways to work with user data. Shows how to create a simple contact form and gives &#8220;a peek&#8221; at using CouchDB&#8217;s CouchApp to build a database-driven application.</li>
<li><strong>Chapter 4: Mobile Recipes</strong> - Shows ways to work with mobile computing platforms. Focuses on jQuery Mobile, handling multitouch events and helps you &#8220;dig a little deeper into how to determine how and when to serve a mobile version of a page to your visitors.&#8221;</li>
<li><strong> Chapter 5: Workflow Recipes</strong> - Focuses on improving your processes, including using Sass to &#8220;make your life easier when managing large style sheets.&#8221; Also introduces CoffeeScript, &#8220;a new dialect for writing JavaScript that produces clean, compliant results.&#8221;</li>
<li><strong>Chapter 6: Testing Recipes</strong> &#8211; Using automated tests to help you build &#8220;bullet-proof&#8221; websites. Also, &#8220;how to start testing the JavaScript code you write.&#8221;</li>
<li><strong>Chapter 7: Hosting and Deployment Recipes</strong> &#8211; Building a virtual machine to be used as a testing environment, so you can test before moving to a real production environment. Also covers setting up secure sites, doing redirects properly, and automating website deployments &#8220;so you won&#8217;t accidentally forget to upload a file.&#8221;</li>
<li><strong> </strong><strong>Appendix A1:  Installing Ruby </strong>- Several of the web development recipes require having the Ruby programming language installed on your computer.</li>
<li><strong>Appendix A2: Bibliography</strong> &#8211; Lists six works for further reference.  </li>
</ul>
<p>Along with Ruby, there are a few other prerequisites:</p>
<ul>
<li><em>HTML5 and jQuery</em></li>
<li><em>Working with command-line prompts in a shell on a Windows, OS X or Linux machine.</em></li>
<li><em>QEDServer (can be downloaded from the book&#8217;s website).</em></li>
<li><em>A virtual machine (either set up with help from the book or downloaded already configured from a website link in the book).</em></li>
</ul>
<p>The source code for the book&#8217;s projects also can be downloaded from the book&#8217;s website.</p>
<p><strong>In many of the recipes</strong>, the authors assume that you have &#8220;a little experience with writing client-side code with JavaScript and jQuery.&#8221; But if you don&#8217;t, they contend you can still learn a lot by reading the recipes and studying the source code they&#8217;ve provided.</p>
<p>Each recipe is presented in a straightforward <em>problem</em>,<em> ingredients</em> and <em>solution</em> format, with clear explanations, code examples, illustrations, tips and links to more information.</p>
<p>If you are doing web development work or wanting to move into that arena, <span style="color:#0000ff;"><strong><a href="http://www.amazon.com/Web-Development-Recipes-Brian-Hogan/dp/1934356832/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Web Development Recipes</span></a></strong></span> could be a very good book to keep handy.</p>
<p style="text-align:center;">#</p>
<p><em>– </em><span style="color:#0000ff;"><strong><em><a href="http://www.sagecreekproductions.com/"><span style="color:#0000ff;">Si Dunn</span></a></em></strong></span><em> is a novelist, screenwriter, freelance book reviewer, and former software technical writer and software/hardware QA test specialist. His latest book is a detective novel, <span style="color:#0000ff;"><a href="http://www.amazon.com/Erwins-Erwin-Tennyson-Mystery-ebook/dp/B0055ULNM4/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Erwin’s Law</span></a></span>. His other published works include </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Jump-A-Novella-ebook/dp/B002KFYUG8/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Jump</span></a></em></span><em>, a novella, and a book of poetry, plus several short stories, including </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/7th-Mars-Cavalry-Short-ebook/dp/B006V5SV18/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">The 7th Mars Cavalry</span></a></em></span><em>, all available on Kindle.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sagecreek.wordpress.com/1335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sagecreek.wordpress.com/1335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sagecreek.wordpress.com/1335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sagecreek.wordpress.com/1335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sagecreek.wordpress.com/1335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sagecreek.wordpress.com/1335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sagecreek.wordpress.com/1335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sagecreek.wordpress.com/1335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sagecreek.wordpress.com/1335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sagecreek.wordpress.com/1335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sagecreek.wordpress.com/1335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sagecreek.wordpress.com/1335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sagecreek.wordpress.com/1335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sagecreek.wordpress.com/1335/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1335&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sagecreek.wordpress.com/2012/02/13/web-development-recipes-to-make-life-easier-for-you-your-users-programming-bookreview-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5cb031fe81692643e8f95eff3a941e42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Si Dunn</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint 2010 for Project Management, 2nd Edition &#8211; #bookreview</title>
		<link>http://sagecreek.wordpress.com/2012/02/12/sharepoint-2010-for-project-management-2nd-edition-bookreview/</link>
		<comments>http://sagecreek.wordpress.com/2012/02/12/sharepoint-2010-for-project-management-2nd-edition-bookreview/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 20:25:44 +0000</pubDate>
		<dc:creator>Si Dunn</dc:creator>
				<category><![CDATA[Book reviews]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Kindle]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Paperback]]></category>
		<category><![CDATA[Project management]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[O'Reilly]]></category>
		<category><![CDATA[paperback]]></category>
		<category><![CDATA[project management]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://sagecreek.wordpress.com/?p=1323</guid>
		<description><![CDATA[SharePoint 2010 for Project Management, 2nd Edition By Dux Raymond Sy (O&#8217;Reilly, paperback, list price $44.99; Kindle edition, list price $34.99) Project management now provides the top use of Microsoft SharePoint 2010, and this updated edition quickly jumps straight into using SharePoint to create and run a Project Management Information System (PMIS).  The book is written and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1323&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#0000ff;"><strong><a href="http://www.amazon.com/SharePoint-2010-Project-Management-Raymond/dp/1449306373/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">SharePoint 2010 for Project Management, 2nd Edition<br />
</span></a></strong></span><em>By Dux Raymond Sy</em><br />
<em>(O&#8217;Reilly, <span style="color:#0000ff;"><a href="http://www.amazon.com/SharePoint-2010-Project-Management-Raymond/dp/1449306373/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">paperback</span></a></span>, list price $44.99; <span style="color:#0000ff;"><a href="http://www.amazon.com/SharePoint-2010-Project-Management-ebook/dp/B006YTGQUY/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Kindle edition</span></a></span>, list price $34.99)</em></p>
<p><strong>Project management now provides</strong> the top use of Microsoft SharePoint 2010, and this updated edition quickly jumps straight into using SharePoint to create and run a Project Management Information System (PMIS). </p>
<p>The book is written and structured for those &#8220;not interested in the nitty-gritty technical details of SharePoint,&#8221; the author says. His work &#8220;is focused on helping you leverage SharePoint for project management regardless of what industry you are in.&#8221;</p>
<p>And he emphasizes: &#8220;If you are interested in using SharePoint to deploy a corporate portal, create an ecommerce website, or develop a proprietary SharePoint application, this is not the book for you.&#8221;</p>
<p><strong>In organizations large and small</strong> and even for individual users, &#8220;[t]he main purpose of SharePoint is to empower users with document management and team collaboration tools,&#8221; the author notes.  He points out that &#8220;SharePoint does not refer to a specific product or technology. Using the phrase &#8216;Microsoft SharePoint&#8217; is like using the phrase &#8216;Microsoft Office.&#8221; It refers to several aspects of collaborative solutions.&#8221;</p>
<p> This new edition is aimed at project managers, project team members, program managers, IT/IS directors and SharePoint consultants.</p>
<p>The 209-page book has nine chapters:</p>
<ul>
<li><em>1. Project Kickoff</em></li>
<li><em>2. Setting Up the PMIS</em></li>
<li><em>3. Adding PMIS Components</em></li>
<li><em>4. Adding Stakeholders to the PMIS</em></li>
<li><em>5. Supporting Team Collaboration</em></li>
<li><em>6. Project Tracking</em></li>
<li><em>7. Project Reporting</em></li>
<li><em>8. Integrating PM Tools</em></li>
<li><em>9. Project Closing</em></li>
</ul>
<p><strong><span style="color:#0000ff;"><a href="http://www.amazon.com/SharePoint-2010-Project-Management-Raymond/dp/1449306373/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">SharePoint 2010 for Project Management, 2nd Edition</span></a></span> </strong>is well-written and tightly focused, with how-to instructions and illustrations on nearly every page.  It also provides a case study so readers can practice applying PMIS skills in SharePoint.</p>
<p style="text-align:center;">#</p>
<p><em>– </em><span style="color:#0000ff;"><strong><em><a href="http://www.sagecreekproductions.com/"><span style="color:#0000ff;">Si Dunn</span></a></em></strong></span><em> is a novelist, screenwriter, freelance book reviewer, and former software technical writer and software/hardware QA test specialist. His latest book is a detective novel, <span style="color:#0000ff;"><a href="http://www.amazon.com/Erwins-Erwin-Tennyson-Mystery-ebook/dp/B0055ULNM4/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Erwin’s Law</span></a></span>. His other published works include </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Jump-A-Novella-ebook/dp/B002KFYUG8/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Jump</span></a></em></span><em>, a novella, and a book of poetry, plus several short stories, including </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/7th-Mars-Cavalry-Short-ebook/dp/B006V5SV18/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">The 7th Mars Cavalry</span></a></em></span><em>, all available on Kindle. </em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sagecreek.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sagecreek.wordpress.com/1323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sagecreek.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sagecreek.wordpress.com/1323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sagecreek.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sagecreek.wordpress.com/1323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sagecreek.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sagecreek.wordpress.com/1323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sagecreek.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sagecreek.wordpress.com/1323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sagecreek.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sagecreek.wordpress.com/1323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sagecreek.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sagecreek.wordpress.com/1323/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1323&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sagecreek.wordpress.com/2012/02/12/sharepoint-2010-for-project-management-2nd-edition-bookreview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5cb031fe81692643e8f95eff3a941e42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Si Dunn</media:title>
		</media:content>
	</item>
		<item>
		<title>Tap, Move, Shake: Turning Your Game Ideas into iPhone &amp; iPad Apps &#8211; #bookreview</title>
		<link>http://sagecreek.wordpress.com/2012/02/11/tap-move-shake-turning-your-game-ideas-into-iphone-ipad-apps-bookreview/</link>
		<comments>http://sagecreek.wordpress.com/2012/02/11/tap-move-shake-turning-your-game-ideas-into-iphone-ipad-apps-bookreview/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 17:55:19 +0000</pubDate>
		<dc:creator>Si Dunn</dc:creator>
				<category><![CDATA[Book reviews]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[Gamification]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Paperback]]></category>
		<category><![CDATA[Programmer]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Video games]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[O'Reilly]]></category>
		<category><![CDATA[paperback]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://sagecreek.wordpress.com/?p=1312</guid>
		<description><![CDATA[Tap, Move, Shake: Turning Your Game Ideas into iPhone &#38; iPad Apps By Todd Moore (O’Reilly, paperback, list price $29.99; Kindle edition, list price $23.99) If you have some game ideas and a little coding experience, this well-focused and well-written book can show you how to get started as a developer of iPhone and iPad [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1312&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#0000ff;"><strong><a href="http://www.amazon.com/Tap-Move-Shake-Turning-iPhone/dp/1449303455/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Tap, Move, Shake: Turning Your Game Ideas into iPhone &amp; iPad Apps</span></a></strong></span><br />
<em>By Todd Moore<br />
(O’Reilly, <span style="color:#0000ff;"><a href="http://www.amazon.com/Tap-Move-Shake-Turning-iPhone/dp/1449303455/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">paperback</span></a></span>, list price $29.99; <span style="color:#0000ff;"><a href="http://www.amazon.com/Tap-Move-Shake-Turning-ebook/dp/B006OH8G36/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Kindle edition</span></a></span>, list price $23.99)</em></p>
<p><strong>If you have some game ideas</strong> and a little coding experience, this well-focused and well-written book can show you how to get started as a developer of iPhone and iPad game apps.</p>
<p>The author notes: “Most games are typically controlled using a directional pad, analog joysticks, and various buttons. The iPhone and iPad give us a new form of input—Multi-touch. We can track up to 5 individual touches on the iPhone and iPod touch screens and up to 11 individual touches on the iPad. This opens up a whole new genre of games that previously did not exist. This is why [in this book] you are going to learn right from the start how to handle multiple touches on the screen.”</p>
<p>Moore’s 254-page book, which includes a foreword by Steve Wozniak, is organized as follows:</p>
<ul>
<li><strong>Preface </strong>– “Whether you are racking up points hitting a ball with a paddle or fragging your friends in a 3-D immersive world, the overall game elements are the same.”</li>
<li><strong>Introduction to XCode</strong> – How to register at the App Store as an Apple Developer. (Also see <strong>App Store</strong> chapter at end of book.) How to get the iOS Dev Center program and download the latest version of XCode. How to build a simple game while you learn various aspects of XCode.</li>
<li><strong>Hello Pong</strong> – How to create a Pong-like air hockey game called “Paddles” as you “learn how to implement multi-touch controls, animation, collision detection, and scoring.”</li>
<li><strong>Graphics</strong> – How to create graphics and use them in your game.</li>
<li><strong>Physics</strong> – How to “improve the paddle controls and create a realistic puck animation” for the “Paddles” game.</li>
<li><strong>Sounds</strong> – How to “create realistic sounds for your game.”</li>
<li><strong>Computer AI</strong> – Shows “how to create a computer player that can play a decent game of air hockey” and includes adding a title screen for the “Paddles” game, “so the player can choose to play against the computer or play the two player mode that has already been implemented.”</li>
<li><strong>App Store</strong> – The author walks you “through the process of submitting your application to the App Store.” He also discusses the necessity to take “a lot of different screenshots, making sure to show the unique parts of your game.” The idea ultimately is to “help the customer make a buy decision” for your app.</li>
</ul>
<p><strong>Todd Moore founded</strong> TMSOFT “to create unique smartphone applications and games.” He is one of the few developers who have had “two apps in iTunes’ Top 20 Paid Downloads.”</p>
<p style="text-align:center;">#</p>
<p><em>– </em><span style="color:#0000ff;"><strong><em><a href="http://www.sagecreekproductions.com/"><span style="color:#0000ff;">Si Dunn</span></a></em></strong></span><em>‘s latest book is a detective novel, </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Erwins-Erwin-Tennyson-Mystery-ebook/dp/B0055ULNM4/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Erwin’s Law</span></a></em></span><em>. His other published works include </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Jump-A-Novella-ebook/dp/B002KFYUG8/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Jump</span></a></em></span><em>, a novella, and a book of poetry, plus several short stories, including </em><em><a href="http://www.amazon.com/7th-Mars-Cavalry-Short-ebook/dp/B006V5SV18/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia">The 7th Mars Cavalry</a></em><em>, all available on Kindle. He is a screenwriter, a freelance book reviewer and a former software technical writer and software/hardware QA test specialist.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sagecreek.wordpress.com/1312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sagecreek.wordpress.com/1312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sagecreek.wordpress.com/1312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sagecreek.wordpress.com/1312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sagecreek.wordpress.com/1312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sagecreek.wordpress.com/1312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sagecreek.wordpress.com/1312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sagecreek.wordpress.com/1312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sagecreek.wordpress.com/1312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sagecreek.wordpress.com/1312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sagecreek.wordpress.com/1312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sagecreek.wordpress.com/1312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sagecreek.wordpress.com/1312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sagecreek.wordpress.com/1312/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1312&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sagecreek.wordpress.com/2012/02/11/tap-move-shake-turning-your-game-ideas-into-iphone-ipad-apps-bookreview/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5cb031fe81692643e8f95eff3a941e42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Si Dunn</media:title>
		</media:content>
	</item>
		<item>
		<title>Google+: The Missing Manual &#8211; #bookreview</title>
		<link>http://sagecreek.wordpress.com/2012/02/10/google-the-missing-manual-bookreview/</link>
		<comments>http://sagecreek.wordpress.com/2012/02/10/google-the-missing-manual-bookreview/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 19:18:12 +0000</pubDate>
		<dc:creator>Si Dunn</dc:creator>
				<category><![CDATA[Book reviews]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Paperback]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Authors]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[paperback]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://sagecreek.wordpress.com/?p=1276</guid>
		<description><![CDATA[Google+: The Missing Manual By Kevin Purdy (O&#8217;Reilly, paperback, list price $14.99; Kindle edition, list price $11.99)  I believe too much social media can rot the brain and waste many good hours of our lives. So, after I opened a Google+ account (mostly out of curiosity) a few weeks ago, I promptly let it sit unused. I wasn&#8217;t sure [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1276&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/Google-Missing-Manual-Kevin-Purdy/dp/1449311873/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;"><strong><span style="color:#0000ff;">Google+: The Missing Manual</span></strong></span><br />
</a><em>By Kevin Purdy</em><br />
<em>(O&#8217;Reilly, <span style="color:#0000ff;"><a href="http://www.amazon.com/Google-Missing-Manual-Kevin-Purdy/dp/1449311873/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">paperback</span></a></span>, list price $14.99; <span style="color:#0000ff;"><a href="http://www.amazon.com/Google-Missing-Manual-ebook/dp/B00771V9T6/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Kindle edition</span></a></span>, list price $11.99)</em></p>
<p><strong> I believe too much social media</strong> can rot the brain and waste many good hours of our lives. So, after I opened a Google+ account (mostly out of curiosity) a few weeks ago, I promptly let it sit unused.</p>
<p>I wasn&#8217;t sure what I could do with Google+ and how it might benefit me. Furthermore,  I felt that I was too busy to dig around on it, learn by blunder, and have to open a bunch of help screens and blog postings to try to find more information.</p>
<p>Most of all, I didn&#8217;t want to click or check the wrong box and start inviting hundreds of email contacts to join me on Google+. Particularly since there was absolutely nothing about me to see except one photo and a few bare words of &#8220;profile.&#8221;</p>
<p><strong><span style="color:#0000ff;"><a href="http://www.amazon.com/Google-Missing-Manual-Kevin-Purdy/dp/1449311873/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Google+: The Missing Manual</span></a></span></strong> promises to deliver &#8220;the important stuff you need to know.&#8221; So I recently got a copy of it and gave Google+ another try.</p>
<p>Kevin Purdy&#8217;s book, I am pleased to say, is well-organized for beginners and is proving easy to follow as I gradually enlarge my Google+ beachhead.</p>
<p>I am still trying to figure out how to add Google+ efficiently and effectively to my online social life, as well as my writing and editing business. At this point, I still like Twitter much better. But that fact, likely, is because I have been using it for several years and have devoted a lot of time and effort to writing tweets, sharing links, retweeting information and following interesting people.</p>
<p><strong>Kevin Purdy&#8217;s book</strong> now is helping me make some choices <em>before</em> I click on some of the Google+ setup links and go crashing off into the digital weeds.</p>
<p>Here is how it&#8217;s structured:</p>
<ul>
<li><em>Chapter 1: Getting Started</em></li>
<li><em>Chapter 2: Managing Contacts with Circles</em></li>
<li><em>Chapter 3: Streams, Sharing, and Privacy</em></li>
<li><em>Chapter 4: Notifications</em></li>
<li><em>Chapter 5: Sharing Photos and Videos</em></li>
<li><em>Chapter 6: Hanging Out</em></li>
<li><em>Chapter 7: Searching and Sparks</em></li>
<li><em>Chapter 8: Google+ Mobile</em></li>
<li><em>Chapter 9: Playing Games</em></li>
</ul>
<p><strong>With the book&#8217;s help</strong>, I have ventured forth and tried a few things that I might otherwise have avoided or misunderstood. And I now have more features listed to try out during my next opportunities to spend time with Google+.</p>
<p>I am, frankly, still pondering if &#8212; or how deeply &#8212; I want to invest my social media time in Google+. But Purdy makes the compelling case that &#8220;Google+ is more than just a way to connect with friends, family, and acquaintances online. It&#8217;s a smarter way of sharing online that&#8217;s tied into all the other Google services you might already use&#8221;&#8211;such as Gmail and Google Docs.</p>
<p>And: &#8220;What Google+ really does differently&#8230;is give you nearly total control over who can see each thing you put on Google+, and what kinds things you see and from whom.&#8221;</p>
<p><strong>I rate this book</strong> a well-written keeper (1) for anyone trying to get started on Google+ and (2) for anyone who, like me, has jumped into it and is now trying to figure it out, feature by feature, during busy days.</p>
<p><em>– </em><span style="color:#0000ff;"><strong><em><a href="http://www.sagecreekproductions.com/"><span style="color:#0000ff;">Si Dunn</span></a></em></strong></span><em>‘s latest book is a detective novel, </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Erwins-Erwin-Tennyson-Mystery-ebook/dp/B0055ULNM4/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Erwin’s Law</span></a></em></span><em>. His other published works include </em><em><a href="http://www.amazon.com/Jump-A-Novella-ebook/dp/B002KFYUG8/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia">Jump</a></em><em>, a novella, and a book of poetry, plus several short stories, including </em><em><a href="http://www.amazon.com/7th-Mars-Cavalry-Short-ebook/dp/B006V5SV18/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia">The 7th Mars Cavalry</a></em><em>, all available on Kindle. He is a screenwriter, a freelance book reviewer and a former technical writer and software/hardware QA test specialist.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sagecreek.wordpress.com/1276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sagecreek.wordpress.com/1276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sagecreek.wordpress.com/1276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sagecreek.wordpress.com/1276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sagecreek.wordpress.com/1276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sagecreek.wordpress.com/1276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sagecreek.wordpress.com/1276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sagecreek.wordpress.com/1276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sagecreek.wordpress.com/1276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sagecreek.wordpress.com/1276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sagecreek.wordpress.com/1276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sagecreek.wordpress.com/1276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sagecreek.wordpress.com/1276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sagecreek.wordpress.com/1276/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1276&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sagecreek.wordpress.com/2012/02/10/google-the-missing-manual-bookreview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5cb031fe81692643e8f95eff3a941e42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Si Dunn</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Manual of Style (4th Ed.) &#8211; Improve your technical communications &#8211; #bookreview</title>
		<link>http://sagecreek.wordpress.com/2012/02/06/microsoft-manual-of-style-4th-ed-improve-your-technical-communications-bookreview/</link>
		<comments>http://sagecreek.wordpress.com/2012/02/06/microsoft-manual-of-style-4th-ed-improve-your-technical-communications-bookreview/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 02:51:49 +0000</pubDate>
		<dc:creator>Si Dunn</dc:creator>
				<category><![CDATA[Book reviews]]></category>
		<category><![CDATA[Editing]]></category>
		<category><![CDATA[Kindle]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Paperback]]></category>
		<category><![CDATA[Technical editing]]></category>
		<category><![CDATA[Technical writing]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[editing]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[paperback]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technical editing]]></category>
		<category><![CDATA[technical writing]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://sagecreek.wordpress.com/?p=1283</guid>
		<description><![CDATA[Microsoft Manual of Style Microsoft Corp. (Microsoft Press, paperback, list price $29.99; Kindle edition, list price $23.99) Good writers know they need more help than they can find in a dictionary and a thesaurus. So they often have collections of reference books that include such works as the Chicago Manual of Style, the MLA Handbook [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1283&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#0000ff;"><strong><a href="http://www.amazon.com/Microsoft-Manual-Style-Corporation/dp/0735648719/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Microsoft Manual of Style</span></a></strong></span><br />
<em>Microsoft Corp.<br />
(Microsoft Press, <span style="color:#0000ff;"><a href="http://www.amazon.com/Microsoft-Manual-Style-Corporation/dp/0735648719/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">paperback</span></a></span>, list price $29.99; <span style="color:#0000ff;"><a href="http://www.amazon.com/Microsoft%C2%AE-Manual-of-Style-ebook/dp/B0073U0UHI/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Kindle edition</span></a></span>, list price $23.99)</em></p>
<p><strong>Good writers know they need more help</strong> than they can find in a dictionary and a thesaurus. So they often have collections of reference books that include such works as the <span style="color:#0000ff;"><a href="http://www.amazon.com/Chicago-Manual-Style-16th/dp/0226104206/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Chicago Manual of Style</span></a></span>, the <span style="color:#0000ff;"><a href="http://www.amazon.com/MLA-Handbook-Writers-Research-Papers/dp/1603290249/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">MLA Handbook</span></a></span> and the <span style="color:#0000ff;"><a href="http://www.amazon.com/Associated-Press-Stylebook-Briefing-Media/dp/0465021875/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Associated Press Stylebook</span></a></span>.</p>
<p>Consider adding one more specialized stylebook to your collection, particularly if you: (1) you write about, or teach, computer technology; (2) if you are a technical writer assigned to create product manuals for software or hardware; or (3) if you work as an editor of technical articles and technical books.</p>
<p>Microsoft Press recently has released the 4<sup>th</sup> edition of its <span style="color:#0000ff;"><a href="http://www.amazon.com/Microsoft-Manual-Style-Corporation/dp/0735648719/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Microsoft Manual of Style</span></a></span>. This updated edition “includes guidelines for wired and global audience, cloud computing, publication on devices, social media, search engine optimization (SEO), and the natural user interface (NUI).”</p>
<p><span style="color:#0000ff;"><strong><span style="color:#0000ff;">The </span></strong></span><strong></strong><span style="color:#3366ff;"><strong></strong><strong></strong><span style="color:#0000ff;"><strong><a href="http://www.amazon.com/Microsoft-Manual-Style-Corporation/dp/0735648719/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Microsoft Manual of Style</span></a></strong></span></span> is a well-structured and useful guide that can help you improve the clarity, accuracy and style consistency of your technology writing and editing.</p>
<p>The book also offers useful guidelines for global English syntax and machine translation syntax. And its glossary defines more than one thousand terms and acronyms.</p>
<p>These are, of course, times of very rapid change for technology and its terminology. So this latest printed edition of the style manual is, “by necessity, a snapshot” and “by nature a work in progress,” its editors concede.</p>
<p><strong>They emphasize how examples</strong> in the book “are labeled as ‘Microsoft Style’ and ‘Not Microsoft Style’ rather than as ‘Correct’ and ‘Incorrect.’ We don’t want to presume to say that the Microsoft way is the only correct way. It’s simply the guidance that we follow in our workplace. In sharing it with others, we hope that the decisions we have made for our content professionals will help you in your own efforts to promote consistency, clarity, and accuracy.”</p>
<p>They have tried to include “as many relevant neologisms as possible&#8221; – new words and phrases or new meanings for old terms, recently pushed to the fore by new technology. For example, “[g]esture guidelines for the natural user interface (NUI) introduce what have been non-technical words such as <em>flick</em>, <em>pinch</em>, and <em>tap</em> into the realm of technical documentation.”</p>
<p>A minor ding: the book&#8217;s index and usage guides both seem slightly incomplete. For example, in the Introduction, the editors state: “In the world of cloud computing, we now include <em>terabyte </em>(TB), <em>petabyte</em> (PB), and on up to <em>yottabyte</em> (YB), or 10<sup>24</sup>.” Yet, only <em>terabyte</em> and <em>TB</em> show up in the index and usage guide. PB and YB seem to be missing in action in both areas.</p>
<p><strong>Also, the book spends</strong> two pages (16 and 17) explaining (beneath a “Parallelism” heading) how parallelism is used in Microsoft instructional manuals. “Parallelism is ensuring that elements of sentences that are similar in purpose are also similar in structure.” Yet, “parallelism” is <em>not</em> in the index. The term “parallel structure” appears in its place, instead.</p>
<p>These small glitches are <em>not</em> deal breakers. They simply highlight what was stated earlier, that a stylebook is a work always in progress. (Perhaps the fixes will be added in edition five?)</p>
<p>This 4<sup>th</sup> edition of the <span style="color:#0000ff;"><a href="http://www.amazon.com/Microsoft-Manual-Style-Corporation/dp/0735648719/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Microsoft Manual of Style</span></a></span> is rich with information, examples, guidance and definitions. If you write or edit computer-related technology materials, you need it on your reference shelf.</p>
<p><em>– </em><span style="color:#0000ff;"><strong><em><a href="http://www.sagecreekproductions.com/"><span style="color:#0000ff;">Si Dunn</span></a></em></strong></span><em>‘s latest book is a detective novel, </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Erwins-Erwin-Tennyson-Mystery-ebook/dp/B0055ULNM4/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Erwin’s Law</span></a></em></span><em>. His other published works include </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Jump-A-Novella-ebook/dp/B002KFYUG8/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Jump</span></a></em></span><em>, a novella, and a book of poetry, plus several short stories, including </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/7th-Mars-Cavalry-Short-ebook/dp/B006V5SV18/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">The 7th Mars Cavalry</span></a></em></span><em>, all available on Kindle. He is a screenwriter, a freelance book reviewer and a former technical writer and software/hardware QA test specialist.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sagecreek.wordpress.com/1283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sagecreek.wordpress.com/1283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sagecreek.wordpress.com/1283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sagecreek.wordpress.com/1283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sagecreek.wordpress.com/1283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sagecreek.wordpress.com/1283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sagecreek.wordpress.com/1283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sagecreek.wordpress.com/1283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sagecreek.wordpress.com/1283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sagecreek.wordpress.com/1283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sagecreek.wordpress.com/1283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sagecreek.wordpress.com/1283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sagecreek.wordpress.com/1283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sagecreek.wordpress.com/1283/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1283&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sagecreek.wordpress.com/2012/02/06/microsoft-manual-of-style-4th-ed-improve-your-technical-communications-bookreview/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5cb031fe81692643e8f95eff3a941e42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Si Dunn</media:title>
		</media:content>
	</item>
		<item>
		<title>Make: Electronics -Learning by doing &amp; messing things up &#8211; A fun how-to book #bookreview</title>
		<link>http://sagecreek.wordpress.com/2012/02/03/make-electronics-learning-by-doing-messing-things-up-a-fun-how-to-book-bookreview/</link>
		<comments>http://sagecreek.wordpress.com/2012/02/03/make-electronics-learning-by-doing-messing-things-up-a-fun-how-to-book-bookreview/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 03:04:42 +0000</pubDate>
		<dc:creator>Si Dunn</dc:creator>
				<category><![CDATA[Book reviews]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Kindle]]></category>
		<category><![CDATA[Paperback]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Authors]]></category>
		<category><![CDATA[electronics]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[O'Reilly]]></category>
		<category><![CDATA[paperback]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://sagecreek.wordpress.com/?p=1261</guid>
		<description><![CDATA[Make: Electronics By Charles Platt (O&#8217;Reilly, paperback, list price $34.99; Kindle edition, list price $27.99) Okay, big confession time. I learned electronics back in the day when vacuum tubes were still state of the art, and ham radio hobbyists happily tinkered with World War II surplus aircraft radios, tank transmitters and telegraph keys that had thigh clamps so radio operators [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1261&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#0000ff;"><strong><a href="http://www.amazon.com/Make-Electronics-Discovery-Charles-Platt/dp/0596153740/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Make: Electronics<br />
</span></a></strong></span><em>By Charles Platt</em><br />
<em>(O&#8217;Reilly, <span style="color:#0000ff;"><a href="http://www.amazon.com/Make-Electronics-Discovery-Charles-Platt/dp/0596153740/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">paperback</span></a></span>, list price $34.99; <span style="color:#0000ff;"><a href="http://www.amazon.com/Make-Electronics-Learning-Discovery-ebook/dp/B0068N44BO/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Kindle edition</span></a></span>, list price $27.99)</em></p>
<p><strong>Okay, big confession time.</strong> I learned electronics back in the day when vacuum tubes were still state of the art, and ham radio hobbyists happily tinkered with World War II surplus aircraft radios, tank transmitters and telegraph keys that had thigh clamps so radio operators could communicate with HQ while bouncing around in Jeeps.</p>
<p>Electronics is still one of my hobbies. But I haven&#8217;t kept good pace with advancing technologies, and I don&#8217;t tackle as many do-it-yourself projects as I used to. I have a large cache of small electronics components stashed in plastic crates in a shed. And those crates seldom have been opened in recent years.</p>
<p>This book has changed that. <span style="color:#0000ff;"><a href="http://www.amazon.com/Make-Electronics-Discovery-Charles-Platt/dp/0596153740/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Make: Electronics</span></a></span> by Charles Platt has gotten me excited again about wiring up simple projects. It is not a new book. It was published in 2009. But it is still up to date in the teaching of electronics fundamentals. </p>
<p><strong>Platt&#8217;s book approaches electronics</strong> the same way I learned it, by burning things out, messing things up and then studying some of the theory, learning how to read schematic diagrams, and learning how be more careful and thoughtful as circuits are wired up. Of course, in my day, some mis-wired electronic projects literally caught on fire, and more than one exploded.</p>
<p>Platt&#8217;s how-to experiments, fortunately, use low voltages and low currents, typically 9-volt batteries or a few double-A batteries. The projects can be constructed on small breadboards or perforated boards or even built &#8221;dead-bug style,&#8221; where the leads of the components simply are soldered together without any other kind of support.</p>
<p>His well-organized and well-written book keeps its promise to be &#8220;a hands-on primer for the new electronics enthusiast.&#8221; But it can teach some new tricks to some old electronics hounds, as well.</p>
<p><strong>Make: Electronics begins</strong> with a small shopping list. You will need a few inexpensive components and tools to get started. Then it moves into some very basic and classic experiments, such as touching a 9-volt battery to your tongue, making a battery with a lemon, using resistors to reduce the voltage in a circuit, applying too much voltage to an LED and burning it out, and shorting a small battery to feel its heat.</p>
<p>Some fundamental theories of electricity and electronics are introduced. Proper soldering is illustrated. And then, as more theory is examined and explained, the book&#8217;s experiments move into progressively more complex projects, such as amplifiers. By the end of the book, the reader is tinkering with basic robotics and microcontrollers.</p>
<p>Platt provides numerous helpful resources and references for further examination, as well.</p>
<p><strong>The only disappointment</strong> for me is that radio-frequency projects are limited to the construction of a basic crystal radio. But the author deftly covers a lot of ground in his book, and even simple RF circuits admittedly are better handled by those who have mastered the fundamentals first. </p>
<p>Bottom line, this book has some circuits I am eager to wire up, because I am in the mood to <em>learn</em> again. Plus, I already have a boatload of parts and tools in storage, just waiting to be used. </p>
<p>With luck and attention to detail, maybe <em>nothing</em> I build this time will blow up.</p>
<p><em>– </em><span style="color:#0000ff;"><strong><em><a href="http://www.sagecreekproductions.com/"><span style="color:#0000ff;">Si Dunn</span></a></em></strong></span><em>‘s latest book is a detective novel, </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Erwins-Erwin-Tennyson-Mystery-ebook/dp/B0055ULNM4/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Erwin’s Law</span></a></em></span><em>. His other published works include </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Jump-A-Novella-ebook/dp/B002KFYUG8/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Jump</span></a></em></span><em>, a novella, and a book of poetry, plus several short stories, including </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/7th-Mars-Cavalry-Short-ebook/dp/B006V5SV18/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">The 7th Mars Cavalry</span></a></em></span><em>, all available on Kindle. He is a screenwriter, a freelance book reviewer, and a former technical writer and software/hardware QA test specialist.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sagecreek.wordpress.com/1261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sagecreek.wordpress.com/1261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sagecreek.wordpress.com/1261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sagecreek.wordpress.com/1261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sagecreek.wordpress.com/1261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sagecreek.wordpress.com/1261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sagecreek.wordpress.com/1261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sagecreek.wordpress.com/1261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sagecreek.wordpress.com/1261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sagecreek.wordpress.com/1261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sagecreek.wordpress.com/1261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sagecreek.wordpress.com/1261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sagecreek.wordpress.com/1261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sagecreek.wordpress.com/1261/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1261&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sagecreek.wordpress.com/2012/02/03/make-electronics-learning-by-doing-messing-things-up-a-fun-how-to-book-bookreview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5cb031fe81692643e8f95eff3a941e42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Si Dunn</media:title>
		</media:content>
	</item>
		<item>
		<title>Inside Cyber Warfare, 2nd Edition &#8211; You&#8217;re at the front line &amp; you can&#8217;t retreat &#8211; #bookreview</title>
		<link>http://sagecreek.wordpress.com/2012/02/02/inside-cyber-warfare-2nd-edition-youre-at-the-front-line-you-cant-retreat-bookreview/</link>
		<comments>http://sagecreek.wordpress.com/2012/02/02/inside-cyber-warfare-2nd-edition-youre-at-the-front-line-you-cant-retreat-bookreview/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 21:44:37 +0000</pubDate>
		<dc:creator>Si Dunn</dc:creator>
				<category><![CDATA[Book reviews]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[Data security]]></category>
		<category><![CDATA[Hackers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Kindle]]></category>
		<category><![CDATA[Network security]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[data security]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[network security]]></category>
		<category><![CDATA[O'Reilly]]></category>
		<category><![CDATA[paperback]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://sagecreek.wordpress.com/?p=1247</guid>
		<description><![CDATA[Inside Cyber Warfare (2nd Edition) By Jeffery Carr (O&#8217;Reilly, paperback, list price $39.99; Kindle edition, list price $31.99) A global war for survival is in full battle, and you &#8212; or at least one or more of your computers &#8212; may now be right at the front line, already in the fight. Actually, in cyber warfare, there [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1247&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#0000ff;"><strong><a href="http://www.amazon.com/Inside-Cyber-Warfare-Mapping-Underworld/dp/1449310044/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Inside Cyber Warfare</span></a></strong></span> (2nd Edition)<br />
<em>By Jeffery Carr</em><br />
<em>(O&#8217;Reilly, <span style="color:#0000ff;"><a href="http://www.amazon.com/Inside-Cyber-Warfare-Mapping-Underworld/dp/1449310044/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">paperback</span></a></span>, list price $39.99; <a href="http://www.amazon.com/Inside-Cyber-Warfare-Underworld-ebook/dp/B006LM62W6/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia">Kindle edition</a>, list price $31.99)</em></p>
<p><strong>A global war for survival</strong> is in full battle, and you &#8212; or at least one or more of your computers &#8212; may now be right at the front line, already in the fight.</p>
<p>Actually, in cyber warfare, there is no &#8220;front line.&#8221;  As this important book makes unnervingly clear, attacks on business and military data, on financial systems, and on personal information now can &#8212; and do &#8211; come at any time from anywhere on the planet.</p>
<p>The attackers can be governments, military units, criminal groups, terrorist organizations, hacker gangs, lone-wolf thieves and even mischief makers with little or no agenda except chaos. And what seems to be a damaging infiltration from one nation actually may be controlled by, and coming from, computers in several other nations.</p>
<p><strong>Indeed, some recently successful</strong> and damaging attacks against supposedly well-secured systems have been launched from sites very difficult to identify, using networks of infected computers scattered across several continents, including the United States. And the owners of the infected computers had no idea their machines were involved.</p>
<p>Jeffrey Carr&#8217;s updated book is aimed at political and military leaders, policy makers,  and corporate executives responsible for securing data systems and sensitive information. Yet everyday computer users need to read it, too, to have a clearer sense of what we are all up against now. We must understand the risks well enough to help pressure lawmakers, corporate leaders and others to make good choices regarding data security and protecting intellectual property.</p>
<p>The author is a cyber intelligence expert and consultant whose specialty is investigating &#8220;cyber attacks against governments and infrastructures by state and non-state hackers.&#8221;</p>
<p><strong>Carr&#8217;s well-written second edition</strong> covers such topics as: the cyber-warfare capabilities of a wide range of nation-states, from Australia and Nigeria to China, the Russian Federation and the United States; how organized crime operates and profits in cyberspace; the difficulty of responding to international cyber attacks as acts of war; and national and international legal issues that affect cyber warfare.</p>
<p>Some foreign governments, Carr points out, are believed to condone and even sponsor cyber attacks. Others are well aware of the digital lawbreakers operating within their borders, yet prosecute only a selected few cases. For example, Carr notes, &#8220;in the Russian Federation, the police are interested only in arresting hackers for financial crimes against Russian companies. Hacking attacks cloaked in nationalism are not only not prosecuted by Russian authorities, but they are encouraged&#8230;&#8221; through a variety of proxies.</p>
<p>Against technically savvy, well-funded and government-coddled hackers, your outdated virus protection software and your dogs&#8217;-names passwords are very thin, very porus shields, indeed. </p>
<p><strong>Carr offers a number of recommendations</strong> to American policymakers who must wrestle with Internet and data security issues, plus protection of intellectual property. One of his strongest recommendations is a call for the Department of Defense to throw Windows out the Pentagon&#8217;s windows and replace it with Red Hat Linux.</p>
<p>&#8220;Red Hat Linux,&#8221; he writes, &#8220;is a proven secure OS with less than 90% of the bugs found per 1,000 lines of code than in Windows. Many decision makers don&#8217;t know that it is the most certified operating system in the world, and it&#8217;s already in use by some of the US government&#8217;s most secretive agencies.&#8221; He adds: &#8220;Linux certainly has its vulnerabilities, but the math speaks for itself. Shoot Windows and eliminate the majority of the malware threat with one stroke.&#8221;</p>
<p>He also wants sharp crackdowns on &#8220;US companies that provide Internet services to individuals and companies who engage in illegal activities, provide false WHOIS information, and other indicators that they are potential platforms for cyber attacks.&#8221;</p>
<p><strong>But anyone who connects</strong> a computer to the Internet and is active on social media needs to be aware of the risks and high stakes involved in the cyber warfare now being fought between and among governments, criminal groups, terrorist organizations, hacker gangs and lone-wolf troublemakers.</p>
<p>Even as you read this, your personal computer or your company&#8217;s servers may be secretly helping North Korea, Iran, China, a drug cartel or a lone, bored hacker launch a cyber attack somewhere else in the world.</p>
<p>You may not be a high-value data target. Yet, even with just one laptop computer, you can become an unwilling and unknowing foot soldier for the wrong side.</p>
<p><strong>These are scary thoughts</strong>, and you can&#8217;t wish them away. Read this important book to get the big, unnerving picture.</p>
<p>Then start thinking&#8211;fast&#8211;of ways to better protect your computers, data, intellectual property and personal information.</p>
<p><em>– </em><span style="color:#0000ff;"><strong><em><a href="http://www.sagecreekproductions.com/"><span style="color:#0000ff;">Si Dunn</span></a></em></strong></span><em>‘s latest book is a detective novel, </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Erwins-Erwin-Tennyson-Mystery-ebook/dp/B0055ULNM4/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Erwin’s Law</span></a></em></span><em>. His other published works include </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Jump-A-Novella-ebook/dp/B002KFYUG8/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Jump</span></a></em></span><em>, a novella, and a book of poetry, plus several short stories, including </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/7th-Mars-Cavalry-Short-ebook/dp/B006V5SV18/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">The 7th Mars Cavalry</span></a></em></span><em>, all available on Kindle. He is a screenwriter, a freelance book reviewer, and a former technical writer and software/hardware QA test specialist.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sagecreek.wordpress.com/1247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sagecreek.wordpress.com/1247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sagecreek.wordpress.com/1247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sagecreek.wordpress.com/1247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sagecreek.wordpress.com/1247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sagecreek.wordpress.com/1247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sagecreek.wordpress.com/1247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sagecreek.wordpress.com/1247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sagecreek.wordpress.com/1247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sagecreek.wordpress.com/1247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sagecreek.wordpress.com/1247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sagecreek.wordpress.com/1247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sagecreek.wordpress.com/1247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sagecreek.wordpress.com/1247/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1247&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sagecreek.wordpress.com/2012/02/02/inside-cyber-warfare-2nd-edition-youre-at-the-front-line-you-cant-retreat-bookreview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5cb031fe81692643e8f95eff3a941e42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Si Dunn</media:title>
		</media:content>
	</item>
		<item>
		<title>Consuming too much information can make you fat, clueless &amp; dead  – The Information Diet &#8211; #bookreview</title>
		<link>http://sagecreek.wordpress.com/2012/01/27/consuming-too-much-information-can-make-you-fat-clueless-dead-the-information-diet-bookreview/</link>
		<comments>http://sagecreek.wordpress.com/2012/01/27/consuming-too-much-information-can-make-you-fat-clueless-dead-the-information-diet-bookreview/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 17:42:01 +0000</pubDate>
		<dc:creator>Si Dunn</dc:creator>
				<category><![CDATA[Book reviews]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[Kindle]]></category>
		<category><![CDATA[Popular culture]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Time Management]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hardback]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[information overload]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[O'Reilly]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://sagecreek.wordpress.com/?p=1238</guid>
		<description><![CDATA[The Information Diet: A Case for Conscious Consumption By Clay A. Johnson (O’Reilly, hardback, list price $22.99; Kindle edition, list price $19.99) In this controversial new book from O’Reilly Media, veteran software developer, open source guru and political advocate Clay A. Johnson makes the forceful argument that our current mania for consuming information is killing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1238&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.amazon.com/Information-Diet-Case-Conscious-Consumption/dp/1449304680/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia">The Information Diet: A Case for Conscious Consumption</a></strong><br />
<em>By Clay A. Johnson</em><br />
<em>(O’Reilly, <a href="http://www.amazon.com/Information-Diet-Case-Conscious-Consumption/dp/1449304680/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia">hardback</a>, list price $22.99; <a href="http://www.amazon.com/Information-Diet-Conscious-Consumption-ebook/dp/B006GRYADO/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia">Kindle edition</a>, list price $19.99)</em></p>
<p><strong>In this controversial new book</strong> from O’Reilly Media, veteran software developer, open source guru and political advocate Clay A. Johnson makes the forceful argument that our current mania for consuming information is killing us, mentally <em>and</em> physically.</p>
<p>First, we are sitting too much and too long while consuming data from the Web, from TV, from smart phones, from books, and while driving around in our cars listening to blather on the radio.</p>
<p>And, much of what we are consuming is <em>crap – </em>the digital<em> </em>equivalent of high-fat junk food and raw sugar. Some of us now are driving ourselves to destructive distraction through gluttonous obsessions with tweets, status updates, downloads, videos,  instant messages, text messages, emails and restless Web surfing.</p>
<p><strong>For instance, suppose a tweet</strong> just went by mentioning some kind of rumored problem with pig populations in Zambia, and you idly read it, processed it in your head, wasted a few more seconds of your life, and took another sip of your latte and took another bite of bagel while continuing to sit on your butt much longer than you intended.</p>
<p><em>Then</em> you checked your Facebook account on your iPhone or iPad, took another sip of your latte, took another bite of bagel, and went back to Twitter and followed a link to what seemed to be a review of a movie you’ve already seen to see but turned out to be just a lame blog post about how Mitt Romney and Newt Gingrich resemble certain characters in <em>Avatar</em>. Then you took another bite of bagel, another sip of latte and checked your email and followed a link to something about Lady Gaga.</p>
<p>More wasted time. More attention to generally useless information. More sedentary life gone by.</p>
<p><strong>We now spend nearly 11 hours a day</strong> consuming – frequently gorging on – information, Johnson’s book points out. And it’s driving us to distraction – and killing us.</p>
<p>First, the physical dangers. Johnson notes: “In 2004, one physician coined the term <em>Sedentary Death Syndrome</em> to classify all the diseases that come from the sedentary state. The effects: heart disease, diabetes, cancer, and yes, obesity. Some researchers are calling it the second largest threat to public health in America. What are we doing when we’re sedentary? Few of us are meditating. We’re consuming information.”</p>
<p>He continues: “New research points to sitting, especially amongst men, as a leading cause of death. Even if you exercise regularly, it turns out that sitting for long periods of time can be deadly.”</p>
<p><strong>It’s also easy to lose track of time</strong> and lose control of time management while distracted by the free flow of information. Something unexpected or surprising or outrageous on the Web grabs your attention, and your carefully crafted to-do list for the day is shot to hell. And, relationships can be affected: “Just a quick check of email when we get home can often end up in evenings entirely lost to LCD screens…” instead of talking and paying attention to each other.</p>
<p>Then there’s the problem of “attention fatigue.” Writes Johnson: “About two years ago, I started to wonder: what the heck happened to my short-term memory? And where did my attention span go? I’ve written a little pithy 140-character tweet, sent it into the universe, and in no more than five minutes, I’ve received a reply. The only problem is, I’ve already forgotten what I wrote in the first place. I’ve had to go back, and look at what I said just five minutes ago to understand what the person replying to me is referencing.”</p>
<p>This book offers more dire warnings about consuming too much information. But the author also offers ideas and recommendations for achieving “Attention Fitness.” You can still have your information and consume it, too, in deliberate, conscious doses that are healthier for your mind, body <em>and</em> your participation in American democracy.</p>
<p><strong>If you pay attention to this book</strong> long enough to actually think about what it points out and proposes, you may figure out how to get healthier again, how to regain your focus – and how to better understand the ways you are being duped by some of the misinformation constantly sucked into your head by your addiction.</p>
<p>You <em>can</em> become a more conscious and proactive consumer of information and <em>not</em> just another wasted – and life-wasting &#8212; data junkie.</p>
<p><em>– </em><span style="color:#0000ff;"><strong><em><a href="http://www.sagecreekproductions.com/"><span style="color:#0000ff;">Si Dunn</span></a></em></strong></span><em>‘s latest book is a detective novel, </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Erwins-Erwin-Tennyson-Mystery-ebook/dp/B0055ULNM4/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Erwin’s Law</span></a></em></span><em>. His other published works include </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/Jump-A-Novella-ebook/dp/B002KFYUG8/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">Jump</span></a></em></span><em>, a novella, and a book of poetry, plus several short stories, including </em><span style="color:#0000ff;"><em><a href="http://www.amazon.com/7th-Mars-Cavalry-Short-ebook/dp/B006V5SV18/ref=as_li_wdgt_js_ex?&amp;linkCode=wsw&amp;tag=sagecreekassocia"><span style="color:#0000ff;">The 7th Mars Cavalry</span></a></em></span><em>, all available on Kindle. He is a screenwriter, a freelance book reviewer, and a former technical writer and software/hardware QA test specialist.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sagecreek.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sagecreek.wordpress.com/1238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sagecreek.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sagecreek.wordpress.com/1238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sagecreek.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sagecreek.wordpress.com/1238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sagecreek.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sagecreek.wordpress.com/1238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sagecreek.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sagecreek.wordpress.com/1238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sagecreek.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sagecreek.wordpress.com/1238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sagecreek.wordpress.com/1238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sagecreek.wordpress.com/1238/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sagecreek.wordpress.com&amp;blog=7175280&amp;post=1238&amp;subd=sagecreek&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sagecreek.wordpress.com/2012/01/27/consuming-too-much-information-can-make-you-fat-clueless-dead-the-information-diet-bookreview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5cb031fe81692643e8f95eff3a941e42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Si Dunn</media:title>
		</media:content>
	</item>
	</channel>
</rss>
