<?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>Joe Strusz</title>
	<atom:link href="http://www.joestrusz.com/main/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joestrusz.com/main</link>
	<description>Bringing High Tech to the Low Tech World.</description>
	<lastBuildDate>Thu, 27 May 2010 00:43:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Extract Image From WordPress Post</title>
		<link>http://www.joestrusz.com/main/2010/04/28/test-2/</link>
		<comments>http://www.joestrusz.com/main/2010/04/28/test-2/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 05:21:17 +0000</pubDate>
		<dc:creator>joe.strusz</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[hint]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.joestrusz.com/main/2010/04/28/test-2/</guid>
		<description><![CDATA[This will extract an image from a wordpress post. You can use it in the loop with get_content() or get_excerpt(). There are a hundred other different uses for something like this as well. Good snippet to have. // Pull first image thumbnail from post if none exist, default to a category image. // // Required: [...]]]></description>
			<content:encoded><![CDATA[<p>This will extract an image from a wordpress post.  You can use it in the loop with get_content() or get_excerpt().  There are a hundred other different uses for something like this as well.  Good snippet to have.</p>
<pre class="brush:php">
// Pull first image thumbnail from post if none exist, default to a category image.
//
// Required:
$pattern = '/&lt;img[^&gt;]+src[\\s=\'"]';
$pattern .= '+([^"\'&gt;\\s]+)/is';
// Optional:
$style = "height:50px;width:60px;margin-top:15px;";
$defaultImgURL = "http://www.yoursite.com/image/url.png";
$imgAlt = "Alt Text Here";
$imgID = "";
$imgName = "";
// If we have an Image ...
if(preg_match($pattern,get_the_content(),$match)) {
	echo "&lt;img alt=\"\" style=\"" . $style . "\" src=\"" . $match[1] . "\" /&gt;";
// If there is no img Tag ...
} else {
	echo "&lt;img alt=\"\" style=\"" . $style . "\" src=\"". $defaultImgURL  ."\" /&gt;";
}
// Thats it!</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.joestrusz.com/main/2010/04/28/test-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Update</title>
		<link>http://www.joestrusz.com/main/2010/04/26/site-update/</link>
		<comments>http://www.joestrusz.com/main/2010/04/26/site-update/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 19:26:22 +0000</pubDate>
		<dc:creator>joe.strusz</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[downtime]]></category>
		<category><![CDATA[maintenance]]></category>
		<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://www.joestrusz.com/main/?p=814</guid>
		<description><![CDATA[I have been working on a few customizations for the site. You will notice some appearance changes, and some more content. I don&#8217;t have much time lately to do a lot of the changes all at once, so you will notice them slowly appear. I have a database application in development right now, and it [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working on a few customizations for the site.  You will notice some appearance changes, and some more content.  I don&#8217;t have much time lately to do a lot of the changes all at once, so you will notice them slowly appear. I have a database application in development right now, and it takes most of my time.  </p>
<p><cite><br />
<strong>*UPDATE 4/27/2010:</strong> I have added jQuery and a few choice libraries to the load.  All are working as of this update.  As you can see these posts are now rounded, and collapsable.  I love building this WordPress Template from the ground up.  Gives me so many more design/style options.  I can&#8217;t wait till its all done though!<br />
</cite></p>
]]></content:encoded>
			<wfw:commentRss>http://www.joestrusz.com/main/2010/04/26/site-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Megahurts FRC Team #2219: Breakaway 2010</title>
		<link>http://www.joestrusz.com/main/2010/04/09/megahurts-frc-team-2219-breakaway-2010/</link>
		<comments>http://www.joestrusz.com/main/2010/04/09/megahurts-frc-team-2219-breakaway-2010/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 23:19:35 +0000</pubDate>
		<dc:creator>joe.strusz</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[robotics]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[frc]]></category>
		<category><![CDATA[mentoring]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[usfirst]]></category>

		<guid isPermaLink="false">http://www.joestrusz.com/main/?p=812</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/_Vcwg5xPsgs&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/_Vcwg5xPsgs&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.joestrusz.com/main/2010/04/09/megahurts-frc-team-2219-breakaway-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Black Sheep Coal Fired Pizza</title>
		<link>http://www.joestrusz.com/main/2010/04/06/black-sheep-coal-fired-pizza/</link>
		<comments>http://www.joestrusz.com/main/2010/04/06/black-sheep-coal-fired-pizza/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 23:26:47 +0000</pubDate>
		<dc:creator>joe.strusz</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Pictures]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[coal]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[pizza]]></category>

		<guid isPermaLink="false">http://www.joestrusz.com/main/2010/04/06/black-sheep-coal-fired-pizza/</guid>
		<description><![CDATA[Minneapolis, Min-iii-sooo-ta &#160;&#160;&#160;]]></description>
			<content:encoded><![CDATA[<p>Minneapolis, Min-iii-sooo-ta
<p><a href="http://www.joestrusz.com/main/wp-content/uploads/2010/04/l_1600_1200_355C1EA9-9245-47D5-BDD1-8DFAE945390E.jpeg" rel="lightbox[806]"><img name="img" height="100" src="http://www.joestrusz.com/main/wp-content/uploads/2010/04/l_1600_1200_355C1EA9-9245-47D5-BDD1-8DFAE945390E.jpeg" alt="" class="alignnone size-full" /></a>&#160;<a href="http://www.joestrusz.com/main/wp-content/uploads/2010/04/p_1600_1200_1599342E-C7ED-4DDF-A2A6-EE7FCC2F9DAF.jpeg" rel="lightbox[806]"><img name="img"  height="100" src="http://www.joestrusz.com/main/wp-content/uploads/2010/04/p_1600_1200_1599342E-C7ED-4DDF-A2A6-EE7FCC2F9DAF.jpeg" alt="" class="alignnone size-full" /></a>&#160;<a href="http://www.joestrusz.com/main/wp-content/uploads/2010/04/p_1600_1200_D45A6608-2F62-4F28-83C9-C1F34C7E094E.jpeg" rel="lightbox[806]"><img name="img" height="100" src="http://www.joestrusz.com/main/wp-content/uploads/2010/04/p_1600_1200_D45A6608-2F62-4F28-83C9-C1F34C7E094E.jpeg" alt="" class="alignnone size-full" /></a>&#160;<a href="http://www.joestrusz.com/main/wp-content/uploads/2010/04/l_1600_1200_05A21CA2-818F-4DB2-A62D-5789D7E7A718.jpeg" rel="lightbox[806]"><img name="img" height="100" src="http://www.joestrusz.com/main/wp-content/uploads/2010/04/l_1600_1200_05A21CA2-818F-4DB2-A62D-5789D7E7A718.jpeg" alt="" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.joestrusz.com/main/2010/04/06/black-sheep-coal-fired-pizza/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change iPhone Carrier Name</title>
		<link>http://www.joestrusz.com/main/2010/03/03/change-iphone-carrier-name/</link>
		<comments>http://www.joestrusz.com/main/2010/03/03/change-iphone-carrier-name/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 22:23:04 +0000</pubDate>
		<dc:creator>joe.strusz</dc:creator>
				<category><![CDATA[Hints]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[cellular]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[unlock]]></category>

		<guid isPermaLink="false">http://www.joestrusz.com/main/?p=789</guid>
		<description><![CDATA[First off, this hint will only work on iPhones that have been &#8220;jailbroken&#8221;. For more information on &#8220;jailbreaking&#8221; your iPhone, please visit the unofficial iPhone Dev Team&#8217;s Blog. Check out &#8220;MakeItMine&#8221; app under Cydia. This application is a must for tweakers, as it changes your carrier name. Once the app is installed, and you have [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-791" style="float: left;" src="http://www.joestrusz.com/main/wp-content/uploads/2010/03/MakeItMineSSedit1-208x300.png" alt="" /></p>
<p>First off, this hint will only work on iPhones that have been &#8220;jailbroken&#8221;.  For more information on &#8220;jailbreaking&#8221; your iPhone, please visit the unofficial <a href="http://blog.iphone-dev.org/">iPhone Dev Team&#8217;s Blog</a>.</p>
<p>Check out &#8220;MakeItMine&#8221; app under Cydia.  This application is a must for tweakers, as it changes your  carrier name.  Once the app is installed, and you have made the change,  you can remove the app, and your custom setting remains.</p>
<p>Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joestrusz.com/main/2010/03/03/change-iphone-carrier-name/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
