<?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>Tom Reitz</title>
	<atom:link href="http://www.tom-reitz.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tom-reitz.com</link>
	<description>Tech Talk, Catholic Commentary, and American Activism</description>
	<lastBuildDate>Mon, 05 Apr 2010 06:08:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Roland Juno G Hip Hop Loop Tutorial</title>
		<link>http://www.tom-reitz.com/2010/02/02/roland-juno-g-hip-hop-loop-tutorial/</link>
		<comments>http://www.tom-reitz.com/2010/02/02/roland-juno-g-hip-hop-loop-tutorial/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 15:50:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Juno G]]></category>
		<category><![CDATA[midi]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.tom-reitz.com/?p=166</guid>
		<description><![CDATA[For the past 4 or so months I've been really enjoying my new Roland Juno G keyboard, it's an amazing machine! I put together a how-to style video tutorial which explains how to create a hip hop loop using the Juno G's midi feature.]]></description>
			<content:encoded><![CDATA[<p>For the past 4 or so months I&#8217;ve been really enjoying my new Roland Juno G keyboard, it&#8217;s an amazing machine! I put together a how-to style video tutorial which explains how to create a hip hop loop using the Juno G&#8217;s midi feature.</p>
<p>The patches used in this tutorial:</p>
<ul>
<li>USER:087 (PeakArpSine)</li>
<li>PR-B:024 (Comp&#8217;d JBass)</li>
<li>USER:011 (HipHop Kit 2)</li>
<li>PR-B:116 (Crossed Bows)</li>
<li>USER:028 (Scrh&amp;Voi&amp;Wld)</li>
</ul>
<p>Here&#8217;s the video:</p>
<p><object width="580" height="458" data="http://www.youtube.com/v/Iv5SWftlXcU&amp;hl=en_US&amp;fmt=16&amp;fs=1&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Iv5SWftlXcU&amp;hl=en_US&amp;fmt=16&amp;fs=1&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /></object></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tom-reitz.com%2F2010%2F02%2F02%2Froland-juno-g-hip-hop-loop-tutorial%2F&amp;linkname=Roland%20Juno%20G%20Hip%20Hop%20Loop%20Tutorial"><img src="/wp-content/themes/organic-theme/img/share_save.gif" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.tom-reitz.com/2010/02/02/roland-juno-g-hip-hop-loop-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter from PHP</title>
		<link>http://www.tom-reitz.com/2009/06/16/twitter-from-php/</link>
		<comments>http://www.tom-reitz.com/2009/06/16/twitter-from-php/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 17:52:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[microblogging]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.tom-reitz.com/?p=143</guid>
		<description><![CDATA[A few months ago I broke down and joined Twitter. Pretty much the only reason is that I wanted to learn how to integrate Twitter into PHP web applications. Here&#8217;s what I found:
Twitter has a URL http://www.twitter.com/statuses/update.xml where you can POST a twitter update. The following HTML form will update your twitter status after asking [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago I broke down and joined <a title="Twitter: Tom Reitz" href="http://twitter.com/t0mreitz" target="_blank">Twitter</a>. Pretty much the only reason is that I wanted to learn how to integrate Twitter into PHP web applications. Here&#8217;s what I found:</p>
<p>Twitter has a URL <a title="Twitter status update" href="http://www.twitter.com/statuses/update.xml" target="_blank">http://www.twitter.com/statuses/update.xml</a> where you can POST a twitter update. The following HTML form will update your twitter status after asking you for your username and password:</p>
<pre style="padding-left: 30px;">&lt;form action="http://twitter.com/statuses/update.xml" method="POST"&gt;
	&lt;input type="text" name="status" /&gt;
	&lt;input type="submit" value=""Tweet!" /&gt;
&lt;/form&gt;</pre>
<p>This is cool, but it would be nice to circumvent the password protection in a web application where you probably already have a user logged in and validated? Fortunately this is possible using HTTP headers: (please make sure you read my SECURITY NOTE below)</p>
<pre style="padding-left: 30px;">&lt;form action='twitter.php' method='post'&gt;
	&lt;input type='text' name='status' /&gt;
	&lt;input type='submit' value='tweet' /&gt;
&lt;/form&gt;
&lt;?php
	if($_POST['status']!="") {

		$data = "status=".stripslashes($_POST['status']);
		$fp = fsockopen("www.twitter.com", 80);
		$user = "twitter_username";
		$pass = "twitter_password";

		fputs($fp, "POST /statuses/update.xml HTTP/1.1\r\n");
		fputs($fp, "Host: www.twitter.com\r\n");
		fputs($fp, "Referer: None\r\n");
		fputs($fp, "Authorization: Basic ".
			base64_encode($user.":".$pass)."\r\n");
		fputs($fp, "Content-type: ".
			"application/x-www-form-urlencoded\r\n");
		fputs($fp, "Content-length: ". strlen($data) ."\r\n");
		fputs($fp, "Connection: close\r\n\r\n");
		fputs($fp, $data);

		while(!feof($fp))$str .= fgets($fp, 128);
		if(!strstr(" OK ",$str))
			echo "There was a problem posting your twitter update.";
		else echo "twitter update posted successfully!";
	}
?&gt;</pre>
<h3>SECURITY NOTE:</h3>
<p>Please notice that the code above sends the username and password hash <em>unencrypted</em> over a plaintext HTTP pipe. The password hash is thus vulnerable to rainbow table attacks.</p>
<p>A better solution uses HTTPS with <a title="cURL in PHP" href="http://us.php.net/curl" target="_blank">cURL</a>. This way, the username &amp; password hash info don&#8217;t have to be sent plaintext:</p>
<pre style="padding-left: 30px;">&lt;form action='twitter.php' method='post'&gt;
	&lt;input type='text' name='status' /&gt; &lt;input type='submit' value='tweet' /&gt;
&lt;/form&gt;
&lt;?php
	if($_POST['status']!="") {
		$url = "https://twitter.com/statuses/update.xml";
		$user = "twitter_username";
		$pass = "twitter_password";

		$ch = curl_init();
		curl_setopt($ch, CURLOPT_URL, $url);
		curl_setopt($ch, CURLOPT_POST, true);
		curl_setopt($ch, CURLOPT_HEADER, true);
		curl_setopt($ch, CURLOPT_USERPWD, $user.":".$pass);
		curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
		curl_setopt($ch, CURLOPT_POSTFIELDS,
			"status=".stripslashes($_POST['status']));

		ob_start();
		curl_exec($ch);
		$str = ob_get_contents();
		ob_end_clean();
		curl_close($ch);

		if($str=="" || strstr($str,"&lt;error&gt;"))
			echo "There was a problem posting your twitter update.";
		else echo "twitter update posted successfully!";
	}
?&gt;</pre>
<p>Since I&#8217;ve started using twitter I&#8217;ve found that it&#8217;s very useful for companies and organizations that want to get messages out to lots of people quickly. You can even get twitter updates by phone using SMS!</p>
<p>Happy tweeting!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tom-reitz.com%2F2009%2F06%2F16%2Ftwitter-from-php%2F&amp;linkname=Twitter%20from%20PHP"><img src="/wp-content/themes/organic-theme/img/share_save.gif" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.tom-reitz.com/2009/06/16/twitter-from-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Graduation!</title>
		<link>http://www.tom-reitz.com/2009/05/02/graduation/</link>
		<comments>http://www.tom-reitz.com/2009/05/02/graduation/#comments</comments>
		<pubDate>Sun, 03 May 2009 03:51:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.tom-reitz.com/?p=138</guid>
		<description><![CDATA[[ May 12, 2009; ] Finally, almost done with school. Start the countdown, I'm graduating from UW-Madison! My last exam is on May 12, so I count that I graduate at noon that day.

Afterward I'll be:

	Moving to a house on the West side of Madison
	Working full time with my web development company
	Hopefully having a bit more time to post on [...]]]></description>
			<content:encoded><![CDATA[<table class="ec3_schedule"><tr><td colspan="3">May 12, 2009</td></tr></table><p>Finally, almost done with school. Start the countdown, I&#8217;m graduating from <a title="UW-Madison" href="http://www.wisc.edu" target="_blank">UW-Madison</a>! My last exam is on May 12, so I count that I graduate at noon that day.</p>
<p>Afterward I&#8217;ll be:</p>
<ul>
<li>Moving to a house on the West side of Madison</li>
<li>Working full time with my <a title="Reitz Internet Technologies" href="http://www.reitzinternet.com" target="_blank">web development company</a></li>
<li>Hopefully having a bit more time to post on <a title="Blog | Tom Reitz" href="http://www.tom-reitz.com/page/1/" target="_self">my blog</a>!</li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tom-reitz.com%2F2009%2F05%2F02%2Fgraduation%2F&amp;linkname=Graduation%21"><img src="/wp-content/themes/organic-theme/img/share_save.gif" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.tom-reitz.com/2009/05/02/graduation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP ICO to PNG conversion</title>
		<link>http://www.tom-reitz.com/2009/02/17/php-ico-to-png-conversion/</link>
		<comments>http://www.tom-reitz.com/2009/02/17/php-ico-to-png-conversion/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 04:24:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[ico]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[rgb]]></category>

		<guid isPermaLink="false">http://www.tom-reitz.com/?p=119</guid>
		<description><![CDATA[A few posts ago I wrote about using a PHP class to convert an ICO image to a PNG (or GIF or JPG). I just discovered a bug in the class.
I ran into a problem where some red and orange ICO images turned blue during the conversion. Reading this forum post made me realize that [...]]]></description>
			<content:encoded><![CDATA[<p><a title="ICO images in FaceBook profile boxes" href="/2009/02/09/ico-images-in-facebook-profile-boxes/" target="_self">A few posts</a> ago I wrote about using a PHP class to convert an ICO image to a PNG (or GIF or JPG). I just discovered a bug in the class.</p>
<p>I ran into a problem where some red and orange ICO images turned blue during the conversion. Reading <a title="Saving images from Flash using PHP - Colour problem!" href="http://www.flashmove.com/forum/archive/index.php/t-29133.html" target="_blank">this forum post</a> made me realize that the red and blue values were switched somewhere in <a title="PHP ICO Class" href="/wp-content/uploads/2009/02/classicophp.zip" target="_self">class.ico.php</a>. With some experimentation I found it:</p>
<p>In class.ico.php, lines 264-267 need to be changed from</p>
<pre style="font-size: 11px; width: 520px;">$c[$i] = $this-&gt;AllocateColor($im, $this-&gt;formats[$index]['colors'][$i]['red'],
         $this-&gt;formats[$index]['colors'][$i]['green'],
         $this-&gt;formats[$index]['colors'][$i]['blue'],
         round($this-&gt;formats[$index]['colors'][$i]['reserved'] / 255 * 127));</pre>
<p>to</p>
<pre style="font-size: 11px; width: 520px;">$c[$i] = $this-&gt;AllocateColor($im, $this-&gt;formats[$index]['colors'][$i]['blue'],
         $this-&gt;formats[$index]['colors'][$i]['green'],
         $this-&gt;formats[$index]['colors'][$i]['red'],
         round($this-&gt;formats[$index]['colors'][$i]['reserved'] / 255 * 127));</pre>
<p>(Note that the blue and red values are indeed switched.) After changing this, it works like a charm for me.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tom-reitz.com%2F2009%2F02%2F17%2Fphp-ico-to-png-conversion%2F&amp;linkname=PHP%20ICO%20to%20PNG%20conversion"><img src="/wp-content/themes/organic-theme/img/share_save.gif" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.tom-reitz.com/2009/02/17/php-ico-to-png-conversion/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Facebook profile box tips</title>
		<link>http://www.tom-reitz.com/2009/02/17/facebook-profile-box-tips/</link>
		<comments>http://www.tom-reitz.com/2009/02/17/facebook-profile-box-tips/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 13:13:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[profile]]></category>

		<guid isPermaLink="false">http://www.tom-reitz.com/?p=105</guid>
		<description><![CDATA[As mentioned in my previous post, I&#8217;ve been finishing up a facebook application, My Sites. Now that it&#8217;s done, I thought I&#8217;d post a few tips on how to add profile boxes to your facebook application, since I found it maddeningly complicated.
For the non-facebook-savy, a profile box is a small box that applications can add to [...]]]></description>
			<content:encoded><![CDATA[<p>As mentioned in my <a title="ICO images in FaceBook profile boxes" href="/2009/02/09/ico-images-in-facebook-profile-boxes/" target="_self">previous post</a>, I&#8217;ve been finishing up a <a title="FaceBook" href="http://www.facebook.com" target="_blank">facebook</a> application, <a title="FaceBook: My Sites" href="http://apps.facebook.com/my_sites/" target="_blank">My Sites</a>. Now that it&#8217;s done, I thought I&#8217;d post a few tips on how to add profile boxes to your facebook application, since I found it maddeningly complicated.</p>
<p>For the non-facebook-savy, a profile box is a small box that applications can add to your profile&#8217;s &#8220;wall&#8221; or &#8220;boxes&#8221; tabs. They&#8217;re meant to provide a quick glimpse of what&#8217;s happening with the application.</p>
<p>I&#8217;m assuming that you keep a database of Facebook users, and you want to display something about them in the profile box.</p>
<p>The basic code for adding a profile box is below, annotated with copious comments. This is in PHP code, you can do it in other languages, but it&#8217;s what I use. Pop this code into a daily <a title="Wikipedia: Cron" href="http://en.wikipedia.org/wiki/Cron" target="_blank">cron</a> for example, and you&#8217;re good to go.</p>
<blockquote>
<pre style="font-size:11px;">&lt;?php
// This code connects to the facebook API.
@require_once 'facebook-platform/php/facebook.php';
$appapikey = 'facebook app api key';
$appsecret = 'facebook app api secret';
$facebook = new Facebook($appapikey, $appsecret);

// This code connects to your own database.
$BASEURL = "http://example.com/path/to/facebook/app";
$connection = @mysql_connect("server","username","password");
if(!$connection)die("Can't connect to the database at this time.");
$res = @mysql_select_db("database");
if(!$res)die("Site database doesn't seem to exist.");

// This code cycles through each user in the database
$sql="SELECT * FROM users";
$data=@mysql_query($sql);
while($user=mysql_fetch_assoc($data)) {
     // You can, of course, query your database to build these strings
     $WideBox = "Whatever you want a profile box on the 'boxes' tab to say.";
     $MobileBox = "Whatever you want a profile box accessed by a mobile device to say.";
     $NarrowBox = "Whatever you want a profile box on the 'wall' tab to say.";

     // This is the API call, it sets the user's profile box content:
     $facebook-&gt;api_client-&gt;profile_setFBML(
          NULL,        // This is the markup, set to NULL for 'FBML'
          $user['id'],  // ID number of the user whose profile box you want to set
          $WideBox,    // Wide box content for 'boxes' tab
          NULL,        // Deprecated, should always be NULL
          $MobileBox,  // Box content for mobile devices
          $NarrowBox   // Narrow box content for 'wall' tab
     );
}
// Clean up the connection
@mysql_close($connection);
?&gt;</pre>
</blockquote>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tom-reitz.com%2F2009%2F02%2F17%2Ffacebook-profile-box-tips%2F&amp;linkname=Facebook%20profile%20box%20tips"><img src="/wp-content/themes/organic-theme/img/share_save.gif" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.tom-reitz.com/2009/02/17/facebook-profile-box-tips/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>ICO images in FaceBook profile boxes</title>
		<link>http://www.tom-reitz.com/2009/02/09/ico-images-in-facebook-profile-boxes/</link>
		<comments>http://www.tom-reitz.com/2009/02/09/ico-images-in-facebook-profile-boxes/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 02:54:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[gif]]></category>
		<category><![CDATA[ico]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[jpg]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[profile]]></category>

		<guid isPermaLink="false">http://www.tom-reitz.com/?p=42</guid>
		<description><![CDATA[So I&#8217;ve been developing a FaceBook application, My Sites. It let&#8217;s you bookmark websites you like and share them with your friends.
The Problem
When a FaceBook application tries to add HTML to someone&#8217;s profile box, it can add images, but only in JPG, GIF, or PNG formats. For most uses this is fine, but I needed to add a favicon next [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been developing a FaceBook application, <a title="FaceBook: My Sites" href="http://apps.facebook.com/my_sites/" target="_blank">My Sites</a>. It let&#8217;s you bookmark websites you like and share them with your friends.</p>
<h3>The Problem</h3>
<p>When a FaceBook application tries to add HTML to someone&#8217;s profile box, it can add images, <em>but only in JPG, GIF, or PNG formats</em>. For most uses this is fine, but I needed to add a favicon next to each website in a list, and ICO format isn&#8217;t allowed.</p>
<h3>The Solution</h3>
<p>Using a free php class that can import ICO images to a GD image resource, I converted the favicons to PNGs. Now FaceBook is all happy. Download a ZIP of the icon class <a title="Download ICO PHP Class" href="http://www.tom-reitz.com/wp-content/uploads/2009/02/classicophp.zip" target="_self">here</a>, or directly from <a title="PHPclasses.org" href="http://www.phpclasses.org/browse/file/9705.html" target="_blank">PHPclasses.org</a>.</p>
<p>[<strong>EDIT</strong>: please see my post on the <a title="PHP ICO to PNG conversion" href="/2009/02/17/php-ico-to-png-conversion/" target="_self"><strong>important bug fix</strong></a>]</p>
<h3>The Code</h3>
<p>Here&#8217;s how you use the class:</p>
<blockquote>
<pre><span style="font-size: small;">
&lt;?php
error_reporting(0);
require("ico.class.php");
$f = "http://www.google.com/favicon.ico";
$i = new Ico($f);
if(!($r=$i-&gt;GetIcon(0))) die("Could not load ICO.");
else {
          header("Content-Type: image/png");
          imagepng($r);
}
?&gt;
</span></pre>
</blockquote>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tom-reitz.com%2F2009%2F02%2F09%2Fico-images-in-facebook-profile-boxes%2F&amp;linkname=ICO%20images%20in%20FaceBook%20profile%20boxes"><img src="/wp-content/themes/organic-theme/img/share_save.gif" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.tom-reitz.com/2009/02/09/ico-images-in-facebook-profile-boxes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blog</title>
		<link>http://www.tom-reitz.com/2009/02/06/new-blog/</link>
		<comments>http://www.tom-reitz.com/2009/02/06/new-blog/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 13:23:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=1</guid>
		<description><![CDATA[This is my new blog. I&#8217;ll be posting here periodically, mostly on random tech topics. Gadgets and articles I find interesting, solutions to web development problems I encounter, reviews, how-tos, and the like. Occasionally I may post something totally unrelated but I&#8217;ll try not to  .
Thanks for visiting. Please stop by often to check out my blog, [...]]]></description>
			<content:encoded><![CDATA[<p>This is my new blog. I&#8217;ll be posting here periodically, mostly on random tech topics. Gadgets and articles I find interesting, solutions to web development problems I encounter, reviews, how-tos, and the like. Occasionally I may post something totally unrelated but I&#8217;ll try not to <img src='http://www.tom-reitz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="New Blog" /> .</p>
<p>Thanks for visiting. Please stop by often to check out my blog, or keep up via <a title="RSS Blog Feed" href="http://www.tom-reitz.com/feed/" target="_self">RSS</a>!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.tom-reitz.com%2F2009%2F02%2F06%2Fnew-blog%2F&amp;linkname=New%20Blog"><img src="/wp-content/themes/organic-theme/img/share_save.gif" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.tom-reitz.com/2009/02/06/new-blog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
