<?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>swansonager - what is matt up to?</title>
	<atom:link href="http://www.swansonager.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.swansonager.com</link>
	<description>life of matt: husband, dad, cto, photographer, landlord, mountain biker</description>
	<lastBuildDate>Wed, 24 Feb 2010 04:05:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rare Night Landing for the Space Shuttle &#8211; 5,700,000 mile mission.</title>
		<link>http://www.swansonager.com/web-stuff/rare-night-landing-for-the-space-shuttle-5700000-mile-mission/</link>
		<comments>http://www.swansonager.com/web-stuff/rare-night-landing-for-the-space-shuttle-5700000-mile-mission/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 04:05:33 +0000</pubDate>
		<dc:creator>Swansonager</dc:creator>
				<category><![CDATA[web stuff]]></category>
		<category><![CDATA[NASA]]></category>
		<category><![CDATA[night time shuttle landing]]></category>

		<guid isPermaLink="false">http://www.swansonager.com/?p=688</guid>
		<description><![CDATA[This is awesome. Rare Night Landing for the Space Shuttle


]]></description>
			<content:encoded><![CDATA[<p>This is awesome. Rare Night Landing for the Space Shuttle
<p>
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/RWFASMII-dU&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/RWFASMII-dU&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.swansonager.com/web-stuff/rare-night-landing-for-the-space-shuttle-5700000-mile-mission/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A simple PHP script to detect if the HTTP REQUEST is a BOT</title>
		<link>http://www.swansonager.com/php-code-samples/a-simple-php-script-to-detect-if-the-http-request-is-a-bot/</link>
		<comments>http://www.swansonager.com/php-code-samples/a-simple-php-script-to-detect-if-the-http-request-is-a-bot/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 11:49:05 +0000</pubDate>
		<dc:creator>Swansonager</dc:creator>
				<category><![CDATA[PHP Code Samples]]></category>
		<category><![CDATA[detect a bot in PHP]]></category>
		<category><![CDATA[php bot]]></category>
		<category><![CDATA[php bot detection]]></category>

		<guid isPermaLink="false">http://www.swansonager.com/?p=681</guid>
		<description><![CDATA[I put this together over the weekend wanted to share&#8230; I tweaked the initial method that NES Emulator provided (which emailed out if a bot requested your domain in PHP&#8230; hope you find it helpful!   Cheers&#8230;
function is_request_a_bot(){
    $retval = false;
    $botlist = array(
     [...]]]></description>
			<content:encoded><![CDATA[<p>I put this together over the weekend wanted to share&#8230; I tweaked the initial method that <a href="http://www.nes-emulator.com/x_bot.php">NES Emulator</a> provided (which emailed out if a bot requested your domain in PHP&#8230; hope you find it helpful! <img src='http://www.swansonager.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Cheers&#8230;</p>
<p><code>function is_request_a_bot(){<br />
    $retval = false;<br />
    $botlist = array(<br />
                "Yeti",<br />
		"Java/",<br />
		"Baiduspider",<br />
		"Speedy Spider",<br />
		"MLBot",<br />
		"Microsoft URL Control",<br />
		"Linguee",<br />
                "Yandex",<br />
                "ScoutJet",<br />
                "ClickTale bot",<br />
                "cuil",<br />
                "Teoma",<br />
                "alexa",<br />
                "froogle",<br />
                "inktomi",<br />
                "looksmart",<br />
                "URL_Spider_SQL",<br />
                "Firefly",<br />
                "NationalDirectory",<br />
                "Ask Jeeves",<br />
                "TECNOSEEK",<br />
                "InfoSeek",<br />
                "WebFindBot",<br />
                "girafabot",<br />
                "crawler",<br />
                "www.galaxy.com",<br />
                "Googlebot",<br />
                "msnbot",<br />
                "Scooter",<br />
                "Slurp",<br />
                "appie",<br />
                "FAST",<br />
                "WebBug",<br />
                "Spade",<br />
                "ZyBorg",<br />
                "rabaz");<br />
    foreach($botlist as $bot) {<br />
      if(ereg($bot, getenv("HTTP_USER_AGENT"))) {<br />
      	$retval = true; //we found a bot <img src='http://www.swansonager.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
      }<br />
    }<br />
    return $retval;<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.swansonager.com/php-code-samples/a-simple-php-script-to-detect-if-the-http-request-is-a-bot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Double Twist developers have sense of humor with Microsoft</title>
		<link>http://www.swansonager.com/android/double-twist-developers-have-sense-of-humor-with-microsoft/</link>
		<comments>http://www.swansonager.com/android/double-twist-developers-have-sense-of-humor-with-microsoft/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 15:18:40 +0000</pubDate>
		<dc:creator>Swansonager</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[android mytouch 1.2]]></category>
		<category><![CDATA[double twist android]]></category>
		<category><![CDATA[double twist humor]]></category>
		<category><![CDATA[humor microsoft]]></category>
		<category><![CDATA[mytouch plus]]></category>
		<category><![CDATA[mytouch+]]></category>

		<guid isPermaLink="false">http://www.swansonager.com/?p=678</guid>
		<description><![CDATA[Saw this earlier today when installing the Micro SD card from my Android device to my laptop &#8211; Double Sync tried to install itself&#8230; and I got this&#8230; nice! Has anyone used Double Twist? Any good?


]]></description>
			<content:encoded><![CDATA[<p>Saw this earlier today when installing the Micro SD card from my Android device to my laptop &#8211; Double Sync tried to install itself&#8230; and I got this&#8230; nice! Has anyone used Double Twist? Any good?
<p>
<img src="http://www.swansonager.com/wp-content/uploads/2010/02/doubletwist.gif" alt="doubletwist" title="doubletwist" width="505" height="386" class="aligncenter size-full wp-image-679" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.swansonager.com/android/double-twist-developers-have-sense-of-humor-with-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For anyone using an Android device and you want to upgrade&#8230;</title>
		<link>http://www.swansonager.com/android/for-anyone-using-an-android-device-and-you-want-to-upgrade/</link>
		<comments>http://www.swansonager.com/android/for-anyone-using-an-android-device-and-you-want-to-upgrade/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 02:08:31 +0000</pubDate>
		<dc:creator>Swansonager</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[Android Roms]]></category>
		<category><![CDATA[Best versions of Android]]></category>

		<guid isPermaLink="false">http://www.swansonager.com/?p=675</guid>
		<description><![CDATA[
Definitely be sure to check out possibly the best site for Android ROMs and different flavors of the Android Open Source OS at AndroidSpin
]]></description>
			<content:encoded><![CDATA[<p><center><a href="http://www.androidspin.com/"><img border=0 src="http://www.swansonager.com/wp-content/uploads/2010/02/as.jpg" alt="as" title="as" width="315" height="65" class="aligncenter size-full wp-image-676" /></a></center><br />
Definitely be sure to check out possibly <a href="http://www.androidspin.com/">the best site for Android ROMs</a> and different flavors of the Android Open Source OS at <a href="http://www.androidspin.com/">AndroidSpin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.swansonager.com/android/for-anyone-using-an-android-device-and-you-want-to-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello Ladies, look at this Manmercial</title>
		<link>http://www.swansonager.com/web-stuff/hello-ladies-look-at-this-manmercial/</link>
		<comments>http://www.swansonager.com/web-stuff/hello-ladies-look-at-this-manmercial/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 14:36:44 +0000</pubDate>
		<dc:creator>Swansonager</dc:creator>
				<category><![CDATA[web stuff]]></category>
		<category><![CDATA[Manmercial]]></category>
		<category><![CDATA[Old Spice Viral]]></category>

		<guid isPermaLink="false">http://www.swansonager.com/?p=673</guid>
		<description><![CDATA[Friday fun for the day &#8211; this guy has the sound of Ron Burgundy, some good friday fun from Old Spice.


]]></description>
			<content:encoded><![CDATA[<p>Friday fun for the day &#8211; this guy has the sound of <a href="http://www.imdb.com/title/tt0357413/">Ron Burgundy</a>, some good friday fun from <a href="http://www.youtube.com/user/oldspice">Old Spice</a>.
<p>
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/owGykVbfgUE&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/owGykVbfgUE&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.swansonager.com/web-stuff/hello-ladies-look-at-this-manmercial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2010 Digital Camera Trends &#8211; what you can expect from Digital Camera HQ</title>
		<link>http://www.swansonager.com/digital-cameras/2010-digital-camera-trends-what-you-can-expect-from/</link>
		<comments>http://www.swansonager.com/digital-cameras/2010-digital-camera-trends-what-you-can-expect-from/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 19:05:39 +0000</pubDate>
		<dc:creator>Swansonager</dc:creator>
				<category><![CDATA[digital cameras]]></category>
		<category><![CDATA[best cameras of 2010]]></category>
		<category><![CDATA[Digital Camera HQ]]></category>
		<category><![CDATA[Digital Camera Trends]]></category>
		<category><![CDATA[Geotagging Photo System]]></category>
		<category><![CDATA[High Capacity Memory Cards]]></category>
		<category><![CDATA[SDHC memory cards]]></category>

		<guid isPermaLink="false">http://www.swansonager.com/?p=670</guid>
		<description><![CDATA[

A while back we posted out the worst camera&#8217;s of 2009 on Swansonager. Today, we were alerted by Liam over at Digital Camera HQ of their new Digital Camera HQ Grades the Trends of 2010. They&#8217;ve done a bang up job on covering everything from what we can expect to see in form of memory [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.swansonager.com/wp-content/uploads/2010/02/dhq.jpg" alt="dhq" title="dhq" width="400" height="259" class="aligncenter size-full wp-image-671" />
<p>
A while back we posted out the <a href="http://www.swansonager.com/photography/all-time-worst-cameras-of-2009/">worst camera&#8217;s of 2009</a> on Swansonager. Today, we were alerted by Liam over at <a href="http://www.digitalcamera-hq.com/">Digital Camera HQ</a> of their new <a href="http://www.digitalcamera-hq.com/articles/digital-camera-hq-grades-the-trends-of-2010">Digital Camera HQ Grades the Trends of 2010</a>. They&#8217;ve done a bang up job on covering everything from what we can expect to see in form of memory card format consolidation to HD quality video in cameras and the ever cool GPS (Geotagging Photo System). <a href="http://www.digitalcamera-hq.com/">Digital Camera HQ</a> provides some of the best, unbiased reviews of digital equipment and digital cameras. If you&#8217;re looking to see what 2010 is going to have in store for everyone in terms of new products, the best, the worst and everything in between, please take a read of the <a href="http://www.digitalcamera-hq.com/articles/digital-camera-hq-grades-the-trends-of-2010">Digital Camera HQ Grades the Trends of 2010</a>. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swansonager.com/digital-cameras/2010-digital-camera-trends-what-you-can-expect-from/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best iPad App out to date (maybe even ever)</title>
		<link>http://www.swansonager.com/just-for-fun/best-ipad-app-out-to-date-maybe-even-ever/</link>
		<comments>http://www.swansonager.com/just-for-fun/best-ipad-app-out-to-date-maybe-even-ever/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 17:54:24 +0000</pubDate>
		<dc:creator>Swansonager</dc:creator>
				<category><![CDATA[just for fun]]></category>
		<category><![CDATA[ipad crazy face]]></category>

		<guid isPermaLink="false">http://www.swansonager.com/?p=668</guid>
		<description><![CDATA[The 4 taped together iPhone&#8230; I mean iPad device is out and here&#8217;s the best use for it I can think of:

]]></description>
			<content:encoded><![CDATA[<p>The 4 taped together iPhone&#8230; I mean iPad device is out and here&#8217;s the best use for it I can think of:
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/H8mpP6qhD8I&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/H8mpP6qhD8I&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.swansonager.com/just-for-fun/best-ipad-app-out-to-date-maybe-even-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emulating IE7 inside IE8&#8230;even Facebook does it..</title>
		<link>http://www.swansonager.com/code-hacks/emulating-ie7-inside-ie8-even-facebook-does-it/</link>
		<comments>http://www.swansonager.com/code-hacks/emulating-ie7-inside-ie8-even-facebook-does-it/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 15:29:04 +0000</pubDate>
		<dc:creator>Swansonager</dc:creator>
				<category><![CDATA[Code Hacks]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[emulate IE7 from IE8]]></category>
		<category><![CDATA[side by side IE7 and IE8]]></category>

		<guid isPermaLink="false">http://www.swansonager.com/?p=662</guid>
		<description><![CDATA[Yep, that&#8217;s right, take a look at what Facebook is doing to force their user&#8217;s browser to downgrade to IE7 processing. I&#8217;ve used this trick and it&#8217;s beautiful for testing backward compatibility to IE7 even if your development system has IE8 on it&#8230;

&#60;meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=EmulateIE7&#8243; /&#62;



Just add this line of code:

&#60;meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=EmulateIE7&#8243; /&#62;
&#8230;to the [...]]]></description>
			<content:encoded><![CDATA[<p>Yep, that&#8217;s right, take a look at what Facebook is doing to force their user&#8217;s browser to downgrade to IE7 processing. I&#8217;ve used this trick and it&#8217;s <b>beautiful</b> for testing backward compatibility to IE7 even if your development system has IE8 on it&#8230;
<p>
&lt;meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=EmulateIE7&#8243; /&gt;<br />
<P><br />
<img src="http://www.swansonager.com/wp-content/uploads/2010/02/swansonager_fb.jpg" alt="swansonager_fb" title="swansonager_fb" width="508" height="259" class="aligncenter size-full wp-image-663" />
<p>
Just add this line of code:
<p>
&lt;meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=EmulateIE7&#8243; /&gt;</p>
<p>&#8230;to the <HEAD> section of your page(s) and you&#8217;ll be able to emulate IE7 from right inside IE8 &#8211; Enjoy:)</p>
<p>Cheers! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.swansonager.com/code-hacks/emulating-ie7-inside-ie8-even-facebook-does-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your words, my Mouth. E*Trade Baby Mail Takes off</title>
		<link>http://www.swansonager.com/web-stuff/your-words-my-mouth-etrade-baby-mail-takes-off/</link>
		<comments>http://www.swansonager.com/web-stuff/your-words-my-mouth-etrade-baby-mail-takes-off/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 15:33:10 +0000</pubDate>
		<dc:creator>Swansonager</dc:creator>
				<category><![CDATA[web stuff]]></category>
		<category><![CDATA[baby mail etrade]]></category>
		<category><![CDATA[monk-e-mail]]></category>

		<guid isPermaLink="false">http://www.swansonager.com/?p=660</guid>
		<description><![CDATA[It might be a piggy back on the uber success of the CareerBuilder.com Monk-e-mail, but it looks like E*Trade has their own version this year with Baby Mail &#8211; here are some outtakes from this years E*Trade Super Bowl 2010 spots&#8230;


]]></description>
			<content:encoded><![CDATA[<p>It might be a piggy back on the uber success of the CareerBuilder.com <a href="http://www.careerbuilder.com/monk-e-mail/">Monk-e-mail</a>, but it looks like E*Trade has their own version this year with <a href="http://www.etradebabymail.com">Baby Mail</a> &#8211; here are some outtakes from this years E*Trade Super Bowl 2010 spots&#8230;
<p>
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/uHPg262Kr9c&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/uHPg262Kr9c&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.swansonager.com/web-stuff/your-words-my-mouth-etrade-baby-mail-takes-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook writes custom PHP JIT Compiler&#8230;</title>
		<link>http://www.swansonager.com/web-stuff/facebook-writes-custom-php-jit-compiler/</link>
		<comments>http://www.swansonager.com/web-stuff/facebook-writes-custom-php-jit-compiler/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 15:15:29 +0000</pubDate>
		<dc:creator>Swansonager</dc:creator>
				<category><![CDATA[web stuff]]></category>
		<category><![CDATA[Facebook Custom PHP]]></category>
		<category><![CDATA[PHP JIT Compiler]]></category>

		<guid isPermaLink="false">http://www.swansonager.com/?p=657</guid>
		<description><![CDATA[
This might be my favorite quote from the article about Facebook developing their own version of PHP  
When we asked what he thought of this style of release &#8211; years of secretive development by two lonely coders, likely locked in a deep, dark vault &#8211; Crowley said it was typical.
&#8220;[Facebook] tends to do giant [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.swansonager.com/wp-content/uploads/2010/02/fbphp.gif" alt="fbphp" title="fbphp" width="553" height="291" class="aligncenter size-full wp-image-658" /><br />
This might be my favorite quote from the article about Facebook developing their own version of PHP <img src='http://www.swansonager.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p>When we asked what he thought of this style of release &#8211; years of secretive development by two lonely coders, likely locked in a deep, dark vault &#8211; Crowley said it was typical.</p>
<p>&#8220;[Facebook] tends to do giant code dumps,&#8221; he said. &#8220;Facebook tends to build something big, use it, and open source it.&#8221;</p></blockquote>
<p><a href="http://www.readwriteweb.com/archives/facebook_gets_faster_debuts_homegrown_php_compiler.php">Read the full article on Read Write Web</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.swansonager.com/web-stuff/facebook-writes-custom-php-jit-compiler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
