<?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>yaleman.org &#187; Computers</title>
	<atom:link href="http://www.yaleman.org/category/computers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yaleman.org</link>
	<description>a blog by James Hodgkinson</description>
	<lastBuildDate>Thu, 19 Jan 2012 11:10:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Getting closer to the dream&#8230;</title>
		<link>http://www.yaleman.org/2009/10/14/getting-closer-to-the-dream/</link>
		<comments>http://www.yaleman.org/2009/10/14/getting-closer-to-the-dream/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 00:35:54 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Literature]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[portable]]></category>
		<category><![CDATA[primer]]></category>
		<category><![CDATA[stephenson]]></category>
		<category><![CDATA[wikipedia]]></category>
		<category><![CDATA[wikireader]]></category>

		<guid isPermaLink="false">http://www.ricetek.net/?p=498</guid>
		<description><![CDATA[We are getting closer to what I have dreamed and written of before &#8211; a universal information access device that allows people to learn from wherever and whenever they are. The WikiReader is a portable, low power device which has a full copy of Wikipedia that you can carry with you and access from anywhere. [...]]]></description>
			<content:encoded><![CDATA[<p>We are getting closer to what I have dreamed and <a href="http://www.ricetek.net/2007/08/28/nell%e2%80%99s-first-experiences-with-the-primer" class="broken_link">written of before</a> &#8211; a universal information access device that allows people to learn from wherever and whenever they are. The <a href="http://www.thewikireader.com/index.html">WikiReader</a> is a portable, low power device which has a full copy of <a href="http://www.wikipedia.org/">Wikipedia</a> that you can carry with you and access from anywhere.</p>
<p>It was designed by the team that brought the OpenMoko to the world, the first true open source mobile phone. I will be interested to see what happens with the developer&#8217;s side of things &#8211; hopefully they will allow open access to the software of the device so that it can be hacked and used for other things as well. Maybe this is the cheap ebook reader I have been looking for?</p>
<p>Buy yourself a <a href="http://www.amazon.com/gp/product/B002N5521W?ie=UTF8&amp;tag=ozmusic-20&amp;linkCode=as2&amp;camp=10789&amp;creative=390957&amp;creativeASIN=B002N5521W">WikiReader by clicking here</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=ozmusic-20&amp;l=as2&amp;o=1&amp;a=B002N5521W" border="0" alt="" width="1" height="1" /> and support an incredible project <img src='http://www.yaleman.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.yaleman.org/2009/10/14/getting-closer-to-the-dream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command line network drive quickies</title>
		<link>http://www.yaleman.org/2009/10/12/command-line-network-drive-quickies/</link>
		<comments>http://www.yaleman.org/2009/10/12/command-line-network-drive-quickies/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 06:04:46 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.ricetek.net/?p=483</guid>
		<description><![CDATA[The most common way to connect a drive to a network path in Windows is this command: net use X: \\SERVER\Share Where: X: is the drive letter you wish to map the share to, \\SERVER\Share is the UNC path to the share. Assuming you have permissions to map drives and to access that share, it [...]]]></description>
			<content:encoded><![CDATA[<p>The most common way to <a href="http://support.microsoft.com/kb/308582">connect a drive to a network path in Windows</a> is this command:</p>
<blockquote><p><em>net use X: \\SERVER\Share</em></p></blockquote>
<p>Where:</p>
<ul>
<li> <em>X:</em> is the drive letter you wish to map the share to,</li>
<li><em>\\SERVER\Share</em> is the UNC path to the share.</li>
</ul>
<p>Assuming you have permissions to map drives and to access that share, it will map the drive and tell you that it mapped successfully.</p>
<p>If you want quick access and do not want to map a network drive, you can access a UNC Path directly from the Command Prompt using pushd.</p>
<p>For example:</p>
<blockquote><p><em>pushd \\SERVER\Share</em></p></blockquote>
<p>This will connect to the path automatically for you and make it your current working directory.</p>
<p>When you are finished on the network share enter the <em>popd</em> command. This will return you to the directory you were in before and delete the temporary network drive.</p>
<p>The <a href="http://support.microsoft.com/kb/317379"><em>popd</em> and <em>pushd</em> commands</a> can be used with local directories. If change to a directory with <em>pushd</em> it stores the previous location you were in so that when you issue the <em>popd</em> command you are returned to it. This is similar to bash-stacking in linux where if you open a shell within an existing shell, quitting that will take you back to where you were when you opened it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yaleman.org/2009/10/12/command-line-network-drive-quickies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When variable substitution goes wrong&#8230;</title>
		<link>http://www.yaleman.org/2009/05/14/when-variable-substitution-goes-wrong/</link>
		<comments>http://www.yaleman.org/2009/05/14/when-variable-substitution-goes-wrong/#comments</comments>
		<pubDate>Thu, 14 May 2009 06:09:40 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[variable]]></category>

		<guid isPermaLink="false">http://www.ricetek.net/?p=439</guid>
		<description><![CDATA[Boy I love spam some days, it&#8217;s just &#8230; weird We had this one forwarded to us to block, I wonder if it&#8217;ll break something in our wonderfully crap filtering system. &#8212;&#8211;Original Message&#8212;&#8211; From: Julius Vailes [mailto:Julius-assolato@leeegs.demon.nl] Sent: Monday, 11 May 2009 10:06 AM To: [deleted] Subject: $WordFile{click.txt} $WordFile{click.txt} $WordFile{click.txt} $WordFile{click.txt} $WordFile{click.txt} $WordFile{click.txt} $WordFile{click.txt} $WordFile{click.txt} [...]]]></description>
			<content:encoded><![CDATA[<p>Boy I love spam some days, it&#8217;s just &#8230; weird <img src='http://www.yaleman.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  We had this one forwarded to us to block, I wonder if it&#8217;ll break something in our wonderfully <a href="http://us.trendmicro.com/us/products/enterprise/interscan-messaging-security-suite/">crap filtering system</a>.</p>
<blockquote><p>&#8212;&#8211;Original Message&#8212;&#8211;<br />
From: Julius Vailes [mailto:<a href="mailto:Julius-assolato@leeegs.demon.nl">Julius-assolato@leeegs.demon.nl</a>]<br />
Sent: Monday, 11 May 2009 10:06 AM<br />
To: [deleted]<br />
Subject: $WordFile{click.txt}</p>
<p>$WordFile{click.txt} $WordFile{click.txt} $WordFile{click.txt}<br />
$WordFile{click.txt} $WordFile{click.txt} $WordFile{click.txt}<br />
$WordFile{click.txt} $WordFile{click.txt} $WordFile{click.txt}<br />
$WordFile{click.txt} $WordFile{click.txt} $WordFile{click.txt}<br />
$WordFile{click.txt} $WordFile{click.txt} $WordFile{click.txt}<br />
$WordFile{click.txt} $WordFile{click.txt} $WordFile{click.txt}<br />
$WordFile{click.txt} $WordFile{click.txt}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.yaleman.org/2009/05/14/when-variable-substitution-goes-wrong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find the last five IP&#8217;s I logged in as</title>
		<link>http://www.yaleman.org/2008/11/28/find-the-last-five-ips-i-logged-in-as/</link>
		<comments>http://www.yaleman.org/2008/11/28/find-the-last-five-ips-i-logged-in-as/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 12:32:52 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ricetek.net/?p=369</guid>
		<description><![CDATA[So, to find the last five IP&#8217;s a user called &#8220;user&#8221; has logged in as, do this from .. well, a commandline. last -i &#124; grep user &#124; head -n 5 Last shows the last (lots) of users that logged in, the -i shows IP&#8217;s, then you use grep to filter by the word &#8220;user&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>So, to find the last five IP&#8217;s a user called &#8220;user&#8221; has logged in as, do this from .. well, a commandline.</p>
<blockquote><p>last -i | grep user | head -n 5</p></blockquote>
<p>Last shows the last (lots) of users that logged in, the -i shows IP&#8217;s, then you use grep to filter by the word &#8220;user&#8221; and use head show the top five. Yay, all done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yaleman.org/2008/11/28/find-the-last-five-ips-i-logged-in-as/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EPS Files on Gimp</title>
		<link>http://www.yaleman.org/2008/11/11/eps-files-on-gimp/</link>
		<comments>http://www.yaleman.org/2008/11/11/eps-files-on-gimp/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 13:00:27 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Graphics]]></category>

		<guid isPermaLink="false">http://www.ricetek.net/?p=360</guid>
		<description><![CDATA[So, I love running GIMP, it&#8217;s good fun. Easy once you learn it, lightish on resources and best of all it&#8217;s free. The PortableApps.com edition has been getting some loving from me of late &#8211; who can complain when it brings your settings along easily! I tried opening an eps file the other day and [...]]]></description>
			<content:encoded><![CDATA[<p>So, I love running <a href="http://www.gimp.org/">GIMP</a>, it&#8217;s good fun. Easy once you learn it, lightish on resources and best of all it&#8217;s free. The <a href="http://portableapps.com/">PortableApps.com</a> <a href="http://portableapps.com/apps/graphics_pictures/gimp_portable">edition</a> has been getting some loving from me of late &#8211; who can complain when it brings your settings along easily! <img src='http://www.yaleman.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>I tried opening an eps file the other day and ran into a problem &#8211; GhostScript isn&#8217;t installed as standard.</p>
<p>After installing the 64-bit version for windows from <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/gpl863.htm">here,</a> there was only one more thing to do. Google-fu got me to a <a href="http://portableapps.com/node/11093">german-language page</a> (<a href="http://translate.google.com/translate?u=http://portableapps.com/node/11093&amp;hl=en&amp;ie=UTF-8&amp;sl=de&amp;tl=en">translation here</a>) that showed me most of how to fix it. Below is a sample default.env file to show the Gimp where to go <img src='http://www.yaleman.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  The file has to be %GIMPFOLDER%\App\gimp\lib\gimp\2.0\environ\default.env and has to have all the extra newlines according to the original page (and it worked after I did that, don&#8217;t ask.</p>
<blockquote><p># Example entry in files like these</p>
<p># FOOPATH=/path/to/foo/stuff</p>
<p> </p>
<p>Path=C:\Program Files\Gimp-2.0\bin</p>
<p> </p>
<p>GS_LIB=C:\Program Files\gs\gs8.63\lib\</p>
<p> </p>
<p>GS_PROG=C:\Program Files\gs\gs8.63\bin\gswin32c.exe</p>
<p> </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.yaleman.org/2008/11/11/eps-files-on-gimp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sound with Pidgin on the EEE PC</title>
		<link>http://www.yaleman.org/2007/12/16/sound-with-pidgin-on-the-eee-pc/</link>
		<comments>http://www.yaleman.org/2007/12/16/sound-with-pidgin-on-the-eee-pc/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 12:05:08 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[EEE PC]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ricetek.net/2007/12/16/sound-with-pidgin-on-the-eee-pc/</guid>
		<description><![CDATA[I was trying to get sound working on an EEE PC in Pidgin, and had to do a bit of googling before I found it&#8230; here&#8217;s the solution (taken from the EEEuser forums) Press Ctrl+P to go to Preferences Then select Sounds tab In the sound method section, select &#8220;Command&#8221; Type &#8220;aplay -q %s&#8221; (without [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to get sound working on an EEE PC in Pidgin, and had to do a bit of googling before I found it&#8230; here&#8217;s the solution (<a href="http://forum.eeeuser.com/viewtopic.php?pid=46371#p46371" target="_blank">taken from the EEEuser forums</a>)</p>
<blockquote>
<ol>
<li>Press Ctrl+P to go to Preferences</li>
<li>Then select Sounds tab</li>
<li>In the sound method section, select &#8220;Command&#8221;</li>
<li>Type &#8220;aplay -q %s&#8221; (without the quotes) as the command.</li>
</ol>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.yaleman.org/2007/12/16/sound-with-pidgin-on-the-eee-pc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nvidia Dual monitors on Ubuntu Dapper</title>
		<link>http://www.yaleman.org/2006/06/11/nvidia-dual-monitors-on-ubuntu-dapper/</link>
		<comments>http://www.yaleman.org/2006/06/11/nvidia-dual-monitors-on-ubuntu-dapper/#comments</comments>
		<pubDate>Sun, 11 Jun 2006 07:03:41 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.ricetek.net/?p=420</guid>
		<description><![CDATA[This was a seperate page on the site, now it&#8217;s just a blog post. Here it is:   Ok, so there&#8217;s a bit of a dearth of real information on real topics on the internet, and I try to fix that where I can, here&#8217;s how to get (at the moment anyway) dual monitors working [...]]]></description>
			<content:encoded><![CDATA[<div>
<p><em>This was a seperate page on the site, now it&#8217;s just a blog post. Here it is:</em></p>
<p> </p>
<p>Ok, so there&#8217;s a bit of a dearth of real information on real topics on the internet, and I try to fix that where I can, here&#8217;s how to get (at the moment anyway) dual monitors working in Ubuntu Dapper on an Nvidia video card.</p>
<p>Getting access to the packages<br />
Ubuntu plays nice as far as non-open-source programs and so forth goes, so you&#8217;re going to have to <a href="http://ubuntuguide.org/wiki/Dapper#How_to_apt-get_the_easy_way_.28Synaptic.29">activate the Multiverse and Universe repositories in Synaptic</a>.</p>
<p>Becoming god (or escalating your user to root for a while)<br />
I&#8217;m a console weenie, and that&#8217;s how to get this working, so to save messing around do this:</p>
<blockquote><p>sudo passwd</p></blockquote>
<p>Then enter your password, then follow the prompts to change the root password so you can actually su to root and do things easily. Yes, it&#8217;ll let you actually log in as root, yes this makes your PC less secure if you&#8217;re running without a firewall and an easily guessed password, no, I don&#8217;t care about you if you can&#8217;t secure your network. Change to the root login:</p>
<blockquote><p>su</p></blockquote>
<p>Put in your password and now you&#8217;re effectively logged in as root. Don&#8217;t do stupid things like deleting all your files &#8211; if you do, that&#8217;s your own fault.</p>
<p>Install the nvidia-glx package and its dependencies &#8211; here&#8217;s the commands via the console:</p>
<blockquote><p>apt-get update<br />
apt-get install nvidia-glx</p></blockquote>
<p>The first command updates your apt package list, and the second one installs the files. Read what&#8217;s on the screen, make sure it&#8217;s going to install things and then say yes when it asks you to.</p>
<p>Setting up xorg.conf<br />
First, make a backup &#8211; you want to be able to get back to where you were before you broke something if you did.</p>
<blockquote><p>cp /etc/X11/xorg.conf /etc/X11/xorg.conf.mybackup</p></blockquote>
<p>This&#8217;ll (if you didn&#8217;t guess) make a backup to /etc/X11/xorg.conf.mybackup.</p>
<p>In linux <a href="http://www.ati.com/">ATI</a> has a driver that works, kinda. <a href="http://www.nvidia.com/">Nvidia</a>&#8216;s got a great driver, but a sucky config program, so this is going to take a little bit of messing around. What we&#8217;re going to have to do is trick it a little. This might be the hard way to do it, but it&#8217;s how I got it working, so meh. Do this:</p>
<blockquote><p>rm /etc/X11/xorg.conf<br />
nvidia-xconfig &#8211;twinview</p></blockquote>
<p>That&#8217;ll delete the original file, then you&#8217;re running the nvidia config program and telling it to setup your xorg.conf file with twinview enabled. It should also set it up right to use the proprietry nvidia module instead of open source one.</p>
<p>After that, you&#8217;ll have to setup multiple screens &#8211; this was shamelessly stolen from <a href="http://download.nvidia.com/XFree86/Linux-x86/1.0-8762/README/appendix-p.html">Nvidia&#8217;s Howto on setting up multiple screens</a> which is not exactly what we want to do.</p>
<p>Open /etc/X11/xorg.conf for editing &#8211; I use VIM, but you can use gedit by going (from your logged-in-as-root console):</p>
<blockquote><p>gedit /etc/X11/xorg.conf</p></blockquote>
<p>Make sure to edit this line in the &#8220;Module&#8221; section to disable the glx module loading, because the nvidia driver seems to have it built in or something:</p>
<p>Original:</p>
<blockquote><p>Load &#8220;glx&#8221;</p></blockquote>
<p>Edited:</p>
<blockquote><p># Load &#8220;glx&#8221;</p></blockquote>
<p>Delete the section that starts with Section &#8220;Device&#8221; and then create two new Device sections, each listing the BusID of the graphics card to be shared and listing the driver as &#8220;nvidia&#8221;, and assign each a separate screen:</p>
<blockquote><p>Section &#8220;Device&#8221;<br />
Identifier &#8220;nvidia0&#8243;<br />
Driver &#8220;nvidia&#8221;<br />
BusID &#8220;PCI:5:0:0&#8243;<br />
Screen 0<br />
EndSection</p>
<p>Section &#8220;Device&#8221;<br />
Identifier &#8220;nvidia1&#8243;<br />
Driver &#8220;nvidia&#8221;<br />
BusId &#8220;PCI:5:0:0&#8243;<br />
Screen 1<br />
EndSection</p></blockquote>
<p>To find the right BusID, you&#8217;ll need to run the command:</p>
<blockquote><p>lspci</p></blockquote>
<p>Look for something with Nvidia VGA in it, and on the left will be something like &#8220;00:00:05&#8243; which would mean you&#8217;d use the same as above.</p>
<p>Then, create two Screen sections, each using one of the Device sections:</p>
<blockquote><p>Section &#8220;Screen&#8221;<br />
Identifier &#8220;Screen0&#8243;<br />
Device &#8220;nvidia0&#8243;<br />
Monitor &#8220;Monitor0&#8243;<br />
DefaultDepth 24<br />
Subsection &#8220;Display&#8221;<br />
Depth 24<br />
Modes &#8220;1024&#215;768&#8243;<br />
EndSubsection<br />
EndSection</p>
<p>Section &#8220;Screen&#8221;<br />
Identifier &#8220;Screen1&#8243;<br />
Device &#8220;nvidia1&#8243;<br />
Monitor &#8220;Monitor1&#8243;<br />
DefaultDepth 24<br />
Subsection &#8220;Display&#8221;<br />
Depth 24<br />
Modes &#8220;1024&#215;768&#8243;<br />
EndSubsection<br />
EndSection</p></blockquote>
<p>This&#8217;ll setup a pair of monitors running 1024&#215;768 at 24bit colour depth. If you want different resolutions or depths, just change it &#8211; remember that it won&#8217;t work too well if you&#8217;re running two different resolutions &#8211; I don&#8217;t know if it&#8217;ll work at all.</p>
<p>Since you&#8217;re running a second monitor you&#8217;ll need to add another monitor definition to the file, so add this somewhere:</p>
<blockquote><p>Section &#8220;Monitor&#8221;<br />
HorizSync 60-110<br />
Identifier &#8220;Monitor1&#8243;<br />
Option &#8220;DPMS&#8221;<br />
VendorName &#8220;Monitor2&#8243;<br />
VertRefresh 65.0-85.0<br />
EndSection</p></blockquote>
<p>That&#8217;s the right setup for an average 17&#8243; CRT that&#8217;ll do 1024&#215;768@85hz. I couldn&#8217;t find a page that&#8217;ll show you the right way to do any other setup, but it&#8217;s pretty easy to work out.</p>
<p>Next, edit the ServerLayout section to use and position both Screen sections. Just add these lines (you may need to change &#8220;leftOf&#8221; to &#8220;rightOf&#8221; or something like that depending on how you have your monitors setup &#8211; or just swap the cables over <img src='http://www.yaleman.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> :</p>
<blockquote><p>Screen 0 &#8220;Screen0&#8243;<br />
Screen 1 &#8220;Screen1&#8243; leftOf &#8220;Screen0&#8243;</p></blockquote>
<p>Run this again:</p>
<blockquote><p>nvidia-xconfig &#8211;twinview</p></blockquote>
<p>I don&#8217;t know why, but it fixed it for me. Restarting your pc (type &#8220;reboot&#8221; at the console for the easy way) should get you to a graphical desktop on Ubuntu spanned across two screens, with the ability to run 3D applications (they&#8217;ll probably span to 2048&#215;768, but that&#8217;s half the fun) and maximise normal applications to a single screen only &#8211; something that xinerama and plan twinview setups seem to break.</p>
<p>I&#8217;m pretty sure that should all work for you, I&#8217;ll test it on a spare machine in the next little while &#8211; suggestions/corrections? <a href="mailto:yaleman@ricetek.net%20nospam">Email me</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.yaleman.org/2006/06/11/nvidia-dual-monitors-on-ubuntu-dapper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

