<?xml version="1.0" encoding="utf-8"?>
            <rss version="2.0" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:georss="http://www.georss.org/georss">
                <channel>
                    <title>TIGblogs - Josh's TIGBlog</title> 
                    <link>http://betzster.tigblog.org/</link> 
                    <description>What's on the minds of young leaders from around the globe?</description> 
                    <language>en-us</language> 
             
                <item> 
                    <title>Wisconsin Hackathon Winners!</title> 
                    <link>http://betzster.tigblog.org/post/5002961</link> 
                    <description><![CDATA[<p><span><a href="http://joshbetz.com/2011/10/wisconsin-hackathon-winners/"><img src="http://img.youtube.com/vi/xlMVoh5FqFo/2.jpg" alt="" /></a></span></p>]]></description> 
					<pubDate>Mon, 03 Oct 2011 04:10:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/5002961</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Dsgn365 Podcast Launch</title> 
                    <link>http://betzster.tigblog.org/post/4945209</link> 
                    <description><![CDATA[<p>We launched the dsgn365 podcast this week. Check out the introductory episode and make sure to subscribe in iTunes.</p>]]></description> 
					<pubDate>Thu, 15 Sep 2011 09:09:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/4945209</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Forward to development dir, mod_rewrite</title> 
                    <link>http://betzster.tigblog.org/post/4851897</link> 
                    <description><![CDATA[<p>Let#8217;s say you have a new web project you#8217;re working on. Sure, you could setup a web server on your local machine and develop locally. For some reason you don#8217;t want to do that though. Anyway, with this setup we#8217;re going to assume you have some kind of landing page at the URL #8211; why not? And you have a development directory <code>dev</code>. Now, as things get more complicated with this project, it would be nice if you could just point your browser at the root of the domain instead of a development directory. After all, eventually that#8217;s where it#8217;s going to live. Luckily, the solutions lies in <code>.htaccess</code>.</p><br />
<br />
<pre><code>RewriteEngine on<br />
RewriteCond %{REMOTE_ADDR} ^12.345.678.90<br />
RewriteRule (.*) /dev/$1 [P,L]<br />
</code></pre><br />
<br />
<p>Assuming your IP address is 12.345.678.90, this will forward the root of the domain to the /dev/ directory and your browser won#8217;t know the difference. P means this is a proxy, so the URL won#8217;t change. R would be a redirect which reloads the page at the URL #8211; <code>/dev/</code> in this case.</p><br />
<br />
<p>Since anyone could potentially spoof their <code>REMOTE_ADDR</code>, security is up to you.</p><br />
<br />
<p><strong>Note:</strong> You#8217;ll need mod_rewrite for apache installed for this to work.</p>]]></description> 
					<pubDate>Sat, 25 Jun 2011 06:06:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/4851897</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Todo.txt to Omnifocus</title> 
                    <link>http://betzster.tigblog.org/post/4554229</link> 
                    <description><![CDATA[<p>For a long time now, I#8217;ve been trying to figure out the best way to get stuff into my todo list on my Mac from my Android phone. I should say that I belong to the crazy group that uses OmniFocus, which is obviously a Mac app. They have wonderful iPhone and iPad apps, but I don#8217;t have an iPhone. Sure I could carry an iPod touch around with me everywhere I go and for the most part I do, but my HTC Hero is with me 24/7.</p><br />
<br />
<p>This may not be obvious to everyone, but the best todo list app for Android is <a href="https://market.android.com/details?id%3Dcom.todotxt.todotxttouch">Todo.txt Touch</a> by <a href="http://smarterware.org/7227/todo-txt-touch-now-in-the-android-market">Gina Trapani</a>. This thing almost made me drop OmniFocus, but I really like what I#8217;ve got going in OmniFocus so instead I#8217;m using Todo.txt Touch as input.</p><br />
<br />
<p>I#8217;ve written an AppleScript that will look at my todo.txt file stored in my Dropbox and send everything over to OminFocus:</p><br />
<br />
<pre><code>tell application "Finder"<br />
    -- readFile<br />
    set TodoTXT to "lt;Path to todo.txtgt;"<br />
    set foo to (open for access TodoTXT with write permission)<br />
    set txt to (read foo for (get eof foo))<br />
    set eof foo to 0<br />
    close access foo<br />
<br />
    set Names to paragraphs of txt<br />
    repeat with nextLine in Names<br />
        if length of nextLine is greater than 0 then<br />
<br />
            tell application "OmniFocus"<br />
                set theDoc to first document<br />
<br />
                tell theDoc<br />
                    make new inbox task with properties {name:nextLine}<br />
                end tell<br />
            end tell<br />
<br />
        end if<br />
    end repeat<br />
end tell<br />
</code></pre><br />
<br />
<p>Beware, this is my first iteration of this script. That doesn#8217;t mean I#8217;m promising future versions. I#8217;m only using the Android app as input at this point. It will import all of your todos to the inbox and then blank the file.</p><br />
<br />
<h1>Running it</h1><br />
<br />
<p>First, Hazel is setup to watch the folder in my Dropbox with a rule that watches for the <em>Created Date</em> to be the same as the <em>Modified Date</em>. This basically means that the file is brand new. It might not be obvious at first why this works. Basically, when the todo.txt file syncs from Dropbox it is replaced with a new version, thus creating a new file in place of the one that was there. When the script then goes and updates the file, either by blanking it or, maybe in the future, updating it with todos from Omnifocus, it is modified locally and not recreated so the two different dates would be different.</p><br />
<br />
<p>The other way I can run the script is from within OmniFocus itself. The script lives in <code>~/Library/Scripts/Applications/OmniFocus/</code>, which let#8217;s you add it while customizing the menu.</p><br />
<br />
<h1>Feedback</h1><br />
<br />
<p>If you find this useful, let me know. If you go on to modify it and make it even more useful than it already is, I#8217;d love to hear about that too.</p>]]></description> 
					<pubDate>Tue, 05 Apr 2011 10:04:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/4554229</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>New Yearrsquo;s Resolutions</title> 
                    <link>http://betzster.tigblog.org/post/3645921</link> 
                    <description><![CDATA[<p>Irsquo;ve never done this before, but I think New Yearrsquo;s resolutions might not be such a bad idea. And if Irsquo;m going to set goals for the year, I might as well write them somewhere so I donrsquo;t forget what they are. So these, in no special order are my New Yearrsquo;s resolutions for 2011.</p><br />
<ul><br />
<li><strong>Project 365</strong><br /><br />
I want to take a photo everyday for a year. This should be a lot easier now that I can take pictures from my phone and post them straight to the web.</li><br />
<li><strong>Run more</strong><br /><br />
Since high school Irsquo;ve been running on and off (more on when the weather is good), but I want to get more consistent. I think mornings before class would be the best time.</li><br />
<li><strong>Update the Portfolio</strong><br /><br />
My portfolio on the site hasnrsquo;t changed in the past year, which is partly because I havenrsquo;t done a ton of work, but more because I just havenrsquo;t taken the time to keep it up-to-date. I want to get it up to date early this year and then keep up with it.</li><br />
<li><strong>Start something new</strong><br /><br />
I love starting new projects and I want to  something new. Irsquo;ve got a couple of ideas for websites, but they need some more thinking before I turn them into something really cool.</li><br />
<li><strong>Write more amp; better</strong><br /><br />
There was more stuff I couldrsquo;ve written here, but didnrsquo;t take the time to do it. At the same stuff I couldrsquo;ve taken more time on some of the stuff I wrote here. Itrsquo;s not all bad, but it could always get better.<span></span></li><br />
<li><strong>Read more<br /><br />
</strong>I got a Kindle for Christmas and it has been great. Irsquo;ve got some good books already and Irsquo;d like to keep the reading trend going in 2011.</li><br />
<li><strong>Crush it</strong><br /><br />
I started to get involved in some more online communities in 2010 and hopefully we can take that to another level in 2011. Maybe a new project that has something to do with this. Either way, like <a href="http://twitter.com/garyvee/status/20999506862542848">Garyvee</a> says, I want to ldquo;laugh at the 2010 version of merdquo;.</li><br />
</ul><br />
<p><em>This list may get longer throughout the month, but I doubt it.</em></p>]]></description> 
					<pubDate>Sat, 01 Jan 2011 11:01:00 EST</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/3645921</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>New Year’s Resolutions</title> 
                    <link>http://betzster.tigblog.org/post/4406949</link> 
                    <description><![CDATA[<p>I#8217;ve never done this before, but I think New Year#8217;s resolutions might not be such a bad idea. And if I#8217;m going to set goals for the year, I might as well write them somewhere so I don#8217;t forget what they are. So these, in no special order are my New Year#8217;s resolutions for 2011.<br />
<ul><br />
    <li><strong>Project 365</strong><br />
I want to take a photo everyday for a year. This should be a lot easier now that I can take pictures from my phone and post them straight to the web.</li><br />
    <li><strong>Run more</strong><br />
Since high school I#8217;ve been running on and off (more on when the weather is good), but I want to get more consistent. I think mornings before class would be the best time.</li><br />
    <li><strong>Update the Portfolio</strong><br />
My portfolio on the site hasn#8217;t changed in the past year, which is partly because I haven#8217;t done a ton of work, but more because I just haven#8217;t taken the time to keep it up-to-date. I want to get it up to date early this year and then keep up with it.</li><br />
    <li><strong>Start something new</strong><br />
I love starting new projects and I want to  something new. I#8217;ve got a couple of ideas for websites, but they need some more thinking before I turn them into something really cool.</li><br />
    <li><strong>Write more amp; better</strong><br />
There was more stuff I could#8217;ve written here, but didn#8217;t take the time to do it. At the same stuff I could#8217;ve taken more time on some of the stuff I wrote here. It#8217;s not all bad, but it could always get better.<span></span></li><br />
    <li><strong>Read more<br />
</strong>I got a Kindle for Christmas and it has been great. I#8217;ve got some good books already and I#8217;d like to keep the reading trend going in 2011.</li><br />
    <li><strong>Crush it</strong><br />
I started to get involved in some more online communities in 2010 and hopefully we can take that to another level in 2011. Maybe a new project that has something to do with this. Either way, like <a href="http://twitter.com/garyvee/status/20999506862542848">Garyvee</a> says, I want to #8220;laugh at the 2010 version of me#8221;.</li><br />
</ul><br />
<em>This list may get longer throughout the month, but I doubt it.</em></p>]]></description> 
					<pubDate>Sat, 01 Jan 2011 11:01:00 EST</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/4406949</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Poor Post Purge</title> 
                    <link>http://betzster.tigblog.org/post/3010069</link> 
                    <description><![CDATA[<p>In the rash-executive-decisions department, Irsquo;ve decided to backup everything before Christmas 2008 and move it to <a href="http://joshbetz.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=am9zaGJldHoubmV0">joshbetz.net</a>. Therersquo;s some really bad stuff from the early days in there. Pretty much all of it to be honest. Irsquo;ve always kind of resented those years on the blog, but have alway felt guilty about completely deleting them mdash; until now. I think this is actually somewhat of a happy medium though. They donrsquo;t have to annoy me on this site, but theyrsquo;re still on the internet somewhere.</p> <img src="http://joshbetz.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1post_id=2337" width="1" height="1" />]]></description> 
					<pubDate>Fri, 22 Oct 2010 12:10:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/3010069</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Josh 2.0</title> 
                    <link>http://betzster.tigblog.org/post/2275627</link> 
                    <description><![CDATA[<p>Irsquo;m a sophomore at UW ndash; Madison. Irsquo;ll be applying to the Wisconsin School of Business at the end of the semester and looking into what it takes to major in Computer Science in the mean time. If I get into the Business school, Irsquo;ll probably double major in CS and Information Systems. Otherwise, itrsquo;ll just be Computer Science for now.</p><p>Irsquo;m a freelance web designer/developer that hasnrsquo;t had a ton of work recently. Irsquo;m not particularly upset about that right now, as school is starting and Irsquo;m getting back into the student life mdash; class, homework, sleep (working web stuffs into the mix in as we get these first weeks rolling). Irsquo;ve done a few things that Irsquo;m pretty proud of, but my best work always seems to be the personal stuff mdash; when it really means something to me. Irsquo;ve actually been thinking about that a lot lately; trying to use that as a way to make everything I do better, but Irsquo;ll talk about that another time.</p><p>Irsquo;ve finally started <a<br />
href="http://joshbetz.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2pvc2hiZXR6LnR2">JoshBetz.TV</a> as a podcast, which only means itrsquo;s listed in iTunes. Right now itrsquo;s a sad excuse for a podcast and shouldnrsquo;t really be called a website at all, but Irsquo;ve got some stuff in the works. The only live video is the one about setting up a LAMP server.</p><h3>Looking Forward</h3><p>Irsquo;ve got some goals for the next year.</p><ul><li>Establish a real podcast with joshbetz.tv</li><li>Establish a base of clients to work with</li><li>Take more photos</li><li>Better Flickr integration on here</li><li>Grow this list</li></ul> <img<br />
src="http://joshbetz.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1post_id=2300" width="1" height="1" />]]></description> 
					<pubDate>Mon, 06 Sep 2010 12:09:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/2275627</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>My URL Shortener</title> 
                    <link>http://betzster.tigblog.org/post/1877614</link> 
                    <description><![CDATA[<p>For some reason Irsquo;ve wanted to create my own URL shortener just for my stuff for some time now. Itrsquo;s finally here: the jbe.me URL shortener. Now, Irsquo;m the only one that can use the service; itrsquo;s only for my links, but when you see a jbe.me URL you at least know it will link to something Irsquo;ve done.</p><p>It was super simple to setup.</p><p>First of all, I had to buy the jbe.me domain name ( think J B dot ME ). Unfortunatly jb.me is not a valid domain, Irsquo;m sure someone much more important than I will grab it. Anyway, jbe.me was the next best thing.</p><p>One I had the domain I installed the <a<br />
href="http://yourls.org/">YOURLS (You Own URL Shortener)</a> script at that location. Itrsquo;s a series of scripts that talks to a MySQL database with some pretty cool bookmarklets and an API. The API was key for the next step: the Twitter Tools extension. As many people know, I use twitter tools to post new blog entries to my twitter profile. Since I want to get as much of my URL-shortening as possible done through the jbe.me shortener now I needed to get twitter tools to use the new system. Twitter Tools has itrsquo;s own api that will let you create a shortener for any service that you could think of with some hooks that it install for WordPress. Then I threw a plugin together using the YOURLS API and now when I publish a post, Twitter Tools uses the jbe.me shortener to shorten the URLs. Pretty Cool.</p><p><span<br />
id="more-2142"></span></p><p>The plugin isnrsquo;t public, only because I thought that there wouldnrsquo;t really be anyone else who would need something like this. YOURLS does have itrsquo;s own plugin, but I donrsquo;t think it integrates with Twitter Tools and that was a deal breaker for me. If therersquo;s anyone else that would like this plugin just let me know and Irsquo;ll polish it up and put it in the plugin directory.</p><p>As a final step I decided to forward <a<br />
href="http://jbe.me">http://jbe.me</a> to <a<br />
href="http://joshbetz.com">http://joshbetz.com</a> with a simple PHP script:</p><pre><br />
header(quot;Location: http://joshbetz.comquot;);<br />
</pre><p>Irsquo;m sure therersquo;s a better way to do this, but Irsquo;ve run some test and it seems to be performing decently.</p><p>The only drawback that I have seen on this whole process is the speed of my shared hosting account. Irsquo;m pretty sure itrsquo;s the actual bandwidth and not a MySQL issue. As always, Irsquo;ll keep trying to increase the performance of this.</p>]]></description> 
					<pubDate>Tue, 02 Mar 2010 12:03:00 EST</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/1877614</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Anything Slider: Go on ldquo;Gordquo;</title> 
                    <link>http://betzster.tigblog.org/post/1853227</link> 
                    <description><![CDATA[<p>Last week when I was in the <a<br />
href="http://css-tricks.com/forums/">CSS-Tricks forums</a>, somebody wanted to modify the functionality of <a<br />
href="http://chriscoyier.net/">Chris Coyier</a>rsquo;s <a<br />
href="http://css-tricks.com/anythingslider-jquery-plugin/">anythingSlider</a>. Not a huge change, he just wanted to make the slider advance to the next panel when you click ldquo;Gordquo;. Made sense to me. By the time you click ldquo;Gordquo;, yoursquo;re done looking at that panel and are ready for the next one. If it doesnrsquo;t advance until after whatever delay yoursquo;ve setup, it could be confusing.</p><p>Basically what we want to do is make the slider advance to the next panel when we click go, which is the same as advancing to the next panel after we click the start/stop button if the slider ends up playing. It sounds complicated, but it will make more sense when we look at the code.</p><pre"brush: jscript; first-line: 212; highlight: [214];"><br />
base.$startStop.click(function(e){<br />
	base.startStop(!base.playing);<br />
	if(base.playing) base.goForward(true);<br />
	e.preventDefault();<br />
});<br />
</pre><p><span<br />
id="more-2083"></span></p><p>What Irsquo;ve done is find the place where he sets up the Start/Stop button that I mentioned above. Since hersquo;s already go something going on if the button is clicked I used that to add our line that says to advance one panel. It took me a second to figure out that we wanted to slider to be playing instead of paused. The reason for this is that wersquo;re inside the click function, which means wersquo;ve already clicked the start/stop button. This probably seems pretty obvious to most people, but I was coming at this from a different perspective I guess.</p><p>Anyway, this is what Irsquo;m using on this site now. I really like the functionality so far. Itrsquo;s nice to see the slider actually advance when you click go instead of staying on the same slide for another couple of seconds.</p>]]></description> 
					<pubDate>Tue, 09 Feb 2010 08:02:00 EST</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/1853227</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Youtube, Vimeo Showing in HTML5</title> 
                    <link>http://betzster.tigblog.org/post/1852235</link> 
                    <description><![CDATA[<p>Both YouTube and Vimeo recently gave an option to watch videos in HTML5. I switched right away knowing that every time I try to play an HD video on YouTube, my Macbook fan spins up because of the heat caused from flash processing. On the Dell Mini I just bought, I couldnrsquo;t even watch HD videos on youtube because HD video in flash was too much for the atom processor.</p><p>When I saw that YouTube and Vimeo were offering HTML5 instead of flash video, I immediately tested both of the above mentioned issues. The fan in the macbook stayed quiet and the Dell Mini didnrsquo;t have any problems when I watched HD content with HTML5 video instead of flash. This is an example of the power of HTML5 video and why Apple decided to skip flash on the iPad.</p><p>The other thing that I really like about this is the fact that it pushes the HTML5 spec forward that much more. Obviously Google is involved in developing HTML5, so it shouldnrsquo;t be a surprise to see this on YouTube. Vimeo, however, is not involved mdash; at least that i know of mdash; in developing the HTML5 specification and just wants clean, efficient code. HTML5 is a good way to do that.</p><p><span<br />
id="more-2067"></span></p><p>Finally, Adam Curry recently explained on ldquo;The Cranky Geeksrdquo; that itrsquo;s going to take a long time to derail flash video because of all the money invested in technologies used for ad agencies such as pre-rolls, but I think it would be pretty easy to develop a similar system that work in HTML5.</p><p>All in all, this is good for everyone except Adobe and flash developers. Irsquo;m not so worried about the flash developers though, the good ones have the skills to be useful in more than just flash video.</p>]]></description> 
					<pubDate>Sun, 07 Feb 2010 04:02:00 EST</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/1852235</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Problems Getting WordPress Emails</title> 
                    <link>http://betzster.tigblog.org/post/1826349</link> 
                    <description><![CDATA[<p>Are you having problems getting email sent from you WordPress blog?</p><br />
<p>One of the features that I really like is being able to get emails when new comments are posted. I also use the Contact Form 7 plugin which needs to send mail.</p><br />
<h3>The Problem</h3><br />
<p>I recently switched web hosts to <a href="http://www.webfaction.com/">Webfaction</a>. Theyrsquo;ve been great mdash; what I think you should be able to expect out of shared hosting.  The only problem is that they donrsquo;t support PHPrsquo;s mail function. They claim itrsquo;s to reduce spam mdash; mail() can be used to send email defining the from address as whatever you want without having to authenticate. It can be very convenient, but itrsquo;s really not the ideal way to send mail using PHP anyway. WordPress does it because itrsquo;s pretty rare to find a server that doesnrsquo;t support it and the alternatives are too commonly uninstalled.<br /><br />
<span></span></p><br />
<h3>The Solution</h3><br />
<p>To fix this issue we need to find a way to take the email that WordPress wants to send and send them through Pearrsquo;s mail function. Pear is a PHP framework much like zend is to PHP or jQuery is to Javascript. The mail function in particular lets us send mail similar to the way the regular mail function does, but we have to authenticate through an SMTP server.</p><br />
<p>I found a couple of plugins, but decided to use <a href="http://www.callum-macdonald.com/code/wp-mail-smtp/">WP-Mail-SMTP</a>.</p><br />
<p>Since we need to authenticate, there has to be a real email address that the emails are coming from. I setup wordpress [at] mydomain because thatrsquo;s where the emails would normally come from if you didnrsquo;t have this issue. Since Irsquo;m using Google Apps for my email I used the authorrsquo;s instructions for configuring the plugin for Google Apps and it worked perfectly:</p><br />
<blockquote><p>Mailer: SMTP<br /><br />
SMTP Host: smtp.gmail.com<br /><br />
SMTP Port: 465<br /><br />
Encryption: SSL<br /><br />
Authentication: Yes<br /><br />
Username: your full gmail address<br /><br />
Password: your mail password</p></blockquote><br />
<p>Hopefully this helps. Irsquo;m sure there could be other causes to why your  mail isnrsquo;t sending, but this is what worked for me. Before you try this, try checking if your host supports PHPrsquo;s mail function. If not, this will probably fix it mdash; as long as they support Pear. If they donrsquo;t support PHPrsquo;s mail function, they most likely support Pear for the same reasons listed here.</p>]]></description> 
					<pubDate>Tue, 12 Jan 2010 12:01:00 EST</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/1826349</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Extra Space under Image Links Fix</title> 
                    <link>http://betzster.tigblog.org/post/1814855</link> 
                    <description><![CDATA[<p>Have you ever had the problem of having a little extra space under images on your website? This has been driving me crazy since I started the FancyFlickr plugin and noticed a little extra space under all of the images on my site.</p><br />
<p>The problem is that by default the bottom of images are lined up with the <em>baseline</em> of the text mdash; which means the bottom of most letters, but there is still that small space for the bottoms of letters like <em>p and q</em>.</p><br />
<p>By default <em>vertical-align</em> is set to <em>baseline</em>. All you have to do to fix the problem is set</p><br />
<pre><br />
a img { vertical-align: bottom; }<br />
</pre><br />
<p>Viola! Problem solved.</p>]]></description> 
					<pubDate>Sat, 02 Jan 2010 10:01:00 EST</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/1814855</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>WordPress login/out</title> 
                    <link>http://betzster.tigblog.org/post/1813229</link> 
                    <description><![CDATA[<p>Lately Irsquo;ve been putting a login link in the footer of my site, but itrsquo;s also nice for that to be a logout link when yoursquo;re already logged in as well as inserting a link to the site admin section. This line of code does exactly that:</p><br />
<pre><br />
lt;?php if ( is_user_logged_in() ) { echo quot;lt;a href='http://joshbetz.com/feed/quot; . get_option('siteurl') . quot;/wp-admin/'gt;Site Adminlt;/agt; |quot;; } ?gt; lt;?php wp_loginout(); ?gt;<br />
</pre>]]></description> 
					<pubDate>Wed, 30 Dec 2009 11:12:00 EST</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/1813229</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Makebelieve Help, Old Butchers, and Figuring Out Who You Are (For Now)</title> 
                    <link>http://betzster.tigblog.org/post/1332557</link> 
                    <description><![CDATA[<p>A great video that Merlin Mann did on <a href="http://www.43folders.com/2009/10/22/who-you-are" target="_blank">43 Folders</a>, talking about procrastination. I thought everyone should see it.<span></span></p><br />
<p></p><br />
<p><a href="http://vimeo.com/7192517">Makebelieve Help, Old Butchers, and Figuring Out Who You Are (For Now)</a> from <a href="http://vimeo.com/merlin">Merlin Mann</a> on <a href="http://vimeo.com">Vimeo</a>.</p>]]></description> 
					<pubDate>Sun, 01 Nov 2009 03:11:00 EST</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/1332557</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Itrsquo;s Snowing!</title> 
                    <link>http://betzster.tigblog.org/post/1141821</link> 
                    <description><![CDATA[<p>No, I know itrsquo;s not really snowing yet. Well, at least not in Madison. It is snowing on joshbetz.com though. And we have Christmas lights. Irsquo;ve been holding off on this for as long as possible, but I broke down and enabled the ldquo;Let it Snow!rdquo; plugin and went and found a script to put some christmas lights on the site. Unfortunately, the javascript running the lights interferes with the jquery for the Portfolio carousel on the homepage, so I had to disable the lights there, but theyrsquo;re on all the other pages and the snow works everywhere.</p><br />
<p><strong>Also:</strong> The <a href="http://arcticmac.home.comcast.net/~arcticmac/software/maclampsx.html">MacLampsX</a> app is activated on my macbook to give a similar feel to the desktop.</p>]]></description> 
					<pubDate>Sun, 25 Oct 2009 09:10:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/1141821</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Microsoft Browser</title> 
                    <link>http://betzster.tigblog.org/post/892209</link> 
                    <description><![CDATA[<p>Herersquo;s the browser Microsoft needs:</p><br />
<p>The first time your computer is on the internet, ldquo;Microsoft Browserrdquo; opens up with 3 tabs: Firefox, Chrome, Safari. Those are the only 3 websites that will work, and that is the only time that ldquo;Microsoft Browserrdquo; will ever work.</p><br />
<p>If you decide to forego installing a browser at that time, you lose. Donrsquo;t pass go, donrsquo;t collect $200, and donrsquo;t use the internet.</p>]]></description> 
					<pubDate>Thu, 15 Oct 2009 12:10:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/892209</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Canceling iPower</title> 
                    <link>http://betzster.tigblog.org/post/888175</link> 
                    <description><![CDATA[<p>I swore I wouldnrsquo;t do this anymore, but here it is again. This blog is becoming the lsquo;10 webhosts to stay away fromrsquo; mashup. I just had to put this up to let everyone know, if you are already stuck on iPower, yoursquo;re probably better off setting the account to cancel at the end of the term and just keep it until then, especially if you have less than a year left. They charge a $35 early termination fee. Herersquo;s the transcript from when I cancelled my account:<span></span></p><br />
<blockquote><br />
<p><span>Alfred Andrews: </span>Hi Josh. My name is Alfred, how are you today?</p><br />
<p><span>josh Betz: </span>Irsquo;m good</p><br />
<p><span>josh Betz: </span>Irsquo;m wondering how I can cancel my iPower account</p><br />
<p><span>Alfred Andrews: </span>I am sorry to hear that you wish to cancel the account.</p><br />
<p><span>Alfred Andrews: </span>Could you please let me know the reason for canceling the account?</p><br />
<p><span>josh Betz: </span>I have experienced too many issues while Irsquo;ve been with iPower.</p><br />
<p><span>josh Betz: </span>My website has gone down too many times</p><br />
<p><span>josh Betz: </span>I think itrsquo;s probably because I run a wordpress blog, because a friend of mine runs a static site on ipower and hasnrsquo;t had as many problems as I have</p><br />
<p><span>josh Betz: </span>but last week my website was down for 6 hours and I started looking for a new webhost</p><br />
<p><span>Alfred Andrews: </span>Okay.</p><br />
<p><span>Alfred Andrews: </span>I have noticed that you have already submitted the cancellation form and your account has been scheduled for deletion on August 02, 2010.</p><br />
<p><span>josh Betz: </span>Yes, but I know that I can get part of my money back if I cancel my account now. So Irsquo;d like to get whatever unused time back.</p><br />
<p><span>Alfred Andrews: </span>Okay.</p><br />
<p><span>Alfred Andrews: </span>Could you please hold on for 2-4 minutes?</p><br />
<p><span>josh Betz: </span>Yes</p><br />
<p><span>Alfred Andrews: </span>Thank you for holding.</p><br />
<p><span>Alfred Andrews: </span>I have scheduled the account for deletion on October 12, 2009.</p><br />
<p><span>josh Betz: </span>Thank you. Do you know how much money I should get refunded?</p><br />
<p><span>Alfred Andrews: </span>Could you please hold on for 2-4 minutes?</p><br />
<p><span>josh Betz: </span>Yes</p><br />
<p><span>Alfred Andrews: </span>Thank you for holding.</p><br />
<p><span>Alfred Andrews: </span>You will receive the refund of approximately $24.</p><br />
<p><span>Alfred Andrews: </span>You will receive the refund of approximately $24 after deducting the early cancellation fee of $35.</p><br />
</blockquote>]]></description> 
					<pubDate>Sun, 11 Oct 2009 06:10:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/888175</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>8th Grade Graduation</title> 
                    <link>http://betzster.tigblog.org/post/881413</link> 
                    <description><![CDATA[<p>Herersquo;s a video I made back in 2005 for my 8th grade graduation. I figured Irsquo;d put it up here for all to see.</p><br />
<p></p>]]></description> 
					<pubDate>Thu, 01 Oct 2009 11:10:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/881413</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Upgraded Macbook HDD and RAM</title> 
                    <link>http://betzster.tigblog.org/post/751473</link> 
                    <description><![CDATA[<p>I recently upgraded my macbookrsquo;s Hard drive and RAM. After skimming the Howtos for the past year, it was a very simple process, and well worth it.</p><br />
<h3>The RAM</h3><br />
<p>To start, I had to research the type of memory that my MacBook uses. There are a million websites that will give the specs on the RAM you need. I donrsquo;t recomend that you buy the ldquo;Applerdquo; memory, as itrsquo;s much more expensive than just buying regular laptop memory from newegg. Not to mention, itrsquo;s the exact same thing.</p><br />
<p>It turns out that even though Apple only recommends that you use 4GB of RAM in the white macbook, people have been able to get 6GB working, with 1 x 2GB and 1 x 4GB. When I saw this I thought about it for about a half-second and decided against it. 4GB would double my RAM, and dual channel memory works best with two identical sticks.</p><br />
<h3>The Hard Drive</h3><br />
<p>For a little less than a year now, since shortly after I got my macbook I have been looking at hard drives to replace the one that came in the system. I explored many options, including small SSD drives and large 7200RPM HDDs. In the end I decided to go with the new <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16822148374" target="_blank">500GB 7200RPM drive from Seagate</a>. I was a little worried at first that the drive would be loud or create noticeable vibration, but so far neither is true. It is also running quite cool, currently at 35 degrees Celsius after running almost all day.</p><br />
<h3>The Process</h3><br />
<p>As Irsquo;ve already mentioned, it was quite easy to install the new hardware and get working again quickly. There are a zillion tutorials online about how to do it. The first thing you need to do is check out this <a href="http://revision3.com/systm/harddriveswap" target="_blank">episode of Systm</a>, all about upgrading laptop hard drives on Macs and PCs. This one is google: <a href="http://lmgtfy.com/?q=macbook+hard+drive+upgrade" target="_blank">http://lmgtfy.com/?q=macbook+hard+drive+upgrade</a>.</p><br />
<p>Swapping the RAM is a very simple process. Take out the battery, take out 3 screws on the L-bracket, push the little switches to the other side to pop the RAM out, replace it and put it all back together.</p><br />
<p>The Hard Drive is even easier. Once you get the L-bracket out, you pull the tab on the hard dive to get it out, put the new hard drive on the tray and slide it back in. If you want to restore your documents and settings yoursquo;ll also need a 2.5Prime; hard drive enclose with USB or Firewire.</p><br />
<p>After the Hard Drive was back in I put in the OS X disks that came with the computer to install OS X. After the install I plugged in the old hard drive, now in a USB enclosure and chose the option to get documents from another hard dive on the computer. It copied everything in my home directory along with all my applications and network settings. When the computer booted up it looked like I never replaced the hard drive at all. The only thing left to do was Software Update.</p>]]></description> 
					<pubDate>Mon, 03 Aug 2009 05:08:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/751473</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>New Monitor Setup</title> 
                    <link>http://betzster.tigblog.org/post/713963</link> 
                    <description><![CDATA[<div><a href="http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00894.JPG"><img title="The New Setup" src="http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00894-200x150.jpg" alt="The new monitor setup with the hacked-together portrait stand for the 19quot;" width="200" height="150" /></a><p>The new monitor setup with the hacked-together portrait stand for the 19quot;</p></div><br />
<p>I recently got a new 24Prime; Samsung monitor/tv because the 19Prime; monitor that I was using was starting to seem small, especially since they have almost all 22Prime; monitors at work now.</p><br />
<p>Originally I was just looking at how much 22Prime;-24Prime; monitors were on newegg. When I was this monitor/tv I thought it would be great for a dorm room.</p><br />
<div><a href="http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00895.JPG"><img title="The New Setup w/ OS X" src="http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00895-200x150.jpg" alt="The new setup with OS X on the big screen" width="200" height="150" /></a><p>The new setup with OS X on the big screen</p></div><br />
<p>As you can see in the photos, I decided to go with portrait mode on the old 19Prime; Samsung that I was using, but it wasnrsquo;t as easy as it should have been. A lot of the monitors that are sold come with stands that let you flip them sideways, but mine didnrsquo;t. I put together a custom VESA stand out of some wood we had in the shed last night. So far itrsquo;s working out pretty good.</p><br />
<p><br clear="all" /></p><br />
<p><strong>Update:</strong> By popular demand, here are some pics of the stand I built.</p><br />
<br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00894.JPG' title='The New Setup'><img width="200" height="150" src="http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00894-200x150.jpg" alt="The new monitor setup with the hacked-together portrait stand for the 19quot;" title="The New Setup" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00895.JPG' title='The New Setup w/ OS X'><img width="200" height="150" src="http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00895-200x150.jpg" alt="The new setup with OS X on the big screen" title="The New Setup w/ OS X" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC008941.JPG' title='DSC00894'><img width="200" height="150" src="http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC008941-200x150.jpg" alt="" title="DSC00894" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00898.JPG' title='DSC00898'><img width="200" height="150" src="http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00898-200x150.jpg" alt="" title="DSC00898" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00899.JPG' title='DSC00899'><img width="200" height="150" src="http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00899-200x150.jpg" alt="" title="DSC00899" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00900.JPG' title='DSC00900'><img width="200" height="150" src="http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00900-200x150.jpg" alt="" title="DSC00900" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00901.JPG' title='DSC00901'><img width="200" height="150" src="http://joshbetz.com/blog/wp-content/uploads/2009/06/DSC00901-200x150.jpg" alt="" title="DSC00901" /></a>]]></description> 
					<pubDate>Tue, 23 Jun 2009 07:06:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/713963</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Dvorak Theme for Release</title> 
                    <link>http://betzster.tigblog.org/post/703465</link> 
                    <description><![CDATA[<p>Well, here is the Dvorak theme as promised:</p><br />
<p><a href="http://joshbetz.com/fordownload/dvorak.zip">Dvorak 1.0</a> for WordPress.</p><br />
<p>This theme is provided as is, and will probably not be upgraded in the future, but it works with current versions, so go for it.</p><br />
<p>If you want to take it and change it, go for it and let me know about it. Irsquo;d like to know of anything that comes out of this. If you want to use this theme as a base for another theme you are building, also go for it. Itrsquo;s pretty basic in terms of CSS and graphics, so it should be pretty easy to wade through the code.</p><br />
<p>If you have any questions, email me. Why not?</p>]]></description> 
					<pubDate>Wed, 17 Jun 2009 10:06:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/703465</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Safari 4</title> 
                    <link>http://betzster.tigblog.org/post/692373</link> 
                    <description><![CDATA[<p>Safari 4 was released today at WWDC and Irsquo;m pretty happy with it. There were more user interface changes than I thought Irsquo;d see between the beta and the final product. Not that they changed a ton of stuff, but I expected them to stick with the UI that they had in Safari 4 beta and just fix the bugs.</p><br />
<p>There were only a couple of things that I noticed that were different.</p><br />
<ol><br />
<li>The tabs are back to where they should be.<br /><br />
While I liked the way the tabs functioned at the top of the browser (and the way they looked), itrsquo;s just more practical to have them as close to the content as possible. Putting the tabs on top of the bookmarks bar and address bar just means that you have to move your mouse that much farther, and that can be a problem, especially if your pushing the cursor around with a trackpad.</li><br />
<li>Therersquo;s a ldquo;new tabrdquo; button for the toolbar.<br /><br />
This may have been included in the beta, I canrsquo;t remember if I looked for it or not, but Irsquo;ve been waiting for this for a long time. Sometimes you just donrsquo;t want to press Command+T.</li><br />
<li>The ldquo;loading barrdquo;.<br /><br />
Smaller changes - the right side of the address bar now shows a ldquo;loadingrdquo; icon when a page is loading and fades to white if the URL extends longer than the address bar.</li><br />
</ol><br />
<p>They did take out one small thing, probably unintentionally, that I really liked. When you have multiple tabs open you can grab one of the tabs and drag it out of the current window to create a new window. You can also grab one of the tabs and drag it to another window, if you have one open, and move that tab to the new window. In the beta, since the title bar was the tab, you could grab the title bar, without extra tabs open, to another window and it would add that window to the other window as a tab. You canrsquo;t do that anymore, since the title bar is no longer a tab and it only shows the tabs when there are more than one of them.</p><br />
<p>It would be really nice if you could drag the title bar of a window with just one tab open to another window and have that get added as a tab to the new window. Maybe even let you drag the title bar from a window with more than one tab and have all the tabs in that window get added to the new window?</p><br />
<p><strong>Update:</strong> Irsquo;m pretty sure the new tab button wasnrsquo;t included in the beta, as the [+] button was always at the end of the title bar.</p>]]></description> 
					<pubDate>Mon, 08 Jun 2009 07:06:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/692373</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Charles Barkley on Twitter</title> 
                    <link>http://betzster.tigblog.org/post/689831</link> 
                    <description><![CDATA[<p>It looks like Charles Barkley isnrsquo;t a fan of Twitter. He obviously doesnrsquo;t understand how it works yet and still thinks of it as the ldquo;Irsquo;m eating a ham sandwichrdquo; service. Here are his thoughts:</p><br />
<blockquote><p>ldquo;I think if you Tweet yoursquo;re a [d***] idiot,rdquo; Barkley said. ldquo;Anyone whorsquo;s worried about what Shaquille Orsquo;Neal is doing all day is an idiot.rdquo;</p></blockquote><br />
<p>via <a href="http://sportsillustrated.cnn.com/danpatrick/">Dan Patrick.com</a>.</p>]]></description> 
					<pubDate>Fri, 05 Jun 2009 11:06:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/689831</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item> 
                <item> 
                    <title>Sample Gallery</title> 
                    <link>http://betzster.tigblog.org/post/687181</link> 
                    <description><![CDATA[<p>Sample Gallery</p><br />
<p><span></span><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/chrysanthemum.jpg' title='chrysanthemum'><img src="http://joshbetz.com/blog/wp-content/uploads/2009/06/chrysanthemum-200x150.jpg" width="200" height="150" alt="" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/desert.jpg' title='desert'><img src="http://joshbetz.com/blog/wp-content/uploads/2009/06/desert-200x150.jpg" width="200" height="150" alt="" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/hydrangeas.jpg' title='hydrangeas'><img src="http://joshbetz.com/blog/wp-content/uploads/2009/06/hydrangeas-200x150.jpg" width="200" height="150" alt="" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/jellyfish.jpg' title='jellyfish'><img src="http://joshbetz.com/blog/wp-content/uploads/2009/06/jellyfish-200x150.jpg" width="200" height="150" alt="" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/koala.jpg' title='koala'><img src="http://joshbetz.com/blog/wp-content/uploads/2009/06/koala-200x150.jpg" width="200" height="150" alt="" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/lighthouse.jpg' title='lighthouse'><img src="http://joshbetz.com/blog/wp-content/uploads/2009/06/lighthouse-200x150.jpg" width="200" height="150" alt="" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/penguins.jpg' title='penguins'><img src="http://joshbetz.com/blog/wp-content/uploads/2009/06/penguins-200x150.jpg" width="200" height="150" alt="" /></a><br />
<a href='http://joshbetz.com/blog/wp-content/uploads/2009/06/tulips.jpg' title='tulips'><img src="http://joshbetz.com/blog/wp-content/uploads/2009/06/tulips-200x150.jpg" width="200" height="150" alt="" /></a><br />
</p>]]></description> 
					<pubDate>Wed, 03 Jun 2009 06:06:00 EDT</pubDate> 
					<guid isPermaLink="true">http://betzster.tigblog.org/post/687181</guid>
					<georss:point>42.5461111 -88.1655556</georss:point><geo:Point><geo:lat>42.5461111</geo:lat><geo:long>-88.1655556</geo:long></geo:Point>
                </item>
</channel>
</rss>
