<?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; Songbird</title>
	<atom:link href="http://www.voodoostevie.net/tag/songbird/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 34 &#8211; Amarok(untpunch)</title>
		<link>http://www.voodoostevie.net/2009/09/day-34/</link>
		<comments>http://www.voodoostevie.net/2009/09/day-34/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 17:23:16 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Al]]></category>
		<category><![CDATA[album art]]></category>
		<category><![CDATA[Amarok]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Andrew W.K]]></category>
		<category><![CDATA[anything]]></category>
		<category><![CDATA[Audacity]]></category>
		<category><![CDATA[decent player]]></category>
		<category><![CDATA[everyone]]></category>
		<category><![CDATA[folders]]></category>
		<category><![CDATA[GOing]]></category>
		<category><![CDATA[id3 tags]]></category>
		<category><![CDATA[Kabuto]]></category>
		<category><![CDATA[LiVES]]></category>
		<category><![CDATA[messes]]></category>
		<category><![CDATA[organization]]></category>
		<category><![CDATA[Player]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[reason]]></category>
		<category><![CDATA[reinstall]]></category>
		<category><![CDATA[sigh]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[Songbird]]></category>
		<category><![CDATA[thing]]></category>
		<category><![CDATA[tune]]></category>
		<category><![CDATA[tunes]]></category>
		<category><![CDATA[VLC]]></category>
		<category><![CDATA[Weird]]></category>
		<category><![CDATA[weird al]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=186</guid>
		<description><![CDATA[I got Skype, LiVES, Audacity and VLC installed, however I haven&#8217;t really played with anything.  For some reason I was having some issues with Songbird.. GOing to reinstall it soon.  But mostly I was checking out Amarok. Now Amarok is a decent player, however I am sketchy on the organization thing it does. It really [...]]]></description>
			<content:encoded><![CDATA[<p>I got Skype, LiVES, Audacity and VLC installed, however I haven&#8217;t really played with anything.  For some reason I was having some issues with Songbird.. GOing to reinstall it soon.  But mostly I was checking out Amarok.</p>
<p>Now Amarok is a decent player, however I am sketchy on the organization thing it does. It really messes up on the ID3 tags sometimes.</p>
<p>I have a few tunes (1 Andrew W.K. tune, Some &#8220;Weird Al&#8221; tunes and some Kabuto the Python tracks) which it decided to put everyone in mismatched folders. *sigh*</p>
<p>I hope I can get back to Songbird. I loved that program&#8217;s sorting feature a lot better. Also Amarok uses Amazon ONLY for the album art. WTF? Nothing I listen to is on there. BAH!</p>
<p>That&#8217;s it for today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/09/day-34/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 32 &#8211; Fire(fox) In The HOLE!</title>
		<link>http://www.voodoostevie.net/2009/09/day-32/</link>
		<comments>http://www.voodoostevie.net/2009/09/day-32/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 14:11:43 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[biggy]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[desktop folder]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[OLD]]></category>
		<category><![CDATA[old version]]></category>
		<category><![CDATA[Songbird]]></category>
		<category><![CDATA[today]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[WHOOPS]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=175</guid>
		<description><![CDATA[So looking at the version of firefox that I had I realized that it&#8217;s OLD. I uninstalled the old version (I think) and installed the more up-to-date one. And while I did that I noticed that Songbird got uninstalled. WHOOPS! No biggy, reinstalled perfectly. Now I have the latest version of Firefox. I also removed [...]]]></description>
			<content:encoded><![CDATA[<p>So looking at the version of firefox that I had I realized that it&#8217;s OLD. I uninstalled the old version (I think) and installed the more up-to-date one. And while I did that I noticed that Songbird got uninstalled. WHOOPS! No biggy, reinstalled perfectly.</p>
<p>Now I have the latest version of Firefox.</p>
<p>I also removed the little desktop folder off the desktop and kept icons&#8230; I have to think of using a dock. Going to look for a decent one under KDE. SO that is about all I did for today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/09/day-32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 24 &#8211; Lazy Sunday</title>
		<link>http://www.voodoostevie.net/2009/08/day-24/</link>
		<comments>http://www.voodoostevie.net/2009/08/day-24/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 13:20:42 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[bar]]></category>
		<category><![CDATA[crap]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[distorted view]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[external hd]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[lazy sunday]]></category>
		<category><![CDATA[Looks]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[parents]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[phone number]]></category>
		<category><![CDATA[Pidgin]]></category>
		<category><![CDATA[pizza]]></category>
		<category><![CDATA[playlist]]></category>
		<category><![CDATA[Podcasts]]></category>
		<category><![CDATA[rug]]></category>
		<category><![CDATA[rug cleaner]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[smiley]]></category>
		<category><![CDATA[Songbird]]></category>
		<category><![CDATA[StumbleUpon]]></category>
		<category><![CDATA[sunday]]></category>
		<category><![CDATA[test subject]]></category>
		<category><![CDATA[Trillian]]></category>
		<category><![CDATA[weather]]></category>
		<category><![CDATA[while]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=123</guid>
		<description><![CDATA[It&#8217;s a lazy sunday for sure. I watched TV most of the day then went to my parents to return a rug cleaner. I didn&#8217;t really pick up the laptop except to check the weather and search for the phone number for a pizza joint that we got pizza from a while back. Also I [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a lazy sunday for sure. I watched TV most of the day then went to my parents to return a rug cleaner.</p>
<p>I didn&#8217;t really pick up the laptop except to check the weather and search for the phone number for a pizza joint that we got pizza from a while back. Also I updated my ipod as I do every day and did a little stumbling (StumbleUpon) using the firefox bar extension.</p>
<p>I also installed the Trillian smiley set for Pidgin. I forgot I had it on my external HD. There is still some things that are on there I have to decide on keeping on there.</p>
<p>Looks like MySQL stopped working for some reason. I don&#8217;t know why. Looks like I am going to have to research this crap now. *sigh*</p>
<p>I also found that Songbird has an iPod add-on but it looks like it&#8217;s geared more towards earlier generation iPod&#8217;s. It picks my iPod up but it&#8217;s not seeing my playlist on there. Also I tried subscribing to some podcasts and it didn&#8217;t pick up anything when I added a subscription (<a title="Cum Farts, Bristol Stool Chart, and Baby Rapings" href="http://www.distortedview.com" target="_blank">Distorted View</a> was my test subject for this). Let&#8217;s hope the next day is better.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/08/day-24/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 11 &#8211; Remotely Connected Sorting Out My Tunes</title>
		<link>http://www.voodoostevie.net/2009/08/day-11/</link>
		<comments>http://www.voodoostevie.net/2009/08/day-11/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 19:32:24 +0000</pubDate>
		<dc:creator>VooDooStevie</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[artist album]]></category>
		<category><![CDATA[audio cd]]></category>
		<category><![CDATA[banshee]]></category>
		<category><![CDATA[Cowbell]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[digital library]]></category>
		<category><![CDATA[directory structure]]></category>
		<category><![CDATA[fame]]></category>
		<category><![CDATA[functionality]]></category>
		<category><![CDATA[Graeme]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[hunting]]></category>
		<category><![CDATA[incoming connections]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[killer]]></category>
		<category><![CDATA[killer app]]></category>
		<category><![CDATA[machine]]></category>
		<category><![CDATA[molasses]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[music files]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[Perfect]]></category>
		<category><![CDATA[person]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[possibilities]]></category>
		<category><![CDATA[Remote]]></category>
		<category><![CDATA[remote desktop]]></category>
		<category><![CDATA[reply]]></category>
		<category><![CDATA[Rhythmbox]]></category>
		<category><![CDATA[second life]]></category>
		<category><![CDATA[sense]]></category>
		<category><![CDATA[Songbird]]></category>
		<category><![CDATA[tag editor]]></category>
		<category><![CDATA[today]]></category>
		<category><![CDATA[tweet]]></category>
		<category><![CDATA[viewer]]></category>
		<category><![CDATA[VNC]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://linux.voodooradio.org/?p=59</guid>
		<description><![CDATA[Today I played with the Remote Desktop. I set it up to accept all incoming connections, but the person logging in would have to supply a password. I left the machine running at home while I went to work. I ran VNC viewer from work and I connected perfectly. Well&#8230; Perfect in the sense that [...]]]></description>
			<content:encoded><![CDATA[<p>Today I played with the Remote Desktop. I set it up to accept all incoming connections, but the person logging in would have to supply a password. I left the machine running at home while I went to work. I ran VNC viewer from work and I connected perfectly.</p>
<p>Well&#8230; Perfect in the sense that it showed things and did things, but it was S&#8230;L&#8230;O&#8230;W as molasses because our network is a little on the laggy side.</p>
<p>So to announce I was able to connect from work to the home machine, I sent out a tweet using Gwibber. Of course my friend Graeme (of ITRadio fame) had to make a snarky reply. <img src='http://www.voodoostevie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Through there I was able to install a few things. I am trying to get my music sorted a little so I looked up a few possibilities to do so. People were saying that Cowbell was a program that aided in the sorting of your digital library so I installed that.</p>
<p><span id="more-59"></span></p>
<p>It was not quite what I had hoped it to be. It was basically a tag editor ONLY and did not sort your music files what-so-ever.</p>
<p>Rhythmbox also does not sort out the files into a nice Artist &#8211; Album manner so I did some more hunting around. Then it dawned on me. SONGBIRD! I had tried this out under windows before, it was decent, but people were calling it the iTunes killer app. Well, it&#8217;s not quite there yet. Yes it is a killer when it comes to functionality, resources,  and the add-ons. But it doesn&#8217;t have the podcast functionality iTunes has so a lot of people that listen to podcasts will be still drawn to iTunes, in my opinion.</p>
<p>So I installed Songbird. It imported all my media and it also sorted the files into the directory structure I mentioned earlier. So it works perfectly. Goodbye Banshee and Cowbell. Rhythmbox, you will be used for ripping audio CD&#8217;s  (another feature Songbird lacks). gPodder, you are definitely my podcast downloading and syncing solution.</p>
<p>After all this I played a little more in Second Life and called it a day.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voodoostevie.net/2009/08/day-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
