<?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>Go Go Geekboy &#187; game</title>
	<atom:link href="http://www.voodoostevie.net/tag/game/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.voodoostevie.net</link>
	<description>It&#039;s all in the machines.</description>
	<lastBuildDate>Wed, 28 Jul 2010 01:29:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Day 38 &#8211; The past four days.</title>
		<link>http://www.voodoostevie.net/2009/09/day-38/</link>
		<comments>http://www.voodoostevie.net/2009/09/day-38/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 13:46:33 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[addictive game]]></category>
		<category><![CDATA[anything]]></category>
		<category><![CDATA[blogged]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[default font]]></category>
		<category><![CDATA[DEST]]></category>
		<category><![CDATA[DIR]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[echo echo]]></category>
		<category><![CDATA[everything]]></category>
		<category><![CDATA[exit]]></category>
		<category><![CDATA[Exiting]]></category>
		<category><![CDATA[EXT]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[FPS]]></category>
		<category><![CDATA[fps game]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[home directory]]></category>
		<category><![CDATA[home fonts]]></category>
		<category><![CDATA[installation directory]]></category>
		<category><![CDATA[mmo]]></category>
		<category><![CDATA[music player]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[press]]></category>
		<category><![CDATA[ripping cd]]></category>
		<category><![CDATA[sauerbraten]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[scrollers]]></category>
		<category><![CDATA[smooth game]]></category>
		<category><![CDATA[Songbird]]></category>
		<category><![CDATA[space type]]></category>
		<category><![CDATA[storage directory]]></category>
		<category><![CDATA[sudo]]></category>
		<category><![CDATA[track pad]]></category>
		<category><![CDATA[ttf]]></category>
		<category><![CDATA[usr]]></category>
		<category><![CDATA[vendetta online]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=189</guid>
		<description><![CDATA[Well I haven&#8217;t blogged in a few days. Let me catch you up to speed. I fucked up something and KDE was all weirded out on me. So I reinstalled Ubuntu with Gnome. I got everything back up to par more or less. I compiled Super Maryo Chronicles from scratch for the new version. OMG [...]]]></description>
			<content:encoded><![CDATA[<p>Well I haven&#8217;t blogged in a few days. Let me catch you up to speed. I fucked up something and KDE was all weirded out on me. So I reinstalled Ubuntu with Gnome. I got everything back up to par more or less. I compiled Super Maryo Chronicles from scratch for the new version. OMG it&#8217;s an addictive game, but I have problems getting past the second world. So weird getting back to 2D scrollers, LOL.</p>
<p>I decided to try out an online MMO called Vendetta Online. It&#8217;s a space type of MMO and it&#8217;s pretty decent. I&#8217;m just starting out so I am getting used to the controls and everything but it&#8217;s all in all a pretty smooth game.</p>
<p><span id="more-189"></span></p>
<p>I have been using Songbird for my music player of choice lately. I use Rhythmbox for ripping CD&#8217;s only and VLC for watching movies. Things are pretty smooth right now. However the Add/Remove programs thing is not showing anything. WTF! I&#8217;m going to research that later.</p>
<p>I also installed Sauerbraten which is a FPS game. Runs pretty smooth as well. However I am not used to FPS with the track pad. *sigh* I should hook up a mouse but I don&#8217;t have room to use one at the moment.</p>
<p>I installed a TON of fonts using the following method:</p>
<p>Created a directory to put my fonts into from my home directory:</p>
<p style="padding-left: 30px;"><code>sudo mkdir -p /usr/share/fonts/truetype/font-install</code></p>
<p>Now the script I used is this:</p>
<pre><textarea cols=75 rows=6>#!/bin/bash
#
# This script helps to install fonts
#
# Set your default font storage directory here
##DEFAULT_DIR="$HOME/fonts"
DEFAULT_DIR=`pwd`
# Set the default font installation directory here
DEFAULT_DEST="/usr/share/fonts/truetype/font-install"

# Don't edit anything below unless you know what you're doing.

echo "In which directory are the fonts?"
echo -n "[$DEFAULT_DIR] "
read DIR

echo
echo "What is the extention (without the dot) of the fonts?"
echo -n "[ttf] "
read EXT

echo
echo "Where should the fonts be installed?"
echo "DO NOT CHANGE THIS UNLESS YOU KNOW WHAT YOU'RE DOING!"
echo -n "[$DEFAULT_DEST] "
read DEST

if [ -z "$DIR" ]; then
    DIR="$DEFAULT_DIR"
fi

if [ -z "$EXT" ]; then
    EXT="ttf"
fi

if [ -z "$DEST" ]; then
    DEST="$DEFAULT_DEST"
fi

sudo -v
if [ $? != 0 ]; then
    echo "Unable to obtain the necessary privileges. Exiting..."
    echo -n "Press <enter> to continue. "
    read WER
    exit $?
fi

echo
echo

if [ ! -d "$DIR" ]; then
    echo "Directory $DIR does not exist. Exiting..."
    echo -n "Press <enter> to continue. "
    read SDF
    exit 2
fi

if [ ! -d "$DEST" ]; then
    echo "Directory $DEST does not exist. Exiting..."
    echo -n "Press <enter> to continue. "
    read DFG
    exit 1
fi

echo "Copying fonts..."
cd "$DIR"

for i in *."$EXT"; do
    sudo cp -iv "$i" "$DEST"
done

echo
echo
echo "Updating the font cache..."
sudo fc-cache -fv

if [ $? != 0 ]; then
    echo "Error updating the font cache. Your fonts haven't been completely installed. Try running sudo fc-cache -fv manually. Exiting..."
    echo -n "Press <enter> to continue."
    read FSF
    exit $?
fi

echo
echo
echo "Finished."
echo
echo "You will probably need to restart running programs to use the new fonts."
echo -n "Press <enter> to exit. "
read WERT
exit 0
</textarea></pre>
<p>Which I named just installfonts and saved it in my home dir. You can download the script: <a href='http://linux.voodooradio.org/wp-content/uploads/2009/09/installfonts.sh'>here</a>.</p>
<p>My fonts were in ~/fonts (a folder called fonts in my home directory) so when I ran the script it prompted for the following:</p>
<ol>
<li>location of the fonts I am installing</li>
<li>extension. Remember this is linux so I ran it 2 times. Once with .ttf and the other with .TTF</li>
</ol>
<p>Now I have over 300 fonts installed. YAY!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/09/day-38/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 23 &#8211; Whole Lotta nothin</title>
		<link>http://www.voodoostevie.net/2009/08/day-23/</link>
		<comments>http://www.voodoostevie.net/2009/08/day-23/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 13:05:20 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Conky]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[headset]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[many moons]]></category>
		<category><![CDATA[mixer]]></category>
		<category><![CDATA[order]]></category>
		<category><![CDATA[Played]]></category>
		<category><![CDATA[playing a game]]></category>
		<category><![CDATA[rate]]></category>
		<category><![CDATA[Screenlets]]></category>
		<category><![CDATA[Second]]></category>
		<category><![CDATA[second life]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[slow downs]]></category>
		<category><![CDATA[thinking]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=120</guid>
		<description><![CDATA[Played a little Second Life and updated the iPod. I noticed that I need to shut off the screenlets and Conky in order to play the games otherwise I get a flash where they are because the update rate.  I think the extra effects are causing slow downs as well so I shut them off [...]]]></description>
			<content:encoded><![CDATA[<p>Played a little Second Life and updated the iPod. I noticed that I need to shut off the screenlets and Conky in order to play the games otherwise I get a flash where they are because the update rate.  I think the extra effects are causing slow downs as well so I shut them off when I am playing a game, but turning it all back on is simple really.</p>
<p>Still bummed about the mixer. Thinking of picking up a headset soon as I can. Just can&#8217;t right now. Maybe I will pull out the original USB mic I used on the show MANY moons ago.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/08/day-23/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 13 &#8211; Rip, Transcode, Warzone!</title>
		<link>http://www.voodoostevie.net/2009/08/day-13/</link>
		<comments>http://www.voodoostevie.net/2009/08/day-13/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 12:33:40 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[artillery]]></category>
		<category><![CDATA[AVI]]></category>
		<category><![CDATA[avi file]]></category>
		<category><![CDATA[battery technologies]]></category>
		<category><![CDATA[blip]]></category>
		<category><![CDATA[co worker]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[drive]]></category>
		<category><![CDATA[Dvd]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[game play]]></category>
		<category><![CDATA[Hard]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[home computer]]></category>
		<category><![CDATA[hour]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[kung fu]]></category>
		<category><![CDATA[machine]]></category>
		<category><![CDATA[massive research]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[order]]></category>
		<category><![CDATA[P

So]]></category>
		<category><![CDATA[past]]></category>
		<category><![CDATA[poor performance]]></category>
		<category><![CDATA[pumpkin studios]]></category>
		<category><![CDATA[radar]]></category>
		<category><![CDATA[real time strategy]]></category>
		<category><![CDATA[real time strategy games]]></category>
		<category><![CDATA[rip]]></category>
		<category><![CDATA[rts game]]></category>
		<category><![CDATA[strategy]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[Thursday]]></category>
		<category><![CDATA[time strategy game]]></category>
		<category><![CDATA[today]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[VOB]]></category>
		<category><![CDATA[Warzone]]></category>
		<category><![CDATA[warzone 2100]]></category>
		<category><![CDATA[winxp]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=65</guid>
		<description><![CDATA[We last left off with ripping a DVD using dvd::rip. It really took it about an hour to rip it from the CD to my Hard drive. But it only rips the files into VOB format. In order to play on another machine or for me to burn the movie onto a DVD I need [...]]]></description>
			<content:encoded><![CDATA[<p>We last left off with ripping a DVD using dvd::rip. It really took it about an hour to rip it from the CD to my Hard drive. But it only rips the files into VOB format. In order to play on another machine or for me to burn the movie onto a DVD I need it to be encoded into an AVI file, so I transcoded the video within dvd::rip. After about 2 hours of doing that, I had a perfect 1.5GB AVI (it was a 2 1/2 hour movie so it was expected).</p>
<p>The issue I had with ripping movies in the past is the sound didn&#8217;t sync with the video. It was like watching an old Kung Fu movie but more annoying for the audio. You&#8221;d hear a bang and then see it 5 seconds later. Not good.</p>
<p><span id="more-65"></span>I looked around for some more games to play. I downloaded a RTS game called <a href="http://wz2100.net/" target="_blank">Warzone 2100</a>. Here&#8217;s a blip from the developer:</p>
<blockquote><p>Warzone 2100 is a real-time strategy game, originally developed by Pumpkin Studios and published by Eidos Interactive, now developed by the Warzone 2100 Project. Compared to other real-time strategy games, it has a greater focus on artillery, radar, and counter-battery technologies, more frequent in-game cinematic updates as game play progresses, a massive research tree, as well as a vehicle design system.</p></blockquote>
<p>Now the only way to install this under Linux is to compile it so I have to do that&#8230; Later.</p>
<p>There is a windows based client so I can play with you Windows folks if you wanna. <img src='http://www.voodoostevie.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>So not too much done today, I had to look at a co-worker&#8217;s home computer for him. They were getting a lot of poor performance on their machine. Hrm WinXP and only 512MB of Ram?! BAD!</p>
<p>I post these the day after I do them. In other words, all this that I am posting here on Thursday was actually done on Wednesday. In case you hadn&#8217;t figured it all out yet.  Oh and today (Thursday 8/13) is my birthday. I don&#8217;t know what I will be able to do when I get out of work so Day 14 will be real short.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/08/day-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 12 &#8211; Bitty Bitty Bitty More App Play.</title>
		<link>http://www.voodoostevie.net/2009/08/day-12/</link>
		<comments>http://www.voodoostevie.net/2009/08/day-12/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 14:55:08 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[adobe illustrator]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ardour]]></category>
		<category><![CDATA[Bit]]></category>
		<category><![CDATA[bit torrent]]></category>
		<category><![CDATA[business program]]></category>
		<category><![CDATA[digital cameras]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[Dvd]]></category>
		<category><![CDATA[external hard drive]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[home folder]]></category>
		<category><![CDATA[huge collection]]></category>
		<category><![CDATA[internet dj]]></category>
		<category><![CDATA[invoices]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[music folder]]></category>
		<category><![CDATA[Open City]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[razr]]></category>
		<category><![CDATA[rip]]></category>
		<category><![CDATA[simcity]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[something]]></category>
		<category><![CDATA[thing]]></category>
		<category><![CDATA[thinking]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[today]]></category>
		<category><![CDATA[Torrent]]></category>
		<category><![CDATA[torrent download]]></category>
		<category><![CDATA[Transmission]]></category>
		<category><![CDATA[vector graphics]]></category>
		<category><![CDATA[yeah]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=62</guid>
		<description><![CDATA[So today I played a little with Bit-Torrent using Transmission, which comes with Ubuntu. It&#8217;s pretty cut and dry. I went to a site I know has a torrent download and when I clicked on the link to download the torrent FireFox gave me the option to open it with Transmission, check! When Transmission opened [...]]]></description>
			<content:encoded><![CDATA[<p>So today I played a little with Bit-Torrent using Transmission, which comes with Ubuntu. It&#8217;s pretty cut and dry. I went to a site I know has a torrent download and when I clicked on the link to download the torrent FireFox gave me the option to open it with Transmission, check!</p>
<p>When Transmission opened I chose where to save the download and voila torrent downloading.  Simple.</p>
<p>While waiting for the torrent to do it&#8217;s thing I moved some files from my external hard drive to my home folder to sort out things that I have floating around. Some music I put into the Music folder and when I launched Songbird it sorted it for me. YAY!</p>
<p><span id="more-62"></span>I really need to reorganize the HUGE collection of music I have on the large External and  catalog them all as well. I think I will look for a program that can help me with that soon.</p>
<p>Poking around the Add/Remove Programs application I poked around for some more programs I wanted to check out. I tried Ardour which is a audio editor that has been</p>
<p>Installed Kraft which is a small business program for creating invoices and tracking inventory.</p>
<p>I also install Internet DJ Console which for some reason isn&#8217;t running. Hmmm.. Looking into that later.</p>
<p>I also installed a game called Open City which seems to sound like another SimCity clone. I will check this out because LinCity-NG seems totally different than expected.</p>
<p>I want to get my Razr set up to get pictures and sounds off it so I installed gMobileMedia to see if that is something that will help with that. I know moto4lin is supposed to handle that as well but I need to dig deeper into configuring it to work.</p>
<p>I am thinking of trying to get some vector graphics made for designing stuff so Inkscape was the next thing I installed. It&#8217;s a replacement for Adobe Illustrator.</p>
<p>I like putting pictures on my iPod from time to time and GpixPod is suppsed to handle that</p>
<p>I installed an app called Camera which is listed as an app to aid in getting pictures off of digital cameras. If I can&#8217;t get the card reader going (yeah I haven&#8217;t tested that yet) I am going to see how this works out.</p>
<p>I am thinking of making my own Fonts sometime so I installed FontForge</p>
<p>For some web development I figured I&#8217;d install MySql Manager to help with databases. I think I am doing something wrong because it won&#8217;t connect to any database I use (local or remote).</p>
<p>Yet another test of an audio application that can sync podcasts and handle my music library, I checked out Exaie Music Player, which I installed some of the extras but didn&#8217;t play with it that much.</p>
<p>I am trying to see if I can connect to this site from my desktop rather than loading up Firefox and logging into my site so I installed BloGTK which supposedly connects to WordPress blogss.</p>
<p>I have a TON of pictures of my daughter and I saw a lot of picture mosaics out there  and think I would like to make one of her. I found a program called Pixelize  that is supposed to do exatly that. Take a bunch of pictures and make a mosaic of them to produce 1 picture.</p>
<p>I Removed Gwibber because I am using TweetDeck and it seemed redundant to have 2 programs to tweet with.</p>
<p>I had another DVD I wanted to rip (for backup purposes, yeah that&#8217;s it) so I decided to try dvd::rip this time. It was getting late so I started the rip of the main movie and hit the sack. More on this tomorrow!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/08/day-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 10 &#8211; Second Life?</title>
		<link>http://www.voodoostevie.net/2009/08/day-10-second-life/</link>
		<comments>http://www.voodoostevie.net/2009/08/day-10-second-life/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 13:15:37 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[album art]]></category>
		<category><![CDATA[ATI]]></category>
		<category><![CDATA[ati 7500]]></category>
		<category><![CDATA[avatar]]></category>
		<category><![CDATA[breath]]></category>
		<category><![CDATA[cam]]></category>
		<category><![CDATA[downside]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[free clothes]]></category>
		<category><![CDATA[Frustrated]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[getdeb]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[holding my breath]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[last time]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[loser]]></category>
		<category><![CDATA[Message]]></category>
		<category><![CDATA[mixmaster]]></category>
		<category><![CDATA[mmo]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[music collection]]></category>
		<category><![CDATA[music management]]></category>
		<category><![CDATA[need]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[regnum]]></category>
		<category><![CDATA[Second]]></category>
		<category><![CDATA[second life]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[stupid error message]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[support folks]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[tech support]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[type game]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=57</guid>
		<description><![CDATA[Ok so we last left off with Regnum Online giving me issues. I compiled new drivers for the ATI 7500 and rebooted. Then I tried running Regnum Online again. Same stupid Error Message cam up. Frustrated I sent a help request for their tech support folks. Not holding my breath. Feeling a need to play [...]]]></description>
			<content:encoded><![CDATA[<p>Ok so we last left off with Regnum Online giving me issues. I compiled new drivers for the ATI 7500 and rebooted. Then I tried running Regnum Online again. Same stupid Error Message cam up. Frustrated I sent a help request for their tech support folks. Not holding my breath.</p>
<p>Feeling a need to play a MMO type game I gave in and installed Second Life. Call me a loser now, LOL. If you are on Second Life, add me as a friend VooDooStevie Mixmaster is the name of my character on there.</p>
<p><span id="more-57"></span></p>
<p>After installing the program from GetDeb I found there is a newer version of the game out so I downloaded it and copied the files over to the install location on my hard drive. And voila it worked.</p>
<p>I played the game for a bit. No issues with the game really. Nothing that would seem more like a bandwith issue, but they really smoothed it out since my last time playing it which was like 4 years ago.</p>
<p>I found some free clothes and items for my Avatar, tomorrow I will post the image of my Avatar as he is. Downside is I can&#8217;t get it to look more like me.</p>
<p>Everything else is running right. I&#8217;m still getting my podcasts fine, album art is still a little issue, but not 100% important to me, I can still listen to them which is what I really needed.</p>
<p>I am a little apprehensive as to how my music collection is sorted so I am looking for something to fix that. I think I have to pull the Podcasts out of that directory for things to properly sort things. I found cowbell as a music management and sorting utility so I will install that and see what happens.</p>
<p>It&#8217;s almost 2 weeks into this experiment. I need to get on the podcast thing soon! And play with Skype as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/08/day-10-second-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 9 &#8211; GAH! I just wanna play the game! Why won&#039;t you let me?!</title>
		<link>http://www.voodoostevie.net/2009/08/day-9/</link>
		<comments>http://www.voodoostevie.net/2009/08/day-9/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 22:44:00 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Bros]]></category>
		<category><![CDATA[Bub]]></category>
		<category><![CDATA[cheese]]></category>
		<category><![CDATA[DirectX]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[family reunion]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[flickr uploader]]></category>
		<category><![CDATA[Fontmatrix]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[getdeb]]></category>
		<category><![CDATA[Microsot]]></category>
		<category><![CDATA[MMORPG]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[PlaneShift]]></category>
		<category><![CDATA[related graphics]]></category>
		<category><![CDATA[Rengum]]></category>
		<category><![CDATA[reunion]]></category>
		<category><![CDATA[second life]]></category>
		<category><![CDATA[today]]></category>
		<category><![CDATA[Tried]]></category>
		<category><![CDATA[uploader]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=54</guid>
		<description><![CDATA[Not much done today because I had a family reunion to attend. Well today I had installed cheese (play with webcam). I also installed kq, Bub&#8217;s Bros. Fontmatrix, Flickr uploader, and then Tried Planeshift. It locked up horribly so forget that. After that I installed Rengum Online which was toted as another MMORPG that was [...]]]></description>
			<content:encoded><![CDATA[<p>Not much done today because I had a family reunion to attend.</p>
<p>Well today I had installed cheese (play with webcam). I also installed kq, Bub&#8217;s Bros. Fontmatrix, Flickr uploader, and then Tried Planeshift. It locked up horribly so forget that.</p>
<p>After that I installed Rengum Online which was toted as another MMORPG that was available for Linux. It didn&#8217;t start up and gave errors about drivers and DirectX. I will try updating the drivers later.</p>
<p>I don&#8217;t understand how a game that is made for Linux that uses OpenGL as it&#8217;s primary graphics can use DirectX which is a Microsot related graphics thing. *sigh*</p>
<p>I took a dive and seeing I didn&#8217;t really want to do it, I thought I&#8217;d give it another chance. I downloaded Second Life from GetDeb. I will install it tomorrow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/08/day-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 7 &#8211; Rip It, Rip It Goo&#8230; Nevermind.</title>
		<link>http://www.voodoostevie.net/2009/08/day-7/</link>
		<comments>http://www.voodoostevie.net/2009/08/day-7/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 14:02:27 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[AVI]]></category>
		<category><![CDATA[Burn]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[Dvd]]></category>
		<category><![CDATA[dvd player]]></category>
		<category><![CDATA[free mmorpg]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gstreamer]]></category>
		<category><![CDATA[kind]]></category>
		<category><![CDATA[libdvdread]]></category>
		<category><![CDATA[license]]></category>
		<category><![CDATA[machine]]></category>
		<category><![CDATA[Man]]></category>
		<category><![CDATA[menus]]></category>
		<category><![CDATA[MMORPG]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[movie file]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[PlaneShift]]></category>
		<category><![CDATA[Player]]></category>
		<category><![CDATA[ps2]]></category>
		<category><![CDATA[Rapellz]]></category>
		<category><![CDATA[rip]]></category>
		<category><![CDATA[today]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows machine]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[xvid]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=46</guid>
		<description><![CDATA[Today was an interesting day. I was off from work to get my license renewed but after I was able to sit and play around with a few things. I downloaded a game called PlaneShift which is a free MMORPG. Not as good as Rapellz&#8230; Man I am missing that game. I should just install [...]]]></description>
			<content:encoded><![CDATA[<p>Today was an interesting day. I was off from work to get my license renewed but after I was able to sit and play around with a few things.</p>
<p>I downloaded a game called PlaneShift which is a free MMORPG. Not as good as Rapellz&#8230; Man I am missing that game. I should just install it on the Windows machine to play it. But I digress&#8230;</p>
<p>I said I wanted to Rip and Burn DVD&#8217;s as one of my points of usage for a computer, so I played with that. However I ran into some issues.</p>
<p><span id="more-46"></span></p>
<p>Stupid me forgot to get the package to read encrypted DVD&#8217;s (which is basically EVERY movie DVD out there) so I had to install it. If you are trying to watch movies, do this:</p>
<div>
<ol>
<li>Install the              <a href="apt:libdvdnav4" target="_top">libdvdnav4</a>,              <a href="apt:libdvdread4" target="_top">libdvdread4</a>,              <a href="apt:gstreamer0.10-plugins-bad" target="_top">gstreamer0.10-plugins-bad</a> and              <a href="apt:gstreamer0.10-plugins-ugly" target="_top">gstreamer0.10-plugins-ugly</a> packages.</li>
<li>If you would like to play encrypted DVDs, press <span>Applications</span> → <span>Accessories</span> → <span>Terminal</span> and type              the following into the screen which appears, followed by the              <span><strong>Enter</strong></span> key:<br />
<code>sudo /usr/share/doc/libdvdread4/install-css.sh</code></li>
<li>Enter your password if prompted. The              <span><strong>libdvdcss2</strong></span> package will be downloaded              and installed from a website.</li>
<li>Insert a DVD into your drive. It should open automatically in the              Movie Player.</li>
</ol>
</div>
<div>Now that should work. I realized I didn&#8217;t do this when I tried using DVD95 to rip my DVD and it wasn&#8217;t reading ANY of the disks I was putting in.</div>
<div>After I took that step. I was able to Rip the DVD to an ISO for a 4.7GB DVD with no problems. Then I burned the DVD and it played fine on the PS2 I have, but on our normal DVD player it was kind of iffy. Oh well, guess I will have to try a different approach later on. But I got the menus and everything which was kind of cool.</div>
<div>Time-wise it wasn&#8217;t that long compared to ripping it as a movie file (an Xvid AVI for example), but using DVD95 you really lose a lot of quality when converting to the lower size DVD so Ripper Beware!</div>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/08/day-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
