<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Insights of a Species-Confused Goat</title>
	<atom:link href="http://speciesconfusedgoat.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://speciesconfusedgoat.wordpress.com</link>
	<description>As I figure it out</description>
	<lastBuildDate>Tue, 05 May 2009 19:10:01 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='speciesconfusedgoat.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/8db24cf4aad817e955fcf6981985c456?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Insights of a Species-Confused Goat</title>
		<link>http://speciesconfusedgoat.wordpress.com</link>
	</image>
			<item>
		<title>Hacking Gnome-Do to Delete the Currently Playing Song</title>
		<link>http://speciesconfusedgoat.wordpress.com/2009/05/05/hacking-gnome-do-to-delete-the-currently-playing-song/</link>
		<comments>http://speciesconfusedgoat.wordpress.com/2009/05/05/hacking-gnome-do-to-delete-the-currently-playing-song/#comments</comments>
		<pubDate>Tue, 05 May 2009 19:10:01 +0000</pubDate>
		<dc:creator>Kibz</dc:creator>
				<category><![CDATA[computer science]]></category>
		<category><![CDATA[desktop launchers]]></category>
		<category><![CDATA[gnome-do]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://speciesconfusedgoat.wordpress.com/?p=183</guid>
		<description><![CDATA[I&#8217;m not sure how many of you will have heard of Gnome-DO &#8212; let alone the number that actually use it &#8212; but for those in the dark, let me illuminate. Gnome-DO is a program for GNU/Linux operating systems. It provides a close-at-hand interface that will attempt to match what you type to a command, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=speciesconfusedgoat.wordpress.com&blog=3803763&post=183&subd=speciesconfusedgoat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m not sure how many of you will have heard of Gnome-DO &#8212; let alone the number that actually use it &#8212; but for those in the dark, let me illuminate. Gnome-DO is a program for GNU/Linux operating systems. It provides a close-at-hand interface that will attempt to match what you type to a command, then let you activate that command.</p>
<p>By default DO works as a handy launcher, but like many other FOSS programs, it uses a plugin system to add new functionality to the core program. There&#8217;s a whole whack of neat stuff in the plugins list, but we&#8217;re going to focus on the Rhythmbox plugin for now.</p>
<p>Rhythmbox is an iTunes-like music player and library manager, and it&#8217;s part of the GNOME project. It&#8217;s not the most featureful of its type, but it&#8217;s fairly light-weight, which is something I like since I tend to keep an instance of it open at all times.</p>
<p>The Rhythmbox plugin for DO gives you access to your library through DO and also gives a quick way to control what&#8217;s already playing. What it doesn&#8217;t do &#8212; and this is what I&#8217;ll focus on today, is provide a way to access the other handy features that Rhythmbox provides, like song ratings, library manipulation, and moving files to the trash without having to track them down. Well I wanted one of those; and impatient man that I am, I didn&#8217;t want to wait for someone else to add it, nor did I feel like figuring out how the Rhythmbox plugin worked to add the functionality myself.</p>
<p style="text-align:center;">
<div id="attachment_192" class="wp-caption aligncenter" style="width: 418px"><a href="http://speciesconfusedgoat.files.wordpress.com/2009/05/song_deleted.png"><img class="size-full wp-image-192" title="Song Deleted" src="http://speciesconfusedgoat.files.wordpress.com/2009/05/song_deleted.png?w=408&#038;h=254" alt="Notification that a song was deleted." width="408" height="254" /></a><p class="wp-caption-text">Notification that a song was deleted.</p></div>
<p>With that in mind, I came up with this little hack to add the functionality I wanted.<br />
<span id="more-183"></span></p>
<p>The first step was to write a little script that would get the URI for the current song. Making use of Rhythmbox&#8217;s handy DBus interface this was easy enough. Unfortunately that interface doesn&#8217;t give much in the way of management functions, and doesn&#8217;t allow you to tell Rhythmbox to trash a song.</p>
<p>So from there I made use of the trash-cli package (installed from the Jaunty repositories) to add the ability to send a file to the Trash properly (according to the FreeDesktop.org specification). There was a little finagling needed to make sure that the path was in a useable format , but it was fairly straightforward.</p>
<p>I also wanted to make use of the new notification daemon in Jaunty, so I added in the ability to have it display a notification saying which file was trashed. For this, again, I went external and used the libnotify-bin package and its notify-send utility. Easy.</p>
<p>All of that, however, has nothing to do with DO. I could, of course, just put the script in a bin folder and just run the command manually, but that&#8217;s lame and not in the DO spirit. Instead I made use of the core DO functionality &#8212; launching applications &#8212; and created a .desktop file in one of its paths which ran my script with the desired components. Voila! After a quick restart of DO, I can now delete the superlame songs I&#8217;ve accumulated from various sources so they never plague my ears again!
</p>
<p style="text-align:center;">
<div id="attachment_191" class="wp-caption aligncenter" style="width: 255px"><a href="http://speciesconfusedgoat.files.wordpress.com/2009/05/delete-song.png"><img class="size-full wp-image-191" title="Delete a Song" src="http://speciesconfusedgoat.files.wordpress.com/2009/05/delete-song.png?w=245&#038;h=153" alt="DO's Docky showing us how to use my hack." width="245" height="153" /></a><p class="wp-caption-text">DO&#39;s Docky showing us how to use my hack.</p></div>
<p>My <a title="rb_currentsong.py" href="//speciesconfusedgoat.files.wordpress.com/2009/05/rb_currentsong_py.pdf">python script</a> for deleting songs and the <a title="delete-playing.desktop" href="http://speciesconfusedgoat.files.wordpress.com/2009/05/delete-playing_desktop.pdf">desktop file</a> I created are available (as PDFs, &#8217;cause WordPress understandably doesn&#8217;t want source file uploaded to their servers). The desktop file is just in my ~/Desktop folder, but it&#8217;s been hidden using a .hidden file. I&#8217;ve done a lot of fiddling with my icon set, so stuff won&#8217;t necessarily work as-is, but I wrote it to be easy to change.</p>
 Tagged: desktop launchers, gnome-do, hack, python <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/speciesconfusedgoat.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/speciesconfusedgoat.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/speciesconfusedgoat.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/speciesconfusedgoat.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/speciesconfusedgoat.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/speciesconfusedgoat.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/speciesconfusedgoat.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/speciesconfusedgoat.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/speciesconfusedgoat.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/speciesconfusedgoat.wordpress.com/183/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=speciesconfusedgoat.wordpress.com&blog=3803763&post=183&subd=speciesconfusedgoat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://speciesconfusedgoat.wordpress.com/2009/05/05/hacking-gnome-do-to-delete-the-currently-playing-song/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2cee66255c88e294d732dec03c7baa?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">Kibz</media:title>
		</media:content>

		<media:content url="http://speciesconfusedgoat.files.wordpress.com/2009/05/song_deleted.png" medium="image">
			<media:title type="html">Song Deleted</media:title>
		</media:content>

		<media:content url="http://speciesconfusedgoat.files.wordpress.com/2009/05/delete-song.png" medium="image">
			<media:title type="html">Delete a Song</media:title>
		</media:content>
	</item>
		<item>
		<title>Innanetiquette #0</title>
		<link>http://speciesconfusedgoat.wordpress.com/2009/04/16/innanetiquette-0/</link>
		<comments>http://speciesconfusedgoat.wordpress.com/2009/04/16/innanetiquette-0/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 17:36:16 +0000</pubDate>
		<dc:creator>Kibz</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[manners]]></category>
		<category><![CDATA[netiquette]]></category>

		<guid isPermaLink="false">http://speciesconfusedgoat.wordpress.com/?p=171</guid>
		<description><![CDATA[Welcome to Innanetiquette, folks! I&#8217;m gonna take the time out of my busy schedule to feed you fine specimens of humanity a spoonful of sugar to help the Innanets go down smooth.
Without further ado, here&#8217;s the first lesson: Hyperlinking Hyper-onus!

Something Found &#8230;
I want to think back to the last time you found something so super [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=speciesconfusedgoat.wordpress.com&blog=3803763&post=171&subd=speciesconfusedgoat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Welcome to <strong>Innanetiquette</strong>, folks! I&#8217;m gonna take the time out of my busy schedule to feed you fine specimens of humanity a spoonful of sugar to help the Innanets go down smooth.</p>
<p>Without further ado, here&#8217;s the first lesson: <strong>Hyperlinking Hyper-onus</strong>!</p>
<p><span id="more-171"></span></p>
<p><em><strong>Something Found &#8230;</strong></em></p>
<p>I want to think back to the last time you found something so super exciting that you just absolutely had to tell everyone you knew. It&#8217;s a good feeling, right? You just know you&#8217;re about to enrich the lives of all the thousands of your Facebook friends!</p>
<p>That&#8217;s where we hit our first problem: nobody cares about the shit you found in the blagosphere.</p>
<p><em>No one</em>.</p>
<p>Sure, people enjoy stuff that&#8217;s funny or interesting, but they don&#8217;t care that <em>you</em> found it hi-larious or breathtaking. So when you pop up as a little bit of text, and maybe a picture, on someone&#8217;s screen telling them that they just <em>have to</em> see this new goat fetish site you found, they&#8217;re probably going to put bits of duct tape over that part of their screen and pretend that it&#8217;s always been there.</p>
<p style="text-align:center;"><div id="attachment_180" class="wp-caption aligncenter" style="width: 310px"><img src="http://speciesconfusedgoat.files.wordpress.com/2009/04/goat2.jpg?w=300&#038;h=218" alt="hay guys look wut i found in the innanetz!" title="Baby Milk Goat" width="300" height="218" class="size-medium wp-image-180" /><p class="wp-caption-text">hay guys look wut i found in the innanetz!</p></div></p>
<p>So in this case, the onus is on you, Professor Goat Fetishist, to do all the leg work for that lazy S.O.B. you call a friend. Figure out exactly what you want the person to see and make it as easy for them to see it as possible, then send them the link to that fancy new fritter recipe. No googling, logging in, subscribing, dancing, or eldritch rituals should be required on Lazy S.O.B.&#8217;s part.</p>
<p><em><strong>OMG Help! &#8230;</strong></em></p>
<p>Ever noticed how awesome your friend Vincenzo is at being a giant douchebag? Ever wished that she would help you master such seemingly-unatainable levels of douche? So you decide to pee hero-worship into the wind and ask the lady how it&#8217;s done.</p>
<p style="text-align:center;"><div id="attachment_181" class="wp-caption aligncenter" style="width: 310px"><img src="http://speciesconfusedgoat.files.wordpress.com/2009/04/douchebag.png?w=300&#038;h=235" alt="Vicenzo. You know its a girl cause o the pink shirt." title="Vinne the Douche" width="300" height="235" class="size-medium wp-image-181" /><p class="wp-caption-text">Vicenzo. You know its a girl cause o the pink shirt.</p></div></p>
<p>But then the words start coming, followed swiftly by the acronyms, and topped by Vinnie&#8217;s hefty grimace of distaste as your brain flails wildly at trying to absorb so much new information! However will you learn if you can&#8217;t understand what V-dawg-for-lizzle is spewing out her mouth-hole?! Clearly the only way to understand is to demand an explanation of each syllable.</p>
<p><em>No</em>! Bad newbie!</p>
<p>When you find a word you don&#8217;t understand: google it! When you see a sequence of letters that just doesn&#8217;t add up to threeve: google it! When you just can&#8217;t stand not knowing the glory that is tubgirl: DO NOT GOOGLE IT! It&#8217;s a trap!</p>
<p>Only after you&#8217;ve made an attempt to find the information yourself, and failed miserably, should you ask your guru about jargon! Unless they&#8217;ve tricked you into paying somehow, they&#8217;re doing this as a favour (because you blackmailed them using tubgirl), so don&#8217;t make them cover information you can easily look up yourself.</p>
 Tagged: google, internet, manners, netiquette <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/speciesconfusedgoat.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/speciesconfusedgoat.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/speciesconfusedgoat.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/speciesconfusedgoat.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/speciesconfusedgoat.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/speciesconfusedgoat.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/speciesconfusedgoat.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/speciesconfusedgoat.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/speciesconfusedgoat.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/speciesconfusedgoat.wordpress.com/171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=speciesconfusedgoat.wordpress.com&blog=3803763&post=171&subd=speciesconfusedgoat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://speciesconfusedgoat.wordpress.com/2009/04/16/innanetiquette-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2cee66255c88e294d732dec03c7baa?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">Kibz</media:title>
		</media:content>

		<media:content url="http://speciesconfusedgoat.files.wordpress.com/2009/04/goat2.jpg?w=300" medium="image">
			<media:title type="html">Baby Milk Goat</media:title>
		</media:content>

		<media:content url="http://speciesconfusedgoat.files.wordpress.com/2009/04/douchebag.png?w=300" medium="image">
			<media:title type="html">Vinne the Douche</media:title>
		</media:content>
	</item>
		<item>
		<title>Director on the Brain</title>
		<link>http://speciesconfusedgoat.wordpress.com/2009/02/05/director-on-the-brain/</link>
		<comments>http://speciesconfusedgoat.wordpress.com/2009/02/05/director-on-the-brain/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 06:58:16 +0000</pubDate>
		<dc:creator>Kibz</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[AI Director]]></category>
		<category><![CDATA[Blood Harvest]]></category>
		<category><![CDATA[Director]]></category>
		<category><![CDATA[Hordes]]></category>
		<category><![CDATA[Left 4 Dead]]></category>

		<guid isPermaLink="false">http://speciesconfusedgoat.wordpress.com/2009/02/05/director-on-the-brain/</guid>
		<description><![CDATA[I picked up a copy of Left 4 Dead. Anyone looking for a review will find plenty all over the Interblags. Here, instead, I&#8217;m posting a gripe: pay attention to the Director!
For those not in the know, the AI Director is responsible for nearly everything in the game: mob placement, pacing, resources, the works. Its [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=speciesconfusedgoat.wordpress.com&blog=3803763&post=167&subd=speciesconfusedgoat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I picked up a copy of Left 4 Dead. Anyone looking for a review will find plenty all over the Interblags. Here, instead, I&#8217;m posting a gripe: pay attention to the Director!</p>
<p>For those not in the know, the AI Director is responsible for nearly everything in the game: mob placement, pacing, resources, the works. Its job is to make the game interesting and a little scary, but not so much that you want to put it down. It looks for queues and uses them to determine where and when best to place things, and it doesn&#8217;t like it when you just sit around. I have a theory that it hurts the Directors feelings, since you don&#8217;t want to move on and see what new surprises it&#8217;s left for you. Its response is to bring the surprises to you.</p>
<p>I played an online campaign recently with a group of players that were too new or too stupid to have figured out the Director. They found a door which politely warned them that opening it would trigger a horde of ravenous undead so hungry that they wouldn&#8217;t even wait for your flesh to be decently cooked. How rude! So my compatriots wandered around &#8212; ambled, even! &#8212; stocking up on everything they could, only to get mauled by the following horde each time.</p>
<p>On about the fifth or sixth time through, I decided to take action. Once the door was reached, I took just enough time to restock my ammo, and then opened the door. The Director, naturally sensing my eagerness to continue, sent in a quick horde to fulfill its promise, then let us continue on our merry way. Not one casualty.</p>
<p>So folks, please remember: heed the Director.</p>
 Tagged: AI Director, Blood Harvest, Director, Hordes, Left 4 Dead <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/speciesconfusedgoat.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/speciesconfusedgoat.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/speciesconfusedgoat.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/speciesconfusedgoat.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/speciesconfusedgoat.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/speciesconfusedgoat.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/speciesconfusedgoat.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/speciesconfusedgoat.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/speciesconfusedgoat.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/speciesconfusedgoat.wordpress.com/167/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=speciesconfusedgoat.wordpress.com&blog=3803763&post=167&subd=speciesconfusedgoat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://speciesconfusedgoat.wordpress.com/2009/02/05/director-on-the-brain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2cee66255c88e294d732dec03c7baa?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">Kibz</media:title>
		</media:content>
	</item>
		<item>
		<title>Lottery Forever Indeed!</title>
		<link>http://speciesconfusedgoat.wordpress.com/2009/01/27/lottery-forever-indeed/</link>
		<comments>http://speciesconfusedgoat.wordpress.com/2009/01/27/lottery-forever-indeed/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 00:12:04 +0000</pubDate>
		<dc:creator>Kibz</dc:creator>
				<category><![CDATA[anecdote]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[generations]]></category>
		<category><![CDATA[license plates]]></category>
		<category><![CDATA[lotr]]></category>
		<category><![CDATA[nerd]]></category>

		<guid isPermaLink="false">http://speciesconfusedgoat.wordpress.com/?p=163</guid>
		<description><![CDATA[Generation gaps are fun. That&#8217;s something that, at some point, I managed to figure out &#8212; I&#8217;m pretty sure it took all of my cunning. Here&#8217;s one of my world famous stories which will unequivocably provicate my stateminiums.
Riding in the car with my parents. They&#8217;ve been divorced nearly 20 years, but they&#8217;re great at not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=speciesconfusedgoat.wordpress.com&blog=3803763&post=163&subd=speciesconfusedgoat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Generation gaps are fun. That&#8217;s something that, at some point, I managed to figure out &#8212; I&#8217;m pretty sure it took all of my cunning. Here&#8217;s one of my world famous stories which will unequivocably provicate my stateminiums.</p>
<p>Riding in the car with my parents. They&#8217;ve been divorced nearly 20 years, but they&#8217;re great at not letting that make things awkward. My dad&#8217;s famous for locating and deciphering customized license plates, and he&#8217;s managed to rope my mom in this time on a particularly challenging plate. What can this be? Lottery forever, Lot R forever; maybe he really likes parking lots?</p>
<p>They&#8217;ve been discussing it for nearly 5 minutes straight while I happily mine for fish in Animal Crossing. Curious at what&#8217;s going on, I surface briefly to take a look at their subject of choice: &#8220;LOTR4EVER.&#8221; Nerd that I am, I pop in a quick, &#8220;Lord of the Rings forever, guys,&#8221; and go back to my fishmongering. They mused over it for another solid 5 minutes after that.</p>
 Tagged: generations, license plates, lotr, nerd <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/speciesconfusedgoat.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/speciesconfusedgoat.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/speciesconfusedgoat.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/speciesconfusedgoat.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/speciesconfusedgoat.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/speciesconfusedgoat.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/speciesconfusedgoat.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/speciesconfusedgoat.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/speciesconfusedgoat.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/speciesconfusedgoat.wordpress.com/163/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=speciesconfusedgoat.wordpress.com&blog=3803763&post=163&subd=speciesconfusedgoat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://speciesconfusedgoat.wordpress.com/2009/01/27/lottery-forever-indeed/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2cee66255c88e294d732dec03c7baa?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">Kibz</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Does Stockholm</title>
		<link>http://speciesconfusedgoat.wordpress.com/2008/12/02/google-does-stockholm/</link>
		<comments>http://speciesconfusedgoat.wordpress.com/2008/12/02/google-does-stockholm/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 16:05:05 +0000</pubDate>
		<dc:creator>Kibz</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[stockholm syndrome]]></category>

		<guid isPermaLink="false">http://speciesconfusedgoat.wordpress.com/?p=159</guid>
		<description><![CDATA[I know they plan to steal my soul someday, somehow, but sometimes I just can&#8217;t help but love Google.
 Tagged: gmail, google, stockholm syndrome      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=speciesconfusedgoat.wordpress.com&blog=3803763&post=159&subd=speciesconfusedgoat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I know they plan to steal my soul someday, somehow, but sometimes I just can&#8217;t help but love Google.</p>
<div id="attachment_158" class="wp-caption aligncenter" style="width: 490px"><a href="http://speciesconfusedgoat.files.wordpress.com/2008/12/google-love.jpg"><img class="size-thumbnail wp-image-158" title="google-love" src="http://speciesconfusedgoat.files.wordpress.com/2008/12/google-love.jpg?w=480&#038;h=198" alt="Package Tracking Identification" width="480" height="198" /></a><p class="wp-caption-text">Package Tracking Identification</p></div>
 Tagged: gmail, google, stockholm syndrome <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/speciesconfusedgoat.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/speciesconfusedgoat.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/speciesconfusedgoat.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/speciesconfusedgoat.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/speciesconfusedgoat.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/speciesconfusedgoat.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/speciesconfusedgoat.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/speciesconfusedgoat.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/speciesconfusedgoat.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/speciesconfusedgoat.wordpress.com/159/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=speciesconfusedgoat.wordpress.com&blog=3803763&post=159&subd=speciesconfusedgoat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://speciesconfusedgoat.wordpress.com/2008/12/02/google-does-stockholm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2cee66255c88e294d732dec03c7baa?s=96&#38;d=identicon&#38;r=R" medium="image">
			<media:title type="html">Kibz</media:title>
		</media:content>

		<media:content url="http://speciesconfusedgoat.files.wordpress.com/2008/12/google-love.jpg?w=480" medium="image">
			<media:title type="html">google-love</media:title>
		</media:content>
	</item>
	</channel>
</rss>