<?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>Daemon Diaries</title>
	<atom:link href="http://daemondiaries.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://daemondiaries.wordpress.com</link>
	<description>cat /var/blog &#124; grep posts &#124; more</description>
	<lastBuildDate>Wed, 24 Dec 2008 15:14:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='daemondiaries.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Daemon Diaries</title>
		<link>http://daemondiaries.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://daemondiaries.wordpress.com/osd.xml" title="Daemon Diaries" />
	<atom:link rel='hub' href='http://daemondiaries.wordpress.com/?pushpress=hub'/>
		<item>
		<title>MPD OSD , 2 ways</title>
		<link>http://daemondiaries.wordpress.com/2008/06/22/mpd-osd-2-ways/</link>
		<comments>http://daemondiaries.wordpress.com/2008/06/22/mpd-osd-2-ways/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 16:30:07 +0000</pubDate>
		<dc:creator>leachim6</dc:creator>
				<category><![CDATA[scripts]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MPD]]></category>
		<category><![CDATA[MusicPlayerDaemon]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://daemondiaries.wordpress.com/?p=7</guid>
		<description><![CDATA[To play my music I use a program called MPD or Music Player Daemon &#8230; I put a bunch of keybindings in my Openbox config file to control MPD &#8230; but I never knew the name of the song that was playing currently without launching an MPD client , so I wrote a script to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daemondiaries.wordpress.com&amp;blog=2147068&amp;post=7&amp;subd=daemondiaries&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To play my music I use a program called <a href="http://musicpd.org">MPD</a> or <a href="http://musicpd.org">Music Player Daemon</a> &#8230; I put a bunch of keybindings in my <a href="http://openbox.org">Openbox</a> config file to control MPD &#8230; but I never knew the name of the song that was playing currently without launching an MPD client ,<br />
so I wrote a script to solve the problem &#8230;  I mapped this to a key , it looks like this<br />
<a href="http://daemondiaries.files.wordpress.com/2008/06/mpdosd-cropped.png"><img class="alignnone size-medium wp-image-8" src="http://daemondiaries.files.wordpress.com/2008/06/mpdosd-cropped.png?w=300&#038;h=28" alt="" width="300" height="28" /></a></p>
<p>There are two versions of the script , one in ruby and one in python , choose whichever floats your boat<br />
for the ruby version , you need two gems</p>
<pre><code>
sudo gem install librmpd
sudo gem install libxosd-ruby
</code></pre>
<p>here&#8217;s the code</p>
<p><pre class="brush: ruby;">
#!/usr/bin/env ruby
require 'rubygems'                              # Rubygems
require 'librmpd'                               # MPD Library
require 'xosd'                                  # OSD Library

mpd = MPD.new 'localhost', 6600                 # Init MPD
mpd.connect                                     # Connect to MPD Server
song = mpd.current_song                         # Get the current song

osd = XOSD::Xosd.new(5)                         # Init XOSD
osd.font = &quot;-adobe-courier-*-r-*-*-24&quot;          # Choose XOSD Font
osd.color = &quot;#287D28&quot;                           # Choose XOSD color (dark green)

if song.title then                              # Check to see if the song has a title
  osd.display_message(3, song.title)            # If so , display the title
  sleep(2)                                      # Display it for 2 seconds
else
  osd.display_message(3, song.file)             # if there is no title, display the filename
  sleep(2)                                      # Display it for 2 seconds
end
</pre></p>
<p><strong>UPDATE: If you are running the latest version of Ubuntu (now Intrepid Ibex) you can skip these steps and just run the following command</strong></p>
<pre><code>
sudo apt-get install python-osd python-mpd
</code></pre>
<p>If you&#8217;re not, follow on &#8211;</p>
<p>Then for the python version you need two modules:</p>
<p><a href="http://ichi2.net/pyosd/pyosd-0.2.14.tar.gz">http://ichi2.net/pyosd/pyosd-0.2.14.tar.gz</a><br />
Extract that tarball and run</p>
<pre><code>
tar zxvf pyosd-0.2.14.tar.gz
sudo python setup.py install
</code></pre>
<p>then go to<br />
<a href="http://pypi.python.org/pypi/python-mpd/">http://pypi.python.org/pypi/python-mpd/</a><br />
and Choose the format you want (zip,bzip,or gzip) , and decompress it<br />
then run</p>
<pre><code>sudo python setup.py install
</code></pre>
<p>ok , after all that&#8230;here&#8217;s the code</p>
<p><pre class="brush: python;">
#!/usr/bin/env python
import mpd 					                        # Import MPD Library
import pyosd										            # Import OSD Library
import time											            # Import Internal Time Module

client = mpd.MPDClient()							      # Init MPD Client
client.connect(&quot;localhost&quot;, 6600)					  # Connect to local MPD Server

cs = client.currentsong()                   # Get the currentsong dict
if 'title' in cs:                           # Check to see if &quot;title&quot; title exists in the dict
 	songtitle = cs['title']                   # If it does set songtitle to the id3 title
elif 'file' in cs:                          # If it doesn't have a title use the filename
 	songtitle = cs['file']                    # Set songtitle to the filename

FONT = &quot;-*-helvetica-*-r-normal--34-*-*&quot;    # Set the font

COLOR = &quot;#287D28&quot;									          # Set the color (dark green)
p = pyosd.osd(font=FONT, colour=COLOR)		  # init pyosd with the font and color
p.display(songtitle)								        # Finally use Pyosd to display the song title

time.sleep(2)                               # Show the message for 2 seconsd
</pre></p>
<p>If you have any questions regarding this script or any other post of mine , please do not hesitate to contact me at<br />
mike3.1459@mikedonghy.org minus pi</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/daemondiaries.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/daemondiaries.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daemondiaries.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daemondiaries.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daemondiaries.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daemondiaries.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daemondiaries.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daemondiaries.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daemondiaries.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daemondiaries.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daemondiaries.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daemondiaries.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daemondiaries.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daemondiaries.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daemondiaries.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daemondiaries.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daemondiaries.wordpress.com&amp;blog=2147068&amp;post=7&amp;subd=daemondiaries&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daemondiaries.wordpress.com/2008/06/22/mpd-osd-2-ways/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e41c7e6043c38fb0f87f79bd07ae461?s=96&#38;d=identicon" medium="image">
			<media:title type="html">leachim6</media:title>
		</media:content>

		<media:content url="http://daemondiaries.files.wordpress.com/2008/06/mpdosd-cropped.png?w=300" medium="image" />
	</item>
		<item>
		<title>FreeBSD , Install , Brief How-To</title>
		<link>http://daemondiaries.wordpress.com/2008/06/12/freebsd-install-brief-how-to/</link>
		<comments>http://daemondiaries.wordpress.com/2008/06/12/freebsd-install-brief-how-to/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 22:32:41 +0000</pubDate>
		<dc:creator>leachim6</dc:creator>
				<category><![CDATA[BSD]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[FreeBSD-howto]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[installing-FreeBSD]]></category>

		<guid isPermaLink="false">http://daemondiaries.wordpress.com/?p=4</guid>
		<description><![CDATA[I recently installed FreeBSD on my laptop &#8230; here is how it went: Backing Up! Before we do ANYTHING , make sure you backup all data that you cannot afford to lose &#8230; because more than likely we are going to be erasing any of that durring the partitioning portion &#8230; you have been warned [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daemondiaries.wordpress.com&amp;blog=2147068&amp;post=4&amp;subd=daemondiaries&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently installed FreeBSD on my laptop &#8230; here is how it went:</p>
<p><span id="more-4"></span></p>
<h1>Backing Up!</h1>
<p> Before we do ANYTHING , make sure you backup all data that you cannot afford to lose &#8230; because more than likely we are going to be erasing any of that durring the partitioning portion &#8230; you have been warned</p>
<p>Disclaimer: I am not responsible if your machine is damaged or harmed in this process , if you follow the guide EXACTLY there should be no problem</p>
<ol>
<li>Go to <a href="http://freebsd.org/where.html">FreeBSD.org</a></li>
<li>Find your architecture in the list and choose [ISO]</li>
<li>In the list of downloads , the files you need should be called 7.0-RELEASE-(YOUR ARCHITECTURE)-disc(1-3).iso , if you want to have the maximum amount of packages available to you you must have all three discs</li>
<li>Burn all three disc images to CD</li>
<li>Insert the first disc and reboot your PC</li>
<li>Select your country</li>
<li>Choose Standard Installation</li>
<li>
<h1><strong>STOP!</strong></h1>
<p> &#8230; depending on how you setup this next big all of your data may be     erased ,<br />
<h1><strong>BACKUP YOUR DATA NOW</strong></h1>
</li>
<li> Once you&#8217;ve backed up all of your data , press the d key until all slices are deleted</li>
<li> Press the c key to create a new slice &#8230; make this one about double the amount of physical ram you have in your computer , if you have 512 megs of ram make this one 1024 megs (1gig) for the type , enter 130 for a swap partition</li>
<li>Now select the remaining unused space and accept the default size (or change if if you want more than one partition and enter type 165 (UFS , the FreeBSD default)</li>
<li>Now in the next screen (the BSD DiskLabel editor) press the c key and enter an amount equal to double the amount of your ram , for instance if you have 512 megs of ram enter 1024M here , select swap as the type</li>
<li>press the c key again , accept the default , select FS as the type and enter / as the Mount Point</li>
<li>Press the q key to finish</li>
<li>Select the distribution set you want , the descriptions are pretty accurate &#8230; I chose X-User which is a pretty good base to use (you can change this at any time)</li>
<li>this is the VERY LAST CHANCE to save your data &#8230; after this it will all be overwritten , select CD/DVD for your source and sit back while FreeBSD installs (this should take between 20-40 minutes depending on your processor speed)</li>
</ol>
<h1> Optional Steps </h1>
<ol>
<h2> Setting up openbox </h2>
<li> follow the prompts after the installation , insert the other cds as the installer requests and after you reboot you should have a full working FreeBSD system , you do have X but no window manager</li>
<li> to easily get a window manager running , login as root at the login prompt using the password you set in the installer </li>
<li> type &#8220;pkg_add -r openbox&#8221; to install a window manager</li>
<li> type &#8220;pkg_add -r feh&#8221; to install a program to set your wallpaper</li>
<li> type &#8220;pkg_add -r xterm&#8221; for an x-terminal-emulator</li>
<li> type &#8220;pkg_add -r firefox&#8221; to install a web browser</li>
<li> finally type &#8220;pkg_add -r sudo&#8221; to install the sudo package &#8230; we&#8217;ll configure this later </li>
<li> type logout to log out of the root user account </li>
<li> now login as your user account </li>
<li> type vi ~/.xinitrc ,  press the i key  and type &#8220;exec openbox-session&#8221; , press the escape key , and type &#8220;:wq&#8221; </li>
<li> Finally type startx to open X and openbox will open , press the right mouse button to view the openbox menu</li>
</ol>
<h2> Setting up sudo </h2>
<p> sudo is a program that allows users to act as root to do certain tasks like adding packages , installing ports ,or editing system files</p>
<ol>
<li> login as root from a virtual-term and type visudo </li>
<li> press the i key , add a line at the bottom that says &#8220;%wheel ALL=(ALL) ALL&#8221; , press the escape key and type &#8220;:wq&#8221; </li>
<li> now you need to add your user to the &#8220;wheel&#8221; group to get sudo access , to do this type (as root) &#8220;pw usermod  -G ftpusers&#8221;     and replace  with your user name&#8230;</li>
</ol>
<p>Now as a regular user you can type sudo  followed by your password to execute any command as root</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/daemondiaries.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/daemondiaries.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daemondiaries.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daemondiaries.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daemondiaries.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daemondiaries.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daemondiaries.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daemondiaries.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daemondiaries.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daemondiaries.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daemondiaries.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daemondiaries.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daemondiaries.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daemondiaries.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daemondiaries.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daemondiaries.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daemondiaries.wordpress.com&amp;blog=2147068&amp;post=4&amp;subd=daemondiaries&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daemondiaries.wordpress.com/2008/06/12/freebsd-install-brief-how-to/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e41c7e6043c38fb0f87f79bd07ae461?s=96&#38;d=identicon" medium="image">
			<media:title type="html">leachim6</media:title>
		</media:content>
	</item>
		<item>
		<title>2 weeks with linux , thoughs&#8230;</title>
		<link>http://daemondiaries.wordpress.com/2007/11/18/linux-experience/</link>
		<comments>http://daemondiaries.wordpress.com/2007/11/18/linux-experience/#comments</comments>
		<pubDate>Sun, 18 Nov 2007 03:01:29 +0000</pubDate>
		<dc:creator>leachim6</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Operating-Systems]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xfce]]></category>
		<category><![CDATA[xubuntu]]></category>

		<guid isPermaLink="false">http://daemondiaries.wordpress.com/2007/11/18/linux-experience/</guid>
		<description><![CDATA[I guess I should tell you a bit about myself My name is Mike , I am a huge geek who loves things such as , programming , podcasts, and Linux, anyhow &#8230; lets jump right in I recently installed Ubuntu Linux on an old dell laptop I had as a test I had heard [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daemondiaries.wordpress.com&amp;blog=2147068&amp;post=3&amp;subd=daemondiaries&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I guess I should tell you a bit about myself<br />
My name is <a href="http://mikedonaghy.org">Mike</a> , I am a huge geek who loves<br />
things such as , <a href="http://en.wikipedia.org/wiki/programming">programming</a> , <a href="http://en.wikipedia.org/wiki/podcast">podcasts</a>, and <a href="http://en.wikipedia.org/wiki/Linux">Linux</a>, anyhow &#8230; lets jump right in<br />
I recently installed <a href="http://ubuntu.com">Ubuntu Linux</a> on an old dell laptop I had as a test<br />
I had heard before that Linux extremely well on older hardware , I was shocked<br />
The specs of my laptop are</p>
<ul>
<li><strong>700 mhz  pentium </strong></li>
<li><strong>128 mb of ram</strong></li>
<li><strong>10 gb hard drive</strong></li>
<li><strong>cd rom drive (no rw)</strong></li>
</ul>
<p>now for any other operating system &#8230; these specs seem a bit ridiculous&#8230;<br />
maybe it could run windows 98 or something&#8230;.<br />
so after the install&#8230; I boot up expecting a<br />
horribly slow system , and what do I find ?</p>
<p>I find a system that is just as fast as m 3 ghz+ windows box&#8230;<br />
Linux really is awesome for old systems&#8230;</p>
<p>for my window manager , which is basically the desktop environment<sup><a href="#footnote-1">1</a></sup><br />
I chose  the reasonably lightweight and extremely usable <a href="http://xfce.org">xfce</a>  which<br />
should be easier to grasp for windows users than something more Linuxy<sup><a href="#footnote-2">2</a></sup> like <a href="http://fluxbox.sourceforge.net/">fluxbox</a><sup><a href="#footnote-3">3</a> for instance<br />
anyhow&#8230;if you are a geek like me&#8230;you like to see pictures among the boring words&#8230;<br />
xfce looks really awesome&#8230;kinda like this:</sup></p>
<p><a href="http://flickr.com/photo_zoom.gne?id=2042301616&amp;size=o"><img src="http://farm3.static.flickr.com/2354/2042301616_14e95c5e79.jpg" style="border:2px double white;padding:10px;" height="375" width="500" /></a><br />
(annotated version <a href="http://flickr.com/photos/leachim6/2042301616/">here</a>)<br />
Well&#8230;that&#8217;s about it for now, check out linux using a live cd<sup><a href="#footnote-4">4</a></sup> from ubuntu <a href="http://www.ubuntu.com/getubuntu/download">Here</a></p>
<h3><sup>Footnotes</sup></h3>
<ol>
<li><sup><a title="footnote-1" name="footnote-1"></a> Yes&#8230;I know that window managers and desktop environments are not the same&#8230;I also know that you linux geeks reading are reaching for your email client of choice (probably mutt) to fire off an email to set me straight &#8230; I get it&#8230;please do not revoke my nerd license&#8230;thank you</sup></li>
<li><sup><a title="footnote-2" name="footnote-2"></a> I love making up words</sup></li>
<li><sup><a title="footnote-3" name="footnote-3"></a> Fluxbox is an awesome window manager by the way if you are a hardcore hacker and [A control Freak!] also like having complete control over your desktop [Literally down to the pixel]</sup></li>
<li><sup><a title="footnote-4" name="footnote-4"></a> A <a href="http://en.wikipedia.org/wiki/Live_cd">Live CD</a> is a cd that runs an entire operating system completely in ram , without touching your hard drive &#8230; good for evaluation purposes</sup></li>
</ol>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/daemondiaries.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/daemondiaries.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daemondiaries.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daemondiaries.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daemondiaries.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daemondiaries.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daemondiaries.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daemondiaries.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daemondiaries.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daemondiaries.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daemondiaries.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daemondiaries.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daemondiaries.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daemondiaries.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daemondiaries.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daemondiaries.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daemondiaries.wordpress.com&amp;blog=2147068&amp;post=3&amp;subd=daemondiaries&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daemondiaries.wordpress.com/2007/11/18/linux-experience/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e41c7e6043c38fb0f87f79bd07ae461?s=96&#38;d=identicon" medium="image">
			<media:title type="html">leachim6</media:title>
		</media:content>

		<media:content url="http://farm3.static.flickr.com/2354/2042301616_14e95c5e79.jpg" medium="image" />
	</item>
	</channel>
</rss>
