<?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>Kyle's Weblog &#187; Music</title>
	<atom:link href="http://tacomafia.net/blog/category/music/feed/" rel="self" type="application/rss+xml" />
	<link>http://tacomafia.net/blog</link>
	<description>Must Resist... Too Awesome...</description>
	<lastBuildDate>Wed, 17 Feb 2010 03:09:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New Room Setup</title>
		<link>http://tacomafia.net/blog/2006/badass-room-setup/</link>
		<comments>http://tacomafia.net/blog/2006/badass-room-setup/#comments</comments>
		<pubDate>Mon, 29 May 2006 00:25:17 +0000</pubDate>
		<dc:creator>Kyle Hill</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://tacomafia.net/blog/2006/05/28/badass-room-setup/</guid>
		<description><![CDATA[
I&#8217;ve gotten back from my second year at K-State.  Thank God finals are finally over.  I&#8217;ve gotten all of my stuff setup in my room back home.  I&#8217;ve got a pretty good setup going now.  I&#8217;ve got my Xbox, this server and laptop plugged into my WRT54GS.  I can use [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://tacomafia.net/blog/pics/topics/music.png" title="Music" alt="Music" /></p>
<p>I&#8217;ve gotten back from my second year at K-State.  Thank God finals are finally over.  I&#8217;ve gotten all of my stuff setup in my room back home.  I&#8217;ve got a pretty good setup going now.  I&#8217;ve got my Xbox, this server and laptop plugged into my WRT54GS.  I can use everything I need from the comfort of my bed.  Oh, wondrous luxury.  I&#8217;ve got my speakers plugged into the sound card on my server and through a combination of mp3blaster and my own custom script, I can play music on those speakers from anywhere through putty.  I think it&#8217;s pretty sweet.</p>
<p>Here&#8217;s a copy of my shell script:</p>
<div class="synthi_code" style="display:none;" id ="plain_synthi_4c5299704dd61">
<div class="synthi_header" style="font-weight:bold;"> Bash <span  class="synthi_button"style="font-weight:lighter;font-size:smaller;">[<a href="#" onClick="javascript:document.getElementById('styled_synthi_4c5299704dd61').style.display='block';document.getElementById('plain_synthi_4c5299704dd61').style.display='none';return false">Show Styled Code</a>]:</span></div>
<pre style="width:100%;overflow:auto;">#!/bin/sh
#
# Music Script 0.1
#
# Plays specified or default playlist using mp3blaster.
#

default=/home/kyleh/playlists/syntax.m3u
custom=$1

# If no playlist is given, play the default
if [ $# -ne 1 ]
then
mp3blaster -a &#034;$default&#034; -p allrandom
else
# If custom playlist is readable
if [ -s &#034;$custom&#034; ]
then
mp3blaster -a &#034;$custom&#034; -p allrandom
else
echo &#034;ERROR: Unable to open custom playlist, opening default&#034;
mp3blaster -a &#034;$default&#034; -p allrandom
fi
fi

exit 0</pre>
</div>
<div class="synthi_code" style="display:block;" id ="styled_synthi_4c5299704dd61">
<div class="synthi_header" style="font-weight:bold;"> Bash <span  class="synthi_button"style="font-weight:lighter;font-size:smaller;">[<a href="#" onClick="javascript:document.getElementById('plain_synthi_4c5299704dd61').style.display='block';document.getElementById('styled_synthi_4c5299704dd61').style.display='none';return false">Show Plain Code</a>]:</span></div>
<div class="bash" style="font-family: monospace;">
<ol>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;">#!/bin/sh</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;">#</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;"># Music Script <span style="color: #000000;">0.1</span></span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;">#</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;"># Plays specified or default playlist using mp3blaster.</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;">#</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #007800;">default=</span>/home/kyleh/playlists/syntax.m3u</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #007800;">custom=</span>$<span style="color: #000000;">1</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;"># If no playlist is given, play the default</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$#</span> -ne <span style="color: #000000;">1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">then</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">mp3blaster -a <span style="color: #ff0000;">&quot;$default&quot;</span> -p allrandom</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">else</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;"># If custom playlist is readable</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> -s <span style="color: #ff0000;">&quot;$custom&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">then</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">mp3blaster -a <span style="color: #ff0000;">&quot;$custom&quot;</span> -p allrandom</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">else</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;ERROR: Unable to open custom playlist, opening default&quot;</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">mp3blaster -a <span style="color: #ff0000;">&quot;$default&quot;</span> -p allrandom</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">fi</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">fi</span></div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">0</span></div>
</li>
</ol>
</div>
</div>
<p>Here&#8217;s a link to my script: <a href="http://tacomafia.net/blog/files/scripts/music.zip">music.zip</a></p>
<p><a href="http://tacomafia.net/blog/files/cs/scripts/music.zip"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tacomafia.net/blog/2006/badass-room-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We&#8217;re Talkin&#8217; Old School</title>
		<link>http://tacomafia.net/blog/2005/were-talkin-old-school/</link>
		<comments>http://tacomafia.net/blog/2005/were-talkin-old-school/#comments</comments>
		<pubDate>Wed, 03 Aug 2005 23:32:45 +0000</pubDate>
		<dc:creator>Kyle Hill</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://tacomafia.net/blog/?p=8</guid>
		<description><![CDATA[
I&#8217;ve recently been perusing my rather sizable music collection and listening to older artists that I don&#8217;t typically play.
This got me thinking about the relationships between various groups and genres of Rock/Alternative.  I&#8217;ve found an awesome website that graphically depicts how close a certain set of artists&#8217; styles are related. 
http://www.mp3.com/musicvine/index.php
]]></description>
			<content:encoded><![CDATA[<p><img src="http://tacomafia.net/blog/pics/topics/music.png" alt="Music" /><br />
I&#8217;ve recently been perusing my rather sizable music collection and listening to older artists that I don&#8217;t typically play.</p>
<p>This got me thinking about the relationships between various groups and genres of Rock/Alternative.  I&#8217;ve found an awesome website that graphically depicts how close a certain set of artists&#8217; styles are related. </p>
<p>http://www.mp3.com/musicvine/index.php</p>
]]></content:encoded>
			<wfw:commentRss>http://tacomafia.net/blog/2005/were-talkin-old-school/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
