<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>John Beales</title>
	
	<link>http://johnbeales.com</link>
	<description />
	<lastBuildDate>Sun, 20 Nov 2011 02:59:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/JohnBeales" /><feedburner:info uri="johnbeales" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://johnbeales.com/?pushpress=hub" /><item>
		<title>Improving Trac’s Tickets By Milestone Report</title>
		<link>http://feedproxy.google.com/~r/JohnBeales/~3/GCh_Ywlic2g/</link>
		<comments>http://johnbeales.com/20111119/improving-tracs-tickets-by-milestone-report/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 02:59:39 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[milestones]]></category>
		<category><![CDATA[order by date]]></category>
		<category><![CDATA[reports]]></category>
		<category><![CDATA[tickets]]></category>
		<category><![CDATA[trac]]></category>

		<guid isPermaLink="false">http://johnbeales.com/?p=629</guid>
		<description><![CDATA[I entered a ton of tickets &#38; milestones into a Trac installation today and when I was done the Active Tickets report was a mess. Tickets by Milestone was better, but still far from perfect.  Time for report customization. Google helped, and so did the #trac IRC channel. If you&#8217;re lazy &#038; want to just [...]]]></description>
			<content:encoded><![CDATA[<p>I entered a ton of tickets &amp; milestones into a <a href="http://trac.edgewall.org">Trac</a> installation today and when I was done the Active Tickets report was a mess. Tickets by Milestone was better, but still far from perfect.  Time for report customization. Google helped, and so did the #trac IRC channel. If you&#8217;re lazy &#038; want to just jump to the solution, <a href="#trac-by-milestone-solution">do it</a>.</p>
<p>Here&#8217;s what I was looking for in my report:</p>
<ul>
<li>Group tickets by Milestone</li>
<li>Order milestones by due date, (soonest first)</li>
<li>If a milestone had no due date, put it at the end of the report, (if it&#8217;s important it&#8217;ll have a due date set, otherwise it&#8217;s a &#8220;backlog&#8221; item that hasn&#8217;t been prioritized yet.</li>
<li>Display the due dates with the milestone names.</li>
</ul>
<p>To get started, go to the Tickets by Milestone report that&#8217;s in Trac by default and click the &#8220;Copy Report&#8221; button, you&#8217;ll get a copy of Tickets by Milestone to play with. Click the Edit Report button and we&#8217;ll update the SQL to get the report we want. Grouping by Milestone is already done in this query, so we&#8217;ll start with ordering by milestone due date and putting milestones without a due date at the end of the report.</p>
<h3>Order by Milestone Due Date</h3>
<p>To order by date we need to join the milestone table. Add to the line after <code>FROM ticket t</code>:</p>
<p><code>LEFT JOIN milestone ms ON ms.name = t.milestone</code></p>
<p>Then to the beginning of the ORDER BY statement add <code>(ms.due &gt; 0) Desc,ms.due,</code> so the ORDER BY is now:</p>
<p><code>ORDER BY (ms.due &gt; 0) Desc,ms.due, (milestone IS NULL),milestone, CAST(p.value AS integer), t.type, time</code></p>
<p>The <code>(ms.due &gt; 0)</code> Desc part makes milestones that have a due date come first, then ms.due orders those by due date with the soonest first.</p>
<h3>Display Due Dates with Milestone Names</h3>
<p>For Trac 0.12 and above replace the line</p>
<p><code>'Milestone '||milestone AS __group__,</code></p>
<p>with:</p>
<p><code>'Milestone '||(milestone || CASE WHEN ms.due &gt; 0 THEN ', (due ' || datetime(ms.due/1000000, 'unixepoch')  || ' UTC)' ELSE '' END) AS __group__,</code></p>
<p>And for Trac versions below 0.12 replace the line with:</p>
<p><code>'Milestone '||(milestone || CASE WHEN ms.due &gt; 0 THEN ', (due ' || datetime(ms.due, 'unixepoch')  || ' UTC)' ELSE '' END) AS __group__,</code></p>
<p>The difference is that in Trac 0.12 dates, (at least milestone due dates), started to be stored as mircoseconds since the unix epoch, and before that they were stored as a simple unix timestamp, so now, to use SQLite&#8217;s datetime function we have to divide the stored value by 1,000,000.</p>
<p>This statement makes milestone names look like this:</p>
<blockquote><p>Milestone Page Style Updated, (due 2011-11-21 23:00:00 UTC)</p></blockquote>
<p>Note that there&#8217;s a UTC time listed. This is because I can&#8217;t figure out how to get a user&#8217;s timezone offset preference into the query. It would be relatively simple if the time was attached to a ticket, but in this case it&#8217;s attached to a milestone. If anyone knows how to work the proper timezone offset into the SQLite query please let me know.</p>
<h3>Bonus: Link the Milestone Titles to Reports Showing Only That Milestone</h3>
<p>It&#8217;s possible to create a link a list of that milestone&#8217;s tickets. Just add this line after the line that you just altered:</p>
<p><code>(CASE WHEN(milestone IS NOT NULL) THEN '../query?group=status&amp;milestone=' || milestone ELSE NULL END) AS __grouplink__,</code></p>
<p>The __grouplink__ column is a magic column that Trac understands and uses as a link for the group title, (in this case, the milestones).</p>
<h3 id="trac-by-milestone-solution">The Full Solution</h3>
<p>For you lazy folks, here&#8217;s the full query:<br />
<code><br />
SELECT p.value AS __color__,<br />
   'Milestone '||(milestone || CASE WHEN ms.due &gt; 0 THEN ', (due ' || datetime(ms.due/1000000, 'unixepoch')  || ' UTC)' ELSE '' END) AS __group__,<br />
  (CASE WHEN(milestone IS NOT NULL) THEN '../query?group=status&amp;milestone=' || milestone ELSE NULL END) AS __grouplink__,<br />
   id AS ticket, summary, component, version, t.type AS type,<br />
   owner, status,<br />
   time AS created,<br />
   changetime AS _changetime, t.description AS _description,<br />
   reporter AS _reporter<br />
  FROM ticket t<br />
  LEFT JOIN milestone ms ON ms.name = t.milestone<br />
  LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority'<br />
  WHERE status &lt;&gt; 'closed'<br />
  ORDER BY (ms.due &gt; 0) Desc,ms.due, (milestone IS NULL),milestone, CAST(p.value AS integer), t.type, time</code></p>
<img src="http://feeds.feedburner.com/~r/JohnBeales/~4/GCh_Ywlic2g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://johnbeales.com/20111119/improving-tracs-tickets-by-milestone-report/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://johnbeales.com/20111119/improving-tracs-tickets-by-milestone-report/</feedburner:origLink></item>
		<item>
		<title>Sorry for the Spam: The Google+ for Google Apps Rollout</title>
		<link>http://feedproxy.google.com/~r/JohnBeales/~3/rcntnvgbLG8/</link>
		<comments>http://johnbeales.com/20111027/sorry-for-the-spam-the-google-for-google-apps-rollout/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 23:23:05 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[apology]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[google plus]]></category>
		<category><![CDATA[google+]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://johnbeales.com/?p=627</guid>
		<description><![CDATA[I use Google Apps for my E-mail here on johnbeales.com. Earlier today I was updating some unimportant thing in the admin and noticed that I could turn on Google+ for johnbeales.com, something that I&#8217;ve been wanting to do for a while, woohoo! With Google+ up &#038; running it was time to set up my circles. [...]]]></description>
			<content:encoded><![CDATA[<p>I use Google Apps for my E-mail here on johnbeales.com. Earlier today I was updating some unimportant thing in the admin and noticed that I could turn on Google+ for johnbeales.com, something that I&#8217;ve been wanting to do for a while, woohoo! With Google+ up &#038; running it was time to set up my circles.</p>
<p>For those of you who aren&#8217;t familiar with Google+ it&#8217;s Google&#8217;s answer to Facebook, and you can add your friends to groups, called &#8220;Circles.&#8221; There&#8217;s animation &#038; stuff and it&#8217;s kind of fun. </p>
<p>After turning on Google+ for johnbeales.com I went ahead and added pretty much my whole address book, (Since Google already controls my E-mail it can show me anyone that E-mailed, pretty much ever), thinking that I was putting the people I know into groups that would make them easier to find and when if I needed to contact them again. What I hadn&#8217;t realized was that <strong>Google was E-mailing every single person I put into a group</strong>. So if I did business at some point with you years ago I might have put you into my &#8220;acquaintances&#8221; group, or perhaps into my &#8220;Vendors&#8221; or &#8220;Customers&#8221; group, and you would have received an E-mail because of this. If I&#8217;ve dealt with you at multiple E-mail addresses you may have receives an E-mail at each address. I did not mean for this to happen. Inboxes are polluted enough, and I&#8217;m sorry for polluting your inbox even more.</p>
<p>So of course I went and turned off the E-mail notifications, right? Wrong. I can&#8217;t figure out how. Once you&#8217;re already signed up with Google+ you can say that you don&#8217;t want notifications when other people add you to their circles, but it seems that if you&#8217;re not already a member you&#8217;re doomed to just keep getting this spam from Google. If Google is smart, and they often are, this will change. I&#8217;ll keep looking for a solution. In the meantime, I&#8217;ll be more selective about who I add to circles.</p>
<img src="http://feeds.feedburner.com/~r/JohnBeales/~4/rcntnvgbLG8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://johnbeales.com/20111027/sorry-for-the-spam-the-google-for-google-apps-rollout/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://johnbeales.com/20111027/sorry-for-the-spam-the-google-for-google-apps-rollout/</feedburner:origLink></item>
		<item>
		<title>Introducing HTML5</title>
		<link>http://feedproxy.google.com/~r/JohnBeales/~3/7-HF9IScS_c/</link>
		<comments>http://johnbeales.com/20110504/introducing-html5/#comments</comments>
		<pubDate>Wed, 04 May 2011 23:12:20 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[I Read This]]></category>
		<category><![CDATA[bruce lawson]]></category>
		<category><![CDATA[caching]]></category>
		<category><![CDATA[canvas]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[introducing html5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[remy sharp]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[websockets]]></category>

		<guid isPermaLink="false">http://johnbeales.com/?p=591</guid>
		<description><![CDATA[Last year when I was working on the redesign of BonzoBox I used HTML5 for the first time. The specification is being developed by two groups, and consists of a bunch of different modules, each with a different level of readiness, and the actual specifications, (yes, both of them!), are meant more for people who [...]]]></description>
			<content:encoded><![CDATA[<p>Last year when I was working on the redesign of <a href="http://bonzobox.com">BonzoBox</a> I used HTML5 for the first time. The specification is being developed by two groups, and consists of a bunch of different modules, each with a different level of readiness, and the actual specifications, (yes, both of them!), are meant more for people who build web browsers than people who build websites. This led to some confusion. While I eventually wrapped my head around HTML5 I never felt that I had as good a grasp of the language as I would have liked to, so when I heard about <i>Introducing HTML5</i> I added it to my to-read list. I finally had a chance to read it a couple of weeks ago.</p>
<p><i>Introducing HTML5</i> is the overview that I was looking for when I first started learning about HTML5. While I wish I had found it then, (although it wasn&#8217;t published at that point), and I learned a lot from it now. One thing that I had completely missed in my self-directed HTML5 studies was the outlining module, (if you&#8217;ve missed it too it dictates how an outline of an HTML5 document would be created, which allows you to figure out how important each element is in relation to each other element on the page). I also learned about some new elements that I hadn&#8217;t yet stumbled across, (like <code>&lt;mark&gt;</code>), and learned more about HTML5 form elements than I already knew, (although I was fairly familiar with those from the <a href="http://24ways.org/2009/have-a-field-day-with-html5-forms">24ways article</a>).</p>
<p>There&#8217;s a chapter about the <code>&lt;canvas&gt;</code> element in <i>Introducing HTML5</i>. I was scared of the canvas element but the canvas chapter changed me from afraid to excited. It&#8217;s not so hard as it looks to work with and there&#8217;s a lot of really cool stuff that can be done with it. It&#8217;ll be fun to play with when I get a chance.</p>
<p>There&#8217;s also a chapter about using HTML5 apps offline. It&#8217;s possible to tell the browser to cache most, even all, of a website or webapp so that it&#8217;s completely usable offline. This cache seems to be a lot stickier than the normal browser cache and I wonder if it would be possible to also use it to drastically speed up online apps. This could lead to some real pain when updating websites, but if it&#8217;s planned well enough it might work really well.</p>
<p>Finally, websockets look great. They look fast, to the point that maybe we could make some stuff lightning fast on the web. Unfortunately a <a href="http://hacks.mozilla.org/2010/12/websockets-disabled-in-firefox-4/">security problem was discovered</a> in the websockets protocol so it was disabled in Firefox 4 and the latest Opera, and apparently Google Chrome is set to disable it if any attacks are carried out. I really hope that the security issues will be ironed out quickly so there can be wide adoption of websockets. I&#8217;m having problems finding out what the current status is of the security issue, I can&#8217;t find any articles more recent than those from December, so if anyone knows what&#8217;s going on please post a link.</p>
<p>I learned a lot from <i>Introducing HTML5</i>, and I&#8217;m excited to redesign a website, (or a few), using it, plus some CSS3, (I&#8217;ll be reading up on that soon).</p>
<div class="bookbox">
<div class="bookbox-image"><img src="http://johnbeales.com/wp-content/uploads/2011/05/html5.jpg" alt="The cover of the book Introducing HTML5" title="Introducing HTML5 Cover" width="54" height="75" class="alignnone size-full wp-image-601" /></div>
<h6>Want to read it yourself? <small>Get it from one of these places and I&#8217;ll receive a small kickback:</small></h6>
<p><a href="http://www.amazon.com/gp/product/0321687299/ref=as_li_ss_tl?ie=UTF8&#038;tag=johnbeales-20&#038;linkCode=as2&#038;camp=217145&#038;creative=399349&#038;creativeASIN=0321687299" rel="nofollow">Amazon.com (USA)</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=0321687299&#038;camp=217145&#038;creative=399349" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.ca/gp/product/0321687299/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea03-20&#038;linkCode=as2&#038;camp=15121&#038;creative=390961&#038;creativeASIN=0321687299" rel="nofollow">Amazon.ca (Canada)</a><img src="http://www.assoc-amazon.ca/e/ir?t=&#038;l=as2&#038;o=15&#038;a=0321687299" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.co.uk/gp/product/0321687299/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=0321687299" rel="nofollow">Amazon.co.uk (UK)</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=&#038;l=as2&#038;o=2&#038;a=0321687299" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</p>
</div>
<img src="http://feeds.feedburner.com/~r/JohnBeales/~4/7-HF9IScS_c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://johnbeales.com/20110504/introducing-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://johnbeales.com/20110504/introducing-html5/</feedburner:origLink></item>
		<item>
		<title>Ordering Disorder: Grid Principles for Web Design</title>
		<link>http://feedproxy.google.com/~r/JohnBeales/~3/qKQ53YGo3cA/</link>
		<comments>http://johnbeales.com/20110406/ordering-disorder-grid-principles-for-web-design/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 17:44:39 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[I Read This]]></category>
		<category><![CDATA[grid systems]]></category>
		<category><![CDATA[grids]]></category>
		<category><![CDATA[khoi vinh]]></category>
		<category><![CDATA[ordering disorder]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://johnbeales.com/?p=558</guid>
		<description><![CDATA[Bringing my reading back into the world of web design is Khoi Vinh&#8217;s book Ordering Disorder: Grid Principles for Web Design, which with Khoi&#8217;s grid-based layout and ample whitespace on each page I spent an unexpectedly short single day reading! The slim book contains a mixture of information that is new to me and things [...]]]></description>
			<content:encoded><![CDATA[<p>Bringing my reading back into the world of web design is <a href="http://subtraction.com">Khoi Vinh&#8217;s</a> book <i>Ordering Disorder: Grid Principles for Web Design</i>, which with Khoi&#8217;s grid-based layout and ample whitespace on each page I spent an unexpectedly short single day reading!</p>
<p>The slim book contains a mixture of information that is new to me and things I&#8217;ve seen before, but since I&#8217;m no grid master I have to right to say that I&#8217;m familiar with anything in the book. I appreciated the reminder that I should figure out what I want a website to do before I start writing code and the peek into Khoi&#8217;s design process was enlightening. </p>
<p>The book contains a brief history of grids then focuses on creating a grid and the obstacles that need to be overcome to do so. It is not a technical book that delves into the code required to make grids come to life on the world wide web. Once I realized this I appreciated the way it was written as a springboard to allow me to seek out more information on my own.</p>
<p>I think that I was in exactly the right place for <i>Ordering Disorder</i> to help me. I have read a bit about grids in the past, and have tried to use them in my projects with limited success, but reading <i>Ordering Disorder</i> improved my knowledge of grid principles to a level where I feel they can be much more useful when designing a website, even if I don&#8217;t take advantage of the springboard effect to launch my grid knowledge into the stratosphere and beyond.</p>
<div class="bookbox">
<div class="bookbox-image"><img src="http://johnbeales.com/wp-content/uploads/2011/04/ordering-disorder.jpg" alt="The cover of the book Ordering Disorder" title="Ordering Disorder" width="62" height="75" class="alignnone size-full wp-image-588" /></div>
<h6>Want to read it yourself? <small>Get it from one of these places and I&#8217;ll receive a small kickback:</small></h6>
<p><a href="http://www.amazon.com/gp/product/0321703537/ref=as_li_ss_tl?ie=UTF8&#038;tag=johnbeales-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0321703537" rel="nofollow">Amazon.com (USA)</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=0321703537" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.ca/gp/product/0321703537/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea03-20&#038;linkCode=as2&#038;camp=15121&#038;creative=390961&#038;creativeASIN=0321703537" rel="nofollow">Amazon.ca (Canada)</a><img src="http://www.assoc-amazon.ca/e/ir?t=&#038;l=as2&#038;o=15&#038;a=0321703537" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.co.uk/gp/product/0321703537/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=0321703537" rel="nofollow">Amazon.co.uk (UK)</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=&#038;l=as2&#038;o=2&#038;a=0321703537" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
</div>
<img src="http://feeds.feedburner.com/~r/JohnBeales/~4/qKQ53YGo3cA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://johnbeales.com/20110406/ordering-disorder-grid-principles-for-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://johnbeales.com/20110406/ordering-disorder-grid-principles-for-web-design/</feedburner:origLink></item>
		<item>
		<title>The First Year: Crohn’s Disease and Ulcerative Colitis</title>
		<link>http://feedproxy.google.com/~r/JohnBeales/~3/0Gaql9xK-BI/</link>
		<comments>http://johnbeales.com/20110406/the-first-year-crohns-disease-and-ulcerative-colitis/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 14:13:26 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[I Read This]]></category>
		<category><![CDATA[crohn's disease]]></category>
		<category><![CDATA[disease]]></category>
		<category><![CDATA[inflammatory bowel disease]]></category>
		<category><![CDATA[jill slkar]]></category>
		<category><![CDATA[medicine]]></category>
		<category><![CDATA[the first year]]></category>
		<category><![CDATA[treatment]]></category>
		<category><![CDATA[ulcerative colitis]]></category>

		<guid isPermaLink="false">http://johnbeales.com/?p=554</guid>
		<description><![CDATA[The number of people in my life affected by Inflammatory Bowel Disease keeps climbing, so I&#8217;ve been reading more about IBD and just finished the book The First Year: Crohn&#8217;s Disease and Ulcerative Colitis by Jill Sklar. While reading about the inner workings of our guts, and what happens when things go wrong down there [...]]]></description>
			<content:encoded><![CDATA[<p>The number of people in my life affected by <a href="http://en.wikipedia.org/wiki/Inflammatory_bowel_disease">Inflammatory Bowel Disease</a> keeps climbing, so <a href="/20110330/breaking-the-vicious-cycle-intestinal-health-through-diet/">I&#8217;ve been reading</a> more about <abbr title="Inflammatory Bowel Disease">IBD</abbr> and just finished the book <i>The First Year: Crohn&#8217;s Disease and Ulcerative Colitis</i> by Jill Sklar.</p>
<p>While reading about the inner workings of our guts, and what happens when things go wrong down there isn&#8217;t the most enjoyable past-time, Mrs. Sklar makes it relatively so. <i>The First Year: Crohn&#8217;s Disease and Ulcerative Colitis</i> primarily covers the &#8220;traditional&#8221; medical approach to treating IBD but doesn&#8217;t dismiss alternative therapies as completely irrelevant as many in the medical profession do. Mrs. Sklar seems at times to be angry that she has Crohns and she has a right to be: it&#8217;s really not a fun disease to have and it sounds like she&#8217;s had a rough time with it. But despite, (or perhaps because of), her anger she has managed to include sections that remind us of the human side of life, and these special moments outshine other, angrier, moments. For new IBD sufferers who may be angry themselves, realizing that they are not alone in their anger may actually help them feel better.</p>
<p>I spent some time reading the Amazon reviews of <i>The First Year: Crohn&#8217;s Disease and Ulcerative Colitis</i> and they range from &#8220;Very misleading book&#8221; to &#8220;Best Crohn&#8217;s Book Available.&#8221; While I&#8217;m still looking for the &#8220;best available&#8221; IBD book, (something that gives full consideration to both traditional western medicine and holistic, &#8220;big-picture&#8221; treatments including alternative, natural, therapy and diet), this book is very good, and I don&#8217;t think the science exists yet for my utopia of an IBD book, (and treatment plan). What was included in this book that has not been in other resources that I&#8217;ve discovered was information on the cutting edge of medical science related to IBD, including medicines that were not quite approved yet when the book was published, (2007 for the revised edition that I read), information about how new medicines are created and tested, and how to stay informed about the most recent developments in research into the causes and treatment of IBD including environmental and genetic factors. This is a far cry from the &#8220;IBD has nothing to do with diet. Take some anti-inflammatory drugs and prepare for surgery&#8221; approach that I&#8217;ve seen elsewhere, and also far from the &#8220;drugs don&#8217;t work&#8221; approach that many natural medicine proponents preach. In my limited exposure to IBD, I&#8217;ve seen both natural and medical methods succeed and fail, and it really does seem that more research needs to be done to figure out what&#8217;s actually going on in there, and what can be done to set it right.</p>
<p>So what&#8217;s the final verdict? <i>The First Year: Crohn&#8217;s Disease and Ulcerative Colitis</i> is packed with good information and worth reading. Even if you don&#8217;t believe in the traditional western medical approach to treating IBD, the resources and methods for coping with the disease in your, or your loved one&#8217;s, life make it worth the read.</p>
<p>For more information and support: <a href="http://www.ccfc.ca">Crohn&#8217;s &#038; Colitis Foundation of Canada</a> or <a href="http://http://www.ccfa.org">Crohn&#8217;s &#038; Colitis Foundation of America</a>.</p>
<div class="bookbox">
<div class="bookbox-image"><img src="http://johnbeales.com/wp-content/uploads/2011/04/firstyear.jpg" alt="The cover of the book The First Year: Crohn&#039;s Disease and Ulcerative Colitis" title="The First Year: Crohn&#039;s Disease and Ulcerative Colitis" width="47" height="75" class="alignnone size-full wp-image-575" /></div>
<h6>Want to read it yourself? <small>Get it from one of these places and I&#8217;ll receive a small kickback:</small></h6>
<p><a href="http://www.amazon.com/gp/product/1600940226/ref=as_li_ss_tl?ie=UTF8&#038;tag=johnbeales-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1600940226" rel="nofollow">Amazon.com (USA)</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=1600940226" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.ca/gp/product/1600940226/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea03-20&#038;linkCode=as2&#038;camp=15121&#038;creative=390961&#038;creativeASIN=1600940226" rel="nofollow">Amazon.ca (Canada)</a><img src="http://www.assoc-amazon.ca/e/ir?t=&#038;l=as2&#038;o=15&#038;a=1600940226" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.co.uk/gp/product/1600940226/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=1600940226" rel="nofollow">Amazon.co.uk (UK)</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=&#038;l=as2&#038;o=2&#038;a=1600940226" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</p>
</div>
<img src="http://feeds.feedburner.com/~r/JohnBeales/~4/0Gaql9xK-BI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://johnbeales.com/20110406/the-first-year-crohns-disease-and-ulcerative-colitis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://johnbeales.com/20110406/the-first-year-crohns-disease-and-ulcerative-colitis/</feedburner:origLink></item>
		<item>
		<title>Blink</title>
		<link>http://feedproxy.google.com/~r/JohnBeales/~3/GkE25dM7Cw4/</link>
		<comments>http://johnbeales.com/20110405/blink/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 14:15:59 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[I Read This]]></category>
		<category><![CDATA[blink]]></category>
		<category><![CDATA[malcolm gladwell]]></category>
		<category><![CDATA[subconscious thought]]></category>

		<guid isPermaLink="false">http://johnbeales.com/?p=502</guid>
		<description><![CDATA[After being held up by a bit of a brick, I&#8217;m working on reading the rest of the books that I got for Christmas and just finished Blink by Malcolm Gladwell. Blink is a book about first impressions and other split-second thinking that we don&#8217;t think we&#8217;re doing, and how to get the most value [...]]]></description>
			<content:encoded><![CDATA[<p>After being held up by <a href="/20110404/high-performance-mysql/">a bit of a brick</a>, I&#8217;m working on reading the rest of the books that I got for Christmas and just finished <i>Blink</i> by <a href="http://www.gladwell.com/">Malcolm Gladwell</a>. <i>Blink</i> is a book about first impressions and other split-second thinking that we don&#8217;t think we&#8217;re doing, and how to get the most value out of those thoughts by understanding how they work, what causes them to be wrong, and what to do about it.</p>
<p>While these fast, subconscious thoughts and decisions happen all day every day in most of our lives, the area of first impressions is a great example of near-instant subconscious thought in action. When we first meet, or even first see or hear, someone our minds take in all kinds of information about that person and we form an opinion of, and often a reaction to, that person. The reaction might be to run if it&#8217;s someone brandishing a knife in a dark alley, or to stare if it&#8217;s someone really attractive at the beach, or anything in between. Often these reactions are exactly the right reaction, but often they&#8217;re not the right reaction at all, and that&#8217;s what <i>Blink</i> talks about: Our unconscious thoughts, how they work, how they can work much better than painstakingly working our way through a problem, and what to do to stop them from taking you down completely the wrong path. </p>
<p><i>Blink</i> is easy to read and very interesting. Extremely interesting. After reading it I hope that I can learn how to make &#8220;Thinking without thinking&#8221; work in my life, especially now that there&#8217;s an election on.</p>
<div class="bookbox">
<div class="bookbox-image"><img src="http://johnbeales.com/wp-content/uploads/2011/03/blink.jpg" alt="The cover of the book Blink" title="Blink" width="51" height="75" class="alignnone size-full wp-image-551" /></div>
<h6>Want to read it yourself? <small>Get it from one of these places and I&#8217;ll receive a small kickback:</small></h6>
<p><a href="http://www.amazon.com/gp/product/0316010669/ref=as_li_ss_tl?ie=UTF8&#038;tag=johnbeales-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0316010669" rel="nofollow">Amazon.com (USA)</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=0316010669" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.ca/gp/product/0316010669/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea03-20&#038;linkCode=as2&#038;camp=15121&#038;creative=390961&#038;creativeASIN=0316010669" rel="nofollow">Amazon.ca (Canada)</a><img src="http://www.assoc-amazon.ca/e/ir?t=&#038;l=as2&#038;o=15&#038;a=0316010669" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.co.uk/gp/product/0141014598/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=0141014598" rel="nofollow">Amazon.co.uk (UK)</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=&#038;l=as2&#038;o=2&#038;a=0141014598" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
</div>
<img src="http://feeds.feedburner.com/~r/JohnBeales/~4/GkE25dM7Cw4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://johnbeales.com/20110405/blink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://johnbeales.com/20110405/blink/</feedburner:origLink></item>
		<item>
		<title>High Performance MySQL</title>
		<link>http://feedproxy.google.com/~r/JohnBeales/~3/5kkrxlrk9Fk/</link>
		<comments>http://johnbeales.com/20110404/high-performance-mysql/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 14:04:03 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[I Read This]]></category>
		<category><![CDATA[Arjen Lentz]]></category>
		<category><![CDATA[Baron Schwartz]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[database design]]></category>
		<category><![CDATA[database indexes]]></category>
		<category><![CDATA[database performance]]></category>
		<category><![CDATA[Derek J. Balling]]></category>
		<category><![CDATA[Jeremy D. Zawodny]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql performance]]></category>
		<category><![CDATA[mysql tuning]]></category>
		<category><![CDATA[Peter Zaitsev]]></category>
		<category><![CDATA[Vadim Tkachenko]]></category>

		<guid isPermaLink="false">http://johnbeales.com/?p=500</guid>
		<description><![CDATA[Here&#8217;s the brick book that&#8217;s been keeping me from reading some other design &#038; HTML books since Christmas, and I&#8217;m finally done! Despite its size, I wanted to read High Performance MySQL from cover to cover as I&#8217;ve been working a lot recently with some databases that could stand to go faster, and, while it [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the <del datetime="2011-03-20T05:49:14+00:00">brick</del> <ins datetime="2011-03-20T05:49:14+00:00">book</ins> that&#8217;s been keeping me from reading some other design &#038; HTML books since Christmas, and I&#8217;m finally done! Despite its size, I wanted to read <i>High Performance MySQL</i> from cover to cover as I&#8217;ve been working a lot recently with some databases that could stand to go faster, and, while it was a long read, (made longer by taking breaks and reading other books), it was very useful, and will never be too far from my desk, especially when I&#8217;m working on server-side code and database design and tuning.</p>
<p>Even before I finished the <i>High Performance MySQL</i> my work was seeing the benefits of what I had learned partway through the book. There are a lot of quirks in MySQL that I wasn&#8217;t aware of, especially when it comes to joining tables and applying indexes. In one instance I was able to take a query that had been taking several minutes to execute and bring its execution time down to just a few seconds simply by rewriting some joins in such a way that, when thinking only about how data is related, appears to be quite bizarre, but when thinking about how a query will be executed by MySQL makes good sense.</p>
<p>I learned about how indexes are used, not just in theory but actually how MySQL looks for something within an index, and I learned about how I can use indexes to make it so MySQL doesn&#8217;t have to touch the underlying table data for some SELECT queries, (quite the speed enhancement there). I learned more about InnoDB than I thought I would know for quite some time. There&#8217;s a great appendix about the <a href="http://sphinxsearch.com/">Sphinx</a> search server, which is a product that I&#8217;ve been interested in for quite a while. The appendix gave me the introduction that I needed, and I hope to start using Sphinx to power some searches soon.</p>
<p>If you work with MySQL databases a lot, and especially if you are involved in designing them, then <i>High Performance MySQL</i> is a very good book to have on hand. Even if you don&#8217;t read it from cover to cover like I did it&#8217;s a great reference and will help you speed up your MySQL instances.</p>
<div class="bookbox">
<div class="bookbox-image"><img src="http://johnbeales.com/wp-content/uploads/2011/03/hp-mysql.jpg" alt="The cover of the book High Performance MySQL" title="High Performance MySQL" width="57" height="75" class="alignnone size-full wp-image-544" /></div>
<h6>Want to read it yourself? <small>Get it from one of these places and I&#8217;ll receive a small kickback:</small></h6>
<p><a href="http://www.amazon.com/gp/product/0596101716/ref=as_li_ss_tl?ie=UTF8&#038;tag=johnbeales-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0596101716" rel="nofollow">Amazon.com (USA)</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=0596101716" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.ca/gp/product/0596101716/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea03-20&#038;linkCode=as2&#038;camp=15121&#038;creative=390961&#038;creativeASIN=0596101716" rel="nofollow">Amazon.ca (Canada)</a><img src="http://www.assoc-amazon.ca/e/ir?t=&#038;l=as2&#038;o=15&#038;a=0596101716" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.co.uk/gp/product/0596101716/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=0596101716" rel="nofollow">Amazon.co.uk (UK)</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=&#038;l=as2&#038;o=2&#038;a=0596101716" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
</div>
<img src="http://feeds.feedburner.com/~r/JohnBeales/~4/5kkrxlrk9Fk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://johnbeales.com/20110404/high-performance-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://johnbeales.com/20110404/high-performance-mysql/</feedburner:origLink></item>
		<item>
		<title>The Holcroft Covenant</title>
		<link>http://feedproxy.google.com/~r/JohnBeales/~3/iWAqhd9tnPE/</link>
		<comments>http://johnbeales.com/20110403/the-holcroft-covenant/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 18:36:32 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[I Read This]]></category>
		<category><![CDATA[bourne]]></category>
		<category><![CDATA[holcroft]]></category>
		<category><![CDATA[robert ludlum]]></category>
		<category><![CDATA[thriller]]></category>
		<category><![CDATA[tom clancy]]></category>

		<guid isPermaLink="false">http://johnbeales.com/?p=496</guid>
		<description><![CDATA[I&#8217;ve read a lot of Tom Clancy books over the years, and other thrillers, but for some reason have never read anything by Robert Ludlum until now. I&#8217;m not sure how I missed his work, after all, he&#8217;s the guy that wrote The Bourne Identity, but somehow I managed to stay away. Earlier this spring [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve read a lot of <a href="http://en.wikipedia.org/wiki/Tom_Clancy">Tom Clancy</a> books over the years, and other thrillers, but for some reason have never read anything by <a href="http://en.wikipedia.org/wiki/Robert_Ludlum">Robert Ludlum</a> until now. I&#8217;m not sure how I missed his work, after all, he&#8217;s the guy that wrote <i>The Bourne Identity</i>, but somehow I managed to stay away. Earlier this spring a neighbour put a bunch of books out in the recycling, and I picked them up. There was a treasure trove of thirty-six books out there, two by Robert Ludlum, including <i>The Holcroft Covenant</i>, which is a pretty good read.</p>
<p>Reading <i>The Holcroft Covenant</i> reminded me of older times and stories, when there were more people who remembered the World Wars than didn&#8217;t, and conspiracy theories could be created about secret Nazi societies run by generals who escaped prosecution after the war, and perhaps by their children. The story lines of <i>The Holcroft Covenant</i> weave themselves slowly together, and in true thriller fashion I frustratingly figured out what had to be done long before the characters did. For a book that will keep you on the edge of your seat, (or bed, or whatever), this is a good one, although don&#8217;t try to read it all in one sitting like some other books that I have read recently, it&#8217;s a bit long for that, (but every page earns its place).</p>
<div class="bookbox">
<div class="bookbox-image"><img src="http://johnbeales.com/wp-content/uploads/2011/03/holcroft.jpg" alt="The cover of the book The Holcroft Covenant" title="The Holcroft Covenant" width="45" height="75" class="alignnone size-full wp-image-539" /></div>
<h6>Want to read it yourself? <small>Get it from one of these places and I&#8217;ll receive a small kickback:</small></h6>
<p><a href="http://www.amazon.com/gp/product/0553260197/ref=as_li_ss_tl?ie=UTF8&#038;tag=johnbeales-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0553260197" rel="nofollow">Amazon.com (USA)</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=0553260197" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.ca/gp/product/0553260197/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea03-20&#038;linkCode=as2&#038;camp=15121&#038;creative=390961&#038;creativeASIN=0553260197" rel="nofollow">Amazon.ca (Canada)</a><img src="http://www.assoc-amazon.ca/e/ir?t=&#038;l=as2&#038;o=15&#038;a=0553260197" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.co.uk/gp/product/1409119823/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=1409119823" rel="nofollow">Amazon.co.uk (UK)</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=&#038;l=as2&#038;o=2&#038;a=1409119823" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</p>
</div>
<img src="http://feeds.feedburner.com/~r/JohnBeales/~4/iWAqhd9tnPE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://johnbeales.com/20110403/the-holcroft-covenant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://johnbeales.com/20110403/the-holcroft-covenant/</feedburner:origLink></item>
		<item>
		<title>The Sinner</title>
		<link>http://feedproxy.google.com/~r/JohnBeales/~3/M26AJIuqAIs/</link>
		<comments>http://johnbeales.com/20110403/the-sinner/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 14:14:06 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[I Read This]]></category>
		<category><![CDATA[boston]]></category>
		<category><![CDATA[mystery]]></category>
		<category><![CDATA[paperback]]></category>
		<category><![CDATA[tess gerritsen]]></category>
		<category><![CDATA[thriller]]></category>

		<guid isPermaLink="false">http://johnbeales.com/?p=483</guid>
		<description><![CDATA[Another thriller down, and written by the same author as the previous book, (I kind of go in batches). In The Sinner Tess Gerritsen gave us another book that&#8217;s easy to read and hard to put down. It allowed me to, hopefully, get my fill of escaping into a world of mystery. Also, it&#8217;s not [...]]]></description>
			<content:encoded><![CDATA[<p>Another thriller down, and written by the same author as the <a href="/20110402/bloodstream/">previous book</a>, (I kind of go in batches). In <i>The Sinner</i> Tess Gerritsen gave us another book that&#8217;s easy to read and hard to put down. It allowed me to, hopefully, get my fill of escaping into a world of mystery.  Also, it&#8217;s not crazy long so it is a good book for a long flight, depending on how fast you read.</p>
<p>Time to get back to the computer-related brick I have on the nightstand.</p>
<div class="bookbox">
<div class="bookbox-image"><img src="http://johnbeales.com/wp-content/uploads/2011/02/sinner.jpg" alt="The cover of the book The Sinner" title="The Sinner" width="46" height="75" class="alignright size-full wp-image-528" /></div>
<h6>Want to read it yourself? <small>Get it from one of these places and I&#8217;ll receive a small kickback:</small></h6>
<p><a href="http://www.amazon.com/gp/product/0345458923/ref=as_li_ss_tl?ie=UTF8&#038;tag=johnbeales-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0345458923" rel="nofollow">Amazon.com (USA)</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=0345458923" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.ca/gp/product/0345458923/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea03-20&#038;linkCode=as2&#038;camp=15121&#038;creative=390961&#038;creativeASIN=0345458923" rel="nofollow">Amazon.ca (Canada)</a><img src="http://www.assoc-amazon.ca/e/ir?t=&#038;l=as2&#038;o=15&#038;a=0345458923" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.co.uk/gp/product/0553824546/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=0553824546" rel="nofollow">Amazon.co.uk (UK)</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=&#038;l=as2&#038;o=2&#038;a=0553824546" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
</div>
<img src="http://feeds.feedburner.com/~r/JohnBeales/~4/M26AJIuqAIs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://johnbeales.com/20110403/the-sinner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://johnbeales.com/20110403/the-sinner/</feedburner:origLink></item>
		<item>
		<title>B is for Burglar</title>
		<link>http://feedproxy.google.com/~r/JohnBeales/~3/7_iOqZySCaw/</link>
		<comments>http://johnbeales.com/20110402/b-is-for-burglar/#comments</comments>
		<pubDate>Sat, 02 Apr 2011 18:25:20 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[I Read This]]></category>
		<category><![CDATA[alphabet mysteries]]></category>
		<category><![CDATA[detective novel]]></category>
		<category><![CDATA[kinsey millhone]]></category>
		<category><![CDATA[mystery]]></category>
		<category><![CDATA[sue grafton]]></category>
		<category><![CDATA[whodunnit]]></category>

		<guid isPermaLink="false">http://johnbeales.com/?p=493</guid>
		<description><![CDATA[I&#8217;m behind on writing up the books I read. A few weeks ago I read another of the Alphabet Mysteries, B is for Burglar by Sue Grafton. It was quick, entertaining, twisty, (in a good way), and fun. If you like whodunnits, (apparently whodunnits is a real word &#8211; my spellchecker didn&#8217;t pick that up), [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m behind on writing up the books I read. A few weeks ago I read another of the Alphabet Mysteries, <i>B is for Burglar</i> by Sue Grafton. It was quick, entertaining, twisty, (in a good way), and fun. If you like whodunnits, (apparently whodunnits is a real word &#8211; my spellchecker didn&#8217;t pick that up), then you&#8217;ll probably like <i>B is for Burglar</i>, and in all honesty, the whole series.</p>
<p>There are a bunch more of these on the shelf waiting to be read, but I don&#8217;t want to go too fast since I tend to read them in one, quite long, sitting, and I have other things that I have to do. I am looking forward to reading them, though.</p>
<div class="bookbox">
<div class="bookbox-image"><img src="http://johnbeales.com/wp-content/uploads/2011/03/bforburglar.jpg" alt="The cover of the book B is for Burglar" title="B is for Burglar" width="47" height="75" class="alignnone size-full wp-image-532" /></div>
<h6>Want to read it yourself? <small>Get it from one of these places and I&#8217;ll receive a small kickback:</small></h6>
<p><a href="http://www.amazon.com/gp/product/0312939000/ref=as_li_ss_tl?ie=UTF8&#038;tag=johnbeales-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0312939000" rel="nofollow">Amazon.com (USA)</a><img src="http://www.assoc-amazon.com/e/ir?t=&#038;l=as2&#038;o=1&#038;a=0312939000" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.ca/gp/product/0312939000/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea03-20&#038;linkCode=as2&#038;camp=15121&#038;creative=390961&#038;creativeASIN=0312939000" rel="nofollow">Amazon.ca (Canada)</a><img src="http://www.assoc-amazon.ca/e/ir?t=&#038;l=as2&#038;o=15&#038;a=0312939000" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> <a href="http://www.amazon.co.uk/gp/product/0330315838/ref=as_li_ss_tl?ie=UTF8&#038;tag=johbea-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=0330315838" rel="nofollow">Amazon.co.uk (UK)</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=&#038;l=as2&#038;o=2&#038;a=0330315838" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
</div>
<img src="http://feeds.feedburner.com/~r/JohnBeales/~4/7_iOqZySCaw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://johnbeales.com/20110402/b-is-for-burglar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://johnbeales.com/20110402/b-is-for-burglar/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.942 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-01-26 07:03:02 -->

