<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>[rehab.is.for.retards]</title>
	<atom:link href="http://rehabisforretards.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rehabisforretards.wordpress.com</link>
	<description>The secret of life is honesty and fair dealing. If you can fake that, you&#039;ve got it made.</description>
	<lastBuildDate>Thu, 08 Oct 2009 10:55:19 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='rehabisforretards.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/d6314294dbb6e645401d441e5555a668?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>[rehab.is.for.retards]</title>
		<link>http://rehabisforretards.wordpress.com</link>
	</image>
			<item>
		<title>Exercise in Master Padlock &#8220;Picking&#8221; meets PHP</title>
		<link>http://rehabisforretards.wordpress.com/2009/10/07/exercise-in-master-padlock-picking-meets-php/</link>
		<comments>http://rehabisforretards.wordpress.com/2009/10/07/exercise-in-master-padlock-picking-meets-php/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 21:11:10 +0000</pubDate>
		<dc:creator>maddo</dc:creator>
				<category><![CDATA[other]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[lock picking]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://rehabisforretards.wordpress.com/?p=151</guid>
		<description><![CDATA[After seeing:
http://lifehacker.com/5376442/crack-a-master-combination-padlock-redux
which has a link to a graphic art representation of how to pick a master padlock:
http://www.markedwardcampos.com/index.php?/design/master-lock/
a coworker and I set about to figure out the pattern in the tables that help you reduce the possible combinations from 64,000 to only 100 (to open the lock without knowing the combination).
Seeing the pattern, I wrote a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=151&subd=rehabisforretards&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After seeing:</p>
<p><span style="background-color:#ffffff;"><a title="Pick a Master Padlock" href="http://lifehacker.com/5376442/crack-a-master-combination-padlock-redux" target="_blank">http://lifehacker.com/5376442/crack-a-master-combination-padlock-redux</a></span></p>
<p><span style="background-color:#ffffff;">which has a link to a graphic art representation of how to pick a master padlock:</span></p>
<p><span style="background-color:#ffffff;"><a title="Nice graphic design on how to crack a Master Padlock" href="http://www.markedwardcampos.com/index.php?/design/master-lock/" target="_blank">http://www.markedwardcampos.com/index.php?/design/master-lock/</a></span></p>
<p><span style="background-color:#ffffff;">a coworker and I set about to figure out the pattern in the tables that help you reduce the possible combinations from 64,000 to only 100 (to open the lock without knowing the combination).</span></p>
<p><span style="background-color:#ffffff;">Seeing the pattern, I wrote a quick piece of shoddy php to generate the combinations needed based on the number you divine from the mechanical part of the process.</span></p>
<p><span style="font-family:Consolas, Monaco, 'Courier New', Courier, monospace;line-height:18px;font-size:12px;white-space:pre;background-color:#ffffff;">&lt;?</span></p>
<pre>$num = $argv[1];
<span style="background-color:#ffffff;">$mod = $num % 4;</span>
<span style="background-color:#ffffff;">$secondRow[] = $mod % 2;</span>
<span style="background-color:#ffffff;">if($mod &gt; 1)</span>
<span style="background-color:#ffffff;"><span style="white-space:pre;">	</span>$secondRow[] = $mod;</span>
<span style="background-color:#ffffff;">$secondRow[] = $primer = 6 + $mod;</span>
<span style="background-color:#ffffff;">$i = $mod;</span>
<span style="background-color:#ffffff;">while($i &lt; 40)
{</span>
<span style="background-color:#ffffff;"><span style="white-space:pre;">	</span>$firstRow[] = $i;
<span style="white-space:pre;">	</span>$i += 4;</span>
<span style="background-color:#ffffff;">}</span>
<span style="background-color:#ffffff;">$i = $primer + 4;</span>
<span style="background-color:#ffffff;">while($i &lt; 40)</span>
{
<span style="background-color:#ffffff;"><span style="white-space:pre;">	</span>$secondRow[] = $i;
<span style="white-space:pre;">	</span>$i += 4;
}</span>
echo "\nStart with the first number of the top row, in combination with the first
number of the second row\nThen use the same number of the top row with second
number of the bottom row\nThis way you reduce the possibilities from 64,000 to
only 100\n";

<span style="background-color:#ffffff;">foreach($firstRow as $row){
<span style="white-space:pre;">	</span>echo $row . "\t";
}</span>
echo "\n|\\\t/|\\\t/|\\...\n";
<span style="background-color:#ffffff;">foreach ($secondRow as $row){
<span style="white-space:pre;">	</span>echo $row . "\t";
}</span>
<span style="background-color:#ffffff;">echo "\n\nLast number is: {$num}\n\n";</span>
<span style="background-color:#ffffff;">?&gt;</span></pre>
<p>Sloppy but accurate.</p>
<p>Cheers</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rehabisforretards.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rehabisforretards.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rehabisforretards.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rehabisforretards.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rehabisforretards.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rehabisforretards.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rehabisforretards.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rehabisforretards.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rehabisforretards.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rehabisforretards.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=151&subd=rehabisforretards&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rehabisforretards.wordpress.com/2009/10/07/exercise-in-master-padlock-picking-meets-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bae43ca0780dddb731daae348910987?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">maddo</media:title>
		</media:content>
	</item>
		<item>
		<title>Rip High Quality mp3s From The Web</title>
		<link>http://rehabisforretards.wordpress.com/2009/08/06/rip-high-quality-mp3s-from-the-web/</link>
		<comments>http://rehabisforretards.wordpress.com/2009/08/06/rip-high-quality-mp3s-from-the-web/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 17:56:32 +0000</pubDate>
		<dc:creator>maddo</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[webtools]]></category>

		<guid isPermaLink="false">http://rehabisforretards.wordpress.com/?p=146</guid>
		<description><![CDATA[Using a one-two combo, you can get your quick rips of mp3s (in good quality).
Step 1)  www.goear.com
The site http://www.goear.com/ will search out nearly any song (I tried with the obscure, but awesome, Canadian band The Rural Alberta Advantage here: http://www.goear.com/search.php?q=the+rural+alberta+advantage).  This search will find a song and then offer you a web-player and play the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=146&subd=rehabisforretards&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Using a one-two combo, you can get your quick rips of mp3s (in good quality).</p>
<h3>Step 1)  www.goear.com</h3>
<p>The site <a title="GoEar.com An Awesome Movement" href="http://www.goear.com/" target="_blank">http://www.goear.com/</a> will search out nearly any song (I tried with the obscure, but awesome, Canadian band <a title="Awesome Canadindie band The Rural Alberta Advantage" href="http://www.theraa.com/audio.html" target="_blank">The Rural Alberta Advantage</a> here: http://www.goear.com/search.php?q=the+rural+alberta+advantage).  This search will find a song and then offer you a web-player and play the song.  The next step is to copy the link from the listening page, and paste it into step 2.</p>
<h3>Step 2) dowint.net</h3>
<p>Paste the audio listen link into <a title="DOWnloads INTerNET" href="http://dowint.net/" target="_blank">http://dowint.net/</a> (take a second to copy the song name, so you can replace the random text that the filename has by default) and save that bad larry to your computer using the right-click -&gt; save link feature of your browser.</p>
<p>Note that dowint.net can also rip media from youtube.com, dailymotion.com and metacafe.com, but goear.com seems to have the best quality audio, so far.  Side-note: if you listen to the song first, before placing the link in downint.net, it grabs it from your local cache, so you can grab the mp3 almostinstantly.</p>
<p>Happy Ripping</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rehabisforretards.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rehabisforretards.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rehabisforretards.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rehabisforretards.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rehabisforretards.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rehabisforretards.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rehabisforretards.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rehabisforretards.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rehabisforretards.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rehabisforretards.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=146&subd=rehabisforretards&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rehabisforretards.wordpress.com/2009/08/06/rip-high-quality-mp3s-from-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bae43ca0780dddb731daae348910987?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">maddo</media:title>
		</media:content>
	</item>
		<item>
		<title>Quick Rips &#8211; Taking the Audio out of Youtube (2 sites)</title>
		<link>http://rehabisforretards.wordpress.com/2009/05/30/quick-rips-taking-the-audio-out-of-youtube-2-sites/</link>
		<comments>http://rehabisforretards.wordpress.com/2009/05/30/quick-rips-taking-the-audio-out-of-youtube-2-sites/#comments</comments>
		<pubDate>Sat, 30 May 2009 20:24:29 +0000</pubDate>
		<dc:creator>maddo</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[webtools]]></category>
		<category><![CDATA[audio ripping]]></category>
		<category><![CDATA[vixy]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://rehabisforretards.wordpress.com/2009/05/30/quick-rips-taking-the-audio-out-of-youtube-2-sites</guid>
		<description><![CDATA[Here are two decent web services that you can use to rip the audio out of any Youtube video, and save it as an .mp3
Vixy.net
I found the first one, Vixy [ http://vixy.net/ ], over a year ago.  Generally it helped me when I wanted to grab a rare, b-side or unpublished song.  It seems these days [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=130&subd=rehabisforretards&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here are two decent web services that you can use to rip the audio out of any Youtube video, and save it as an .mp3</p>
<h1>Vixy.net</h1>
<p>I found the first one, Vixy [ <a href="http://vixy.net/">http://vixy.net/</a> ], over a year ago.  Generally it helped me when I wanted to grab a rare, b-side or unpublished song.  It seems these days it&#8217;s easier to find live than recorded work on Youtube, but this tool works like a charm.  They offer a Mac and Windows client to do the same from your own computer, but I always found the expiration dates annoying, and tend to prefer the web interface these days.  On the plus side, you can also rip the video if you want, in various formats.  Our second link is audio only.</p>
<h1>Listentoyoutube.com</h1>
<p>My girlfriend turned me on to this site: <a href="http://www.listentoyoutube.com/">http://www.listentoyoutube.com/</a> which rips the audio at blazing speeds, and downloads nearly instantly.  I&#8217;d be curious to find out what they are doing so differently from Vixy to speed up the service.  If you just want a quick .mp3 of a song (or any video for that matter) you saw on Youtube, input the url at this site, and it will be done nearly instantly.</p>
<p>(By the way, I&#8217;m trying my 3rd post using WordPress post-by-email, it seems they don&#8217;t let my free account auto-include images by attaching them to the emails)</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rehabisforretards.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rehabisforretards.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rehabisforretards.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rehabisforretards.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rehabisforretards.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rehabisforretards.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rehabisforretards.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rehabisforretards.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rehabisforretards.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rehabisforretards.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=130&subd=rehabisforretards&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rehabisforretards.wordpress.com/2009/05/30/quick-rips-taking-the-audio-out-of-youtube-2-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bae43ca0780dddb731daae348910987?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">maddo</media:title>
		</media:content>
	</item>
		<item>
		<title>Email Photo as Attachment &#8211; Test 2</title>
		<link>http://rehabisforretards.wordpress.com/2009/05/29/email-photo-as-attachment-test-2/</link>
		<comments>http://rehabisforretards.wordpress.com/2009/05/29/email-photo-as-attachment-test-2/#comments</comments>
		<pubDate>Sat, 30 May 2009 02:06:01 +0000</pubDate>
		<dc:creator>maddo</dc:creator>
				<category><![CDATA[meta]]></category>
		<category><![CDATA[post by email]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://rehabisforretards.wordpress.com/2009/05/29/email-photo-as-attachment-test-2</guid>
		<description><![CDATA[The first post did not show the image correctly, where I had inserted the image into the email, here I will try with the image as an attachment.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=129&subd=rehabisforretards&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The first post did not show the image correctly, where I had inserted the image into the email, here I will try with the image as an attachment.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rehabisforretards.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rehabisforretards.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rehabisforretards.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rehabisforretards.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rehabisforretards.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rehabisforretards.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rehabisforretards.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rehabisforretards.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rehabisforretards.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rehabisforretards.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=129&subd=rehabisforretards&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rehabisforretards.wordpress.com/2009/05/29/email-photo-as-attachment-test-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bae43ca0780dddb731daae348910987?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">maddo</media:title>
		</media:content>
	</item>
		<item>
		<title>Checking out email posting (image and youtube video included)</title>
		<link>http://rehabisforretards.wordpress.com/2009/05/29/checking-out-email-posting-image-and-youtube-video-included/</link>
		<comments>http://rehabisforretards.wordpress.com/2009/05/29/checking-out-email-posting-image-and-youtube-video-included/#comments</comments>
		<pubDate>Sat, 30 May 2009 01:51:48 +0000</pubDate>
		<dc:creator>maddo</dc:creator>
				<category><![CDATA[meta]]></category>
		<category><![CDATA[post by email]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://rehabisforretards.wordpress.com/2009/05/29/checking-out-email-posting-image-and-youtube-video-included</guid>
		<description><![CDATA[Let&#8217;s test email posting&#8230;
Classic Video (Afro Ninja): 

Cool Picture (Subway in Buenos Aires):

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=126&subd=rehabisforretards&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Let&#8217;s test email posting&#8230;</p>
<p><strong>Classic Video (Afro Ninja): </strong><br />
<span style="text-align:center; display: block;"><a href="http://rehabisforretards.wordpress.com/2009/05/29/checking-out-email-posting-image-and-youtube-video-included/"><img src="http://img.youtube.com/vi/BEtIoGQxqQs/2.jpg" alt="" /></a></span></p>
<p><strong>Cool Picture (Subway in Buenos Aires):</strong><br />
<img title="DSC03101.JPG" src="ii_1218f35078994129" alt="DSC03101.JPG" width="315" height="420" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rehabisforretards.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rehabisforretards.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rehabisforretards.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rehabisforretards.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rehabisforretards.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rehabisforretards.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rehabisforretards.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rehabisforretards.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rehabisforretards.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rehabisforretards.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=126&subd=rehabisforretards&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rehabisforretards.wordpress.com/2009/05/29/checking-out-email-posting-image-and-youtube-video-included/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bae43ca0780dddb731daae348910987?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">maddo</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/BEtIoGQxqQs/2.jpg" medium="image" />

		<media:content url="ii_1218f35078994129" medium="image">
			<media:title type="html">DSC03101.JPG</media:title>
		</media:content>
	</item>
		<item>
		<title>Firefox 3.0.10 Revisited, Chrome Stuck Around</title>
		<link>http://rehabisforretards.wordpress.com/2009/05/28/firefox-3-0-10-revisited-chrome-stuck-around/</link>
		<comments>http://rehabisforretards.wordpress.com/2009/05/28/firefox-3-0-10-revisited-chrome-stuck-around/#comments</comments>
		<pubDate>Fri, 29 May 2009 00:14:55 +0000</pubDate>
		<dc:creator>maddo</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://rehabisforretards.wordpress.com/?p=114</guid>
		<description><![CDATA[In July of last year, I wrote a long winded and frustration-born post about my struggles with Firefox, which had seen a recent upgrade to version 3.  I thought it only fair to report that Firefox 3 has been working well for me on both of my XP machines (still no new hardware or motivation [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=114&subd=rehabisforretards&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In July of last year, I wrote a long winded and frustration-born <a href="http://rehabisforretards.wordpress.com/2008/07/17/firefox-30-and-301-enough-to-make-you-think-about-ie-again/">post</a> about my struggles with Firefox, which had seen a recent upgrade to version 3.  I thought it only fair to report that Firefox 3 has been working well for me on both of my XP machines (still no new hardware or motivation to try Vista or the beta for Win 7) and my development Linux box (and the linux install I had on my laptop for about 6 months).</p>
<p>Chrome came into the view a while back, and after beating down suspicions that it was little more than a Google services platform, and taking a lot of slack for extension lack, it has really shown itself a worthy competitor in the browser arena.</p>
<p>The lack of extensions is the main issue for me, or at least I thought it was.  Over time, and now with Chrome v.2, which offers a stable build with full screen, I&#8217;ve realized that while some extensions are irreplaceable, if a browser is good enough at it&#8217;s core, you don&#8217;t really need to extend it.  There will always be special needs for customization, and Firefox is the itinerant work horse here. It will always have a warm spot in my heart for taking on the big blue &#8216;e&#8217; (IE) and holding it&#8217;s own there.  But Chrome is just hitting the spot these days, at least on my Windows builds.</p>
<p>In other tech related notes, I&#8217;m testing an Ubuntu 8.10 server install on some old cobbled together hardware to fool around and&#8230; serve stuff here at home.  After I muck about a bit more, I&#8217;ll post up on it.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rehabisforretards.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rehabisforretards.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rehabisforretards.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rehabisforretards.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rehabisforretards.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rehabisforretards.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rehabisforretards.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rehabisforretards.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rehabisforretards.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rehabisforretards.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=114&subd=rehabisforretards&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rehabisforretards.wordpress.com/2009/05/28/firefox-3-0-10-revisited-chrome-stuck-around/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bae43ca0780dddb731daae348910987?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">maddo</media:title>
		</media:content>
	</item>
		<item>
		<title>Turn toward the lame and decaying absence</title>
		<link>http://rehabisforretards.wordpress.com/2009/05/28/turn-toward-the-lame-and-decaying-absence/</link>
		<comments>http://rehabisforretards.wordpress.com/2009/05/28/turn-toward-the-lame-and-decaying-absence/#comments</comments>
		<pubDate>Fri, 29 May 2009 00:01:13 +0000</pubDate>
		<dc:creator>maddo</dc:creator>
				<category><![CDATA[meta]]></category>

		<guid isPermaLink="false">http://rehabisforretards.wordpress.com/?p=112</guid>
		<description><![CDATA[So, I took a look at my most recent posts, and it seems I was writing more for the sake of writing, than for writing something interesting.  I mean, I wrote about a light bulb.  That&#8217;s gotta be a near bottom for web journal topics.  Here&#8217;s to another bout of effort&#8230;
     [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=112&subd=rehabisforretards&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>So, I took a look at my most recent posts, and it seems I was writing more for the sake of writing, than for writing something interesting.  I mean, I wrote about a light bulb.  That&#8217;s gotta be a near bottom for web journal topics.  Here&#8217;s to another bout of effort&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rehabisforretards.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rehabisforretards.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rehabisforretards.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rehabisforretards.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rehabisforretards.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rehabisforretards.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rehabisforretards.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rehabisforretards.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rehabisforretards.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rehabisforretards.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=112&subd=rehabisforretards&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rehabisforretards.wordpress.com/2009/05/28/turn-toward-the-lame-and-decaying-absence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bae43ca0780dddb731daae348910987?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">maddo</media:title>
		</media:content>
	</item>
		<item>
		<title>Be Kind Rewind Surprised and Delighted Me</title>
		<link>http://rehabisforretards.wordpress.com/2008/07/29/be-kind-rewind-surprised-and-delighted-me/</link>
		<comments>http://rehabisforretards.wordpress.com/2008/07/29/be-kind-rewind-surprised-and-delighted-me/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 23:34:36 +0000</pubDate>
		<dc:creator>maddo</dc:creator>
				<category><![CDATA[video]]></category>
		<category><![CDATA[/movies]]></category>

		<guid isPermaLink="false">http://rehabisforretards.wordpress.com/?p=109</guid>
		<description><![CDATA[Jack Black, Mos Def, and Danny Glover drive Be Kind Rewind (IMDB link opens in new window) through its fantastical and often times nearly horrible plot with all the finesse of a surgeon using a hammer as a scalpel.  Fortunately, that is just what the story calls for.
The entire film plays as an advertisement [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=109&subd=rehabisforretards&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Jack Black, Mos Def, and Danny Glover drive <a title="Be Kind Rewind at IMDB.com" href="http://www.imdb.com/title/tt0799934/" target="_blank">Be Kind Rewind</a> (IMDB link opens in new window) through its fantastical and often times nearly horrible plot with all the finesse of a surgeon using a hammer as a scalpel.  Fortunately, that is just what the story calls for.</p>
<div id="attachment_141" class="wp-caption aligncenter" style="width: 290px"><img class="size-full wp-image-141 " title="bekindrewindmosdef" src="http://rehabisforretards.files.wordpress.com/2008/07/bekindrewindmosdef.jpg?w=280&#038;h=280" alt="Be Kind Rewind Movie Art" width="280" height="280" /><p class="wp-caption-text">Be Kind Rewind Movie Art</p></div>
<p>The entire film plays as an advertisement for DIY film making.  A call back to early Lucas, or early childhood.  The lo-fi special effects solutions leave you mouth agape from the sheer creativity of it all.  Clearly Jack Black is not actually falling off of a sky scraper, but who would have thought to put him on his back, spinning on a lazy Suzanne, over a tiny town kids room play rug to achieve the effect.</p>
<p>The basic plot revolves around a desperate attempt to save a local VHS only rental store, about to be reclaimed by a city beautification project.  When every video in the store gets erased from a &#8220;strange magnetic field&#8221; (it&#8217;s ok to call Jack Black strange, right?), the two shop keepers, Jack Black and Mos Def, resort to re-filming each of the video titles, one by one, to the growing amusement and interest of their neighborhood.</p>
<p>The bubbling, at times playful, at times insane energy of this movie left me laughing uproariously throughout nearly the entire film, although in the end, what I appreciated the most was how it left me with an urge to create.  It was a nostalgic throwback to watching the A-Team or, much earlier, the Muppet Babies.</p>
<p>One thing I particularly enjoyed was how the movie, for the first time, painted the beloved VHS camera and cassette of my youth as an underground &#8220;true art&#8221; tool.  When I was younger, I got my hands on an old 8mm and love the idea that DVD&#8217;s ugly uncle (VHS) could hold that sort of cachet for new generations of old media-culture junkies.</p>
<p>In eBay speak: &#8220;Recomend Seller A+++++++++++++++++++++++++++++++&#8221;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rehabisforretards.wordpress.com/109/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rehabisforretards.wordpress.com/109/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rehabisforretards.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rehabisforretards.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rehabisforretards.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rehabisforretards.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rehabisforretards.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rehabisforretards.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rehabisforretards.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rehabisforretards.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rehabisforretards.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rehabisforretards.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=109&subd=rehabisforretards&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rehabisforretards.wordpress.com/2008/07/29/be-kind-rewind-surprised-and-delighted-me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bae43ca0780dddb731daae348910987?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">maddo</media:title>
		</media:content>

		<media:content url="http://rehabisforretards.files.wordpress.com/2008/07/bekindrewindmosdef.jpg" medium="image">
			<media:title type="html">bekindrewindmosdef</media:title>
		</media:content>
	</item>
		<item>
		<title>Trying a 20w Energy Saver Light</title>
		<link>http://rehabisforretards.wordpress.com/2008/07/22/trying-a-20w-energy-saver-light/</link>
		<comments>http://rehabisforretards.wordpress.com/2008/07/22/trying-a-20w-energy-saver-light/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 12:59:07 +0000</pubDate>
		<dc:creator>maddo</dc:creator>
				<category><![CDATA[other]]></category>

		<guid isPermaLink="false">http://rehabisforretards.wordpress.com/?p=92</guid>
		<description><![CDATA[I finally tried out one of these energy saving bulbs at home.  Despite the higher entry cost (about four times the price tag of a standard incandescent bulb) and the uncertainty regarding the quality of the light, I picked out a 20w, &#8220;Cold Light&#8221; bulb and put it in the home office.
My first impressions [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=92&subd=rehabisforretards&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I finally tried out one of these energy saving bulbs at home.  Despite the higher entry cost (about four times the price tag of a standard incandescent bulb) and the uncertainty regarding the quality of the light, I picked out a 20w, &#8220;Cold Light&#8221; bulb and put it in the home office.</p>
<p>My first impressions are very favorable.  The cold light is apt for the office space, and the 20w light is actually much brighter than the old bulb I had been using (the box informs me that 20w is equivalent to a 100w incandescent, in terms of light production).  Additionally, the packaging indicates that this bulb will last 6,000 hours, roughly equal to six standard incandescents, and will save me 80% in energy and associated costs.</p>
<p>The only (minor) downside was a little wait in time-to-full-light.  It&#8217;s not so important, and maybe easier for the eyes anyways.</p>
<p>Next I&#8217;ll try a &#8220;Warm Light&#8221; bulb in the living room.  I&#8217;m anxious to see if these lights can live up to their marketing claim of 6x the normal life span.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rehabisforretards.wordpress.com/92/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rehabisforretards.wordpress.com/92/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rehabisforretards.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rehabisforretards.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rehabisforretards.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rehabisforretards.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rehabisforretards.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rehabisforretards.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rehabisforretards.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rehabisforretards.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rehabisforretards.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rehabisforretards.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=92&subd=rehabisforretards&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rehabisforretards.wordpress.com/2008/07/22/trying-a-20w-energy-saver-light/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bae43ca0780dddb731daae348910987?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">maddo</media:title>
		</media:content>
	</item>
		<item>
		<title>Firefox 3.0 and 3.0.1 &#8211; Enough to make you think about IE again</title>
		<link>http://rehabisforretards.wordpress.com/2008/07/17/firefox-30-and-301-enough-to-make-you-think-about-ie-again/</link>
		<comments>http://rehabisforretards.wordpress.com/2008/07/17/firefox-30-and-301-enough-to-make-you-think-about-ie-again/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 04:33:15 +0000</pubDate>
		<dc:creator>maddo</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[3.0.1]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[freeze]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://rehabisforretards.wordpress.com/?p=86</guid>
		<description><![CDATA[I was hoping to write up a nice glowing review of Firefox 3.  I&#8217;ve tried the betas, the final and now the first update.  The problem is, the browser won&#8217;t let me play with it long enough to test it&#8217;s new features.
When searching for fixes to the problem I&#8217;m having, I find a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=86&subd=rehabisforretards&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was hoping to write up a nice glowing review of Firefox 3.  I&#8217;ve tried the betas, the final and now the first update.  The problem is, the browser won&#8217;t let me play with it long enough to test it&#8217;s new features.</p>
<p>When searching for fixes to the problem I&#8217;m having, I find a crew of other malcontents slowly raising their hands on forums (Mozilla&#8217;s own, as well as others), admitting, despite their best wishes, that the browser has bottomed out for them too.</p>
<p>The specific problem I am having relates to the browser hanging and running up it&#8217;s memory use.  If I give it a higher priority (working with the Windows task manager process list) sometimes it will resolve, but the fix is always temporary.  I get between one and five minutes of FF3 free wheeling fun and then <em>bam, </em>frozen.  It has topped out at 200k, even with no page loaded while in safe mode.</p>
<p>Helpful posters at the mozilla forums suggested <a title="Firefox Freeze Solutions at Mozilla Forums" href="http://support.mozilla.com/tiki-view_forum_thread.php?locale=en-US&amp;forumId=1&amp;comments_parentId=63213" target="_blank">some possible solutions</a> (opens in new window) which did not help my case.  Also, Mozilla offers tips at their <a title="Mozilla Firefox support - hanging firefox" href="http://support.mozilla.com/en-US/kb/Firefox+hangs" target="_blank">Firefox Hangs</a> (opens in new window) page on how to address a freezing browser, but again no help for me.</p>
<p>I spent the first part of the day switching back to FF3, after changing my anti-virus, uninstalling a slew of possibly conflicting programs, and going commando on all traces of previous FF installs (folders, registry settings, old happy memories).  Of course, the initial 5 to 10 minutes of my first run of each fresh install of FF3 are beautiful, filling me with soon-to-be bitter hope.  After admitting that I was still not ready for Firefox3 on this machine, I uninstalled it and reinstalled the latest 2 release (2.0.0.16) and was back to no problems.</p>
<p>With the day nearly over, the news that 3.0.1 was available trickled into my RSS catcher and I went out, once again, on the hunt.  Needless to say, the experience was not improved by the mysteriously summarized &#8220;Fixed several stability issues&#8221; (See <a title="Firefox 3.0.1 Release Notes" href="http://www.mozilla.com/en-US/firefox/3.0.1/releasenotes/">http://www.mozilla.com/en-US/firefox/3.0.1/releasenotes/</a>).</p>
<p>In summary, after a day of juggling between Firefox 2 and Firefox 3, I&#8217;m throwing in the towel and sticking with 2 until I hear about some major stability fixes.  I still can&#8217;t take myself out of the search for solution.  For all I know, some little proggie I use is gumming up the works, but Mozilla, this is for you: Address these issues!</p>
<p>Incidentally, a frozen Firefox browser still beats a working one of Internet Explorer.  Sheesh, who does Microsoft hire to come up with product names, anyways: &#8220;Internet Explorer.&#8221;  Woo hoo, where&#8217;s my captain&#8217;s hat?</p>
<p>Download links:</p>
<p>Firefox 3.0.1: <a title="Download Firefox 3 - 3.0.1" href="http://www.mozilla.com/en-US/firefox/">http://www.mozilla.com/en-US/firefox/</a><br />
Firefox 2.0.0.16: <a title="Download Firefox 2 - 2.0.0.16" href="http://www.mozilla.com/en-US/firefox/all-older.html">http://www.mozilla.com/en-US/firefox/all-older.html</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rehabisforretards.wordpress.com/86/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rehabisforretards.wordpress.com/86/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rehabisforretards.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rehabisforretards.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rehabisforretards.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rehabisforretards.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rehabisforretards.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rehabisforretards.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rehabisforretards.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rehabisforretards.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rehabisforretards.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rehabisforretards.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rehabisforretards.wordpress.com&blog=1817345&post=86&subd=rehabisforretards&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rehabisforretards.wordpress.com/2008/07/17/firefox-30-and-301-enough-to-make-you-think-about-ie-again/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bae43ca0780dddb731daae348910987?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">maddo</media:title>
		</media:content>
	</item>
	</channel>
</rss>