<?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>world threat &#187; Music</title>
	<atom:link href="http://worldthreat.net/tag/music/feed/" rel="self" type="application/rss+xml" />
	<link>http://worldthreat.net</link>
	<description>ART &#124; MUSIC &#124; LIFE</description>
	<lastBuildDate>Fri, 27 Aug 2010 18:46:35 +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>2010 &#124; year of the tiger</title>
		<link>http://worldthreat.net/2010/01/2010-year-of-the-tiger/</link>
		<comments>http://worldthreat.net/2010/01/2010-year-of-the-tiger/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 04:41:31 +0000</pubDate>
		<dc:creator>worldthreat</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://worldthreat.net/?p=265</guid>
		<description><![CDATA[HA! pee knew yeah! coming: NEW! beats! NEW! art! MORE! mediocre blogging! stay tuned&#8230;]]></description>
			<content:encoded><![CDATA[<p>HA! pee knew yeah!</p>
<p>coming: NEW! beats! NEW! art! MORE! mediocre blogging!<br />
stay tuned&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://worldthreat.net/2010/01/2010-year-of-the-tiger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>piMP3 player &#124; REMiX!</title>
		<link>http://worldthreat.net/2009/11/pimp3-player-remix/</link>
		<comments>http://worldthreat.net/2009/11/pimp3-player-remix/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 17:24:37 +0000</pubDate>
		<dc:creator>worldthreat</dc:creator>
				<category><![CDATA[nerd]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[nerd core]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[remix]]></category>

		<guid isPermaLink="false">http://worldthreat.net/?p=245</guid>
		<description><![CDATA[So, i needed a light weight mp3 player for iamcell.com, when i stumbled upon the piMP3 Player by cssrevolt.com.  Perfect! (does not work in IE right now)&#8230;Uses prototype (less than perfect) and integrates seemingly seemless!  For the sake of UI, i added &#8220;previous&#8221; and &#8220;next track&#8221; buttons&#8230; Code can be seen below&#8230;  I worked under [...]]]></description>
			<content:encoded><![CDATA[<p>So, i needed a light weight mp3 player for <a href="http://iamcell.com" target="_blank">iamcell.com</a>, when i stumbled upon the <a title="css revolt" href="http://cssrevolt.com/upload/files/pimp3/" target="_blank">piMP3 Player</a> by cssrevolt.com.  <span style="text-decoration: line-through;">Perfect!</span> (does not work in IE right now)&#8230;Uses <a href="http://prototypejs.org/" target="_blank">prototype </a>(less than perfect) and integrates seemingly seemless!  For the sake of UI, i added &#8220;previous&#8221; and &#8220;next track&#8221; buttons&#8230; Code can be seen below&#8230;  I worked under a stressful time constraint, so if any1 wants to jump in and drop some logic on my ass or fix the ie bug, by all means!</p>
<h3>_____________________________________________________</h3>
<p><a href="http://worldthreat.net/pimp3-v1point2.zip">download piMP3 player REMiX!</a></p>
<p style="padding-left: 30px;">next: function(e) {</p>
<p style="padding-left: 30px;"><code>var counter = this.options.Counter++;<br />
var theCount = data.length;<br />
//alert(counter+'  |   |  ' + theCount);<br />
var sound = new Array();<br />
for(i = 0; i &lt; theCount; i++){<br />
var ur = $('nextSound'+i);<br />
sound.push(ur);<br />
var cap = $('nextSound'+i).innerText;<br />
}<br />
if(counter==theCount){<br />
this.options.Counter=0;<br />
this.caption = sound[0].innerText || sound[0].textContent;<br />
this.sound_selected.writeAttribute('href',sound[0]).update(this.caption);<br />
} else {<br />
this.caption = sound[counter].innerText || sound[counter].textContent;<br />
this.sound_selected.writeAttribute('href',sound[counter]).update(this.caption);<br />
}</code></p>
<p style="padding-left: 30px;">Sound.play(this.sound_selected.readAttribute(&#8216;href&#8217;),{track:&#8217;pimp3Player&#8217;, replace:true});<br />
this.sound_status.show();<br />
Event.stop(e);<br />
},</p>
<p style="padding-left: 30px;">prev: function(e) {</p>
<p style="padding-left: 30px;">var counter = this.options.Counter&#8211;;<br />
var theCount = data.length;<br />
//alert(counter);<br />
var sound = new Array();<br />
for(i = 0; i &lt; theCount; i++){<br />
var ur = $(&#8216;nextSound&#8217;+i);<br />
sound.push(ur);<br />
var cap = $(&#8216;nextSound&#8217;+i).innerText;<br />
}<br />
if(counter==0){<br />
this.options.Counter=theCount-1;<br />
this.caption = sound[theCount].innerText || sound[theCount].textContent;<br />
this.sound_selected.writeAttribute(&#8216;href&#8217;,sound[theCount]).update(this.caption);<br />
} else {<br />
this.caption = sound[counter].innerText || sound[counter].textContent;<br />
this.sound_selected.writeAttribute(&#8216;href&#8217;,sound[counter]).update(this.caption);<br />
}<br />
this.caption = sound[counter].innerText || sound[counter].textContent;<br />
this.sound_selected.writeAttribute(&#8216;href&#8217;,sound[counter]).update(this.caption);<br />
Sound.play(this.sound_selected.readAttribute(&#8216;href&#8217;),{track:&#8217;pimp3Player&#8217;, replace:true});<br />
this.sound_status.show();<br />
Event.stop(e);<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://worldthreat.net/2009/11/pimp3-player-remix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LiVE @ AS220 &#124; May 15, 2009</title>
		<link>http://worldthreat.net/2009/06/live-as220-may-15-2009/</link>
		<comments>http://worldthreat.net/2009/06/live-as220-may-15-2009/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 05:57:58 +0000</pubDate>
		<dc:creator>worldthreat</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[as220]]></category>
		<category><![CDATA[hip hop]]></category>
		<category><![CDATA[live show]]></category>
		<category><![CDATA[providence]]></category>
		<category><![CDATA[steam rave]]></category>
		<category><![CDATA[techno]]></category>
		<category><![CDATA[world threat]]></category>

		<guid isPermaLink="false">http://worldthreat.net/?p=119</guid>
		<description><![CDATA[My dear friend (and old employer), Gary Hallquist, was kind enough to visually document my last show in hi-res&#8230; Thankfully i was on top of my game! &#8220;World threat gets the girls wet&#8221; got a free beer that night, btw&#8230; Click on one of the images below to open up the gallery &#038; see the [...]]]></description>
			<content:encoded><![CDATA[<p>My dear friend (and old employer), Gary Hallquist, was kind enough to visually document my last show in hi-res&#8230;  Thankfully i was on top of my game!</p>
<p>&#8220;World threat gets the girls wet&#8221; got a free beer that night, btw&#8230;</p>
<p>Click on one of the images below to open up the gallery &#038; see the rest of the photos!</p>
<p><a class="option" title="Live @ AS220" href="http://worldthreat.net/art/live_may-09/_DSC0300.jpg" rel="shadowbox[world threat live];shadowbox;options={handleOversize:'drag'}">click!<br/><img border="0" alt="World Threat Live Music and Video Show" src="http://worldthreat.net/art/live_may-09/_DSC0300_tn.jpg" width="250" height="166" /><img border="0" alt="World Threat Live Music and Video Show"  src="http://worldthreat.net/art/live_may-09/_DSC0315_tn.jpg" width="250" height="166" /></p>
<p><img border="0" alt="World Threat Live Music and Video Show"  src="http://worldthreat.net/art/live_may-09/_DSC0329_tn.jpg" width="250" height="166" /><img border="0" alt="World Threat Live Music and Video Show"  src="http://worldthreat.net/art/live_may-09/_DSC0362_tn.jpg" width="250" height="376" /></p>
<p><img border="0" alt="World Threat Live Music and Video Show"  src="http://worldthreat.net/art/live_may-09/_DSC0397_tn.jpg" width="250" height="166" /></a></p>
<p><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0306.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0314.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0315.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0384.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0329.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0342.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0347.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0374.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0362.jpg"/><br />
<a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0374.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0377.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0381.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0321.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0396.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0405.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0283.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC0285.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC6312.jpg"/><a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC7369.jpg"/><br />
<a class="hidden" rel="shadowbox[world threat live]" title="live @ as220" href="http://worldthreat.net/art/live_may-09/_DSC8399.jpg"/></p>
]]></content:encoded>
			<wfw:commentRss>http://worldthreat.net/2009/06/live-as220-may-15-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharon Osbourne is gonna be pissed!</title>
		<link>http://worldthreat.net/2009/05/sharon-osbourne-is-gonna-be-pissed/</link>
		<comments>http://worldthreat.net/2009/05/sharon-osbourne-is-gonna-be-pissed/#comments</comments>
		<pubDate>Sun, 31 May 2009 17:05:53 +0000</pubDate>
		<dc:creator>worldthreat</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[beats]]></category>
		<category><![CDATA[hip hop]]></category>
		<category><![CDATA[korg]]></category>
		<category><![CDATA[Ozzy Osbourne]]></category>
		<category><![CDATA[rave]]></category>
		<category><![CDATA[remix]]></category>
		<category><![CDATA[samples]]></category>
		<category><![CDATA[Sharon Osbourne]]></category>

		<guid isPermaLink="false">http://worldthreat.net/?p=107</guid>
		<description><![CDATA[Sampled: &#8220;No More Tears&#8221; by Ozzy Osbourne&#8230;. I pick it up after the second chorus, when the piano drops&#8230; Now it&#8217;s &#8220;Wake The Dead&#8221;, an electro-house rap, track 6 to your right. I played bass &#038; organ on the mikro Korg and remixed the eFF outta some drums&#8230; njoi!]]></description>
			<content:encoded><![CDATA[<p>Sampled: &#8220;No More Tears&#8221; by Ozzy Osbourne&#8230;.</p>
<p>I pick it up after the second chorus, when the piano drops&#8230;<br />
Now it&#8217;s &#8220;Wake The Dead&#8221;, an electro-house rap, track 6 to your right.  </p>
<p>I played bass &#038; organ on the mikro Korg and remixed the eFF outta some drums&#8230; njoi!</p>
]]></content:encoded>
			<wfw:commentRss>http://worldthreat.net/2009/05/sharon-osbourne-is-gonna-be-pissed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>certified nerd</title>
		<link>http://worldthreat.net/2009/05/certified-nerd/</link>
		<comments>http://worldthreat.net/2009/05/certified-nerd/#comments</comments>
		<pubDate>Wed, 20 May 2009 13:51:49 +0000</pubDate>
		<dc:creator>worldthreat</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[hip hop]]></category>
		<category><![CDATA[nerd core]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[rave]]></category>
		<category><![CDATA[techno]]></category>
		<category><![CDATA[world threat]]></category>

		<guid isPermaLink="false">http://worldthreat.net/?p=93</guid>
		<description><![CDATA[remember that rap i wrote in php? Well, here&#8217;s the verse in audio! it&#8217;s called certified nerd&#8230; 7th track in my player on the right!]]></description>
			<content:encoded><![CDATA[<p>remember that <a href="http://worldthreat.net/?p=56"><strong>rap i wrote in php?</strong></a><br />
Well, here&#8217;s the verse in audio! it&#8217;s called <strong>certified nerd</strong>&#8230; 7th track in my player on the right!</p>
]]></content:encoded>
			<wfw:commentRss>http://worldthreat.net/2009/05/certified-nerd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
