<?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; default</title>
	<atom:link href="http://www.voodoostevie.net/tag/default/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 31 &#8211; Add this, and this and this&#8230; Oooh pretty.</title>
		<link>http://www.voodoostevie.net/2009/08/day-31/</link>
		<comments>http://www.voodoostevie.net/2009/08/day-31/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 13:12:29 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[appearance]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[area]]></category>
		<category><![CDATA[course]]></category>
		<category><![CDATA[cube]]></category>
		<category><![CDATA[cubes]]></category>
		<category><![CDATA[decade]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[desktops]]></category>
		<category><![CDATA[duh]]></category>
		<category><![CDATA[Dvd]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[fluidity]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[little gallery]]></category>
		<category><![CDATA[lot]]></category>
		<category><![CDATA[machin]]></category>
		<category><![CDATA[machine]]></category>
		<category><![CDATA[Manager


	gPodder - Runs]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[necessities]]></category>
		<category><![CDATA[one thing]]></category>
		<category><![CDATA[qt4]]></category>
		<category><![CDATA[reinstall]]></category>
		<category><![CDATA[scratch]]></category>
		<category><![CDATA[Screenlets]]></category>
		<category><![CDATA[Second]]></category>
		<category><![CDATA[stuff]]></category>
		<category><![CDATA[subscriptions]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[system settings]]></category>
		<category><![CDATA[thing]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=172</guid>
		<description><![CDATA[So we&#8217;re past the 30 days of linux. So now with the reinstall&#8230; Or Install of a new desktop method, I of course had to install some apps and things that were necessary. And a lot of them were basically the same as before some are a little different. One thing I didn&#8217;t mention is [...]]]></description>
			<content:encoded><![CDATA[<p>So we&#8217;re past the 30 days of linux. So now with the reinstall&#8230; Or Install of a new desktop method, I of course had to install some apps and things that were necessary. And a lot of them were basically the same as before some are a little different.</p>
<p>One thing I didn&#8217;t mention is that in order to get the updates for the wireless, I actually had to create a network connection in the system settings area to get it going, but it  a real simple thing to get going.</p>
<p>This is a run down of what I did today and a little explanation of some things as well.<span id="more-172"></span></p>
<p>After installing Kubuntu I was really impressed with how far it has come since I last used it (but that was over a decade ago so a big duh on my part). The one thing I noticed off the bat is the way it handles the extra appearance stuff. It&#8217;s all native. Gnome needs Compiz installed to set up the extra things (like the cubes) and Screenlets installed for the Widgets.</p>
<p><a href="http://linux.voodooradio.org/wp-content/uploads/2009/08/kde-special1.png" rel="lightbox[172]"><img class="alignleft size-thumbnail wp-image-168" title="Hey that's a Desktop Cube like before?" src="http://linux.voodooradio.org/wp-content/uploads/2009/08/kde-special1-150x150.png" alt="Hey that's a Desktop Cube like before?" width="150" height="150" /></a>KDE has all that stuff built in with Qt4 it seems. As you saw in the little gallery I had the cube going on. In case you missed it in that last post, I put it here on the left.</p>
<p>One thing I found is that it&#8217;s real easy to set up. Make your desktop have 4 desktops and check the cube. Yeah not much different. But you can name the desktops something other than Desktop 1, Desktop 2, etc.</p>
<p>I left them the default because I couldn&#8217;t think of anything to put in for now. But the fluidity of this is a lot smoother than it was under Gnome.</p>
<p>Ok enough talk about the extra effects, I am here to state what I had installed on the machine. Of course there is the necessities:</p>
<ol>
<li>Firefox 3.0 (For now. I am going to see about installing the latest one from scratch later) but I also needed the following extensions for my personal browsing right away:
<ul>
<li>StumbleUpon</li>
<li>DownThemAll</li>
<li>Gmail Manager</li>
</ul>
</li>
<li>gPodder &#8211; Runs perfect after install. Downloaded my subscriptions flawlessly from gPodder.com I love that little feature and it&#8217;s great when you have to reinstall or going to a new machine. You can also do the OPML file method, but this is off site which means if you don&#8217;t have your external media (CD, HD, whatever) you can access it over the internet.</li>
<li>All the dependencies for gPodder (Python libraries, ID3 libraries, OGG Tools, and Mplayer all needed to be installed for gPodder addons to work).</li>
<li>dvd::rip &#8211; yes I needed this back for sure. Which of course knowing what I needed for this to work right:
<ul>
<li>Kubuntu restricted extras</li>
<li>Kaffeine,</li>
<li>DVD libraries for reading encrypted DVD&#8217;s.</li>
</ul>
</li>
<li>Weather widget for my desktop</li>
<li>Adobe Air</li>
<li>Tweetdeck</li>
</ol>
<p>I also poked around and decided that I would like a few more things for software installed:</p>
<ol>
<li>Second Life &#8211; installed from GetDEB then updated from Second Life&#8217;s website.</li>
<li>Super Maryo Chronicles &#8211; Installed from SMC repository</li>
<li>Extra Screen savers &#8211; This is odd that KDE came with Blank screen only. So I added the extras through good ol&#8217; apt-get.</li>
</ol>
<p>Seeing I want to use Firefox as the default instead of Konqueror I had to make a few changes so that could happen. In the System Settings area there is a place you can set Default Applications and that seems to work perfect. But there is also a command that you should run in terminal that will make it completely the default:</p>
<p style="text-align: center;"><code>sudo update-alternatives --config x-www-browser</code></p>
<p>After putting in the root password you get the choice. And voila!</p>
<p>The one thing I like is how you can put the icons on the desktop and I am contemplating removing the desktop folder widget. Also how things appear in the bottom bar. I will customize this more soon I am sure, but the default layout is good enough.</p>
<p>I am not going to put Conky on here. It&#8217;s not really needed. I just need to adjust to how KDE handles things and the Software administration is kind of clunky in the regards to if you need things installed as dependencies it doesn&#8217;t prompt you to install them. So most of my administration of programs has been handled by command line. Go me. <img src='http://www.voodoostevie.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/08/day-31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 30 &#8211; The End of the Beginning</title>
		<link>http://www.voodoostevie.net/2009/08/day-30/</link>
		<comments>http://www.voodoostevie.net/2009/08/day-30/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 03:19:46 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[experimentation]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[kde 4]]></category>
		<category><![CDATA[Konqueror]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[little gallery]]></category>
		<category><![CDATA[lot]]></category>
		<category><![CDATA[native]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[oh wait]]></category>
		<category><![CDATA[Open]]></category>
		<category><![CDATA[open office]]></category>
		<category><![CDATA[Read]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[screen shots]]></category>
		<category><![CDATA[STILL]]></category>
		<category><![CDATA[stuff]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[web browser]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=165</guid>
		<description><![CDATA[Well here it is, te 30th day and what am I doing? I am running Kubuntu instead of Ubuntu. Yet another new experimentation it seems, yet I am STILL not back under Windows! I found that Kubuntu uses a lot of the same apps I was using before, Open Office is still there.. Oh wait, [...]]]></description>
			<content:encoded><![CDATA[<p>Well here it is, te 30th day and what am I doing? I am running Kubuntu instead of Ubuntu. Yet another new experimentation it seems, yet I am STILL not back under Windows!</p>
<p>I found that Kubuntu uses a lot of the same apps I was using before, Open Office is still there.. Oh wait, no it doesn&#8217;t no FireFox. It uses Konqueror as it&#8217;s web browser by default. But check this out, all those nifty things I was doing under Gnome that required extras, it&#8217;s all native here under KDE 4. Here&#8217;s some of the screen shots. I will report more about what I had installed and stuff tomorrow. Read on for the little gallery of pics.</p>
<p><span id="more-165"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/08/day-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 18 &#8211; I&#039;m Still Sorting&#8230;  And Figuring out Conky</title>
		<link>http://www.voodoostevie.net/2009/08/day-18/</link>
		<comments>http://www.voodoostevie.net/2009/08/day-18/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 14:43:48 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[6600]]></category>
		<category><![CDATA[alignment]]></category>
		<category><![CDATA[Battery]]></category>
		<category><![CDATA[bauhaus]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[color 000000]]></category>
		<category><![CDATA[colour]]></category>
		<category><![CDATA[Conky]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[default color]]></category>
		<category><![CDATA[double buffer]]></category>
		<category><![CDATA[Emma]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[gap]]></category>
		<category><![CDATA[host localhost]]></category>
		<category><![CDATA[interval 1]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[monitor program]]></category>
		<category><![CDATA[mpd]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[music files]]></category>
		<category><![CDATA[O

Aside]]></category>
		<category><![CDATA[python script]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[shades]]></category>
		<category><![CDATA[signal strength]]></category>
		<category><![CDATA[simultanious]]></category>
		<category><![CDATA[single line]]></category>
		<category><![CDATA[spacer]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[system monitor]]></category>
		<category><![CDATA[thing]]></category>
		<category><![CDATA[use]]></category>
		<category><![CDATA[Wifi]]></category>
		<category><![CDATA[window]]></category>
		<category><![CDATA[window colour]]></category>
		<category><![CDATA[wlan]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=82</guid>
		<description><![CDATA[I am still sorting out music. I said I had a large collection, didn&#8217;t I? Well now we are up to the T&#8217;s now. Hopefully I will be able to finish this up real soon. :O Aside from sorting out the music files I decided to try out a little monitor program called Conky. The [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://linux.voodooradio.org/wp-content/uploads/2009/08/Screenshot-2.png" rel="lightbox[82]"><img class="alignleft size-thumbnail wp-image-84" title="Conky At The Top" src="http://linux.voodooradio.org/wp-content/uploads/2009/08/Screenshot-2-150x150.png" alt="Conky At The Top" width="150" height="150" /></a></p>
<p>I am still sorting out music. I said I had a large collection, didn&#8217;t I? Well now we are up to the T&#8217;s now. Hopefully I will be able to finish this up real soon. :O</p>
<p>Aside from sorting out the music files I decided to try out a little monitor program called Conky. The screenshot may be tough to view as a thumbnail so boost it up. Awww, Emma&#8217;s still playing with Daddy&#8217;s iPod&#8230; Oh wait this is about Conky, not Emma. Sorry was distracted.</p>
<p>Conky is a free, light-weight system monitor for X, that displays any information on your desktop. You can find more about it on their <a title="Conky Monitor" href="http://conky.sourceforge.net/" target="_blank">website</a>.</p>
<p><span id="more-82"></span>Configuring this thing is a little tedious, but there is a lot of things you can do with it. I am considering a different layout than what I put here. This is basically a single line bar that shows info about my system, the Wifi connection (yeah the laptop is in my bedroom so the signal strength is kind of low there), My internal IP, and the Mail thing is a python script that checks one of my Gmail accounts.</p>
<p>I have a weather script that works but I can&#8217;t use it here on the single line. So I am going to need to figure out how to use multiple configs, or use a different layout. Here&#8217;s my current .conkyrc file:</p>
<p><code>#avoid flicker<br />
double_buffer yes</p>
<p>#own window to run simultanious 2 or more conkys<br />
own_window  yes<br />
own_window_transparent no<br />
own_window_type normal<br />
own_window_hints undecorate,sticky,skip_taskbar,skip_pager</p>
<p>#borders<br />
draw_borders no<br />
border_margin 1</p>
<p>#shades<br />
draw_shades no</p>
<p>#position<br />
gap_x 0<br />
gap_y 27<br />
alignment top_left</p>
<p>#behaviour<br />
update_interval 1</p>
<p>#colour<br />
default_color  8f8f8f<br />
#default_shade_color 000000<br />
own_window_colour 262626</p>
<p>#font<br />
use_xft yes<br />
xftfont bauhaus:pixelsize=10</p>
<p>#to prevent window from moving<br />
use_spacer no<br />
minimum_size 1280 0</p>
<p>#mpd<br />
mpd_host localhost<br />
mpd_port 6600</p>
<p>TEXT<br />
${voffset -1} CPU: ${color e0e0e0}${font}$cpu% ${cpubar 8,8}${color} | Mem: ${color e0e0e0}${font}${mem} ${color} | Battery: ${color e0e0e0}${font}${battery}:${battery_time}${color} | ${color} Up: ${color e0e0e0}${font}${uptime_short}${color}  | ${color} Wifi: ${color e0e0e0}${font}${wireless_essid wlan0}: ${wireless_link_qual wlan0}%${color} IP: ${color e0e0e0}${font}${addr wlan0}${color}  |  ${color}Free: ${color e0e0e0}${font}${fs_free /} ${color}  |  Email: ${color e0e0e0}${execi 300 python ~/scripts/gmail.py}${color}<br />
</code></p>
<p>As you see it&#8217;s still a work in progress, but this originally was supposed to use a different weather script, but I couldn&#8217;t get that to work right at all.</p>
<p>Oh well, back to playing with it some more and sorting the music. Tomorrow. Possibly working with Audacity to get a podcast out this month. <img src='http://www.voodoostevie.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/08/day-18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 5 &#8211; Damn You Steve!</title>
		<link>http://www.voodoostevie.net/2009/08/day-5/</link>
		<comments>http://www.voodoostevie.net/2009/08/day-5/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 02:26:55 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[audio player]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[deal]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[downside]]></category>
		<category><![CDATA[episode]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[gPodder]]></category>
		<category><![CDATA[head]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[Nada]]></category>
		<category><![CDATA[Nothing]]></category>
		<category><![CDATA[ONLY]]></category>
		<category><![CDATA[Player]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[Podcasts]]></category>
		<category><![CDATA[Rhythm]]></category>
		<category><![CDATA[rhythm box]]></category>
		<category><![CDATA[Rhythmbox]]></category>
		<category><![CDATA[right]]></category>
		<category><![CDATA[sync]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=32</guid>
		<description><![CDATA[So stupid me figured out why the podcasts were not syncing. Because I deleted them all on the iPod and when you do that gPodder becomes clueless to where they all went! So to fix this I subscribed to 1 feed inside of Rhythmbox (the default audio player in Ubuntu 9.04). I plugged in my [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://linux.voodooradio.org/wp-content/uploads/2009/08/Screenshot-gPodder.png" rel="lightbox[32]"><img class="alignright size-thumbnail wp-image-33" title="gPodder" src="http://linux.voodooradio.org/wp-content/uploads/2009/08/Screenshot-gPodder-150x150.png" alt="gPodder" width="150" height="150" /></a>So stupid me figured out why the podcasts were not syncing. Because I deleted them all on the iPod and when you do that gPodder becomes clueless to where they all went!</p>
<p>So to fix this I subscribed to 1 feed inside of Rhythmbox (the default audio player in Ubuntu 9.04). I plugged in my iPod and after it noticed it was connected, I dragged and dropped the latest episode onto the iPod.</p>
<p><span id="more-32"></span></p>
<p>I loaded up gPodder and had it do it&#8217;s sync and  all the episodes that were not marked as played went right onto the iPod. However it kept the 1 episode from Rhythm box, which is no big deal.</p>
<p>I unplugged my iPod and head off to work with all my new podcasts ready to play. The ONLY downside to gPodder is that when the podcast uses cover art for their shows it doesn&#8217;t show on the iPod.  For example, VooDooRadio&#8217;s Last show had a special cover art that I made for the episode. When I was using iTunes under Windows the episodes would have that picture I made, but under gPodder. Nothing. Nada. BAH!</p>
<p>Maybe I missed something. I dunno.</p>
<p>So basically nothing new installed. Just conquered a small little issue that I found as important for my work day. Listening to shows as I work makes me feel more productive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/08/day-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
