<?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>Komodo Media &#187; howto</title>
	<atom:link href="http://www.komodomedia.com/categories/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.komodomedia.com</link>
	<description>blog, webdesign, illustration &#38; newsk00l javascript</description>
	<lastBuildDate>Wed, 01 Sep 2010 17:15:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Web Development Tips #1</title>
		<link>http://www.komodomedia.com/blog/2007/03/web-development-tips-1/</link>
		<comments>http://www.komodomedia.com/blog/2007/03/web-development-tips-1/#comments</comments>
		<pubDate>Thu, 22 Mar 2007 17:00:37 +0000</pubDate>
		<dc:creator>Rogie</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tumblelog]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://komodomedia.com/blog/index.php/2007/03/22/web-development-tips-1/</guid>
		<description><![CDATA[Sometimes the simplest of solutions elude me.  Blog entries and tutorials seem to be more well thought out, time-consuming projects that attack more complex issues or come up with more innovative solutions. Look at websites like A List Apart or Smashing Magazine.  
Typically, I would love to come up with lengthy tips or [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes the simplest of solutions elude me.  Blog entries and tutorials seem to be more well thought out, time-consuming projects that attack more complex issues or come up with more innovative solutions. Look at websites like <a href="http://alistapart.com/">A List Apart</a> or <a href="http://www.smashingmagazine.com">Smashing Magazine</a>.  </p>
<p>Typically, I would love to come up with lengthy tips or tutorials as these people do, but often I end up with a wealth of drafts for ideas, but never get any real helpful content out to my readers.  What I need is something more like a <a href="http://en.wikipedia.org/wiki/Tumblelog">Tumblelog</a>, which is more of a quick and dirty (not like that) stream of consciousness as a blog entry.</p>
<p>So, here I go, entry #1.</p>
<h2>Dodging Cache Issues</h2>
<p>I swear every time there is an issue with a client project or user on a website, it is a cache issue.  You&#8217;ve seen it before.  You are using the same image name or same stylesheet name and a users computer is caching it and causing issues with your new content.</p>
<p>A simple solution is just to rename the file.  Thats easy right?  Sometime yes.  Sometimes it isn&#8217;t. We all may need to keep the same file names for a myriad of different reasons.  Ok. Here&#8217;s mine.  </p>
<h3>Episode #1</h3>
<p>I have a flash file that I update every couple of months.  I don&#8217;t want to deal with renaming it, but I don&#8217;t want it to serve up the old version as cache.  The solution is simple:</p>
<h4>My code previously:</h4>
<p><code>&lt;embed....src="myfile.swf"....&gt;</code></p>
<h4>My NO-cache code:</h4>
<p><code>&lt;embed....src="myfile.swf?v1"....&gt;</code></p>
<p>Basically, I&#8217;m appending a query string to the file as if I am passing in variables.  Since webservers see this as a different file, it will cache it as a new file name, specifically &#8220;myfile.swf?v1&#8243;.  Also, this makes it easy for versions.  Next time you export your file, it will be v2, v3, v4&#8230; and so on.  </p>
<h3>Episode #2</h3>
<p>I have a webcam that transfers a camera shot via ftp to my webserver.  But, it FTP&#8217;s the image to the same directory with the same filename every time.  Yeah, I could write a PHP script to get the picture and serve it up as a different file name every time, but that&#8217;s way too hard for a simple issue. </p>
<p>Also, I used to use a <a href="http://en.wikipedia.org/wiki/Meta_refresh">META REFRESH</a> to refresh the page to serve up a new image, but that is frowned upon and refreshes the entire page.  So, naturally I am thinkin&#8217; <a href="http://www.w3schools.com/js/default.asp">JavaScript</a>.  </p>
<p>So, I get this rad script all hooked up to call a function every couple of seconds to refresh the image&#8230;here she be:</p>
<p><code>function refreshImage(){<br />
   if( document.getElementById('webcam-image') ){<br />
      setInterval(<br />
         function(){<br />
            var img = document.getElementById('webcam-image');<br />
            img.src = img.src;<br />
         },<br />
         4000<br />
      );<br />
   }<br />
}</code></p>
<p>I&#8217;ve wrote some code to run this function on page load.  Basically, this code just resets the <code class="inline"> src </code> attribute of the image every 4 seconds.  However, because the image is cached, I have issues.  The code works fine, but keeps serving up the same image, so the user doesn&#8217;t see a change.  </p>
<p>So, to employ my NO-cache technique, I whip up the following code:</p>
<p><code>function refreshImage(){<br />
   if( document.getElementById('webcam-image') ){<br />
      setInterval(<br />
         function(){<br />
            var img = document.getElementById('webcam-image');<br />
            if( !img.origSrc )   img.origSrc = img.src;<br />
            img.src = img.origSrc + "?" + (Math.random()).toString();<br />
         },<br />
         4000<br />
      );<br />
   }<br />
}</code></p>
<p>Here, I save the original <code class="inline"> src </code> attribute in a variable called <code class="inline"> origSrc </code> and then every 4 seconds (4000 ms), I set the <code class="inline"> src </code> attribute back to it&#8217;s original url.  However, the magic comes in the querystring.  I didn&#8217;t want to mess with an incrementing number, so I am just using a random number, but that&#8217;s all I need.  So, when this function is called the first time, lets say the random number is 0.30301759604092937 (a decimal number between 0 and 1), the image&#8217;s <code class="inline"> src </code> attribute becomes <code class="inline"> src="live.jpg?0.30301759604092937</code>.  Four seconds later, the code is ran again and the source attribute becomes <code class="inline"> src="live.jpg?0.0826765920752568</code>, thus always rendering a new NON-cached version of the image.  Voila!</p>
<p>P.S. If this technique is way too obvious or if you already knew it, please feel free to say &#8220;I agree.&#8221;  Comments that insult should be reserved for an infinite amount of time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.komodomedia.com/blog/2007/03/web-development-tips-1/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>CSS Star Rating Redux</title>
		<link>http://www.komodomedia.com/blog/2007/01/css-star-rating-redux/</link>
		<comments>http://www.komodomedia.com/blog/2007/01/css-star-rating-redux/#comments</comments>
		<pubDate>Sun, 21 Jan 2007 01:31:33 +0000</pubDate>
		<dc:creator>Rogie</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Nerdlab]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://komodomedia.com/blog/index.php/2007/01/20/css-star-rating-redux/</guid>
		<description><![CDATA[Quite awhile back, I wrote and article entitled <a href="http://komodomedia.com/blog/index.php/2005/08/24/creating-a-star-rater-using-css/">Creating a Star Rater using CSS</a>. In fact, if the CSS for this article is a little confusing, you may want to visit my previous articles to get yourself acquainted.  I wrote it to my best ability and I shared what I could with the growing CSS-loving community.  It was pretty flippin' cool if you ask me, but it needed more.  So, out of that need was born <a href="http://komodomedia.com/blog/index.php/2006/01/09/css-star-rating-part-deux/">CSS Star Rating Part Deux</a>, a vast improvement to the first, but by no means perfection. Out of the many comments I received about the most recent version, there were still some lacking areas.

By now, people's grasp as a whole has grown quite a bit I feel and I think that this time does not warrant a full-fledged tutorial (also, my lack of time doesn't help either).  However, there are some significant issues with my most current Star Rating tutorial and I have always wanted to take another go at it.]]></description>
			<content:encoded><![CDATA[<link href="http://d2dnrmagaqciul.cloudfront.net/samples/star_rating_final/star_rating_final.css" media="all" type="text/css" rel="stylesheet" />
<div class="post_info" style="width:130px;">
<ul>
<li><a  class="preview" href="http://d2dnrmagaqciul.cloudfront.net/samples/star_rating_final/index.htm">Test it</a></li>
<li><a class="download" href="http://www.komodomedia.comwp-content/uploads/2007/01/star_rating_final.zip">Download it</a></li>
<li><strong>Tested in:</strong><br />
<small>Firefox 2 PC/Mac<br />
Netscape 7 PC/Mac<br />
IE 5.5<br />
IE 6.0<br />
IE 7<br />
Safari 2<br />
OmniWeb 5<br />
Opera 9 PC/Mac</small></li>
</ul>
</div>
<p>First, a quick preview for the over-caffeinated and impatient (try clicking on a rating):</p>
<div style="float: left;width:305px;">
<h2>Classic Rater:</h2>
<p></p>
<ul class="star-rating-final">
<li style="width: 60%" class="current-rating">Currently 3/5 Stars.</li>
<li><a class="one-star" title="1 star out of 5" href="#">1</a></li>
<li><a class="two-stars" title="2 stars out of 5" href="#">2</a></li>
<li><a class="three-stars" title="3 stars out of 5" href="#">3</a></li>
<li><a class="four-stars" title="4 stars out of 5" href="#">4</a></li>
<li><a class="five-stars" title="5 stars out of 5" href="#">5</a></li>
</ul>
<h2>Inline Rater:</h2>
<p>This <span class="inline-rating-final">
<ul class="star-rating-final">
<li class="current-rating" style="width:30%">Currently 1.5/5 Stars.</li>
<li><a class="one-star" title="1 star out of 5" href="#">1</a></li>
<li><a class="two-stars" title="2 stars out of 5" href="#">2</a></li>
<li><a class="three-stars" title="3 stars out of 5" href="#">3</a></li>
<li><a class="four-stars" title="4 stars out of 5" href="#">4</a></li>
<li><a class="five-stars" title="5 stars out of 5" href="#">5</a></li>
</ul>
<p></span>and<span class="inline-rating-final">
<ul class="star-rating-final">
<li class="current-rating" style="width:80%">Currently 4/5 Stars.</li>
<li><a class="one-star" title="1 star out of 5" href="#">1</a></li>
<li><a class="two-stars" title="2 stars out of 5" href="#">2</a></li>
<li><a class="three-stars" title="3 stars out of 5" href="#">3</a></li>
<li><a class="four-stars" title="4 stars out of 5" href="#">4</a></li>
<li><a class="five-stars" title="5 stars out of 5" href="#">5</a></li>
</ul>
<p></span><br />
<h3>Small Rater</h3>
<p></p>
<ul class="star-rating-final small-star-final">
<li style="width: 50%" class="current-rating">Currently 2.5/5 Stars.</li>
<li><a class="one-star" title="1 star out of 5" href="#">1</a></li>
<li><a class="two-stars" title="2 stars out of 5" href="#">2</a></li>
<li><a class="three-stars" title="3 stars out of 5" href="#">3</a></li>
<li><a class="four-stars" title="4 stars out of 5" href="#">4</a></li>
<li><a class="five-stars" title="5 stars out of 5" href="#">5</a></li>
</ul>
</div>
<p><br style="clear: both" /><br />
Quite awhile back, I wrote and article entitled <a href="http://komodomedia.com/blog/index.php/2005/08/24/creating-a-star-rater-using-css/">Creating a Star Rater using CSS</a>. In fact, if the CSS for this article is a little confusing, you may want to visit my previous articles to get yourself acquainted.  I wrote it to my best ability and I shared what I could with the growing CSS-loving community.  It was pretty flippin&#8217; cool if you ask me, but it needed more.  So, out of that need was born <a href="http://komodomedia.com/blog/index.php/2006/01/09/css-star-rating-part-deux/">CSS Star Rating Part Deux</a>, a vast improvement to the first, but by no means perfection. Out of the many comments I received about the most recent version, there were still some lacking areas.</p>
<p>By now, people&#8217;s grasp as a whole has grown quite a bit I feel and I think that this time does not warrant a full-fledged tutorial (also, my lack of time doesn&#8217;t help either).  However, there are some significant issues with my most current Star Rating tutorial and I have always wanted to take another go at it.</p>
<p>In my thoughts, here is what the CSS Star Rating, part Deux is missing:</p>
<ul>
<li><strong>Cross-browser support: </strong> I received multiple emails and comments stating that it was pretty quirky in browsers like IE6 and even Firefox.</li>
<li><strong>Ajax &#038; Back end code :</strong> This is a need, but I&#8217;m not gonna tackle it. Plenty of people have contributed to the creation of the ajax or back end code, including <a href="http://slim.climaxdesigns.com/">slim</a>, <a href="http://h1.ripway.com/LHS_Webmaster/Storage/AJAX_RATE.zip">jon</a>, and an especially nice presentation and project over at <a href="http://www.masugadesign.com/the-lab/scripts/unobtrusive-ajax-star-rating-bar/">masuga</a>.  Needless to say, these guys do a great job and I don&#8217;t need to replicate their work.</li>
<li><strong>Tables and other wierdness:</strong> I had tons of report that the rater didn&#8217;t work in table cells and only God knows how many other situations.</li>
<li><strong>Inline Ratings:</strong> People also wanted to place their ratings inline.  The current rater didn&#8217;t allow for that at all.  Also, my feeble attempts to coerce it to work were of no avail.</li>
<li><strong>Uber mini Ratings:</strong> People also wanted little mini raters.  Well, guess what.  Problems arose with those too :(</li>
<li><strong>Pseudo-State:</strong> I say pseudo, because using only CSS, I cannot create a rating system that will hold when you click it and when you refresh it.   Back end scripts an databases are needed for that.  Basically, it still would be nice when you click the 3rd star, for it to stay there for a little bit.</li>
<li><strong>Percentage-based widths:</strong>  This wasn&#8217;t really a request, but It seemed if a person wanted to make a different sized rater, there was a lot of repeating of 20px. 40px, 60px&#8230;.etc.  There just was a lot of exact dimension redundancy.</li>
</ul>
<p>Well, thats the list!  No wonder I wasn&#8217;t really happy with the thing.  I remember when I first created it, it was my baby.  Now, I hate the previous version. Whatever.  Ok, enough rant from me.  Lets get you guys up into the nerdy stuff.</p>
<h2>Ok, so for a refresher, here is the XHTML:</h2>
<h3>Basic Rater XHTML:</h3>
<p><code class="html">&lt;ul class="star-rating"&gt;<br />
	&lt;li class="current-rating" style="width:60%;"&gt;Currently 3/5 Stars.&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="1 star out of 5" class="one-star"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="2 stars out of 5" class="two-stars"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="3 stars out of 5" class="three-stars"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="4 stars out of 5" class="four-stars"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="5 stars out of 5" class="five-stars"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</code></p>
<h3>Inline Rater XHTML:</h3>
<p><code>&lt;span class="inline-rating"&gt;<br />
&lt;ul class="star-rating small-star"&gt;<br />
	&lt;li class="current-rating" style="width:30%;"&gt;Currently 1.5/5 Stars.&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="1 star out of 5" class="one-star"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="2 stars out of 5" class="two-stars"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="3 stars out of 5" class="three-stars"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="4 stars out of 5" class="four-stars"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="5 stars out of 5" class="five-stars"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;&lt;/span&gt;</code></p>
<h3>Small Rater XHTML:</h3>
<p><code>&lt;ul class="star-rating small-star"&gt;<br />
	&lt;li class="current-rating" style="width:50%"&gt;Currently 2.5/5 Stars.&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="1 star out of 5" class="one-star"&gt;1&lt;/a&gt;&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="2 stars out of 5" class="two-stars"&gt;2&lt;/a&gt;&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="3 stars out of 5" class="three-stars"&gt;3&lt;/a&gt;&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="4 stars out of 5" class="four-stars"&gt;4&lt;/a&gt;&lt;/li&gt;<br />
	&lt;li&gt;&lt;a href="#" title="5 stars out of 5" class="five-stars"&gt;5&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</code></p>
<p>No big shockers with the code.  Basically new to the scene here is the fact that the inline rater is wrapped with a span and the small rater has an additional &#8220;small-star&#8221; class added.  I&#8217;m sure you can imagine that you can call &#8220;small-star&#8221; any class you would like and adapt the CSS to your liking for the right size and image you would like.</p>
<h2>Next, in true throw-it-in-your-face tutorial style, here is the CSS:</h2>
<h3>Basic Rater CSS</h3>
<p><code class="css">.star-rating,<br />
.star-rating a:hover,<br />
.star-rating a:active,<br />
.star-rating a:focus,<br />
.star-rating .current-rating{<br />
	background: url(star.gif) left -1000px repeat-x;<br />
}<br />
.star-rating{<br />
	position:relative;<br />
	width:125px;<br />
	height:25px;<br />
	overflow:hidden;<br />
	list-style:none;<br />
	margin:0;<br />
	padding:0;<br />
	background-position: left top;<br />
}<br />
.star-rating li{<br />
	display: inline;<br />
}<br />
.star-rating a,<br />
.star-rating .current-rating{<br />
	position:absolute;<br />
	top:0;<br />
	left:0;<br />
	text-indent:-1000em;<br />
	height:25px;<br />
	line-height:25px;<br />
	outline:none;<br />
	overflow:hidden;<br />
	border: none;<br />
}<br />
.star-rating a:hover,<br />
.star-rating a:active,<br />
.star-rating a:focus{<br />
	background-position: left bottom;<br />
}<br />
.star-rating a.one-star{<br />
	width:20%;<br />
	z-index:6;<br />
}<br />
.star-rating a.two-stars{<br />
	width:40%;<br />
	z-index:5;<br />
}<br />
.star-rating a.three-stars{<br />
	width:60%;<br />
	z-index:4;<br />
}<br />
.star-rating a.four-stars{<br />
	width:80%;<br />
	z-index:3;<br />
}<br />
.star-rating a.five-stars{<br />
	width:100%;<br />
	z-index:2;<br />
}<br />
.star-rating .current-rating{<br />
	z-index:1;<br />
	background-position: left center;<br />
}</code></p>
<p>The real difference between this CSS and my previous Star Rating tutorials has to do with the addition of :active and :focus pseudo states to hold the rating when clicked, percent-based widths, and the elimination of the use of floats to accomplish the CSS.  It is important to mention also the use of overflow:hidden to keep the rater from spilling out over its set width and height as well as the use of a set pixel height line-height.  I found that Internet Explorer really had issues with the rater CSS when resizing text, so if I set it to an exact pixel height, issues were resolved.</p>
<h3>Inline Rater CSS</h3>
<p><code class="css">.inline-rating{<br />
	display:-moz-inline-block;<br />
	display:-moz-inline-box;<br />
	display:inline-block;<br />
	vertical-align: middle;<br />
}</code></p>
<p>I found that if I wrapped the Star Rater unordered list with a span with a class of &#8220;inline-rating&#8221; and used the CSS rules above, I could achieve an inline rater.  My apologies for the non-standard CSS attributes, but achieving an <strong>inline-block</strong> behavior in CSS is not an easy task.  Most importantly to  me is that it works and works in quite a few browsers.</p>
<h3>Smaller Rater CSS</h3>
<p><code class="css">.small-star{<br />
	width:50px;<br />
	height:10px;<br />
}<br />
.small-star,<br />
.small-star a:hover,<br />
.small-star a:active,<br />
.small-star a:focus,<br />
.small-star .current-rating{<br />
	background-image: url(star_small.gif);<br />
	line-height: 10px;<br />
	height: 10px;<br />
}</code></p>
<p>I&#8217;ve tried to make adapting the rater much easier for all of you.  As you can see in the CSS above, you will not have to change a ton.  Just add a class to your unordered list; In this case I used &#8220;small-star.&#8221;  Update  the width and height to the desired values.  Make sure to change your image and line-heights as well.  This makes creating other variations of the rater much more simple.  If you need to make a 3 star, 4 star &#8230;N star rating system, you are gonna have to get your hands a little more dirty&#8230;sorry :(.</p>
<p>I am much more happy with the performance and support of this version and I feel that it will help to resolve the shortcomings that the previous versions had.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.komodomedia.com/blog/2007/01/css-star-rating-redux/feed/</wfw:commentRss>
		<slash:comments>69</slash:comments>
		</item>
		<item>
		<title>HOWTO #1:  The McRogie Sandwich</title>
		<link>http://www.komodomedia.com/blog/2006/10/howto-1-the-mcrogie-sandwich/</link>
		<comments>http://www.komodomedia.com/blog/2006/10/howto-1-the-mcrogie-sandwich/#comments</comments>
		<pubDate>Sat, 14 Oct 2006 17:40:50 +0000</pubDate>
		<dc:creator>Rogie</dc:creator>
				<category><![CDATA[Food]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[recipe]]></category>

		<guid isPermaLink="false">http://komodomedia.com/blog/index.php/2006/10/14/howto-1-the-mcrogie-sandwich/</guid>
		<description><![CDATA[<img src="http://d2dnrmagaqciul.cloudfront.net/wp-content/uploads/2006/10/mcgriddle.thumbnail.jpg" alt="McGriddle Gone McRogie"  class="float_left" /> We all know that <a href="http://www.mcdonalds.com/">McDonald's ain't so good for us</a>.  However, some of us keep going back.  I remember when I watched <a href="http://www.imdb.com/title/tt0390521/">Super Size Me </a>for the first time.  I agreed with the film and it's research.  I previously had tried to stay away from fast food.  For the most part, I still do.  However, after watching about 2 hours of delectable french fries and burgers, I wanted one real bad.  The film had the opposite effect on me.  I had stayed away from McDonald's so long, that it made me long for a grease-soaked, salty box o' fries.  It made me want a huge <a href="http://www.coca-cola.com/i">Coke</a>.  It made me want a McGriddle.

Lets make one...]]></description>
			<content:encoded><![CDATA[<p><img src="http://d2dnrmagaqciul.cloudfront.net/wp-content/uploads/2006/10/mcgriddle.jpg" alt="McGriddle Gone McRogie" class="float_left" /> We all know that <a href="http://www.mcdonalds.com/">McDonald&#8217;s ain&#8217;t so good for us</a>.  However, some of us keep going back.  I remember when I watched <a href="http://www.imdb.com/title/tt0390521/">Super Size Me </a>for the first time.  I agreed with the film and it&#8217;s research.  I previously had tried to stay away from fast food.  For the most part, I still do.  However, after watching about 2 hours of delectable french fries and burgers, I wanted one real bad.  The film had the opposite effect on me.  I had stayed away from McDonald&#8217;s so long, that it made me long for a grease-soaked, salty box o&#8217; fries.  It made me want a huge <a href="http://www.coca-cola.com/i">Coke</a>.  It made me want a McGriddle.</p>
<p>So, yeah I know its bad for me.  But occasionally I break down and buy a delicious artery clogger from McDonalds.  </p>
<p>For my first Howto concoction, I wanted to show the public a delicious breakfast sandwich, the McRogie:</p>
<h3>The McRogie Breakfast Sandwich:  Ingredients</h3>
<ul>
<li>Sun-Maid Raisin Bread (or any cinnamon raisin bread you like)</li>
<li>A few eggs (for french toast)</li>
<li>A splash of vanilla</li>
<li>A splash of milk</li>
<li>Hickory Smoked Bacon</li>
<li>Grey Poupon Mustard (insert mustard of choice here)</li>
<li>Swiss Cheese</li>
</ul>
<h3>The McRogie Breakfast Sandwich: Preparation</h3>
<ul>
<li>Mix a few eggs with a splash of milk and a splash of vanilla (french toast style)</li>
<li>Dip the raisin bread in the egg mixture (both sides).  Give it about a minute to soak in.</li>
<li>Slap your soaked raisin bread on a frying pan and cook that sukka till its light brown.</li>
<li>Cook up yer bacon till its done how you like it.  I like it crispy, yet flippy (if thats possible). Ohhh&#8230;and yes, that is a technical term, so use it.</li>
<li>Once the bacon is done, slap the swiss cheese and the bacon on one half of the french toast bread.</li>
<li>Slather the other peice of french toast with Grey Poupon (I like it thick baby)</li>
<li>Smush the two halves together and enjoy&#8230;.</li>
</ul>
<p>If you make this or have any other ideas to make this better, let me know.  Also, check back for more howto&#8217;s in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.komodomedia.com/blog/2006/10/howto-1-the-mcrogie-sandwich/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: komodomedia.com @ 2010-09-07 09:16:31 by W3 Total Cache -->