<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>GrangerX</title>
	<atom:link href="http://grangerx.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://grangerx.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 23 Nov 2011 17:38:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='grangerx.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>GrangerX</title>
		<link>http://grangerx.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://grangerx.wordpress.com/osd.xml" title="GrangerX" />
	<atom:link rel='hub' href='http://grangerx.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Using fuse-unionfs with CentOS 5.5 i686</title>
		<link>http://grangerx.wordpress.com/2010/12/31/using-fuse-unionfs-with-centos-5-5-i686/</link>
		<comments>http://grangerx.wordpress.com/2010/12/31/using-fuse-unionfs-with-centos-5-5-i686/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 05:17:07 +0000</pubDate>
		<dc:creator>grangerx</dc:creator>
				<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fuse]]></category>
		<category><![CDATA[unionfs]]></category>

		<guid isPermaLink="false">http://grangerx.wordpress.com/?p=81</guid>
		<description><![CDATA[Of the RedHat / Fedora / CentOS family, CentOS has the best combination of being freely available *and* having long-term support for updates via the various official and unofficial RPM repositories. The downside, though, is that not all of the fun / new / bleeding-edge software found in Fedora can be found for CentOS. Some, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=81&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Of the RedHat / Fedora / CentOS family, CentOS has the best combination of being freely available *and* having long-term support for updates via the various official and unofficial RPM repositories.  The downside, though, is that not all of the fun / new / bleeding-edge software found in Fedora can be found for CentOS.</p>
<p>Some, however, can.  Case in point is the FUSE (File-system in UserSpacE) user-space driver for using the &#8220;unionfs&#8221; file-system layering technology.</p>
<p>First, you must add the proper repository to the yum configuration for the server.</p>
<p>The repository you will need is:<br />
Dag Apt Repository, http://dag.wieers.com/apt/</p>
<p>The package you will need is called:<br />
fuse-unionfs</p>
<p>The dependencies for this package are:<br />
fuse-libs (from the CentOS repository)<br />
fuse (from the CentOS repository)</p>
<p>Once you have the yum repositories set up, install the package by running (as root):<br />
#yum install fuse-unionfs</p>
<p>That should install the fuse-unionfs (or unionfs-fuse) package.</p>
<p>The utility should be installed as:<br />
/usr/bin/unionfs</p>
<p>Getting the unionfs-fuse mount points to work via /etc/fstab is one of the more bizarre and poorly-documented things in the Linux universe, but here is a line from /etc/fstab that seems to work:</p>
<p><code>unionfs#/path/to/your/writabledirectory=rw:/path/to/your/readonlydirectory=ro /path/to/your/finaldirectory              fuse default_permissions,allow_other,use_ino,nonempty,suid,cow 0 0</code></p>
<p>In this fstab line, here is an explanation of each part:</p>
<ul>
<li>unionfs   &#8212; this is apparently the command that fuse runs to mount the file system</li>
<li>The &#8220;#&#8221; after unionfs. This separates the unionfs command from the parameters</li>
<li>/path/to/your/writabledirectory=rw &#8212; this is the path on the system to your writable directory</li>
</ul>
<ul>
<li>/path/to/your/readonlydirectory=ro &#8212; this is the path on the system to your readonly directory</li>
<li>The colon between the paths &#8212; this separates the two paths; More than two paths can be included, the leftmost will be the &#8220;topmost&#8221; layered path, going down the layers for each path to the right, separated by colons.</li>
<li>fuse &#8212; this is the name of the filesystem to use. &#8220;fuse&#8221; is a meta-filesystem that can mount many other sub-types of file-system below it, in this case, &#8220;unionfs&#8221;</li>
<li>default_permissions &#8212; this asks unionfs to use the default permissions</li>
<li>allow_other &#8212; this asks unionfs to allow non-root users to talk to the mounted filesystem</li>
<li>use_ino &#8212; let the filesystem set the inode numbers</li>
<li>nonempty &#8212; allows unionfs to mount the unioned-filesystem into a non-empty directory on the system</li>
<li>suid &#8212; allows suid on the unionfs filesystem</li>
<li>cow &#8212; enables copy-on-write, which allows editing of files that are mounted from a readonly path, by placing a copied file into the read-writable path instead</li>
<li>0 0  &#8212; standard fstab entries for mount order and check order (I think)</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grangerx.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grangerx.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grangerx.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grangerx.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grangerx.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grangerx.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grangerx.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grangerx.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grangerx.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grangerx.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grangerx.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grangerx.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grangerx.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grangerx.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=81&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grangerx.wordpress.com/2010/12/31/using-fuse-unionfs-with-centos-5-5-i686/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f63f86a3b6c1739a2227a7d6be4620e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">grangerx</media:title>
		</media:content>
	</item>
		<item>
		<title>Seagate RMA Web Form Numbers for 7200.11 SATA Drives</title>
		<link>http://grangerx.wordpress.com/2009/11/28/seagate-rma-web-form-numbers-for-7200-11-sata-drives/</link>
		<comments>http://grangerx.wordpress.com/2009/11/28/seagate-rma-web-form-numbers-for-7200-11-sata-drives/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 23:56:42 +0000</pubDate>
		<dc:creator>grangerx</dc:creator>
				<category><![CDATA[pc]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[model number]]></category>
		<category><![CDATA[rma]]></category>
		<category><![CDATA[seagate]]></category>

		<guid isPermaLink="false">http://grangerx.wordpress.com/?p=73</guid>
		<description><![CDATA[When RMAing drives using Seagate&#8217;s RMA web form, it can sometimes be difficult to know the magic incantations/numbers needed to get it to recognize a given drive as valid/in-warranty. Since this has been a fight several times for the Seagate SATA 7200.10 and SATA 7200.11 drive models, here are some numbers found to be helpful: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=73&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When RMAing drives using Seagate&#8217;s RMA web form, it can sometimes be difficult to know the magic incantations/numbers needed to get it to recognize a given drive as valid/in-warranty.</p>
<p>Since this has been a fight several times for the Seagate SATA 7200.10 and SATA 7200.11 drive models, here are some numbers found to be helpful:</p>
<p>Seagate 7200.11 1500GB (ST31500341AS) ::<br />
Try Entering:  <strong>ST315005N1A1AS-RK</strong> -or- <strong>9JB1AS-571</strong></p>
<p>Seagate 7200.11 1000GB (ST31000340AS) ::<br />
Try Entering: <strong>ST31000340AS</strong> -or- <strong>9BX158-303<br />
</strong>-or- <strong>9BX1A8-570</strong></p>
<p>Seagate 7200.10 750GB (ST3750640AS) ::<br />
Try Entering: <strong>ST3750640AS-RK</strong> -or- <strong>9BJ848-550</strong></p>
<p><strong><br />
</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grangerx.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grangerx.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grangerx.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grangerx.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grangerx.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grangerx.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grangerx.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grangerx.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grangerx.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grangerx.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grangerx.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grangerx.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grangerx.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grangerx.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=73&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grangerx.wordpress.com/2009/11/28/seagate-rma-web-form-numbers-for-7200-11-sata-drives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f63f86a3b6c1739a2227a7d6be4620e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">grangerx</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora 11 : Recording Audio from Pulseaudio using pacat (a.k.a. parec) and sox</title>
		<link>http://grangerx.wordpress.com/2009/08/03/fedora-11-recording-audio-from-pulseaudio-using-parec-and-sox/</link>
		<comments>http://grangerx.wordpress.com/2009/08/03/fedora-11-recording-audio-from-pulseaudio-using-parec-and-sox/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 18:33:32 +0000</pubDate>
		<dc:creator>grangerx</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grangerx.wordpress.com/?p=58</guid>
		<description><![CDATA[To record audio, for example, from a Firefox/Flash-based application, running on Fedora 11, the following command seems to work: pacat --record &#124; sox -t raw -r 44100 -s -L -b 16 -c 2 - "output.wav" Installation and usage instructions after the break&#8230; The &#8220;pacat&#8221; command is the pulseaudio command-line audio recording/playback utility.  In this instance, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=58&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To record audio, for example, from a Firefox/Flash-based application, running on Fedora 11, the following command seems to work:</p>
<p style="padding-left:30px;"><code>pacat --record | sox -t raw -r 44100 -s -L -b 16 -c 2 - "output.wav"</code></p>
<p>Installation and usage instructions after the break&#8230;</p>
<p><span id="more-58"></span></p>
<p>The &#8220;pacat&#8221; command is the pulseaudio command-line audio recording/playback utility.  In this instance, it is being used to &#8220;&#8211;record&#8221; from the default source (this can be changed, if needed, using additional command-line parameters).</p>
<p>The &#8220;pacat&#8221; command defaults to exporting &#8220;raw&#8221; formatted data, which must then be converted to a valid wave file using the &#8220;sox&#8221; utility.</p>
<p>The &#8220;sox&#8221; utility is part of the &#8220;Sound eXchange&#8221; utility for linux, which is a &#8220;swiss-army-knife&#8221; multi-use application.  In this case, it is being used to convert the raw output from pacat to the more traditional 44K,16bit, Stereo WAV file that is ubiquitous in PC computing.</p>
<p>This can be further converted to an MP3, but how to do so is beyond the scope of this document at this time.</p>
<p>Installation:</p>
<p>To install the pacat utility (part of pulseaudio-utils):</p>
<blockquote><p><code>#yum install pulseaudio-utils</code></p></blockquote>
<p>To install the sox utility:</p>
<blockquote><p><code>#yum install sox</code></p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grangerx.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grangerx.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grangerx.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grangerx.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grangerx.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grangerx.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grangerx.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grangerx.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grangerx.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grangerx.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grangerx.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grangerx.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grangerx.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grangerx.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=58&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grangerx.wordpress.com/2009/08/03/fedora-11-recording-audio-from-pulseaudio-using-parec-and-sox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f63f86a3b6c1739a2227a7d6be4620e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">grangerx</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora 11 x86_64, Installing nerolinux-3.5.2.3-x86_64.rpm</title>
		<link>http://grangerx.wordpress.com/2009/06/10/fedora-11-x86_64-installing-nerolinux-3-5-2-3-x86_64-rpm/</link>
		<comments>http://grangerx.wordpress.com/2009/06/10/fedora-11-x86_64-installing-nerolinux-3-5-2-3-x86_64-rpm/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 20:10:06 +0000</pubDate>
		<dc:creator>grangerx</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora11]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nero]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[x86_64]]></category>

		<guid isPermaLink="false">http://grangerx.wordpress.com/2009/06/10/fedora-11-x86_64-installing-nerolinux-3-5-2-3-x86_64-rpm/</guid>
		<description><![CDATA[Fedora 11 x86_64 has (apparently) removed support for the "amd64" arch tag on RPM files.  This means that to install the rpm file, the --ignorearch option must be issued to the rpm command-line utility.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=49&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Fedora 11 x86_64 has (apparently) removed support for the &#8220;amd64&#8243; arch tag on RPM files, opting instead for only the official &#8220;x86_64&#8243; tag.</p>
<p>This means that to install the nerolinux 64-bit rpm file, the &#8211;ignorearch option must be issued to the rpm command-line utility, as follows:</p>
<p><code>#rpm --ignorearch -ivh nerolinux-3.5.2.3-x86_64.rpm</code></p>
<p>That should allow this particular rpm to be installed successfully.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grangerx.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grangerx.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grangerx.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grangerx.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grangerx.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grangerx.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grangerx.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grangerx.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grangerx.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grangerx.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grangerx.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grangerx.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grangerx.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grangerx.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=49&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grangerx.wordpress.com/2009/06/10/fedora-11-x86_64-installing-nerolinux-3-5-2-3-x86_64-rpm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f63f86a3b6c1739a2227a7d6be4620e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">grangerx</media:title>
		</media:content>
	</item>
		<item>
		<title>Bookmarklet &#8211; Firefox Google Translate with Language Prompt</title>
		<link>http://grangerx.wordpress.com/2009/05/27/bookmarklet-firefox-google-translate-with-language-prompt/</link>
		<comments>http://grangerx.wordpress.com/2009/05/27/bookmarklet-firefox-google-translate-with-language-prompt/#comments</comments>
		<pubDate>Wed, 27 May 2009 16:28:10 +0000</pubDate>
		<dc:creator>grangerx</dc:creator>
				<category><![CDATA[bookmarklets]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bookmarklet]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[translate]]></category>

		<guid isPermaLink="false">http://grangerx.wordpress.com/?p=35</guid>
		<description><![CDATA[How-To: Translate whatever web page is currently being viewed into English by using a bookmarklet that takes the current URL and sends it to Google Translate directly.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=35&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Most of the internet is written in English.  There are web services like <a href="http://translate.google.com/translate_tools">Google Translate</a> that can translate non-English pages, but using them requires a distracting trip to Google.</p>
<p>To simplify the process, here is a bookmarklet that takes the current URL and sends it to Google Translate directly.</p>
<p><span id="more-35"></span> To create a bookmarklet for Firefox 3 that translates the current web-page from another language to english, create a bookmark and set the bookmark properties to the following values:</p>
<p>Name:</p>
<blockquote><p><code>Google Translate - Prompt</code></p></blockquote>
<p>Location:</p>
<blockquote><p><code>javascript:var%20language=prompt(%22Enter%20source%20language%20code:%20\n\n%20automatic%20-%20au\n%20arabic%20-%20ar\n%20chinese%20simplified%20-%20zh-CN\n%20chinese%20traditional%20-%20zh-TW\n%20french%20-%20fr\n%20german%20-%20de\n%20italian%20-%20it\n%20korean%20-%20ko\n%20portuguese%20-%20pt\n%20russian%20-%20ru\n%20spanish%20-%20es\n%20%22,%22au%22);%20%20if%20(language%20!=%20null)%20{%20location=%22http://translate.google.com/translate?sl=%22%20%2B%20encodeURIComponent(language)%20%2B%20%22&amp;tl=en&amp;u=%22%20%20%2B%20encodeURIComponent(location);%20}</code></p></blockquote>
<p>Location (again, this time not encoded, although wordpress seems to maul the quotes and plusses this way):</p>
<p><code>javascript:var language=prompt("Enter source language code: \n\n automatic - au\n arabic - ar\n chinese simplified - zh-CN\n chinese traditional - zh-TW\n french - fr\n german - de\n italian - it\n korean - ko\n portuguese - pt\n russian - ru\n spanish - es\n","au");  if (language != null) { location="http://translate.google.com/translate?sl=" + encodeURIComponent(language) + "&amp;tl=en&amp;u="  + encodeURIComponent(location); }</code></p>
<p>Keyword:</p>
<blockquote><p><code>bookmarklet,google,translate</code></p></blockquote>
<p>Description:</p>
<blockquote><p><code>Bookmarklet prompts for the source language of the currently-displayed web-page, and then sends it to google translate with the proper URL to tranlate it (to english). This bookmarklet is based on Google Translation bookmarklet from https://www.squarefree.com/bookmarklets/misc.html</code></p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grangerx.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grangerx.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grangerx.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grangerx.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grangerx.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grangerx.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grangerx.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grangerx.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grangerx.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grangerx.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grangerx.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grangerx.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grangerx.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grangerx.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=35&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grangerx.wordpress.com/2009/05/27/bookmarklet-firefox-google-translate-with-language-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f63f86a3b6c1739a2227a7d6be4620e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">grangerx</media:title>
		</media:content>
	</item>
		<item>
		<title>CentOS 5, Ruby, and SQLite3 &#8211; Installation</title>
		<link>http://grangerx.wordpress.com/2009/05/18/centos-5-and-ruby/</link>
		<comments>http://grangerx.wordpress.com/2009/05/18/centos-5-and-ruby/#comments</comments>
		<pubDate>Mon, 18 May 2009 17:47:36 +0000</pubDate>
		<dc:creator>grangerx</dc:creator>
				<category><![CDATA[centos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grangerx.wordpress.com/2009/05/18/centos-5-and-ruby/</guid>
		<description><![CDATA[Assorted notes regarding: Installing ruby and ruby gems on centos 5, with a specific focus of sqlite3.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=25&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Getting sqlite3 to work with ruby and centos5 is apparently something of a chore.</p>
<p>The notes below are the collected notes regarding how to get it to work.  The instructions appear to allow the sqlite ruby gem to be successfully installed.</p>
<p><span id="more-25"></span>Installing ruby and ruby gems on CentOS 5:</p>
<p>#yum install ruby</p>
<p>#yum install ruby-devel ruby-gems</p>
<p><strong>[And the most important/non-obvious one: yum install sqlite-devel]</strong></p>
<p>#yum install sqlite-devel</p>
<p>#gem install sqlite3-ruby</p>
<p>Note: after installing the sqlite3-ruby as a ruby gem, your ruby code will have to include the following in order to use the sqlite3 gem:</p>
<blockquote><p>require &#8216;rubygems&#8217;</p>
<p>require &#8216;sqlite3&#8242;</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grangerx.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grangerx.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grangerx.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grangerx.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grangerx.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grangerx.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grangerx.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grangerx.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grangerx.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grangerx.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grangerx.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grangerx.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grangerx.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grangerx.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=25&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grangerx.wordpress.com/2009/05/18/centos-5-and-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f63f86a3b6c1739a2227a7d6be4620e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">grangerx</media:title>
		</media:content>
	</item>
		<item>
		<title>Checking the block size of an existing linux ext3 partition</title>
		<link>http://grangerx.wordpress.com/2009/05/05/checking-the-block-size-of-an-existing-linux-ext3-partition/</link>
		<comments>http://grangerx.wordpress.com/2009/05/05/checking-the-block-size-of-an-existing-linux-ext3-partition/#comments</comments>
		<pubDate>Tue, 05 May 2009 19:22:17 +0000</pubDate>
		<dc:creator>grangerx</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ext3]]></category>
		<category><![CDATA[tune2fs]]></category>

		<guid isPermaLink="false">http://grangerx.wordpress.com/?p=18</guid>
		<description><![CDATA[How to determine the block size and formatting options of an existing ext3 partition with the tune2fs utility.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=18&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The tune2fs command can be used in linux to determine the formatting or blocksize used when an ext2 / ext3 / ext4 (?) partition was created.</p>
<p><span id="more-18"></span>For example:</p>
<p>#/sbin/tune2fs -l /dev/sda1</p>
<p>will return a page of data values concerning the formatting of the ext2/ext3 partition.</p>
<p>Two lines that are of special interest are:</p>
<p>&#8220;Block size:&#8221; and &#8220;Filesystem features:&#8221;</p>
<p>which show the block size (in bytes) and the various special features/options used when formatting the partition (such as if the fs has an ext3 journal).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grangerx.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grangerx.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grangerx.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grangerx.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grangerx.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grangerx.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grangerx.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grangerx.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grangerx.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grangerx.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grangerx.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grangerx.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grangerx.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grangerx.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=18&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grangerx.wordpress.com/2009/05/05/checking-the-block-size-of-an-existing-linux-ext3-partition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f63f86a3b6c1739a2227a7d6be4620e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">grangerx</media:title>
		</media:content>
	</item>
		<item>
		<title>The maximum size limit of the ext3 filesystem in linux 2.6.x</title>
		<link>http://grangerx.wordpress.com/2009/05/05/the-maximum-size-limit-of-the-ext3-filesystem-in-linux-26x/</link>
		<comments>http://grangerx.wordpress.com/2009/05/05/the-maximum-size-limit-of-the-ext3-filesystem-in-linux-26x/#comments</comments>
		<pubDate>Tue, 05 May 2009 19:01:32 +0000</pubDate>
		<dc:creator>grangerx</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[32-bit]]></category>
		<category><![CDATA[ext3]]></category>
		<category><![CDATA[i386]]></category>

		<guid isPermaLink="false">http://grangerx.wordpress.com/?p=16</guid>
		<description><![CDATA[As of linux kernel 2.6.19, the size limit for an ext3 file system on a 32-bit host appears to be 16TB.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=16&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As of Linux kernel 2.6.x, the official maximum filesystem size for a 32-bit ( i386 ) host ext3 file system was 4TB (or, seemingly, 8TB as of kernel 2.6.17).</p>
<p>However, as of linux kernel 2.6.19, the 32-bit ext3 maximum size appears to be 16TB.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grangerx.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grangerx.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grangerx.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grangerx.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grangerx.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grangerx.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grangerx.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grangerx.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grangerx.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grangerx.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grangerx.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grangerx.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grangerx.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grangerx.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=16&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grangerx.wordpress.com/2009/05/05/the-maximum-size-limit-of-the-ext3-filesystem-in-linux-26x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f63f86a3b6c1739a2227a7d6be4620e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">grangerx</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Fedora 10 on an ECS A740GM-M v1.0 Motherboard using &#8220;radeon.blacklist=yes&#8221;</title>
		<link>http://grangerx.wordpress.com/2009/05/05/installing-fedora-10-on-an-ecs-a740gm-m-v10-motherboard-using-radeonblacklistyes/</link>
		<comments>http://grangerx.wordpress.com/2009/05/05/installing-fedora-10-on-an-ecs-a740gm-m-v10-motherboard-using-radeonblacklistyes/#comments</comments>
		<pubDate>Tue, 05 May 2009 18:48:23 +0000</pubDate>
		<dc:creator>grangerx</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://grangerx.wordpress.com/2009/05/05/installing-fedora-10-on-an-ecs-a740gm-m-v10-motherboard-using-radeonblacklistyes/</guid>
		<description><![CDATA[Adding the radeon.blacklist=yes to the fedora 10 installer kernel boot command line is required to allow the installation to complete when used with an ECS A740GM-M v1.0 motherboard.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=14&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On an ECS A740GM-M v1.0 motherboard, the fedora10 i386 installer hangs after reaching the /sbin/loader stage (just before the first actual dialog box is displayed).</p>
<p>The only kernel boot parameter that seems to help is:</p>
<p>radeon.blacklist=yes</p>
<p>which can be appended to the installer kernel line by pressing the Tab key at the DVD boot menu, then typing space and the parameter.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grangerx.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grangerx.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grangerx.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grangerx.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grangerx.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grangerx.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grangerx.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grangerx.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grangerx.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grangerx.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grangerx.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grangerx.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grangerx.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grangerx.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=14&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grangerx.wordpress.com/2009/05/05/installing-fedora-10-on-an-ecs-a740gm-m-v10-motherboard-using-radeonblacklistyes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f63f86a3b6c1739a2227a7d6be4620e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">grangerx</media:title>
		</media:content>
	</item>
		<item>
		<title>Intel DX48BT2 Motherboard PXE-E05</title>
		<link>http://grangerx.wordpress.com/2009/05/05/intel-dx48bt2-motherboard-pxe-e05/</link>
		<comments>http://grangerx.wordpress.com/2009/05/05/intel-dx48bt2-motherboard-pxe-e05/#comments</comments>
		<pubDate>Tue, 05 May 2009 13:47:50 +0000</pubDate>
		<dc:creator>grangerx</dc:creator>
				<category><![CDATA[pc]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[bios]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[pxe]]></category>

		<guid isPermaLink="false">http://grangerx.wordpress.com/?p=3</guid>
		<description><![CDATA[Using the Intel BIOS Recovery flash procedure to repair a broken PXE Boot Agent (PXE-E05) on an Intel BoneTrail ( DX48BT2 ) motherboard.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=3&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Using the Intel BIOS Recovery flash procedure to repair a broken PXE Boot Agent ( boot error PXE-E05 ) on an Intel BoneTrail ( DX48BT2 ) motherboard.</p>
<p><span id="more-3"></span>When updating the BIOS of an Intel &#8220;BoneTrail&#8221; ( DX48BT2 ) motherboard recently, I discovered that any BIOS update past v1782 would break the PXE boot functionality of the built-in network card.</p>
<p>The actual network functionality itself remained fine, but the ability to boot via PXE was lost.</p>
<p>The error message displayed at boot was:</p>
<p>PXE-E05: The LAN adapter&#8217;s configuration is corrupted or has not been initialized.  The Boot Agent cannot continue.</p>
<p>Reflashing the BIOS back to the last working version (v 1782 (2008/07/16)) made the agent work again, but left the system with no way to upgrade the BIOS.</p>
<p>Regular flashing wouldn&#8217;t fix anything, but it turns out that Intel has a &#8220;BIOS Recovery&#8221; boot mechanism.</p>
<p>It requires a CD-ROM be burned with the Recovery BIOS image on it (not as a bootable CD, just as a file in the root directory of the CD).  Then, the &#8220;BIOS Recovery&#8221; jumper must be removed from the motherboard, and the machine is booted, which causes it to read the CD, and initiate a 5 minute flash process.</p>
<p>This recovery mode flash worked well to restore the PXE Boot Agent and the latest version of the BIOS.</p>
<p>[By the way, thanks to Intel support person "Jose", whom I spoke with via Intel's online support chat applet.]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/grangerx.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/grangerx.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/grangerx.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/grangerx.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/grangerx.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/grangerx.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/grangerx.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/grangerx.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/grangerx.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/grangerx.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/grangerx.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/grangerx.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/grangerx.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/grangerx.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grangerx.wordpress.com&amp;blog=7627976&amp;post=3&amp;subd=grangerx&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grangerx.wordpress.com/2009/05/05/intel-dx48bt2-motherboard-pxe-e05/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f63f86a3b6c1739a2227a7d6be4620e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">grangerx</media:title>
		</media:content>
	</item>
	</channel>
</rss>
