<?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>Patrick Oscar Boykin's Personal Weblog</title>
	<atom:link href="http://boykin.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://boykin.wordpress.com</link>
	<description>Just some guy.</description>
	<lastBuildDate>Sun, 08 Jan 2012 21:16:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='boykin.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Patrick Oscar Boykin's Personal Weblog</title>
		<link>http://boykin.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://boykin.wordpress.com/osd.xml" title="Patrick Oscar Boykin&#039;s Personal Weblog" />
	<atom:link rel='hub' href='http://boykin.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Option Monad in Scala</title>
		<link>http://boykin.wordpress.com/2011/09/11/option-monad-in-scala/</link>
		<comments>http://boykin.wordpress.com/2011/09/11/option-monad-in-scala/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 23:55:17 +0000</pubDate>
		<dc:creator>boykin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[functional programming]]></category>
		<category><![CDATA[scala]]></category>

		<guid isPermaLink="false">http://boykin.wordpress.com/?p=78</guid>
		<description><![CDATA[I&#8217;m finally succumbing to one of the clichés of functional programming interest: writing a monad tutorial. My only point here is to show the use of perhaps the simplest monad to avoid an ugly, but not uncommon pattern: nested if statements checking for null. If you&#8217;re already turned off by the word Monad, just replace [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=78&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m finally succumbing to one of the clichés of functional programming interest: writing a <a href="http://www.haskell.org/haskellwiki/Monad_tutorials_timeline">monad tutorial</a>. My only point here is to show the use of perhaps the simplest monad to avoid an ugly, but not uncommon pattern: nested if statements checking for null. If you&#8217;re already turned off by the word Monad, just replace it with the word &#8220;thingy&#8221; or perhaps &#8220;dingus&#8221; as you read.</p>
<p>
Consider the java code:</p>
<pre>
  static public void main(String[] args) {
    Object r1 = args[0];
    Object r2 = f1(r1);
    if( null != r2 ) {
      Object r3 = f2(r2);
      if( null != r3 ) {
        Object r4 = f3(r3);
        if( null != r4 ) {
          System.out.println("You all everybody!");
        }
      }
    }
  }
</pre>
<p>Clearly no thinking person should be reduced to writing such a disaster. The Option monad in <a href="http://www.scala-lang.org/">Scala</a> can let you deal with these cases with elegance:</p>
<pre>
  def f1(r : AnyRef) = "you"
  def f2(r : AnyRef) = "all"
  //def f3(r : AnyRef) = "everybody"
  def f3(r : AnyRef) : AnyRef = null

  val r1 = "start"
  val fin = for( r2 &lt;- Option{ f1(r1) };
       r3 &lt;- Option{ f2(r2) };
       r4 &lt;- Option{ f3(r3) } )
    yield r4
  fin.foreach { res =&gt; println("you all everybody") }
</pre>
<p>This code is very similar to the above Java.  The for statement above is equivalent to the following syntax:</p>
<pre>
  def f1(r : AnyRef) = "you"
  def f2(r : AnyRef) = "all"
  //def f3(r : AnyRef) = "everybody"
  def f3(r : AnyRef) : AnyRef = null

  val r1 = "start"
  Option{ f1(r1) }.
    flatMap( r2 =&gt; Option{ f2(r2) }).
    flatMap( r3 =&gt; Option{ f3(r3) }).
    foreach { res =&gt; println("you all everybody") }
</pre>
<p>
What&#8217;s happening here?  It&#8217;s simple, <a href="http://www.scala-lang.org/api/current/scala/Option.html">Option</a> is a class that either holds Some(x) or None.  When None enters your calculation at any stage, None will be the final result.  Otherwise, if every step returns Some, you should complete the full calculation.  None causes you to bail out.  This is similar to using exceptions for control flow, or how NaNs propagate in IEEE-754 floating point arithmetic. Option in scala is pretty much identical to the <a href="http://haskell.org/ghc/docs/latest/html/libraries/base/Data-Maybe.html">Maybe Monad in Haskell</a>. In fact, this has been <a href="http://codemonkeyism.com/for-hack-with-option-monad-in-java/">implemented in Java</a> as well.</p>
<p>
So what exactly is a Monad?  It&#8217;s pretty simple, but its name (being Greek, I guess) scares the hell out of everyone the first time they hear it.  A Monad is just something that has two functions, called return and bind, which have the following rules (in scala-esque pseudo code)[<a href="http://en.wikipedia.org/wiki/Monad_%28functional_programming%29#Axioms">see monad axioms</a>]:</p>
<pre>
Monad.return(x).bind(y =&gt; f(y)) == f(x)
m.bind(y =&gt; Monad.return(y)) == m
m.bind(y =&gt; f(y)).bind(z =&gt; g(z)) == m.bind( y =&gt; f(y).bind(z =&gt; g(z)) )
</pre>
<p>In Scala, the return function is just Some(x).
<pre>Option {x}</pre>
<p> is similiar, it returns Some(x) if x is not null, None otherwise.  Bind is called flatMap, which on None returns None, on Some(x) returns Some(f(x)).  None is also a monadic zero, in that when you call bind on it, like multiplication by zero, it always returns None.  The analogy here in IEEE754 is if you bind with NaN the output always returns NaN (IEEE754 has embedded the Option/Maybe monad).  One of the awesome things about Haskell is that they built a way to represent all sorts of things as Monads: IO, transactions, mutable memory, state-machine transitions, and many more.</p>
<p>
Like I said, it is a total cliché to write one of these posts.  You can find them by the hundreds on the Web (here&#8217;s a more technical and very similar one: <a href="http://lamp.epfl.ch/~emir/bqbase/2005/01/20/monad.html">Monads in Scala</a>), so, if functional programming is going to change the way we develop software, and I believe it already has and will continue to, I suppose we&#8217;ll be seeing lots more pages such as this one.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/boykin.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/boykin.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/boykin.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/boykin.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/boykin.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/boykin.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/boykin.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/boykin.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/boykin.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/boykin.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/boykin.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/boykin.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/boykin.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/boykin.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=78&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://boykin.wordpress.com/2011/09/11/option-monad-in-scala/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0caf621c9ff9879374574f6cdd41e247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">boykin</media:title>
		</media:content>
	</item>
		<item>
		<title>Diet Change: Vegan to Grain-Free</title>
		<link>http://boykin.wordpress.com/2011/02/25/diet-change-vegan-to-grain-free/</link>
		<comments>http://boykin.wordpress.com/2011/02/25/diet-change-vegan-to-grain-free/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 16:30:42 +0000</pubDate>
		<dc:creator>boykin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[diet]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[paleo]]></category>
		<category><![CDATA[vegan]]></category>

		<guid isPermaLink="false">http://boykin.wordpress.com/?p=68</guid>
		<description><![CDATA[I am an extremist. The simplicity of extremes is appealing as one avoids the complexities of grays. For the past two years or so, I have followed a rather strict vegan diet motivated by the health benefits claimed by The China Study, and not particularly by the idea that it is immoral to eat animals. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=68&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am an extremist.  The simplicity of extremes is appealing as one avoids the complexities of grays.  For the past two years or so, I have followed a rather strict vegan diet motivated by the health benefits claimed by <a href="http://www.thechinastudy.com/">The China Study</a>, and not particularly by the idea that it is immoral to eat animals.  Recently I have had a number of questions in my mind as to the evidence for and against such diets, and ultimately decided to add preferably lean, organic and non-feedlot meats back into my diet.  At the same time, I am experimenting with removing grains from my diet.  Here&#8217;s why:</p>
<p><h3>Is the evidence for a vegan diet very strong?</h3>
<p>The China Study presents a few lines of evidence to support that protein, probably by <a href="http://en.wikipedia.org/wiki/Insulin-like_growth_factor_1">IGF-1</a>, can increase cancer risks.  However, upon reading <a href="http://www.canibaisereis.com/download/protein-debate-cordain-campbell.pdf">The Protein Debate</a>, it seems to me that Dr. Campbell believes all protein does this and a primary reason to go Vegan is that such a diet very likely limits total protein to less than 10%.  If you are vegan and you eat enough legumes or vegan protein supplements to get that number to 20-30%, are you not violating the fundamental argument for the anti-cancer benefit?</p>
<p>
Virtually none of the people studied in The China Study were vegan.  An extrapolation is made that goes from low animal protein to zero should be helpful.  Is that reasonable?  As recently as <a href="http://en.wikipedia.org/wiki/Choline#History">1998, new nutrients were recognized as essential</a>.  What essential nutrients have yet to be discovered?  Perhaps even low levels of meat supplies something essential that is as of yet unknown, without which health is impaired.  No population of humans that I am aware of have lived on vegan diets for their entire lives.  I&#8217;d prefer to be conservative and adopt a diet with some consensus behind it, namely, what did groups of healthy and long-lived people eat? <a href="http://www.bluezones.com/">The Blue Zones</a> project seeks to address this.  They identified many groups of long-lived people.  Only one of them had significant populations of vegetarians (Seventh-day Adventists), and even most of them consumed some fish and eggs.  Granted, Adventists who ate more meat had higher cancer rates, but how controlled were the studies?  Were those processed meats?  A <a href="http://www.eurekalert.org/pub_releases/2010-05/hsop-epm051410.php">recent meta-analysis found processed meats increased heart disease and diabetes, but not red meat</a>.  Many studies lump all meats together, which may be throwing the baby out with the bathwater.</p>
<p><h3>What will I eat?</h3>
<p>If you are not on a tight budget, you have many options for food.  My current experiment is to add meats back to my diet, but remove grains.  Why am I removing grains?  I was influenced by two arguments.  The first being <a href="http://www.thepaleodiet.com/">The Paleo Diet</a>, the second being general low-carb diets that avoid grains such as rice, bread, pasta, and so on to <a href="http://health.howstuffworks.com/human-body/cells-tissues/fat-cell2.htm">reduce insulin production</a>.  The core idea is that there are some foods to which were are more adapted to eating than others, and grains are particularly bad.  This is a reasonable hypothesis, but it needs to be substantiated by evidence before it should be treated as true.  My ancestors have likely been farming for 10,000 years or more, and that may have been enough time to completely adapt to a grain-based diet.  However, for this experiment, I&#8217;m removing grains.  From a standpoint of nutrient density, grains are not so great.  Take a look at the <a href="http://whfoods.com/">The World&#8217;s Healthiest Foods</a>.  Very few grains compare favorably against fruits, vegetables, and meats for nutrients per calorie.  I am going to focus on very low <a href="http://www.glycemicindex.com/">glycemic index</a> foods.  The exception will be during or after longer running events or workouts.  I will use bananas, watermelon, pineapple and sweet potatoes after workouts to get non-grain high-GI foods. I will also eat lentils and beans, which are low-GI, but not Paleo-approved.  Some might say, this sounds like an Atkins diet, and that is not healthy.  It appears to me concerns about lower carbohydrate diets seem to lack evidence.  A recent 2-year study, sometimes called the <a href="http://nccam.nih.gov/research/results/spotlight/030607.htm">ATOZ study, found Atkins dieters lost more weight and improved metabolic risk factors more than traditional, Ornish or Zone dieters</a>.  I can&#8217;t find any evidence that these diets are a risk.  Can you?</p>
<p><h3>Should you change your diet?</h3>
<p>I believe humans are very metabolically flexible.  If you have no problems with your health, athletic performance, or happiness that could plausibly be connected to diet, and you are pleased with your diet, I&#8217;m not sure there is strong evidence to change.  If you are overweight, struggle to maintain your weight, are frequently injured, or feel that your workouts don&#8217;t go well, perhaps changing your diet is worth a try.  I don&#8217;t think anyone can convincingly say much about diet other than if you are obese, it is harming your health.  If your diet is not preventing obesity, you probably need a change.</p>
<p>
<b>Update 2/27/2011:</b> I found <a href="http://www.fourhourworkweek.com/blog/wp-content/uploads/2011/01/Spotting-Bad-Science-103-The-China-Study.pdf">this criticism of the China Study</a> to make good points (and a few of the same ones I made).  It would be interesting to see more a response to these questions and criticisms from Dr. Campbell.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/boykin.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/boykin.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/boykin.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/boykin.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/boykin.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/boykin.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/boykin.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/boykin.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/boykin.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/boykin.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/boykin.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/boykin.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/boykin.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/boykin.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=68&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://boykin.wordpress.com/2011/02/25/diet-change-vegan-to-grain-free/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0caf621c9ff9879374574f6cdd41e247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">boykin</media:title>
		</media:content>
	</item>
		<item>
		<title>Vitamix Whole Bean Soy Milk / Soy Yogurt</title>
		<link>http://boykin.wordpress.com/2009/10/27/vitamix-whole-bean-soy-milk-soy-yogurt/</link>
		<comments>http://boykin.wordpress.com/2009/10/27/vitamix-whole-bean-soy-milk-soy-yogurt/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 01:40:46 +0000</pubDate>
		<dc:creator>boykin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://boykin.wordpress.com/?p=59</guid>
		<description><![CDATA[I&#8217;ve recently been making some soymilk with my vitamix. The idea is simple: grind the hell out of whole soybeans and get a wholefood soymilk. Usual recipes will have you strain the soymilk, which removes nutrients (particularly fiber). The resulting soymilk is a bit grainier, but the vitamix does an excellent job of producing a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=59&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently been making some soymilk with my <a href="http://vitamix.com/">vitamix</a>.  The idea is simple: grind the hell out of whole soybeans and get a wholefood soymilk.  Usual recipes will have you strain the soymilk, which removes nutrients (particularly fiber).  The resulting soymilk is a bit grainier, but the vitamix does an excellent job of producing a smooth milk.</p>
<p>The recipe is <a href="http://www.nutritiondata.com/facts/recipe/1199729/2">here</a>.  The cost of this is very low.  Soy beans are about $1/lb at my local bulk bin, and this recipe uses about 1/4 lb, so I can produce two quarts of soy milk/yogurt for about 30 cents total.  Considering that a quart of soy yogurt is usually about $3.50 or so, this saves me about 6 dollars per batch.</p>
<p>Three things I want to stress:<br />
1) USE BOILING WATER.  Using boiling water when grinding deactivates an enzyme that can give soymilk a beany flavor that most people don&#8217;t like as much.<br />
2) The simmering for 20 minutes is to deactivate trypsin inhibitors in soy which are potentially problematic in soy-based foods.<br />
3) I added sugar to this recipe because I use the soymilk to make yogurt.  My results were poor fermenting the unsweetened soymilk.  Once I added the sugar (which gives it a calorie density very comparable to 2% milk), fermentation worked great.</p>
<p>I use this to make yogurt, of which I eat about one cup per day.  The total amount of soy in that one cup is not very great, so I don&#8217;t worry too much.  The yogurt actually turns out great.  It&#8217;s very creamy, much more so than the skim yogurt I used to make with dairy.  As a note, to get started, I purchased some soy yogurt, and used a bit of it to start the culture.  Since then, it has been self sustaining.</p>
<p>Lastly, I don&#8217;t think this would work with a standard blender as I doubt it would grind the soy up fine enough.  A vitamix, or similarly powerful blender, is probably needed.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/boykin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/boykin.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/boykin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/boykin.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/boykin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/boykin.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/boykin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/boykin.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/boykin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/boykin.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/boykin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/boykin.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/boykin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/boykin.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=59&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://boykin.wordpress.com/2009/10/27/vitamix-whole-bean-soy-milk-soy-yogurt/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0caf621c9ff9879374574f6cdd41e247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">boykin</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting Antioxidants on a Budget</title>
		<link>http://boykin.wordpress.com/2009/03/09/getting-antioxidants-on-a-budget/</link>
		<comments>http://boykin.wordpress.com/2009/03/09/getting-antioxidants-on-a-budget/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 19:05:53 +0000</pubDate>
		<dc:creator>boykin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[food]]></category>

		<guid isPermaLink="false">http://boykin.wordpress.com/?p=54</guid>
		<description><![CDATA[Recently, I posted about the problem that cheaper foods tend to include a lot of junk foods. For instance, you can easily get all your daily calories by buying the cheapest options at McDonalds or by buying M&#38;Ms in bulk. That post left open the question: what should I eat if I want to get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=54&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently, <a href="http://boykin.wordpress.com/2008/08/21/the-cost-of-eating-well/">I posted about the problem that cheaper foods tend to include a lot of junk foods</a>.  For instance, you can easily get all your daily calories by buying the cheapest options at McDonalds or by buying M&amp;Ms in bulk.  That post left open the question: what <i>should</i> I eat if I want to get good nutrition and stay on a budget?</p>
<p>I took a simplified look at this problem.  In addition to calories, I looked at the <a href="http://en.wikipedia.org/wiki/Oxygen_radical_absorbance_capacity">ORAC</a> level of foods, which is a measure of their antioxidant power.  To do this, I found an <a href="http://www.ars.usda.gov/Services/docs.htm?docid=15866">excellent ORAC table from the USDA</a>.  ORAC levels are often quoted per 100 gram sample (about 1/4th of a pound, or 4 oz).  While this is a fair basis for comparision, it is fairly irrelevant to an eater.  As an eater, I care much more about the ORAC units per calorie or ORAC units per dollar.  The limits of my calorie budget (to avoid obesity) or my financial budget (to avoid bankruptcy) are much more restrictive than my limits due to stomach size.  Doing evaluations on price is more difficult because unlike ORAC density or calorie density, price is not a property of the food, but of a local and fluctuating market.  So, your results may be slightly different, but I collected these prices from the lowest available in my area (Gainesville, FL, USA) during late 2008 and early 2009.  The results are as follows.</p>
<p>If I only want to maximize ORAC per calorie, which is to say: &#8220;price be damned, I only care about not getting too fat&#8221;, these are the foods that will help me do that:</p>
<table border="1">
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Food</td>
<td>Orac/100g</td>
<td>Cost/100g</td>
<td>Cal/100g</td>
<td>Orac/cal</td>
<td>Orac/dol</td>
</tr>
<tr>
<td>Tea, green, brewed</td>
<td>1253</td>
<td>0.02</td>
<td>1</td>
<td>1253.0</td>
<td>71697.55</td>
</tr>
<tr>
<td>Spices, Cinnamon, ground</td>
<td>267536</td>
<td>0.66</td>
<td>247</td>
<td>1083.1</td>
<td>406225.23</td>
</tr>
<tr>
<td>Spices, cloves, ground</td>
<td>314446</td>
<td>17.21</td>
<td>323</td>
<td>973.5</td>
<td>18272.73</td>
</tr>
<tr>
<td>Spices, oregano, dried</td>
<td>200129</td>
<td>3.53</td>
<td>306</td>
<td>654.0</td>
<td>56636.51</td>
</tr>
<tr>
<td>Spices, turmeric</td>
<td>159277</td>
<td>5.94</td>
<td>354</td>
<td>449.9</td>
<td>26830.59</td>
</tr>
<tr>
<td>cocoa dry powder, unsweeted</td>
<td>80933</td>
<td>3.45</td>
<td>229</td>
<td>353.4</td>
<td>23470.57</td>
</tr>
<tr>
<td>Spices, basil, dried</td>
<td>67553</td>
<td>0.66</td>
<td>251</td>
<td>269.1</td>
<td>102572.11</td>
</tr>
<tr>
<td>Coriander (cilantro) raw</td>
<td>5141</td>
<td>1.4</td>
<td>23</td>
<td>223.5</td>
<td>3683.3</td>
</tr>
<tr>
<td>Ginger root</td>
<td>14840</td>
<td>0.81</td>
<td>80</td>
<td>185.5</td>
<td>18258.43</td>
</tr>
<tr>
<td>Plums (raw)</td>
<td>6259</td>
<td>0.42</td>
<td>46</td>
<td>136.1</td>
<td>15034.85</td>
</tr>
<tr>
<td>Blueberries, raw</td>
<td>6552</td>
<td>0.69</td>
<td>57</td>
<td>114.9</td>
<td>9463.23</td>
</tr>
<tr>
<td>Strawberries</td>
<td>3577</td>
<td>0.37</td>
<td>32</td>
<td>111.8</td>
<td>9759.36</td>
</tr>
<tr>
<td>Spices, pepper, black</td>
<td>27618</td>
<td>2.56</td>
<td>255</td>
<td>108.3</td>
<td>10798.42</td>
</tr>
<tr>
<td>Spices, Ginger, ground</td>
<td>28811</td>
<td>5.3</td>
<td>347</td>
<td>83.0</td>
<td>5435.68</td>
</tr>
<tr>
<td>Apples Granny Smith (with skin)</td>
<td>3898</td>
<td>0.42</td>
<td>52</td>
<td>75.0</td>
<td>9363.45</td>
</tr>
<tr>
<td>Spinach, raw</td>
<td>1515</td>
<td>0.85</td>
<td>23</td>
<td>65.9</td>
<td>1791.17</td>
</tr>
<tr>
<td>Goji Berries</td>
<td>25300</td>
<td>2.35</td>
<td>400</td>
<td>63.3</td>
<td>10775.05</td>
</tr>
<tr>
<td>Red table wine (cab)</td>
<td>5034</td>
<td>0.53</td>
<td>83</td>
<td>60.7</td>
<td>9438.75</td>
</tr>
<tr>
<td>Apples (with skin)</td>
<td>3082</td>
<td>0.37</td>
<td>52</td>
<td>59.3</td>
<td>10846.73</td>
</tr>
<tr>
<td>Spinach, frozen</td>
<td>1687</td>
<td>0.28</td>
<td>29</td>
<td>58.2</td>
<td>6105.13</td>
</tr>
<tr>
<td>Peppers, sweet, green, raw</td>
<td>923</td>
<td>0.28</td>
<td>20</td>
<td>46.2</td>
<td>3248.39</td>
</tr>
<tr>
<td>Applesauce canned, unsweeted</td>
<td>1965</td>
<td>0.19</td>
<td>43</td>
<td>45.7</td>
<td>10492.36</td>
</tr>
<tr>
<td>Juice, Concord Grape</td>
<td>2377</td>
<td>0.25</td>
<td>57</td>
<td>41.7</td>
<td>9582.49</td>
</tr>
<tr>
<td>Beets, raw</td>
<td>1767</td>
<td>0.66</td>
<td>43</td>
<td>41.1</td>
<td>2683</td>
</tr>
<tr>
<td>Broccoli, raw</td>
<td>1362</td>
<td>0.39</td>
<td>34</td>
<td>40.1</td>
<td>3534.96</td>
</tr>
<tr>
<td>Dark Chocolate</td>
<td>20823</td>
<td>3.5</td>
<td>520</td>
<td>40.0</td>
<td>5949.43</td>
</tr>
<tr>
<td>Peppers, sweet, orange, raw</td>
<td>984</td>
<td>1.1</td>
<td>25</td>
<td>39.4</td>
<td>895.26</td>
</tr>
<tr>
<td>Onions, red, raw</td>
<td>1521</td>
<td>0.28</td>
<td>40</td>
<td>38.0</td>
<td>5352.98</td>
</tr>
<tr>
<td>Oranges, raw, navals</td>
<td>1819</td>
<td>0.44</td>
<td>49</td>
<td>37.1</td>
<td>4149.88</td>
</tr>
<tr>
<td>Grapefruit, pink red</td>
<td>1548</td>
<td>0.15</td>
<td>42</td>
<td>36.9</td>
<td>10068.65</td>
</tr>
<tr>
<td>Garlic</td>
<td>5346</td>
<td>0.5</td>
<td>149</td>
<td>35.9</td>
<td>10598.62</td>
</tr>
</table>
<p>Notice, that spices are so high in ORACs, they are an easy way to increase the ORACs in your diet.  There are some of the usual suspects up there as well: green tea, berries, apples, spinach, red wine.  Tea has almost no calories, so it naturally will be high on this list.</p>
<p>But let&#8217;s look at how to get a sufficient amount of ORACs within <i>both a calorie and financial budget</i>.  To do that, we need to identify the budget.  Exactly how many ORACs a person needs is probably not a completely well defined question because of individual differences and the limitations of ORACs as some kind of unified measure of nutrition (which it is not, and I am not claiming that it is).  That having been said, I&#8217;ve seen the number 5000 ORAC/day as a target (which is approximately what you&#8217;d get if you get 5 servings of most fruits or vegetables a day).  For the calorie budget, I&#8217;ll assume 2000 calories per day (get a better estimate for yourself with the <a href="http://www.nutritiondata.com/tools/calories-burned">Nutritiondata.com daily needs tool</a>).  For the financial budget, I found a <a href="http://www.ers.usda.gov/Publications/EIB23/">2003-2004 USDA study on food spending</a> that found that the poorest 20% spent on average 1737 per year in 2004, so that gives us 4.76 to spend per day.  Since many high ORAC foods are not consumed in large quantities (such as spices), but some other medium ORAC foods are (such as beans or shreaded wheat), I limited the foods to more than 272 cal/dol, which is $7.35/day.  I did this to get a list of 20 foods.  Then I sorted them according to highest ORAC/dollar.  The following list is the cheapest way to get ORACs and still get enough calories each day to not spend too much on food:</p>
<table border="1">
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Food</td>
<td>Orac/100g</td>
<td>Cost/100g</td>
<td>Cal/100g</td>
<td>Orac/cal</td>
<td>Orac/dol</td>
<td>cal/dol</td>
</tr>
<tr>
<td>Spices, Cinnamon, ground</td>
<td>267536</td>
<td>0.66</td>
<td>247</td>
<td>1083.1</td>
<td>406225.23</td>
<td>375.04</td>
</tr>
<tr>
<td>Spices, basil, dried</td>
<td>67553</td>
<td>0.66</td>
<td>251</td>
<td>269.1</td>
<td>102572.11</td>
<td>381.12</td>
</tr>
<tr>
<td>Beans, kidney, raw</td>
<td>8459</td>
<td>0.22</td>
<td>333</td>
<td>25.4</td>
<td>38403.86</td>
<td>1511.82</td>
</tr>
<tr>
<td>Beans, black, raw</td>
<td>8040</td>
<td>0.22</td>
<td>341</td>
<td>23.6</td>
<td>36501.6</td>
<td>1548.14</td>
</tr>
<tr>
<td>Lentils, raw</td>
<td>7282</td>
<td>0.22</td>
<td>353</td>
<td>20.6</td>
<td>33060.28</td>
<td>1602.62</td>
</tr>
<tr>
<td>Plums (dried)</td>
<td>6552</td>
<td>0.44</td>
<td>240</td>
<td>27.3</td>
<td>14902.38</td>
<td>545.87</td>
</tr>
<tr>
<td>Garlic</td>
<td>5346</td>
<td>0.5</td>
<td>149</td>
<td>35.9</td>
<td>10598.62</td>
<td>295.4</td>
</tr>
<tr>
<td>Grapefruit, pink red</td>
<td>1548</td>
<td>0.15</td>
<td>42</td>
<td>36.9</td>
<td>10068.65</td>
<td>273.18</td>
</tr>
<tr>
<td>Nuts, pecans</td>
<td>17940</td>
<td>1.98</td>
<td>691</td>
<td>26.0</td>
<td>9059.8</td>
<td>348.96</td>
</tr>
<tr>
<td>Nuts, walnut</td>
<td>13541</td>
<td>1.65</td>
<td>654</td>
<td>20.7</td>
<td>8207.76</td>
<td>396.42</td>
</tr>
<tr>
<td>Raisins, seedless</td>
<td>3037</td>
<td>0.49</td>
<td>299</td>
<td>10.2</td>
<td>6156.67</td>
<td>606.14</td>
</tr>
<tr>
<td>Bananas</td>
<td>879</td>
<td>0.15</td>
<td>89</td>
<td>9.9</td>
<td>5783.57</td>
<td>585.59</td>
</tr>
<tr>
<td>Potatoes, red, flesh and skin, raw</td>
<td>1098</td>
<td>0.22</td>
<td>70</td>
<td>15.7</td>
<td>4994.91</td>
<td>318.44</td>
</tr>
<tr>
<td>Peanuts, raw</td>
<td>3166</td>
<td>0.66</td>
<td>567</td>
<td>5.6</td>
<td>4791.21</td>
<td>858.06</td>
</tr>
<tr>
<td>Nuts, almonds</td>
<td>4454</td>
<td>1.54</td>
<td>575</td>
<td>7.7</td>
<td>2892.87</td>
<td>373.46</td>
</tr>
<tr>
<td>Cereal, shreaded wheat plain</td>
<td>1303</td>
<td>0.66</td>
<td>340</td>
<td>3.8</td>
<td>1986.53</td>
<td>518.36</td>
</tr>
<tr>
<td>Popcorn, airpopped</td>
<td>1743</td>
<td>0.99</td>
<td>387</td>
<td>4.5</td>
<td>1757.1</td>
<td>390.13</td>
</tr>
<tr>
<td>Watermelon, raw</td>
<td>142</td>
<td>0.11</td>
<td>30</td>
<td>4.7</td>
<td>1293.67</td>
<td>273.31</td>
</tr>
<tr>
<td>Nuts, cashew</td>
<td>1948</td>
<td>1.87</td>
<td>553</td>
<td>3.5</td>
<td>1041.69</td>
<td>295.71</td>
</tr>
<tr>
<td>Olive oil, extra virgin</td>
<td>1150</td>
<td>1.27</td>
<td>884</td>
<td>1.3</td>
<td>907.34</td>
<td>697.47</td>
</tr>
</table>
<p>It&#8217;s interesting that when we sort by ORAC/dollar and put a price threshold, very different foods show up.  We can see how great beans are with this list: when you buy dried beans in bulk you get an extremely healthy food which is also extremely economical: more than 1500 calories per dollar!  Of course, these prices assume you are getting the very best deals: so one needs to shop at club stores and buy food from the bulk bins.  Dried Plums, or Prunes, also show up as big winners: about twice the ORACs/dollar of raisins with about the same calories/dollar.  Notice also, that stawberries and blueberries are great (high ORAC/calorie as we saw in the first chart), but they are too expensive to form a significant portion of your calories.  When it comes to nuts, pecans and walnuts are excellent choices: they give you lots of ORACs and lots of calories.</p>
<p>One last point I want to make is that paying attention to the seasonal sales in fruits and vegetables makes a lot of sense.  The prices may change by more than a factor of three as items go in and out of season, so make sure to try to choose seasonal vegetables and fruits.  Also, compare the calories/dollar of canned, frozen and dried vs. fresh fruits and vegetables.  Often fresh costs more and in many recipes you won&#8217;t notice any difference.</p>
<p>You can find the above data on a <a href="http://spreadsheets.google.com/ccc?key=piIAg6of8mJOfn8xjeL2GIw">google spreadsheet containing the ORAC data</a>.</p>
<p>Update 3/10/2009: Here&#8217;s a related <a href="http://www.nytimes.com/2009/03/03/health/03brod.html">NY Times article: &#8220;Eating Well on a Downsized Food Budget&#8221; published 3/2/2009</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/boykin.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/boykin.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/boykin.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/boykin.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/boykin.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/boykin.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/boykin.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/boykin.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/boykin.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/boykin.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/boykin.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/boykin.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/boykin.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/boykin.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=54&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://boykin.wordpress.com/2009/03/09/getting-antioxidants-on-a-budget/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0caf621c9ff9879374574f6cdd41e247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">boykin</media:title>
		</media:content>
	</item>
		<item>
		<title>New Year&#8217;s Resolutions</title>
		<link>http://boykin.wordpress.com/2008/12/31/new-years-resolutions/</link>
		<comments>http://boykin.wordpress.com/2008/12/31/new-years-resolutions/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 16:21:39 +0000</pubDate>
		<dc:creator>boykin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://boykin.wordpress.com/?p=52</guid>
		<description><![CDATA[I listened to a Science Friday podcast on New Year&#8217;s Resolutions yesterday. It turns out almost half of them are achieved (if I got that right). A couple of things that help are making realistic goals and sharing them with others to get support. So, here goes: I&#8217;ve made an account (johnynek) on 43things to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=52&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I listened to a <a href="http://www.sciencefriday.com/program/archives/200812262">Science Friday podcast on New Year&#8217;s Resolutions</a> yesterday.  It turns out almost half of them are achieved (if I got that right).  A couple of things that help are making realistic goals and sharing them with others to get support.</p>
<p>So, here goes: I&#8217;ve made an <a href="http://www.43things.com/person/johnynek">account (johnynek) on 43things</a> to track some goals for the year and for life in general.  Please bug me about these, encourage me, and hold me to them.  Also, tell me about your goals and I&#8217;ll do the same for you.</p>
<p>Happy New Year!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/boykin.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/boykin.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/boykin.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/boykin.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/boykin.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/boykin.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/boykin.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/boykin.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/boykin.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/boykin.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/boykin.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/boykin.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/boykin.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/boykin.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=52&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://boykin.wordpress.com/2008/12/31/new-years-resolutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0caf621c9ff9879374574f6cdd41e247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">boykin</media:title>
		</media:content>
	</item>
		<item>
		<title>Marathon (26.2 Miles) in 2:57:18 (6:46/mile)</title>
		<link>http://boykin.wordpress.com/2008/12/28/marathon-262-miles-in-25718-646mile/</link>
		<comments>http://boykin.wordpress.com/2008/12/28/marathon-262-miles-in-25718-646mile/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 00:45:45 +0000</pubDate>
		<dc:creator>boykin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://boykin.wordpress.com/?p=40</guid>
		<description><![CDATA[About six months ago, my friend Jake Logan asked me if I was interested in training for a marathon together. I was reluctant because I had been injured on and off for a while at that time, but I agreed. I&#8217;m so glad Jake and I started our training together. Having a friend doing the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=40&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/14666127@N06/3119279250/" title="Finishing the Memphis Marathon by johnynek, on Flickr"><img src="http://farm4.static.flickr.com/3185/3119279250_96516da595_m.jpg" width="240" height="180" alt="Finishing the Memphis Marathon" /></a></p>
<p>About six months ago, my friend <a href="http://www.logangator.blogspot.com/">Jake Logan</a> asked me if I was interested in training for a marathon together.  I was reluctant because I had been injured on and off for a while at that time, but I agreed.  I&#8217;m so glad Jake and I started our training together.  Having a friend doing the same training program (<a href="http://www.furman.edu/first/fmtp.htm">The Furman Institute of Running and Scientific Training, FIRST, program</a>), was a huge motivator for both of us.  I think I speak for us both when I say that the FIRST program is excellent and a great way to prepare for a first marathon.</p>
<p>On December 6, 2008, I ran the <a href="http://www.stjudemarathon.org/">St. Jude Memphis Marathon</a> in 2:57:18 missing my goal time of 2:55 by slightly more than 2 minutes.  It was a cold day.  The race started at about 30 degrees.  I was 51st overall and 10th in my age group out of more than 2200 finishers.  The official results are <a href="http://www.stjudemarathon.org/past_results.htm">here</a>, and here are my approximate splits taken from my watch:</p>
<table>
<tr>
<td>Mile</td>
<td>Lap</td>
<td>Pace</td>
<td>Split</td>
<td>Overall Pace</td>
</tr>
<tr>
<td>3</td>
<td> 19:12.94</td>
<td> 6:24.3</td>
<td> 19:12</td>
<td> 6:24.3</td>
</tr>
<tr>
<td>6</td>
<td> 19:56.78</td>
<td> 6:38.9</td>
<td> 39:09</td>
<td> 6:31.5</td>
</tr>
<tr>
<td>9</td>
<td> 18:57.23</td>
<td> 6:19.0</td>
<td> 58:06</td>
<td> 6:27.3</td>
</tr>
<tr>
<td>12</td>
<td> 20:19.78</td>
<td> 6:46.5</td>
<td> 1:18:26</td>
<td> 6:32.1</td>
</tr>
<tr>
<td>15</td>
<td> 20:04.41</td>
<td> 6:41.4</td>
<td> 1:38:31</td>
<td> 6:34.0</td>
</tr>
<tr>
<td>18</td>
<td> 20:29.08</td>
<td> 6:49.6</td>
<td> 1:59:00</td>
<td> 6:36.6</td>
</tr>
<tr>
<td>21</td>
<td> 20:14.12</td>
<td> 6:44.7</td>
<td> 2:19:14</td>
<td> 6:37.8</td>
</tr>
<tr>
<td>24</td>
<td> 21:38.23</td>
<td> 7:12.7</td>
<td> 2:40:52</td>
<td> 6:42.1</td>
</tr>
<tr>
<td>25</td>
<td> 7:20.44</td>
<td> 7:20.44</td>
<td> 2:48:13</td>
<td> 6:43.7</td>
</tr>
<tr>
<td>26.2</td>
<td> 9:05:40</td>
<td> 7:34.5</td>
<td> 2:57:18</td>
<td> 6:46.0</td>
</tr>
</table>
<p>There are a few pictures from the race <a href="http://www.flickr.com/photos/14666127@N06/tags/marathon/">with my Flickr marathon tag</a>.  There are also some <a href="http://www.asiorders.com/view_user_event.asp?EVENTID=32541&amp;BIB=259">professional pictures you can see accessing my bib number (259)</a>.</p>
<p>I was pleased with my performance, but I think I went out too fast, which is one of my common problems.  One problem was that I really didn&#8217;t know what I was capable of, but I should have stuck better with my game plan of shooting for 2:55.  Instead, at the halfway mark, I was on pace for 2:50.  To <a href="http://www.nycmarathon.org/entrantinfo/applyfor2008.php">qualify for the NYC marathon</a>, I needed to run 2:55.  I can also qualify for NY by running a half-marathon in 1:23.  My current PR for the half is 1:25 (which I ran on the way to my 2:57 marathon).  My plan for the future is to first rest and make sure I&#8217;m really strong and injury free before starting any hard training.  Secondly, I plan to train for a half-marathon with a goal of doing 1:21 sometime this spring.  With that qualifying time, I would then train to do the NY marathon in the fall.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/boykin.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/boykin.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/boykin.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/boykin.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/boykin.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/boykin.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/boykin.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/boykin.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/boykin.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/boykin.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/boykin.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/boykin.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/boykin.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/boykin.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=40&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://boykin.wordpress.com/2008/12/28/marathon-262-miles-in-25718-646mile/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0caf621c9ff9879374574f6cdd41e247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">boykin</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3185/3119279250_96516da595_m.jpg" medium="image">
			<media:title type="html">Finishing the Memphis Marathon</media:title>
		</media:content>
	</item>
		<item>
		<title>Road Thrill Wins the 194 Mile Florida Ragnar Relay</title>
		<link>http://boykin.wordpress.com/2008/11/17/road-thrill-wins-the-194-mile-florida-ragnar-relay/</link>
		<comments>http://boykin.wordpress.com/2008/11/17/road-thrill-wins-the-194-mile-florida-ragnar-relay/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 21:30:55 +0000</pubDate>
		<dc:creator>boykin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Running]]></category>

		<guid isPermaLink="false">http://boykin.wordpress.com/?p=38</guid>
		<description><![CDATA[I&#8217;m incredibly proud to have been a member of the excellent Road Thrill team: We won the first Florida Ragnar Relay, 194 miles from Clearwater to Daytona. Our team average 6:51/mile for 22 hours and 13 minutes. The second place team, a men&#8217;s team called Legends Plus from Florida College, was more than 39 minutes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=38&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m incredibly proud to have been a member of the excellent Road Thrill team:</p>
<p><a href="http://www.flickr.com/photos/14666127@N06/3038360651/" title="Team Road Thrill at the starting line by johnynek, on Flickr"><img src="http://farm4.static.flickr.com/3290/3038360651_0409c0311a.jpg" width="400" height="300" alt="Team Road Thrill at the starting line" /></a></p>
<p><a href="http://www.ragnarrelay.com/index.php?option=com_dynamicpages&amp;Itemid=80&amp;page=results&amp;raceName=florida&amp;raceId=14&amp;year=2008">We won</a> the first <a href="http://www.ragnarrelay.com/florida/index.php">Florida Ragnar Relay, 194 miles from Clearwater to Daytona</a>.  Our team average 6:51/mile for 22 hours and 13 minutes.  The second place team, a men&#8217;s team called Legends Plus from <a href="http://www.floridacollege.edu/">Florida College</a>, was more than 39 minutes behind us.  We had six men and six women (winning both the open and mixed (men and women) divisions):</p>
<p>Women:<br />
Ashley Espy<br />
Jaclyn Solodovnick<br />
Jami Ludwig<br />
Kristine Poyner<br />
Jaclyn Solodovnick<br />
Lindsay Sundell<br />
Melanie Ladenheim</p>
<p>Men:<br />
Oscar Boykin<br />
Ed Dunne<br />
Jake Logan<br />
Julio Palma<br />
Alex Phipps<br />
Andrew Robinson</p>
<p>I hope I won&#8217;t embarrass my teammates by heaping praise on them, but I witnessed some truly heroic running on their parts during our 22 hours and 13 minutes over those 194 miles.  If you know any of these runners, congratulate them and implore them to regale you with tales of running through the night across Florida.</p>
<p>I twittered the event and you can read those <a href="http://search.twitter.com/search?q=&amp;ands=&amp;phrase=&amp;ors=&amp;nots=&amp;tag=&amp;lang=all&amp;from=johnynek&amp;to=&amp;ref=&amp;near=&amp;within=15&amp;units=mi&amp;since=2008-11-13&amp;until=2008-11-16&amp;rpp=15">twitter posts here</a>.  Some of the pictures from the event are on flickr with my <a href="http://www.flickr.com/photos/14666127@N06/tags/ragnar/">Ragnar tag</a>.</p>
<p>All I can say is that this was an other-wordly experience.  Running through the night with such support was amazing.  Watching that runner come to the exchange (in my case, Julio Palma) and running to get the baton to the next runner (in my case Jami Ludwig) was really inspiring.  The team was split into two vans.  I was in Van 1 with Jaclyn, Jami, Kristine, Jake and Julio.  It took us a couple of exchanges to get the hang of dropping off a runner, cheering them in the middle (and maybe giving water) and then moving into position so the next runner could go.  When it was my turn to run, I knew that after the drop off I could expect to hear my team cheering about 10 minutes later, and I knew I wanted to be looking strong when they went driving by.</p>
<p>You can see all the <a href="http://www.ragnarrelay.com/florida/coursemaps">legs on the Ragnar site</a>.  I was runner 3.  I did 3.6 miles at 6:31/mile, 9.5 at 6:34/mile, then 3.7 at 6:50/mile.  I &#8220;slept&#8221; for about an hour at exchange 12.</p>
<p>Ragnar tried to arrange it so the teams would arrive in a narrow time window.  That meant the slowest teams started first, at 8:00am, and the faster teams later.  We started with the last group at 2:00pm.  It was exciting, because when we started, no one was behind us.  We didn&#8217;t see many runners, and the exchanges were dirty and used.  As we got a few hours in, we started to pick up runners from earlier start groups.  That was really exciting to us.  By the second and third sets (legs 13-24) we were really starting to pass a lot of runners.  Then, it died off.  We were fighting Legends Plus for most of the race, but by the start of the third set it looked like pretty much had them thanks to our van 2, which was by far the strongest van in Ragnar.  Towards the end, we heard there were only a few teams ahead of us, all of whom started earlier than we did.  We started to get ambitious and hoped to not only win overall, but finish before any team.  We almost did it, but one team, Steamed Muscles, that started at 11am, finished about 30 minutes before us.  They finished third in the mixed division and fifth overall, congratulations to them!  We spoke to some of the second place mixed finishers, &#8220;12 Hearts, 36 Legs, No Brains &#8211; Brandon Runners&#8221;, at the start.  They were really nice and very encouraging.  Congratulations to them as well.</p>
<p>I look forward to next year.  Let&#8217;s see if we can go under 22 hours!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/boykin.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/boykin.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/boykin.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/boykin.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/boykin.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/boykin.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/boykin.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/boykin.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/boykin.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/boykin.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/boykin.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/boykin.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/boykin.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/boykin.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=38&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://boykin.wordpress.com/2008/11/17/road-thrill-wins-the-194-mile-florida-ragnar-relay/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0caf621c9ff9879374574f6cdd41e247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">boykin</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3290/3038360651_0409c0311a.jpg" medium="image">
			<media:title type="html">Team Road Thrill at the starting line</media:title>
		</media:content>
	</item>
		<item>
		<title>The Identity Problem</title>
		<link>http://boykin.wordpress.com/2008/10/15/the-identity-problem/</link>
		<comments>http://boykin.wordpress.com/2008/10/15/the-identity-problem/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 19:23:52 +0000</pubDate>
		<dc:creator>boykin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://boykin.wordpress.com/?p=36</guid>
		<description><![CDATA[I&#8217;ve written about secrecy of social security numbers before, but once again, I&#8217;m frustrated to be dealing with a case of so-called identity theft. Until we get some kind of Star Trek technology, my identity is the one thing that cannot be stolen. However, companies have been successful at transferring much of the risk of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=36&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve written about <a href="http://boykin.acis.ufl.edu/?p=109">secrecy of social security numbers</a> before, but once again, I&#8217;m frustrated to be dealing with a case of so-called identity theft.</p>
<p>Until we get some kind of Star Trek technology, my identity is the one thing that <b>cannot</b> be stolen.  However, companies have been successful at transferring much of the risk of starting transactions to innocent third parties.  Here&#8217;s the scenario:</p>
<p>Eve goes to CorpCom and claims to be me, Oscar.  CorpCom does business with her, but then she winds up taking more money, goods or services than she was due.  Now, CorpCom comes to me and expects me to pay.  What?  This is their problem.  They were the chumps.  But I&#8217;m guilty until proven innocent, and, of course, they won&#8217;t share any of the evidence with me, because that would violate my privacy I guess, or is it the scammer they are concerned with?</p>
<p>That last bit is the most absurd part.  If A) they believe I really owe them money, share all the details of &#8220;my&#8221; account.  If B) they don&#8217;t trust me to share details about &#8220;my&#8221; account, it must be because they believe I was not the person who opened the account, in which case I shouldn&#8217;t pay.  Since they don&#8217;t share, I assume we are in case B, but they still write me letters to request payment.</p>
<p>Why do people go along with this racket?  Because if these corporations claim you don&#8217;t make good on your debts, they tell credit reporting companies and you can&#8217;t get credit.  Do they need evidence?  Not really, just make it accurate enough to be profitable.  If a few percent of people are wrongly given terrible credit scores, who cares?</p>
<p>Of course, with the turn of the credit markets and collapse of housing, who needs credit?  Unfortunately, since credit reports are used to rent apartments, buy cars, and even get jobs, everyone needs to care about their credit reports.</p>
<p>I know what will solve the problem!  Less government, let the market decide!  Deregulate!</p>
<p>Summary: Someone opened a paypal account with my name, got a <a href="http://en.wikipedia.org/wiki/Chargeback">chargeback</a>, and now paypal has asked NCO Financial to bug me about it.  NCO says I need to contact paypal, and paypal says I need to contact NCO Financial.  In the meanwhile, I&#8217;m wasting time trying to make sure my credit isn&#8217;t harmed.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/boykin.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/boykin.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/boykin.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/boykin.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/boykin.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/boykin.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/boykin.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/boykin.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/boykin.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/boykin.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/boykin.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/boykin.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/boykin.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/boykin.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=36&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://boykin.wordpress.com/2008/10/15/the-identity-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0caf621c9ff9879374574f6cdd41e247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">boykin</media:title>
		</media:content>
	</item>
		<item>
		<title>Completed Week 4 of Marathon Training</title>
		<link>http://boykin.wordpress.com/2008/09/14/completed-week-4-of-marathon-training/</link>
		<comments>http://boykin.wordpress.com/2008/09/14/completed-week-4-of-marathon-training/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 16:14:44 +0000</pubDate>
		<dc:creator>boykin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Running]]></category>

		<guid isPermaLink="false">http://boykin.wordpress.com/?p=33</guid>
		<description><![CDATA[This is a small progress report on my marathon training.  As I mentioned in a previous post, I am following the Furman Institute training program. You can download their &#8220;First to Finish&#8221; marathon training program to see exactly what I am following. I really enjoy having a precise plan. If you are thinking of getting [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=33&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a small progress report on my marathon training.  As I mentioned <a href="http://boykin.wordpress.com/2008/08/18/week-1-of-marathon-training-16-weeks-until-259-marathon/">in a previous post</a>, I am following the <a href="http://www.furman.edu/first/fmtp.htm">Furman Institute training program</a>.  You can <a href="http://www.furman.edu/first/Marathon%20Training%20Program.pdf">download their &#8220;First to Finish&#8221; marathon training program</a> to see exactly what I am following.  I really enjoy having a precise plan.  If you are thinking of getting more into running and are not working with a coach or working from a plan, I highly recommend taking a look at one of Furman&#8217;s plans.  They have 5K, 10K, half-marathon and marathon plans.  Working with a plan is a smart move.</p>
<p>I&#8217;ve been able to hold the paces, I&#8217;ve felt good, and I&#8217;ve been looking forward to the runs.  I am making one modification: I&#8217;m making my long runs 10% longer than they call for, and I&#8217;ll probably do a couple of 24 milers at my peak: week 8 and week 6.  I want to be well prepared so I can go hard on race-day.</p>
<p>My main concern is to avoid injury, and in that regard, I think I&#8217;m doing well.  I have been using the cold therapy pool at my gym after my runs and I believe it helps my muscles and joints recover from each workout.</p>
<p>That&#8217;s it.  Not much exciting to report.  Perhaps the most exciting thing was that I ran 22 miles yesterday, which is 3 miles longer than I had ever run prior.  That will be the record for about a month until I get up to 24 miles, which will be the record until I do 26.2.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/boykin.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/boykin.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/boykin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/boykin.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/boykin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/boykin.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/boykin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/boykin.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/boykin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/boykin.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/boykin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/boykin.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/boykin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/boykin.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/boykin.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/boykin.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=33&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://boykin.wordpress.com/2008/09/14/completed-week-4-of-marathon-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0caf621c9ff9879374574f6cdd41e247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">boykin</media:title>
		</media:content>
	</item>
		<item>
		<title>The Cost of Eating Well</title>
		<link>http://boykin.wordpress.com/2008/08/21/the-cost-of-eating-well/</link>
		<comments>http://boykin.wordpress.com/2008/08/21/the-cost-of-eating-well/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 16:50:39 +0000</pubDate>
		<dc:creator>boykin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[health]]></category>

		<guid isPermaLink="false">http://boykin.wordpress.com/?p=28</guid>
		<description><![CDATA[About a month ago, I was shocked by an interview I heard while driving home. The radio program Florida on the Line had Holly Benson, secretary of the Agency for Health Care Administration, as a guest. The interviewer asked Holly if the economic downturn would have an impact on health. Holly responded, &#8220;just because you&#8217;re [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=28&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>About a month ago, I was <b>shocked</b> by an interview I heard while driving home.  The radio program <a href="http://www.wfsu.org/radio/fotl.php">Florida on the Line</a> had Holly Benson, secretary of the Agency for Health Care Administration, as a guest.  The interviewer asked Holly if the economic downturn would have an impact on health.  Holly responded, <a href="http://blogs.tampabay.com/buzz/2008/07/holly-benson-po.html">&#8220;just because you&#8217;re poor doesn&#8217;t mean you&#8217;re unhealthy; it just means you have a lot more time to go running.&#8221;</a></p>
<p>I was disappointed that this question was not seriously addressed (and by the callousness of the response).  In fact, being poor does impact your health.  <a href="http://www.webmd.com/diet/news/20050502/rich-poor-gap-narrowing-in-obesity">Those with the lowest income have the highest rate of obesity</a>.  The fact is, the cheapest foods are not the healthiest (related article at <a href="http://www.cnn.com/2004/HEALTH/diet.fitness/03/04/obesity.paradox.ap/index.html">CNN</a>).  Sugar is cheap:</p>
<blockquote><p>
 All that corner-store processed food is relatively inexpensive &#8211; artificially so. Researchers say that many junk foods contain high-fructose corn syrup, made from government-subsidized corn crops. Federal help keeps the cost of syrup-containing foods such as sodas, fries and even burgers down. Drewnowski said that healthful, unsubsidized foods like spinach cost five times more per calorie to produce, thus driving up the price (<a href="http://www.philly.com/inquirer/health_science/daily/20080506_Food_costs_likely_to_boost_obesity_in_poor.html">from Philadelphia Inquirer</a>).
</p></blockquote>
<p>As an engineer, I like numbers.  So, what are some example calories-per-dollar ratios?  Since I try to eat healthy and keep a spreadsheet of all the foods I eat at home, computing calories-per-dollar for all my recipes is easy.  Here are some examples from my spreadsheet:</p>
<table border="1">
<tr>
<td>Food</td>
<td>calories/dollar
</td>
</tr>
<tr>
<td>
Peanut Butter</td>
<td>	978</td>
</tr>
<tr>
<td>
Peanuts</td>
<td>	889</td>
</tr>
<tr>
<td>
Oats</td>
<td>	741</td>
</tr>
<tr>
<td>
Whole Wheat Bread</td>
<td>	420</td>
</tr>
<tr>
<td>
Almonds</td>
<td>	387</td>
</tr>
<tr>
<td>
Kashi Bars</td>
<td>	316</td>
</tr>
<tr>
<td>
Nonfat Milk</td>
<td>	268</td>
</tr>
<tr>
<td>
Canned Beans</td>
<td>	262</td>
</tr>
<tr>
<td>
Pistachios</td>
<td>	258</td>
</tr>
<tr>
<td>
Grapes</td>
<td>	185</td>
</tr>
<tr>
<td>
Frozen Strawberries</td>
<td>	159</td>
</tr>
<tr>
<td>
Fat-free Yogurt</td>
<td>	122</td>
</tr>
<tr>
<td>
Tempeh</td>
<td>	115</td>
</tr>
<tr>
<td>
Canned Tuna</td>
<td>	107</td>
</tr>
<tr>
<td>
Oranges</td>
<td>	107</td>
</tr>
<tr>
<td>
Cooked Turkey</td>
<td>	89</td>
</tr>
<tr>
<td>
Carrots</td>
<td>	62</td>
</tr>
<tr>
<td>
Blueberries</td>
<td>	54</td>
</tr>
<tr>
<td>
Tomato</td>
<td>48</td>
</tr>
<tr>
<td>Spinach</td>
<td>28</td>
</tr>
</table>
<p>Notice anything?  All the produce is <i>significantly</i> more expensive than the fats and grains.  McDonald&#8217;s sells cheeseburgers for 59 cents on some days.  Since those <a href="http://nutrition.mcdonalds.com/bagamcmeal/nutrition_facts.html">cheeseburgers are about 300 calories</a>, that gives you 504 calories/dollar.  Of all the things in the above list, McDonald&#8217;s cheeseburgers are the fourth cheapest!  If you eat 2000 calories/day, you could survive on 4 dollars a day on McDonald&#8217;s cheeseburgers.  You&#8217;d get more than 100% of your fat and cholesterol, and only 8% of your Vitamin C, but you&#8217;d get 100% of your calories.</p>
<p>Perhaps you like sweets instead of cheeseburgers.  You can buy <a href="http://www.amazon.com/Ms-Peanut-56-Ounce-Bag/dp/B000NMCEJK/ref=sr_1_1?ie=UTF8&amp;s=grocery&amp;qid=1219337047&amp;sr=8-1">56 oz of Peanut M &amp; M&#8217;s for 15.99</a> which gives you <a href="http://www.calorieking.com/foods/food.php?amount=56&amp;unit=-2&amp;category_id=15222&amp;brand_id=599&amp;food_id=19140&amp;partner=">8065 calories</a>, or 504 calories per dollar, the same as the cheeseburger!</p>
<p>Being healthy and avoiding disease requires more than cheap calories, it requires getting sufficient vitamins and other nutrients.  Unfortunately, <a href="http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=1448351">in the United States, between 5-17% of the population is Vitamin C deficient</a>.</p>
<p>If you were at risk of starving would you purchase spinach at 28 calories per dollar or peanut butter at 978 calories per dollar?  This is a problem I don&#8217;t hear addressed very often in the obesity discussion.  We need to look more at the cost-per-calorie of healthy choices.  This is an area where the government could help.  We should tax unhealthy choices, and subsidize healthy choices.  Since humans&#8217; tastes are set for a food landscape that does not exist today, namely scarcity of sweets and fats, we need to leverage other mechanisms such as economics to help make better choices.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/boykin.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/boykin.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/boykin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/boykin.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/boykin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/boykin.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/boykin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/boykin.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/boykin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/boykin.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/boykin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/boykin.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/boykin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/boykin.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/boykin.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/boykin.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=boykin.wordpress.com&amp;blog=3344558&amp;post=28&amp;subd=boykin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://boykin.wordpress.com/2008/08/21/the-cost-of-eating-well/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0caf621c9ff9879374574f6cdd41e247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">boykin</media:title>
		</media:content>
	</item>
	</channel>
</rss>
