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

<channel>
	<title>M. David Green</title>
	<atom:link href="http://mdavidgreen.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://mdavidgreen.com/blog</link>
	<description>Existence is a byproduct of Semantics</description>
	<lastBuildDate>Tue, 28 Jun 2011 15:42:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Turn Your Mobile HTML 5 and CSS Strategy Inside Out</title>
		<link>http://mdavidgreen.com/blog/turn-your-mobile-html-5-and-css-strategy-inside-out/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=turn-your-mobile-html-5-and-css-strategy-inside-out</link>
		<comments>http://mdavidgreen.com/blog/turn-your-mobile-html-5-and-css-strategy-inside-out/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 15:42:44 +0000</pubDate>
		<dc:creator>M. David Green</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Progressive Enhancement]]></category>
		<category><![CDATA[semantic HTML]]></category>

		<guid isPermaLink="false">http://mdavidgreen.com/blog/?p=254</guid>
		<description><![CDATA[Developing for mobile devices seems to come second for most web developers, after developing for the traditional desktop web browser. When thinking about supporting different browsers, we generally focus on progressive enhancement in terms of adding functionality rather than basic layout. But if you think about how your semantic HTML will be used, it&#8217;s likely [...]]]></description>
			<content:encoded><![CDATA[<p>Developing for mobile devices seems to come second for most web developers, after developing for the traditional desktop web browser. When thinking about supporting different browsers, we generally focus on progressive enhancement in terms of adding functionality rather than basic layout. But if you think about how your semantic HTML will be used, it&#8217;s likely you&#8217;ll come to the same conclusion that I did: a mobile device should be your first target development platform.</p>
<p>One of the principles of semantic HTML development is that you want to boil your page down to its most elemental, essential components before you start, and build your structure around these. HTML 5 provides a number of new page elements that can help identify those basic components, but it doesn&#8217;t change this key approach. </p>
<p>However, the need to support the smaller screens and tighter bandwidth associated with mobile devices actually provides a developer with a new opportunity. By paring down a site to the minimal set of components necessary for a complete mobile experience, a developer can create a solid semantic structure for that page right from the start. A page built in that manner is much easier to enhance for a richer desktop experience than it would be to trim away desktop features for a more minimal mobile device experience later.</p>
<p>This is the bare essence of progressive enhancement, and it will sharpen your focus as it streamlines your process.</p>
<p>To do this effectively, it may be useful to turn your CSS inside out, and build your standard stylesheet as if all you were developing was a mobile site. Once you have that working the way you want it on a mobile device, you can specify the presentation for desktop web browsers conditionally. This not only keeps your stylesheets lean and responsive; it also helps you focus your development efforts around the most critical elements of your site.</p>
<p>This may sound like a very different way of approaching your site development, but it&#8217;s not all that complicated, thanks to a few convenient CSS conventions. The real trick is thinking about your desktop site as an enhanced child of your mobile site, instead of the other way around.</p>
<p>For example, imagine you&#8217;re creating a new HTML 5 website with a main page, a set of related subpages, and a template that involves a standard header, footer, navigation menu, and a sidebar with a set of elements you want repeated on each page. You&#8217;re already ahead of the game if you&#8217;ve visualized this as a set of repeating components that can take advantage of our new semantic HTML 5 elements, such as <code>header</code>, <code>footer</code>, <code>nav</code>, <code>article</code>, <code>section</code>, and <code>aside</code>.</p>
<p>The first question to ask is what the simplest presentation of a site like this could be. If you stripped away anything that would detract from a user&#8217;s experience on a mobile device, what would you have left? Might the sidebar elements be extraneous? Or if they are necessary, do they have to float off to the side, squeezing the space available for the main content of a page, or could they be pushed down to the bottom of the page?</p>
<p>With these thoughts in mind, you might start building your semantic HTML 5 page skeleton by populating a <code>header</code>, <code>article</code>, and <code>footer</code>, inserting both a <code>section</code> and an <code>aside</code> into the <code>article</code>. Put the elements together in the order that they would be read logically if there were no styles applied, and you can begin to imagine how they will appear to a mobile device. So the <code>aside</code> would be placed after the <code>section</code> inside the <code>article</code>. That way it will easily fall after the <code>section</code> on a mobile screen when the page is built, unless you explicitly position it to the side.</p>
<p>After building the basic semantic HTML structure, and making sure that all the elements on the page use appropriate HTML 5 elements, you&#8217;re well on your way to having a mobile site that flows easily into a small screen with few bandwidth-hogging embellishments. In your stylesheet, you can now add all the design driven rules for features such as colors, fonts, alignments, and background images to make this lean and sleek mobile site support your branding and style guide requirements on your iphone or Android device, or any mobile device that supports CSS styling. Remember that all these styles will be inherited on the desktop, saving you the trouble of re-creating them independently for both environments.</p>
<p>To add styling for desktop browsers, you just need to add the following @media definition to your CSS stylesheet, and put your desktop-specific CSS definitions inside of it:</p>
<pre class="brush: css">
@media only screen and (min-width: 768px) {
    /* Put desktop CSS definition overrides here */
}
</pre>
<p>This definition includes a conditional statement querying the browser window to see if it is 768 pixes wide or wider. Since this definition falls after all your general CSS style definitions, it will override them selectively, and let the rest cascade through. And because these definitions sit inside of the @media definition, they will only be applied in the case of a browser with a width of 768px or more. </p>
<p>So for example, to get that <code>aside</code> sitting comfortably off to the right of your window in desktop browsers, you might want to float the <code>section</code> and the <code>aside</code> to the left, and give the <code>article</code> a hidden overflow and a right padding the width you want the sidebar to be. Then give the <code>section</code> a width of 100% and a border-right the width you want the sidebar to be, and a negative margin-right that matches. Then give the <code>aside</code> the same width, giving it a negative margin-right that matches the right border width of the <code>section</code>:</p>
<pre class="brush: css">
@media only screen and (min-width: 768px) {
    article {
        padding-right: 250px;
        overflow: hidden;
    }
    article section {
        float: left;
        width: 100%;
        border-right: 250px solid transparent;
        margin-right: -250px;
    }
    article aside {
        float: left;
        margin-right: -250px;
        width: 250px;
    }
}
</pre>
<p>Now your mobile device and your desktop browser will share most of the same basic styles, and the same semantic HTML structure, but the site will expand horizontally on browsers wider than 768px to allow the <code>aside</code> to appear as a sidebar next to your page content. </p>
<p>And there may be other rich presentation elements such as tabbed navigation or larger background images that you would want to incorporate into your desktop browser experience in the same way. This is the place in your CSS to do it.</p>
<p>Of course, some older browsers might not recognize conditional @media definitions. But that&#8217;s another benefit to using this approach. Those browsers will ignore these new definitions, and serve those users the pared-down but fully functional mobile-friendly version of your site&#8211;which is probably what you want when trying to support ancient technology in the 21st century.</p>
<p>Developing your site inside out, considering the mobile device application first, will strengthen your skills and improve your process:</p>
<ul>
<li>For web developers, it forces you to focus on the basics first, and use progressive enhancement at the deepest levels of your page structure.</li>
<li>For user interface and user experience designers, it isolates experiential design from visual design in a way that supports the advantages of each platform and how users expect them to behave.</li>
<li>And for visual designers, it encourages the creation of a device-independent style guide, as it separates branding from layout to optimize the user experience for each type of device.</li>
</ul>
<p>Once you get your head around it, you may never go back to developing pages for the desktop first. </p>
]]></content:encoded>
			<wfw:commentRss>http://mdavidgreen.com/blog/turn-your-mobile-html-5-and-css-strategy-inside-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digesting an interesting meeting</title>
		<link>http://mdavidgreen.com/blog/digesting-an-interesting-meeting/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=digesting-an-interesting-meeting</link>
		<comments>http://mdavidgreen.com/blog/digesting-an-interesting-meeting/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 21:01:15 +0000</pubDate>
		<dc:creator>M. David Green</dc:creator>
				<category><![CDATA[Culture]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Society]]></category>

		<guid isPermaLink="false">http://mdavidgreen.com/blog/digesting-an-interesting-meeting/</guid>
		<description><![CDATA[Taking a quick walk to ponder some interesting ideas that came up at an informal lunchtime brown bag meeting. What is the object? How do we make that apparent? Nice that this great spot is only a seven minute walk from the office.]]></description>
			<content:encoded><![CDATA[<p>Taking a quick walk to ponder some interesting ideas that came up at an informal lunchtime brown bag meeting. </p>
<p>What is the object? </p>
<p>How do we make that apparent? </p>
<p>Nice that this great spot is only a seven minute walk from the office. </p>
<p><a href="http://mdavidgreen.com/blog/wp-content/uploads/2011/06/20110609-015912.jpg"><img src="http://mdavidgreen.com/blog/wp-content/uploads/2011/06/20110609-015912.jpg" alt="20110609-015912.jpg" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mdavidgreen.com/blog/digesting-an-interesting-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just another glorious San Francisco sunset</title>
		<link>http://mdavidgreen.com/blog/just-another-glorious-san-francisco-sunset/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=just-another-glorious-san-francisco-sunset</link>
		<comments>http://mdavidgreen.com/blog/just-another-glorious-san-francisco-sunset/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 03:14:28 +0000</pubDate>
		<dc:creator>M. David Green</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavidgreen.com/blog/just-another-glorious-san-francisco-sunset/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://mdavidgreen.com/blog/wp-content/uploads/2011/06/20110601-081337.jpg"><img src="http://mdavidgreen.com/blog/wp-content/uploads/2011/06/20110601-081337.jpg" alt="20110601-081337.jpg" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mdavidgreen.com/blog/just-another-glorious-san-francisco-sunset/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Back at the office</title>
		<link>http://mdavidgreen.com/blog/back-at-the-office/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=back-at-the-office</link>
		<comments>http://mdavidgreen.com/blog/back-at-the-office/#comments</comments>
		<pubDate>Tue, 31 May 2011 16:51:35 +0000</pubDate>
		<dc:creator>M. David Green</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavidgreen.com/blog/back-at-the-office/</guid>
		<description><![CDATA[Does it get any better than this?]]></description>
			<content:encoded><![CDATA[<p>Does it get any better than this?</p>
<p><a href="http://mdavidgreen.com/blog/wp-content/uploads/2011/05/20110531-095118.jpg"><img src="http://mdavidgreen.com/blog/wp-content/uploads/2011/05/20110531-095118.jpg" alt="20110531-095118.jpg" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mdavidgreen.com/blog/back-at-the-office/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML 5, Progressive Enhancement, and Semantic HTML</title>
		<link>http://mdavidgreen.com/blog/html-5-progressive-enhancement-and-semantic-html/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=html-5-progressive-enhancement-and-semantic-html</link>
		<comments>http://mdavidgreen.com/blog/html-5-progressive-enhancement-and-semantic-html/#comments</comments>
		<pubDate>Sun, 29 May 2011 18:20:31 +0000</pubDate>
		<dc:creator>M. David Green</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[semantic HTML]]></category>

		<guid isPermaLink="false">http://mdavidgreen.com/blog/?p=216</guid>
		<description><![CDATA[HTML 5 is supposed to change everything all over again, but can we use progressive enhancement, or does HTML 5 mean starting from scratch after all the lessons we&#8217;ve learned about semantic HTML and beautiful markup from HTML 4? Different web browsers interpret HTML differently. It&#8217;s a fact of life, and it can feel like [...]]]></description>
			<content:encoded><![CDATA[<p>HTML 5 is supposed to change everything all over again, but can we use progressive enhancement, or does HTML 5 mean starting from scratch after all the lessons we&#8217;ve learned about semantic HTML and beautiful markup from HTML 4? </p>
<p>Different web browsers interpret HTML differently. It&#8217;s a fact of life, and it can feel like a curse to HTML developers when their clean semantic HTML and CSS code fail to deliver the same results to users across all browsers. Yet the folks developing the next generation of browsers continue to push forward with browsers that include incompatible features from unreleased standards, or proprietary standards that lure us into innocently building web apps that break for our poor users on competing browsers. That&#8217;s happening right now with CSS 3 and HTML 5 (branded as &#8220;HTML5&#8243; by some and just plain &#8220;HTML&#8221; by others).</p>
<p>The proposed HTML 5 standards introduce a number of useful semantic elements that can help HTML developers plan the structure of their documents. But even with the new web standards in flux, the savvy HTML developer comfortable with the concept of progressive enhancement can start using these elements right now.</p>
<h2>New HTML 5 Semantic Elements</h2>
<p>Among the new semantic HTML elements to help a developer structure a web page are new general container elements called <code>header</code>, <code>footer</code>, and <code>nav</code>. These are block-level elements that can replace the conventional <code>div</code> with a class of header, footer, or nav commonly used by HTML developers for branding, nav bar, and attribution.</p>
<p>We now have <code>article</code>, <code>section</code>, and <code>aside</code> elements to group content within a page. And since a single page of HTML 5 may have multiple sections with multiple articles, or multiple articles with multiple sections, the cascading style sheet selectors for these elements should provide inheritable styles, just as it would be with a set of divs that share the same class. </p>
<p>Each of these articles or sections, as well as the main content area, may now also have its own hierarchy of headers from <code>h1</code> to <code>h6</code>, wrapped safely inside its own <code>header</code> elements. No more limiting yourself to a single <code>h1</code> per page. The CSS styles for these headers can be inherited logically based on the containers.</p>
<h2>Progressive Enhancement</h2>
<p>But we still live in a world where we have no control over the browsers a user might have. Is it an old one, designed well before standards for HTML 5 were even proposed? Or is it a new one, with a unique idea of how to interpret the elements in this new unfinished web standard?</p>
<p>Happily, there are some Javascript utilities that are coming to the rescue. One of the smallest and simplest is the <a href="http://code.google.com/p/html5shim/" target="_blank">Google HTML 5 Shim</a>. This simply allows older browsers to recognize the current set of HTML 5 elements for the sake of CSS styling. Yes, this even works in Internet Explorer 6!</p>
<p>Another tool is <a href="http://www.modernizr.com/" target="_blank">Modernizr</a>. This handy bit of code includes a shim, but also adds several enhancements that allow features such as advanced CSS3 selectors to take advantage of the native features of older browsers. After all, if we&#8217;re going to create our beautiful markup, we want our cascading style sheets to have all the modern advantages, too. To get started using it, all you have to do is include the script, and add a &#8220;no-js&#8221; class to your <code>html</code> element. </p>
<h2>What We&#8217;re Losing</h2>
<p>The proposed XHTML standard many of us adopted&mdash;in spite of the way it was actually interpreted by web browsers&mdash;isn&#8217;t going away. However, future development has been halted, and we are being encouraged to use HTML 5 instead for web development. HTML 5, like earlier flavors of HTML, doesn&#8217;t require us to close all of our elements the way XHTML does, and supports target tags for opening links in separate windows. Of course, creating structured HTML with XML-inspired closed elements is still a good practice, as it makes our page structure cleaner and easier to manage and maintain.</p>
<p>One of the convenient enhancements that follows the practice of actual HTML developers who ignored the published standard is that we no longer have to worry about including block-level elements inside our anchor elements. It is now permitted to put an entire div inside a link, and our HTML 5 markup with still be compliant.</p>
<p>And although we&#8217;ve all learned to favor <code>em</code> and <code>strong</code> elements over <code>i</code> and <code>b</code> elements&#8230;some of the time&#8230;HTML 5 has reinvented our old bold and italic friends, redefining them based on how they have been used by HTML developers over the years instead of deprecating them.</p>
<p>There are plenty of other changes in the proposed HTML 5 standards, but these are a few that might get you started down the right path as you apply the concepts of progressive enhancement to your HTML development.</p>
<p>So with a good sense of semantic structure, we can approach any web design we encounter and parse it into clean, cross-browser compliant HTML 5 based on the web standards that exist. It just takes a little sense, a little discipline, and some Javascript tricks, to help our web sites survive whatever the browser developers throw at us!</p>
]]></content:encoded>
			<wfw:commentRss>http://mdavidgreen.com/blog/html-5-progressive-enhancement-and-semantic-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drawing Fingers</title>
		<link>http://mdavidgreen.com/blog/drawing-fingers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=drawing-fingers</link>
		<comments>http://mdavidgreen.com/blog/drawing-fingers/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 12:28:45 +0000</pubDate>
		<dc:creator>M. David Green</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavidgreen.com/blog/drawing-fingers/</guid>
		<description><![CDATA[This is what happens when you spend the evening drawing value keys in compressed charcoal. Feels all smooth and powdery. But don&#8217;t touch anything afterward.]]></description>
			<content:encoded><![CDATA[<p><img src="http://mdavidgreen.com/blog/wp-content/uploads/2010/10/20101020-102619.jpg" alt="" width="360" height="482" class="alignnone size-full" /></p>
<p>This is what happens when you spend the evening drawing value keys in compressed charcoal. Feels all smooth and powdery. But don&#8217;t touch anything afterward. </p>
]]></content:encoded>
			<wfw:commentRss>http://mdavidgreen.com/blog/drawing-fingers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Macaroons</title>
		<link>http://mdavidgreen.com/blog/macaroons/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=macaroons</link>
		<comments>http://mdavidgreen.com/blog/macaroons/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 03:32:22 +0000</pubDate>
		<dc:creator>M. David Green</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavidgreen.com/blog/?p=208</guid>
		<description><![CDATA[Apparently I can make macaroons. They seem more like candies than cookies to me.]]></description>
			<content:encoded><![CDATA[<p>Apparently I can make macaroons. They seem more like candies than cookies to me. <br/><br/><img src="http://mdavidgreen.com/blog/wp-content/uploads/2010/10/20101003-083307.jpg" alt="" width="360" height="480" /></p>
]]></content:encoded>
			<wfw:commentRss>http://mdavidgreen.com/blog/macaroons/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Amazing Chocolate Chip Cookie Dough</title>
		<link>http://mdavidgreen.com/blog/amazing-chocolate-chip-cookie-dough/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=amazing-chocolate-chip-cookie-dough</link>
		<comments>http://mdavidgreen.com/blog/amazing-chocolate-chip-cookie-dough/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 19:12:28 +0000</pubDate>
		<dc:creator>M. David Green</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavidgreen.com/blog/?p=204</guid>
		<description><![CDATA[I did a bunch of baking this week, including my usual weekly batch of oatmeal cookies for my man to have for breakfast, plus my first batch of chocolate chip cookies following the recipe from the Cooks Country iPhone app I have to say, while the Cooks Country technique was unusual&#8211;especially the bit about melting [...]]]></description>
			<content:encoded><![CDATA[<p>I did a bunch of baking this week, including my usual weekly batch of oatmeal cookies for my man to have for breakfast, plus my first batch of chocolate chip cookies following the recipe from the Cooks Country iPhone app  </p>
<p>I have to say, while the Cooks Country technique was unusual&#8211;especially the bit about melting and browning the butter before adding in the rest if the ingredients&#8211;I was blown away by the results. The dough itself was a toffee-like delight, with an amazing mixture of raw and cooked flavors. But the cookies were phenomenal!</p>
<p><img src="http://mdavidgreen.com/blog/wp-content/uploads/2010/10/20101003-120144.jpg" alt="" width="360" height="480" /></p>
]]></content:encoded>
			<wfw:commentRss>http://mdavidgreen.com/blog/amazing-chocolate-chip-cookie-dough/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cilantro again</title>
		<link>http://mdavidgreen.com/blog/cilantro-again/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cilantro-again</link>
		<comments>http://mdavidgreen.com/blog/cilantro-again/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 20:06:59 +0000</pubDate>
		<dc:creator>M. David Green</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavidgreen.com/blog/?p=201</guid>
		<description><![CDATA[I always manage to forget how much cilantro they put on the biryani dishes at Pakwan. But the food is great once you dig it out from under the soapy layer of green.]]></description>
			<content:encoded><![CDATA[<p>I always manage to forget how much cilantro they put on the biryani dishes at Pakwan. But the food is great once you dig it out from under the soapy layer of green. </p>
<p><a href="http://mdavidgreen.com/blog/wp-content/uploads/2010/09/p_2592_1936_921F7999-8DF8-45B2-A690-E8A98043B0FA.jpeg"><img src="http://mdavidgreen.com/blog/wp-content/uploads/2010/09/p_2592_1936_921F7999-8DF8-45B2-A690-E8A98043B0FA.jpeg" alt="" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mdavidgreen.com/blog/cilantro-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KFC Math</title>
		<link>http://mdavidgreen.com/blog/kfc-math/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kfc-math</link>
		<comments>http://mdavidgreen.com/blog/kfc-math/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 23:16:00 +0000</pubDate>
		<dc:creator>M. David Green</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavidgreen.com/blog/?p=195</guid>
		<description><![CDATA[I have to question the calorie counts in the KFC nutrition guides. A grilled drumstick is 90 calories, an original recipe fried one is 120 calories, and an extra spicy crispy one is 190 calories. They look pretty close in size and weight to me. I suspect the value for the extra spicy crispy pieces [...]]]></description>
			<content:encoded><![CDATA[<p>I have to question the calorie counts in the KFC nutrition guides. A grilled drumstick is 90 calories, an original recipe fried one is 120 calories, and an extra spicy crispy one is 190 calories. They look pretty close in size and weight to me. I suspect the value for the extra spicy crispy pieces is closer to reality for all of the fried ones. </p>
<p><a href="http://mdavidgreen.com/blog/wp-content/uploads/2010/09/l_2031_1131_50B1D982-B800-462B-9E59-C51643B4FE3F.jpeg"><img src="http://mdavidgreen.com/blog/wp-content/uploads/2010/09/l_2031_1131_50B1D982-B800-462B-9E59-C51643B4FE3F.jpeg" alt="" class="alignnone size-full" /></a></p>
<p>And an original recipe thigh is only 220 calories while a spicy crispy one is 390 calories? As Amy Poehler would say, &#8220;Really?&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://mdavidgreen.com/blog/kfc-math/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

