<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>bagheadinc.</title>
	
	<link>http://www.bagheadinc.com</link>
	<description>Where insanity meets imagination.</description>
	<lastBuildDate>Thu, 18 Feb 2010 00:24:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/bagheadinc" /><feedburner:info uri="bagheadinc" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>DROID</title>
		<link>http://feedproxy.google.com/~r/bagheadinc/~3/RDijEI7s-sI/</link>
		<comments>http://www.bagheadinc.com/2010/02/17/droid/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 00:24:12 +0000</pubDate>
		<dc:creator>bagheadinc</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bagheadinc.com/2010/02/17/droid/</guid>
		<description><![CDATA[Just testing out posting from my new DROID.
]]></description>
			<content:encoded><![CDATA[<p></p><p>Just testing out posting from my new DROID.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bagheadinc.com/2010/02/17/droid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bagheadinc.com/2010/02/17/droid/</feedburner:origLink></item>
		<item>
		<title>Favicons</title>
		<link>http://feedproxy.google.com/~r/bagheadinc/~3/K153R5x-cE0/</link>
		<comments>http://www.bagheadinc.com/2009/10/26/favicons/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 07:04:33 +0000</pubDate>
		<dc:creator>bagheadinc</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[ico]]></category>
		<category><![CDATA[ImageMagick]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[png2ico]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.bagheadinc.com/?p=221</guid>
		<description><![CDATA[Whenever I make a site, I end up having to make a favicon. Favicons are a nice way to brand a site in the address bar (and tabs). Making favicons for &#8220;good&#8221; browsers (not IE) is easy since they accept PNG files by declaring a link statement for the image&#8230;
&#60;link rel="icon" type="image/png" href="/somepath/image.png" /&#62;
However, if [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Whenever I make a site, I end up having to make a favicon. Favicons are a nice way to brand a site in the address bar (and tabs). Making favicons for &#8220;good&#8221; browsers (not IE) is easy since they accept PNG files by declaring a link statement for the image&#8230;</p>
<p><code>&lt;link rel="icon" type="image/png" href="/somepath/image.png" /&gt;</code></p>
<p>However, if you want a favicon that can be picked up by all browsers you&#8217;ll want to create an ICO file. I&#8217;ve found various online tools that will convert image files to ICO; <a href="http://www.favicon.cc/" rel="external">Favicon.cc</a> was one that I often used. The downside, all the online favicon generators I found gave me a 16&#215;16 ICO file. I wanted an ICO file with multiple sizes so if the user puts the bookmark on their desktop is uses the larger ICO size. So I decided to find a way to easily create a ICO file with multiple embedded sizes (64&#215;64, 48&#215;48, 32&#215;32, 16&#215;16) and I&#8217;ve decided to describe how I accomplished this.</p>
<p>These directions are written for Windows, but they can easily be adapted to other operating systems with minor adjustments. First you&#8217;ll need to download two tools.</p>
<ul>
<li><a href="http://www.imagemagick.org/script/binary-releases.php#windows" rel="external">ImageMagick</a> &#8211; This will be needed to automatically create the appropriate image sizes/formats</li>
<li><a href="http://www.winterdrache.de/freeware/png2ico/" rel="external">png2ico</a> &#8211; This, as the title suggests, will be needed to convert PNG images to ICO files</li>
</ul>
<p><strong>Installation</strong><br />
ImageMagick: If you downloaded one of the installers, this one is easy. Just run the installer and follow the on-screen prompts</p>
<p>png2ico: This doesn&#8217;t really need to be installed, but you need to copy <strong>png2ico.exe</strong> into your System32 folder (<strong>C:/Windows/System32</strong>) so it can be used from any directory in the command prompt</p>
<p><strong>Implementation</strong></p>
<ol>
<li>Open up your System32 (where you copied <strong>png2ico.exe</strong>) and create a file titled <strong>favicon.bat</strong></li>
<li>Open <strong>favicon.bat</strong> in a text editor (right click the file and choose <strong>Edit</strong>)</li>
<li>Enter the following into <strong>favicon.bat</strong> and then save the file<br />
<code>convert %1 -resize 64x64^ -gravity center -background transparent -extent 64x64 64.png<br />
convert %1 -resize 48x48^ -gravity center -background transparent -extent 48x48 48.png<br />
convert %1 -resize 32x32^ -gravity center -background transparent -extent 32x32 32.png<br />
convert %1 -resize 16x16^ -gravity center -background transparent -extent 16x16 16.png<br />
png2ico favicon.ico 64.png 48.png 32.png 16.png<br />
del 64.png<br />
del 48.png<br />
del 32.png<br />
del 16.png</code></li>
<li>Open the command prompt (Go to Start > Run, type <strong>cmd</strong> and hit enter)</li>
<li>Navigate to the folder with your image (<strong>cd foldername</strong>) and now type <strong>favicon filename.png</strong> (replace filename.png with the filename of your image) and hit enter</li>
</ol>
<p>Now, with that little bit of setup, you can create favicons in seconds. I added a few keys to my registry to make it even easier, but I&#8217;ll save that for another time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bagheadinc.com/2009/10/26/favicons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bagheadinc.com/2009/10/26/favicons/</feedburner:origLink></item>
		<item>
		<title>WP-Syntax Test</title>
		<link>http://feedproxy.google.com/~r/bagheadinc/~3/LLk_T4PN-7c/</link>
		<comments>http://www.bagheadinc.com/2009/01/05/wp-syntax-test/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 08:06:55 +0000</pubDate>
		<dc:creator>bagheadinc</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[geshi]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[syntax highlighting]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[wp-syntax]]></category>

		<guid isPermaLink="false">http://www.bagheadinc.com/?p=199</guid>
		<description><![CDATA[&#60;?php
	$allowed_mimes=array&#40;&#34;image/jpeg&#34;,&#34;image/gif&#34;,&#34;image/png&#34;&#41;;
	$dirPath = &#34;./&#34;;
	$imglist = array&#40;&#41;;
	if &#40;$handle = opendir&#40;$dirPath&#41;&#41; &#123;
		while &#40;false !== &#40;$file = readdir&#40;$handle&#41;&#41;&#41; &#123;
			$imageinfo = @getimagesize&#40;$file&#41;;
			if&#40;in_array&#40;$imageinfo&#91;&#34;mime&#34;&#93;, $allowed_mimes&#41;&#41;
				$imglist&#91;&#93; = $file;
		&#125;
		closedir&#40;$handle&#41;;
	&#125;
&#160;
	$rand = rand&#40;0,count&#40;$imglist&#41;-1&#41;;
	$file = $imglist&#91;$rand&#93;;
	$imageinfo = @getimagesize&#40;$file&#41;;
&#160;
	switch&#40;$imageinfo&#91;&#34;mime&#34;&#93;&#41; &#123;
		case &#34;image/jpeg&#34;:
			$image = imagecreatefromjpeg&#40;$file&#41;;
			header&#40;&#34;Content-type: image/jpeg&#34;&#41;;
			imagejpeg&#40;$image&#41;;
			break;
		case &#34;image/gif&#34;:
			$image = imagecreatefromgif&#40;$file&#41;;
			header&#40;&#34;Content-type: image/gif&#34;&#41;;
			imagegif&#40;$image&#41;;
			break;
		case &#34;image/png&#34;:
			$image = imagecreatefrompng&#40;$file&#41;;
			imagealphablending&#40;$image,false&#41;;
			imagesavealpha&#40;$image,true&#41;;
			header&#40;&#34;Content-type: image/png&#34;&#41;;
			imagepng&#40;$image&#41;;
			break;
	&#125;
	imagedestroy&#40;$image&#41;;
?&#62;

]]></description>
			<content:encoded><![CDATA[<p></p>
<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
	<span style="color: #000088;">$allowed_mimes</span><span style="color: #339933;">=</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;image/jpeg&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;image/gif&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;image/png&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$dirPath</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;./&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$imglist</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$handle</span> <span style="color: #339933;">=</span> <span style="color: #990000;">opendir</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dirPath</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">false</span> <span style="color: #339933;">!==</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span> <span style="color: #339933;">=</span> <span style="color: #990000;">readdir</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$handle</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #000088;">$imageinfo</span> <span style="color: #339933;">=</span> <span style="color: #339933;">@</span><span style="color: #990000;">getimagesize</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">in_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$imageinfo</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;mime&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$allowed_mimes</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
				<span style="color: #000088;">$imglist</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$file</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #990000;">closedir</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$handle</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #000088;">$rand</span> <span style="color: #339933;">=</span> <span style="color: #990000;">rand</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$imglist</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$file</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$imglist</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$rand</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$imageinfo</span> <span style="color: #339933;">=</span> <span style="color: #339933;">@</span><span style="color: #990000;">getimagesize</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">switch</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$imageinfo</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;mime&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">case</span> <span style="color: #0000ff;">&quot;image/jpeg&quot;</span><span style="color: #339933;">:</span>
			<span style="color: #000088;">$image</span> <span style="color: #339933;">=</span> <span style="color: #990000;">imagecreatefromjpeg</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Content-type: image/jpeg&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #990000;">imagejpeg</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$image</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">case</span> <span style="color: #0000ff;">&quot;image/gif&quot;</span><span style="color: #339933;">:</span>
			<span style="color: #000088;">$image</span> <span style="color: #339933;">=</span> <span style="color: #990000;">imagecreatefromgif</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Content-type: image/gif&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #990000;">imagegif</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$image</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">case</span> <span style="color: #0000ff;">&quot;image/png&quot;</span><span style="color: #339933;">:</span>
			<span style="color: #000088;">$image</span> <span style="color: #339933;">=</span> <span style="color: #990000;">imagecreatefrompng</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #990000;">imagealphablending</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$image</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #990000;">imagesavealpha</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$image</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Content-type: image/png&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #990000;">imagepng</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$image</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #990000;">imagedestroy</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$image</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.bagheadinc.com/2009/01/05/wp-syntax-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bagheadinc.com/2009/01/05/wp-syntax-test/</feedburner:origLink></item>
		<item>
		<title>Exec-PHP Test</title>
		<link>http://feedproxy.google.com/~r/bagheadinc/~3/I6P0Ie4DAoA/</link>
		<comments>http://www.bagheadinc.com/2009/01/03/exec-php-test/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 10:59:35 +0000</pubDate>
		<dc:creator>bagheadinc</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[exec-php]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.bagheadinc.com/?p=161</guid>
		<description><![CDATA[This text is generated with a php echo statement.
]]></description>
			<content:encoded><![CDATA[<p></p><p>This text is generated with a php echo statement.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bagheadinc.com/2009/01/03/exec-php-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bagheadinc.com/2009/01/03/exec-php-test/</feedburner:origLink></item>
		<item>
		<title>Framework</title>
		<link>http://feedproxy.google.com/~r/bagheadinc/~3/-7uG0QfttUk/</link>
		<comments>http://www.bagheadinc.com/2009/01/02/framework/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 17:52:31 +0000</pubDate>
		<dc:creator>bagheadinc</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[styling]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.bagheadinc.com/2009/01/02/framework/</guid>
		<description><![CDATA[Currently testing out a theme framework I&#8217;m developing. Hopefully when I&#8217;m finished it will be simple enough to style with ease but still look good with no modifications.
]]></description>
			<content:encoded><![CDATA[<p></p><p>Currently testing out a <a href="/?preview_theme=framework" title="Preview Framework Theme">theme framework</a> I&#8217;m developing. Hopefully when I&#8217;m finished it will be simple enough to style with ease but still look good with no modifications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bagheadinc.com/2009/01/02/framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bagheadinc.com/2009/01/02/framework/</feedburner:origLink></item>
		<item>
		<title>Image Test</title>
		<link>http://feedproxy.google.com/~r/bagheadinc/~3/qxqy9utxTsQ/</link>
		<comments>http://www.bagheadinc.com/2008/12/18/image-test/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 03:31:12 +0000</pubDate>
		<dc:creator>bagheadinc</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.bagheadinc.com/2008/12/18/image-test/</guid>
		<description />
			<content:encoded><![CDATA[<p></p><p><img src="/images/random" alt="Random image" title="Image Test" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bagheadinc.com/2008/12/18/image-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bagheadinc.com/2008/12/18/image-test/</feedburner:origLink></item>
		<item>
		<title>Text message post text</title>
		<link>http://feedproxy.google.com/~r/bagheadinc/~3/YqMb19oDOMs/</link>
		<comments>http://www.bagheadinc.com/2008/12/18/text-message-post-text/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 13:48:49 +0000</pubDate>
		<dc:creator>bagheadinc.cell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[text message]]></category>

		<guid isPermaLink="false">http://www.bagheadinc.com/2008/12/18/fwd-text-message-post-text/</guid>
		<description><![CDATA[Text message post text
]]></description>
			<content:encoded><![CDATA[<p></p><p>Text message post text</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bagheadinc.com/2008/12/18/text-message-post-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bagheadinc.com/2008/12/18/text-message-post-text/</feedburner:origLink></item>
		<item>
		<title>Hello</title>
		<link>http://feedproxy.google.com/~r/bagheadinc/~3/nexpgACciHs/</link>
		<comments>http://www.bagheadinc.com/2008/12/18/hello/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 11:35:33 +0000</pubDate>
		<dc:creator>bagheadinc</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.bagheadinc.com/2008/12/18/hello/</guid>
		<description><![CDATA[Just testing an email post
]]></description>
			<content:encoded><![CDATA[<p></p><p>Just testing an email post</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bagheadinc.com/2008/12/18/hello/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bagheadinc.com/2008/12/18/hello/</feedburner:origLink></item>
		<item>
		<title>Smart Youtube example</title>
		<link>http://feedproxy.google.com/~r/bagheadinc/~3/n8AeChDtxzc/</link>
		<comments>http://www.bagheadinc.com/2008/12/17/smart-youtube-example/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 20:25:58 +0000</pubDate>
		<dc:creator>bagheadinc</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[lumberjack]]></category>
		<category><![CDATA[smart youtube]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.bagheadinc.com/?p=77</guid>
		<description />
			<content:encoded><![CDATA[<p></p><p><!-- Smart Youtube --><span class="youtube"><object type="application/x-shockwave-flash" width="318" height="265" data="http://www.youtube.com/v/zuq4vOX57kw&amp;rel=0&amp;color1=3a3a3a&amp;color2=999999&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0"><param name="movie" value="http://www.youtube.com/v/zuq4vOX57kw&amp;rel=0&amp;color1=3a3a3a&amp;color2=999999&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0" /><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /></object></span><a href="http://www.youtube.com/watch?v=zuq4vOX57kw"><img src="http://img.youtube.com/vi/zuq4vOX57kw/default.jpg" width="130" height="97" border=0></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bagheadinc.com/2008/12/17/smart-youtube-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bagheadinc.com/2008/12/17/smart-youtube-example/</feedburner:origLink></item>
		<item>
		<title>Hello world!</title>
		<link>http://feedproxy.google.com/~r/bagheadinc/~3/kMXhQU-vRcw/</link>
		<comments>http://www.bagheadinc.com/2008/12/10/hello-world/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 05:25:40 +0000</pubDate>
		<dc:creator>bagheadinc</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bagheadinc]]></category>
		<category><![CDATA[welcome]]></category>

		<guid isPermaLink="false">http://www.bagheadinc.com/wordpress/?p=1</guid>
		<description><![CDATA[Welcome to bagheadinc.com. I currently don&#8217;t have anything to say, but maybe I will in the future.
]]></description>
			<content:encoded><![CDATA[<p></p><p>Welcome to bagheadinc.com. I currently don&#8217;t have anything to say, but maybe I will in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bagheadinc.com/2008/12/10/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bagheadinc.com/2008/12/10/hello-world/</feedburner:origLink></item>
	</channel>
</rss>
