﻿<?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>Grimmdude &#187; Tutorials</title>
	<atom:link href="http://www.grimmdude.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.grimmdude.com</link>
	<description>The Life and Times of a Měiguórén</description>
	<lastBuildDate>Fri, 18 Jun 2010 15:08:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Javascript Toggle Checkbox to Hide/Show Text</title>
		<link>http://www.grimmdude.com/javascript-toggle-checkbox-to-hideshow-text/</link>
		<comments>http://www.grimmdude.com/javascript-toggle-checkbox-to-hideshow-text/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 03:50:58 +0000</pubDate>
		<dc:creator>Garrett</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[checkbox]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[toggle]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.grimmdude.com/?p=1396</guid>
		<description><![CDATA[I was working the other day on creating some text that would appear and disappear at the check of a checkbox.  I realized it&#8217;s pretty simple to accomplish with a<a href="http://www.grimmdude.com/javascript-toggle-checkbox-to-hideshow-text/">&#160; read more...</a>]]></description>
			<content:encoded><![CDATA[<p>I was working the other day on creating some text that would appear and disappear at the check of a checkbox.  I realized it&#8217;s pretty simple to accomplish with a little javascript!  There are a few ways of accomplishing this, but here&#8217;s the method I used.</p>
<h2>&lt;head&gt;</h2>
<p>Insert this bit of script in the head of your document:</p>
<pre>&lt;script language="javascript"&gt;
function checktoggle() {
var textboxid = document.getElementById('checktoggle');
if (textboxid.innerHTML == "") {textboxid.innerHTML = "here's my text!";}
else {textboxid.innerHTML = "";}
}﻿
&lt;/script&gt;
</pre>
<h2>&lt;body&gt;</h2>
<p>Then, in the &lt;body&gt; tags of your document create an empty div with an id of &#8220;checktoggle&#8221; , and a checkbox.  On the checkbox, be sure to add the onclick=&#8221;checktoggle()&#8221; action so when clicked it will run the above function.:</p>
<pre>&lt;div id="checktoggle"&gt;&lt;/div&gt;
&lt;input <code>onclick="checktoggle()"</code> type="checkbox"/&gt;</pre>
<p>That&#8217;s it, try it out:</p>
<div id="checktoggle"></div>
<input onclick="checktoggle()" type="checkbox" />
<p>To change the text which displays just modify the &#8220;here&#8217;s my text!&#8221; portion (inside the quotes only) of the javascript which you inserted into the head of your document to read whatever you like.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grimmdude.com/javascript-toggle-checkbox-to-hideshow-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create a Popup Music Player Using the Simple Popup Plugin and XSPF Player for WordPress</title>
		<link>http://www.grimmdude.com/how-to-create-a-popup-music-player-using-the-simple-popup-plugin-for-wordpress/</link>
		<comments>http://www.grimmdude.com/how-to-create-a-popup-music-player-using-the-simple-popup-plugin-for-wordpress/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 14:58:39 +0000</pubDate>
		<dc:creator>Garrett</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[bands]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[jukebox]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[pop up]]></category>
		<category><![CDATA[popup]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.grimmdude.com/?p=1204</guid>
		<description><![CDATA[Requests have been abundant when it comes to using my Simple Popup Plugin for WordPress to create a .  Thus, I have written this guide to help you on your<a href="http://www.grimmdude.com/how-to-create-a-popup-music-player-using-the-simple-popup-plugin-for-wordpress/">&#160; read more...</a>]]></description>
			<content:encoded><![CDATA[<p>Requests have been abundant when it comes to using my <a title="Simple Popup Plugin" href="http://www.grimmdude.com/wordpress-simple-popup-plugin/" target="_blank">Simple Popup Plugin</a> for WordPress to create a <a href='http://www.grimmdude.com/music-player/' onClick='return popitup(this.href);' target='_blank'>popup music player</a>.  Thus, I have written this guide to help you on your journey of musical satisfaction.</p>
<p>Here&#8217;s what we&#8217;re going for:</p>
<p style="text-align: center;"><img class="size-full wp-image-1217 aligncenter" style="border: 1px solid black;" title="Popup Music Player" src="http://www.grimmdude.com/wp-content/uploads/2009/11/music_player.png" alt="Popup Music Player" width="505" height="420" /></p>
<h2>Download the Plugins</h2>
<p>Download and install/activate the <a title="XSPF Player Plugin" href="http://www.boriel.com/plugins/the-wordpress-xspf-player-plugin/" target="_blank">XSPF Music Player plugin</a> and this <a title="Download Simple Popup Plugin" href="http://wordpress.org/extend/plugins/simple-popup-plugin/" target="_blank">Simple Popup plugin</a>.</p>
<h2>Create Page Template</h2>
<p>Create a page template to be used for the page that you intend to popup.  This should be very minimal, ie no sidebar, navigation, etc.  You basically just want an empty page with maybe a background color and possibly some links associated with your music (facebook, myspace,&#8230;).</p>
<p>The <strong>XSPF Player</strong> plugin requires you to add this tag in the body of this template for the player to show:</p>
<pre><code>&lt;?php xspf_player::start('playlistname'); ?&gt;</code></pre>
<p>For info on creating a page template see the <a title="Wordpress.org Page Templates" href="http://codex.wordpress.org/Pages#Page_Templates" target="_blank">WordPress documentation</a>.  If you like you can download <a title="Music Player Page Template" href="http://www.grimmdude.com/wp-content/uploads/2009/11/music_player_popup.php_.zip" target="_self">this music player popup page template</a> which already contains the XSPF Player tag and place it in your current theme&#8217;s folder for it to work.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1218" style="border: 1px solid black;" title="Page Template" src="http://www.grimmdude.com/wp-content/uploads/2009/11/page_template.png" alt="Page Template" width="550" height="426" /></p>
<h2>Create New Page</h2>
<p>Create a new page (not page template) in WordPress with no text in the body and choose the page template you just created from the template pull-down menu.</p>
<h2><img class="size-full wp-image-1219 aligncenter" style="border: 1px solid black;" title="Create New Page" src="http://www.grimmdude.com/wp-content/uploads/2009/11/create_page_popup.png" alt="Create New Page" width="550" height="345" /></h2>
<h2>Link it Up</h2>
<p>Using the <a title="Simple Popup Plugin" href="http://www.grimmdude.com/wordpress-simple-popup-plugin/" target="_blank">Simple Popup Plugin shortcode, template tag, or widget</a> create a link to your newly created page wherever you desire.  Set the dimensions for the pop up in the Simple Popup Plugin&#8217;s options page.</p>
<p>And that&#8217;s it!  Ain&#8217;t no thang.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grimmdude.com/how-to-create-a-popup-music-player-using-the-simple-popup-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Creating Two Column Unordered &lt;ul&gt; Lists</title>
		<link>http://www.grimmdude.com/creating-two-column-unordered-ul-lists/</link>
		<comments>http://www.grimmdude.com/creating-two-column-unordered-ul-lists/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 14:15:15 +0000</pubDate>
		<dc:creator>Garrett</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[double]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[lists]]></category>
		<category><![CDATA[rows]]></category>
		<category><![CDATA[split]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[two]]></category>
		<category><![CDATA[unordered]]></category>

		<guid isPermaLink="false">http://www.grimmdude.com/?p=1105</guid>
		<description><![CDATA[I&#8217;ve been searching like mad how to split an unordered list &#60;ul&#62; into two columns and haven&#8217;t found an easy solution.  By using combined info from a few sites I<a href="http://www.grimmdude.com/creating-two-column-unordered-ul-lists/">&#160; read more...</a>]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-1201 alignnone" title="Creating Two Column Unordered Lists" src="http://www.grimmdude.com/wp-content/uploads/2009/11/red_ul-300x300.jpg" alt="Creating Two Column Unordered Lists" width="101" height="101" />I&#8217;ve been searching like mad how to split an unordered list &lt;ul&gt; into two columns and haven&#8217;t found an easy solution.  By using combined info from a few sites I figured out an easy way to do it.  If you already know how to do this then mozie on down folks.  Here it is:</p>
<p>Make a &lt;div class=&#8221;double_column_list&#8221;&gt; and put a &lt;ul&gt; in it with some list items.   Set the &lt;li&gt; class to display at 50% width and float it to the left.</p>
<h3>CSS</h3>
<pre class="brush: css">
.double_column_list li {float: left; width: 50%;} </pre>
<h3>HTML</h3>
<pre class="brush: html">
&lt;div class=&quot;double_column_list&quot;&gt;
&lt;ul&gt;
&lt;li&gt;Awesome Stuff&lt;/li&gt;
&lt;li&gt;Awesome Stuff&lt;/li&gt;
&lt;li&gt;Awesome Stuff&lt;/li&gt;
&lt;li&gt;Awesome Stuff&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</pre>
<style type="text/css"> .double_column_list li { float: left; width: 50%; } </style>
<div class="double_column_list">
<ul>
<li>Awesome Stuff</li>
<li>Awesome Stuff</li>
<li>Awesome Stuff</li>
<li>Awesome Stuff</li>
</ul>
</div>
<p>Boosh, 2 column unordered lists.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grimmdude.com/creating-two-column-unordered-ul-lists/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7 Enhanced Comments for Dummies</title>
		<link>http://www.grimmdude.com/wordpress-27-enhanced-comments-for-dummies/</link>
		<comments>http://www.grimmdude.com/wordpress-27-enhanced-comments-for-dummies/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 14:40:22 +0000</pubDate>
		<dc:creator>Garrett</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[2.7]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.grimmdude.com/?p=476</guid>
		<description><![CDATA[I, like many others, have recently upgraded to WordPress 2.7 because of all the added features.  My particular interest was in the enhanced comments which included threading and paging, but<a href="http://www.grimmdude.com/wordpress-27-enhanced-comments-for-dummies/">&#160; read more...</a>]]></description>
			<content:encoded><![CDATA[<p>I, like many others, have recently upgraded to WordPress 2.7 because of all the added features.  My particular interest was in the enhanced comments which included threading and paging, but of course themes created before the release of 2.7 aren&#8217;t built for it so you can&#8217;t take advantage of these new features without some modification.  After reading the <a title="Migrating Plugins and Themes to 2.7/Enhanced Comment Display" href="http://codex.wordpress.org/Migrating_Plugins_and_Themes_to_2.7/Enhanced_Comment_Display" target="_blank">Migrating Plugins and Themes to 2.7/Enhanced Comment Display</a> on WordPress.org I knew what needed to be done but unfortunately didn&#8217;t really have the php skillz to pull it off.  So what did I do?  I knew that the WordPress Default theme that was upgraded with 2.7 was a shining example of what the code was supposed to look like (<em>see at the bottom of this post for the code</em>), so here&#8217;s what I did:</p>
<ol>
<li>Enabled comment threading in the settings menu.</li>
<li>Highlighted/copied all the code on my current theme&#8217;s comments.php file and pasted it into a plain text document as a backup.</li>
<li>Highlighted/copied all the code on the WordPress Default theme.</li>
<li>Went back to the comments.php file for my current theme, erased all the code, and replaced it with the code from the WordPress Default theme&#8217;s comments.php file (I made the backup just in case it didn&#8217;t work out).</li>
<li>Opened my current theme&#8217;s header.php file and added the following code for the JavaScript immediately before the call to wp_head().</li>
</ol>
<h3>JavaScript Code:</h3>
<pre class="brush: php">&lt; ?php if ( is_singular() ) wp_enqueue_script( &#039;comment-reply&#039; ); ?&gt;</pre>
<p>That left me with a perfectly good working comments that thread upon command.  The only problem was the comments didn&#8217;t really display right because of lack of css.  I have basic css knowledge but still needed some help, that&#8217;s where <a title="ejabs.com" href="http://www.ejabs.com/blog/2009/01/make-old-themes-compatible-with-wordpress-27-comment-features/" target="_blank">Matt Jab&#8217;s blog post</a> came in mad handy.  He lays out his own blog&#8217;s css for comments very clearly which makes a great foundation for tweaking on your blog.</p>
<p>Hope that helps!</p>
<h3>WordPress 2.7 Default Theme comment.php Code:</h3>
<pre class="brush: php">&lt; ?php
/**
* @package WordPress
* @subpackage Default_Theme
*/

// Do not delete these lines
if (!empty($_SERVER[&#039;SCRIPT_FILENAME&#039;]) &amp;&amp; &#039;comments.php&#039; == basename($_SERVER[&#039;SCRIPT_FILENAME&#039;]))
die (&#039;Please do not load this page directly. Thanks!&#039;);

if ( post_password_required() ) { ?&gt;
&lt;p class=&quot;nocomments&quot;&gt;This post is password protected. Enter the password to view comments.&lt;/p&gt;
&lt; ?php
return;
}
?&gt;

&lt;!-- You can start editing here. --&gt;

&lt; ?php if ( have_comments() ) : ?&gt;
&lt;h3 id=&quot;comments&quot;&gt;&lt; ?php comments_number(&#039;No Responses&#039;, &#039;One Response&#039;, &#039;% Responses&#039; );?&gt; to &amp;#8220;&lt; ?php the_title(); ?&gt;&amp;#8221;&lt;/h3&gt;

&lt;div class=&quot;navigation&quot;&gt;
&lt;div class=&quot;alignleft&quot;&gt;&lt; ?php previous_comments_link() ?&gt;&lt;/div&gt;
&lt;div class=&quot;alignright&quot;&gt;&lt; ?php next_comments_link() ?&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;ol class=&quot;commentlist&quot;&gt;
&lt; ?php wp_list_comments(); ?&gt;
&lt;/ol&gt;

&lt;div class=&quot;navigation&quot;&gt;
&lt;div class=&quot;alignleft&quot;&gt;&lt; ?php previous_comments_link() ?&gt;&lt;/div&gt;
&lt;div class=&quot;alignright&quot;&gt;&lt; ?php next_comments_link() ?&gt;&lt;/div&gt;
&lt;/div&gt;
&lt; ?php else : // this is displayed if there are no comments so far ?&gt;

&lt; ?php if (&#039;open&#039; == $post-&gt;comment_status) : ?&gt;
&lt;!-- If comments are open, but there are no comments. --&gt;

&lt; ?php else : // comments are closed ?&gt;
&lt;!-- If comments are closed. --&gt;
&lt;p class=&quot;nocomments&quot;&gt;Comments are closed.&lt;/p&gt;

&lt; ?php endif; ?&gt;
&lt; ?php endif; ?&gt;

&lt; ?php if (&#039;open&#039; == $post-&gt;comment_status) : ?&gt;

&lt;div id=&quot;respond&quot;&gt;

&lt;h3&gt;&lt; ?php comment_form_title( &#039;Leave a Reply&#039;, &#039;Leave a Reply to %s&#039; ); ?&gt;&lt;/h3&gt;

&lt;div class=&quot;cancel-comment-reply&quot;&gt;
&lt;small&gt;&lt; ?php cancel_comment_reply_link(); ?&gt;&lt;/small&gt;
&lt;/div&gt;

&lt; ?php if ( get_option(&#039;comment_registration&#039;) &amp;&amp; !$user_ID ) : ?&gt;
&lt;p&gt;You must be &lt;a href=&quot;&lt;?php echo get_option(&#039;siteurl&#039;); ?&gt;/wp-login.php?redirect_to=&lt; ?php echo urlencode(get_permalink()); ?&gt;&quot;&gt;logged in&lt;/a&gt; to post a comment.&lt;/p&gt;
&lt; ?php else : ?&gt;

&lt;form action=&quot;&lt;?php echo get_option(&#039;siteurl&#039;); ?&gt;/wp-comments-post.php&quot; method=&quot;post&quot; id=&quot;commentform&quot;&gt;

&lt; ?php if ( $user_ID ) : ?&gt;

&lt;p&gt;Logged in as &lt;a href=&quot;&lt;?php echo get_option(&#039;siteurl&#039;); ?&gt;/wp-admin/profile.php&quot;&gt;&lt; ?php echo $user_identity; ?&gt;&lt;/a&gt;. &lt;a href=&quot;&lt;?php echo wp_logout_url(get_permalink()); ?&gt;&quot; title=&quot;Log out of this account&quot;&gt;Log out &amp;raquo;&lt;/a&gt;&lt;/p&gt;

&lt; ?php else : ?&gt;

&lt;p&gt;&lt;input type=&quot;text&quot; name=&quot;author&quot; id=&quot;author&quot; value=&quot;&lt;?php echo $comment_author; ?/&gt;&quot; size=&quot;22&quot; tabindex=&quot;1&quot; &lt; ?php if ($req) echo &quot;aria-required=&#039;true&#039;&quot;; ?&gt; /&gt;
&lt;label for=&quot;author&quot;&gt;&lt;small&gt;Name &lt; ?php if ($req) echo &quot;(required)&quot;; ?&gt;&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;

&lt;p&gt;&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&lt;?php echo $comment_author_email; ?/&gt;&quot; size=&quot;22&quot; tabindex=&quot;2&quot; &lt; ?php if ($req) echo &quot;aria-required=&#039;true&#039;&quot;; ?&gt; /&gt;
&lt;label for=&quot;email&quot;&gt;&lt;small&gt;Mail (will not be published) &lt; ?php if ($req) echo &quot;(required)&quot;; ?&gt;&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;

&lt;p&gt;&lt;input type=&quot;text&quot; name=&quot;url&quot; id=&quot;url&quot; value=&quot;&lt;?php echo $comment_author_url; ?/&gt;&quot; size=&quot;22&quot; tabindex=&quot;3&quot; /&gt;
&lt;label for=&quot;url&quot;&gt;&lt;small&gt;Website&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;

&lt; ?php endif; ?&gt;

&lt;!--&lt;p&gt;&lt;small&gt;&lt;strong&gt;XHTML:&lt;/strong&gt; You can use these tags: &lt;code&gt;&lt; ?php echo allowed_tags(); ?&gt;&lt;/code&gt;&lt;/small&gt;--&gt;

&lt;p&gt;&lt;textarea name=&quot;comment&quot; id=&quot;comment&quot; cols=&quot;100%&quot; rows=&quot;10&quot; tabindex=&quot;4&quot;&gt;&lt;/textarea&gt;&lt;/p&gt;

&lt;p&gt;&lt;input name=&quot;submit&quot; type=&quot;submit&quot; id=&quot;submit&quot; tabindex=&quot;5&quot; value=&quot;Submit Comment&quot; /&gt;
&lt; ?php comment_id_fields(); ?&gt;
&lt;/p&gt;
&lt; ?php do_action(&#039;comment_form&#039;, $post-&gt;ID); ?&gt;

&lt;/form&gt;

&lt; ?php endif; // If registration required and not logged in ?&gt;
&lt;/div&gt;

&lt; ?php endif; // if you delete this the sky will fall on your head ?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.grimmdude.com/wordpress-27-enhanced-comments-for-dummies/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Properly Drink a Beer</title>
		<link>http://www.grimmdude.com/how-to-properly-drink-a-beer/</link>
		<comments>http://www.grimmdude.com/how-to-properly-drink-a-beer/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 15:02:55 +0000</pubDate>
		<dc:creator>Garrett</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[shanghai]]></category>

		<guid isPermaLink="false">http://www.grimmdude.com/?p=379</guid>
		<description><![CDATA[I thought, since I&#8217;ve been purchasing 24oz Budweisers at next to nothing here in Shanghai, I would share some of my beer drinking secrets to the working class peoples.  <a href="http://www.grimmdude.com/how-to-properly-drink-a-beer/">&#160; read more...</a>]]></description>
			<content:encoded><![CDATA[<p>I thought, since I&#8217;ve been purchasing 24oz Budweisers at next to nothing here in Shanghai, I would share some of my beer drinking secrets to the working class peoples.   Below you will find a few tips for increasing your beer drinking satisfaction.</p>
<ol>
<li><strong>Choose the right beer for the occasion</strong> &#8211; While I have been known to drink a Natty Ice at a formal gala, selecting the right beer can make a big difference in personal gratification and social perception.  My rule of thumb is nothing cheaper than Sierra Nevada at a black tie event, and nothing more expensive than Miller while chillin at home.  Now I know a lot of you beer aficionados are saying:<br />
<blockquote><p>I like to drink a heavy micro brew while browsing the web.</p></blockquote>
<p>Totally cool, I used to do the same myself but the stuff can get expensive.  I&#8217;m happy with college grade brews for recreational enjoyment.</li>
<li><strong>Location location location</strong> &#8211; Next step is to find a suitable location for brew consumption.  My personal favorite is on my most comfortable chair with my laptop&#8230;on my lap.  Put on my iTunes <a title="Facebook music page" href="http://www.facebook.com/pages/Garrett-Grimm/54917277817" target="_blank">beer drinking play list</a> and roll it out it flat.</li>
<p><code><br />
</code></p>
<li><strong>Drinking the beer</strong> &#8211; Alright, let&#8217;s slow down a little.  This is the most important part!  The moment of truth.  Are you comfortable?  Got that <a title="Facebook music page" href="http://www.facebook.com/pages/Garrett-Grimm/54917277817" target="_blank">music playing</a>?  OK, pop the cap on the brew and make it happen.  Start with just a sip.  Let your mouth taste the delicious flavor and crave more.  Then give it what it wants, take a nice healthy gulp and think to yourself:<br />
<blockquote><p>So this is what it&#8217;s like.</p></blockquote>
<p>Because this <em>is</em> what&#8217;s it&#8217;s like.  Enjoy.</li>
</ol>
<p><img class="size-medium wp-image-395 alignnone" title="Pabst" src="http://www.grimmdude.com/wp-content/uploads/2009/01/pabstbeerclose-300x225.jpg" alt="Pabst" width="300" height="225" /></p>
<p><em>Picture by <a title="uberculture on Flickr" href="http://flickr.com/photos/uberculture/" target="_blank">uberculture</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.grimmdude.com/how-to-properly-drink-a-beer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
