<?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>TikiRobot! &#187; beats</title>
	<atom:link href="http://www.tikirobot.net/wp/tag/beats/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tikirobot.net/wp</link>
	<description>Mai Tais and Blinky Lights, Ahoy!</description>
	<lastBuildDate>Sun, 25 Jul 2010 18:54:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Live dubstep + tabla + flutebox</title>
		<link>http://www.tikirobot.net/wp/2010/07/25/live-dubstep-tabla-flutebox/</link>
		<comments>http://www.tikirobot.net/wp/2010/07/25/live-dubstep-tabla-flutebox/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 17:52:47 +0000</pubDate>
		<dc:creator>rajbot</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[beats]]></category>
		<category><![CDATA[dubstep]]></category>
		<category><![CDATA[EngineEarz]]></category>
		<category><![CDATA[flutebox]]></category>
		<category><![CDATA[tabla]]></category>

		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=3185</guid>
		<description><![CDATA[I found this video on the Engine-EarZ Experiment YouTube channel. It&#8217;s a live dubstep collaboration between the Engine-EarZ and Nathan &#8220;Flutebox&#8221; Lee:

]]></description>
			<content:encoded><![CDATA[<p>I found this video on the <a href="http://www.youtube.com/user/EngineEarZExperiment">Engine-EarZ Experiment YouTube channel</a>. It&#8217;s a live dubstep collaboration between the Engine-EarZ and Nathan &#8220;Flutebox&#8221; Lee:</p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube-nocookie.com/v/BaWxsWl7XGo&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/BaWxsWl7XGo&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="306"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tikirobot.net/wp/2010/07/25/live-dubstep-tabla-flutebox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hardware volume key support on XFCE</title>
		<link>http://www.tikirobot.net/wp/2010/07/20/hardware-volume-key-support-on-xfce/</link>
		<comments>http://www.tikirobot.net/wp/2010/07/20/hardware-volume-key-support-on-xfce/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 18:21:09 +0000</pubDate>
		<dc:creator>shag</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[beats]]></category>
		<category><![CDATA[code code]]></category>
		<category><![CDATA[commandline]]></category>

		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=3165</guid>
		<description><![CDATA[XFCE4 from Debian unstable (&#8220;sid&#8221;) does not seem to bind the hardware volume-up, volume-down, and mute keyboard buttons on my ThinkPad to any actions.  It&#8217;s convenient to be able to control the sound card with these dedicated buttons &#8211; no twiddling around with the mouse to reach for a volume slider when NWA hits your playlist [...]]]></description>
			<content:encoded><![CDATA[<p>XFCE4 from Debian unstable (&#8220;sid&#8221;) does not seem to bind the hardware volume-up, volume-down, and mute keyboard buttons on my ThinkPad to any actions.  It&#8217;s convenient to be able to control the sound card with these dedicated buttons &#8211; no twiddling around with the mouse to reach for a volume slider when NWA hits your playlist and the boss walks over.  I suppose this is just a rough edge with the current XFCE integration; Gnome seems to handle this pretty well out of the box, but then again, Gnome is a bloated pig compared to XFCE.  So here&#8217;s one way to make the buttons work in XFCE.</p>
<p>First, you&#8217;ll need to make sure some prerequisite packages are installed: the package that provides the &#8220;amixer&#8221; binary, and some variant of awk.  Open an XFCE terminal window by clicking on the XFCE &#8220;mouse&#8221; logo in the XFCE panel, then clicking &#8220;Terminal&#8221;.  Become root by running the following and entering your root password:</p>
<p><code><br />
su -<br />
</code></p>
<p>Then install the appropriate packages &#8212; here&#8217;s how to do it in Debian:</p>
<p><code><br />
apt-get install alsa-utils mawk<br />
</code></p>
<p>Once the packages are installed, drop root privileges:</p>
<p><code><br />
exit<br />
</code></p>
<p>Then let&#8217;s pick a place for our scripts to live.  This example will assume that they will go into a &#8216;bin&#8217; directory underneath your home directory; so, let&#8217;s make sure that exists:</p>
<p><code><br />
mkdir ~/bin<br />
</code></p>
<p>Now, on to the scripts. Copy and paste the following script as &#8220;~/bin/alsa-toggle-mute&#8221;.  Probably the easiest way to do this with a stock Debian system is to start the &#8216;nano&#8217; editor with:</p>
<p><code><br />
nano ~/bin/alsa-toggle-mute<br />
</code></p>
<p>highlighting the script below, and then using your middle mouse button to paste the script into the nano terminal window, then using &#8220;Ctrl-x y ENTER&#8221; to save the file:</p>
<p><code><br />
&#35;!/bin/sh<br />
&#35;<br />
&#35; alsa-toggle-mute<br />
&#35;<br />
&#35;#########################################################<br />
&#35;<br />
&#35; AMIXER: path to your 'amixer' binary<br />
AMIXER=/usr/bin/amixer<br />
&#35;<br />
&#35; CONTROL: sound card control to adjust: run 'amixer' to find this<br />
CONTROL="Master,0"<br />
&#35;<br />
&#35; LEVELKEY: pattern on 'amixer' output lines to search for that provides<br />
&#35;           the current control level<br />
LEVELKEY=Mono:<br />
&#35;<br />
&#35;#########################################################<br />
&#35;<br />
$AMIXER sset $CONTROL \<br />
`$AMIXER sget $CONTROL |<br />
awk "(/$LEVELKEY/) { if (\\$NF == \\"[on]\\") { print \\"mute\\" } else { print \\"unmute\\" } }"` &gt; /dev/null<br />
</code></p>
<p>Make the script executable:</p>
<p><code><br />
chmod 700 ~/bin/alsa-toggle-mute<br />
</code></p>
<p>Then attach it to the hardware mute button with the XFCE keyboard settings manager GUI.  Click on the XFCE &#8220;mouse&#8221; logo that should be on the edge of your XFCE panel; click &#8220;Settings&#8221; from the pop-up menu; then click &#8220;Keyboard&#8221;.  Click on the &#8220;Application Shortcuts&#8221; tab.  Then click &#8220;Add&#8221;.  XFCE will ask for a path to the command; enter the full path to your alsa-toggle-mute script, e.g., &#8220;/home/username/bin/alsa-toggle-mute&#8221; &#8212; of course, you will have to substitute your username in that command.  XFCE will then pop up a box waiting for the &#8220;Command Shortcut&#8221; &#8212; at this point, press your hardware mute button.</p>
<p>That should be it! Your mute button should now work.</p>
<p>Now let&#8217;s add support for the volume-up button.  Save this script to &#8220;~/bin/alsa-volume-up&#8221;:</p>
<p><code><br />
&#35;!/bin/sh<br />
&#35;<br />
&#35; alsa-volume-up<br />
&#35;<br />
&#35;#########################################################<br />
&#35;<br />
&#35; OFFSET: amount to increment/decrement the control level: e.g., -1<br />
&#35;         decrements the volume, 1 increments the volume; values with<br />
&#35;         a greater absolute magnitude will decrement or increment the<br />
&#35;         control level more quickly.  Use "$1" if you wish to pass<br />
&#35;         the offset in from command line parameters<br />
OFFSET=1<br />
&#35;<br />
&#35; AMIXER: path to your 'amixer' binary<br />
AMIXER=/usr/bin/amixer<br />
&#35;<br />
&#35; CONTROL: sound control to adjust: run 'amixer' to find this<br />
CONTROL="Master,0"<br />
&#35;<br />
&#35; LEVELKEY: pattern on 'amixer' output lines to search for that provides<br />
&#35;           the current control level<br />
LEVELKEY=Mono:<br />
&#35;<br />
&#35; LEVELFIELD: awk field number of the current control level<br />
LEVELFIELD=3<br />
&#35;<br />
&#35;#########################################################<br />
&#35;<br />
$AMIXER sset $CONTROL \<br />
`$AMIXER sget $CONTROL | \<br />
awk "(/$LEVELKEY/) { print \\$$LEVELFIELD + $OFFSET }"` &gt; /dev/null<br />
</code></p>
<p>Make it executable:</p>
<p><code><br />
chmod 700 ~/bin/alsa-volume-up<br />
</code></p>
<p>Attach it to the hardware volume up button by following the same instructions as for the mute script (above), but in place of &#8220;/home/username/bin/alsa-toggle-mute&#8221;, use &#8220;/home/username/bin/alsa-volume-up&#8221;.  And rather than pressing the hardware mute button, press the hardware volume up button.</p>
<p>Then let&#8217;s handle the hardware volume down button.  This time we will take a shortcut.  Rather than copying and pasting another script, we&#8217;ll just copy and edit the volume-up script that you&#8217;ve already saved:</p>
<p><code><br />
cp ~/bin/alsa-volume-up ~/bin/alsa-volume-down<br />
</code></p>
<p>Then edit the ~/bin/alsa-volume-down script in nano to change the line that reads &#8220;OFFSET=1&#8243; to &#8220;OFFSET=-1&#8243;:</p>
<p><code><br />
nano ~/bin/alsa-volume-down<br />
</code></p>
<p>.. edit the script, then use &#8220;CTRL-x y ENTER&#8221; to save.</p>
<p>Then, as before, attach the script to the hardware volume down button by following the same instructions as for the mute script (above), but in place of &#8220;/home/username/bin/alsa-toggle-mute&#8221;, use &#8220;/home/username/bin/alsa-volume-down&#8221;.  And rather than pressing the hardware mute button, press the hardware volume down button.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tikirobot.net/wp/2010/07/20/hardware-volume-key-support-on-xfce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fever Ray WANTS YOUR BRAIN</title>
		<link>http://www.tikirobot.net/wp/2010/01/26/fever-ray-wants-your-brain/</link>
		<comments>http://www.tikirobot.net/wp/2010/01/26/fever-ray-wants-your-brain/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 03:21:12 +0000</pubDate>
		<dc:creator>rajbot</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[beats]]></category>
		<category><![CDATA[fever ray]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=2970</guid>
		<description><![CDATA[Karin Dreijer Andersson made it on to Resident Advisor&#8217;s Top 100 albums of the &#8217;00s list twice, once for her solo album as Fever Ray and again for her collaboration with her brother as The Knife.
Here is an acceptance speech that Fever Ray gave at an awards show in Sweeden. It is one of the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Karin_Dreijer_Andersson">Karin Dreijer Andersson</a> made it on to Resident Advisor&#8217;s <a href="http://www.residentadvisor.net/feature.aspx?1144">Top 100 albums of the &#8217;00s</a> list twice, once for her solo album as <a href="http://feverray.com">Fever Ray</a> and again for her collaboration with her brother as <a href="http://www.theknife.net/">The Knife</a>.</p>
<p>Here is an acceptance speech that Fever Ray gave at an awards show in Sweeden. It is one of the best acceptance speeches ever given:</p>
<p><object width="480" height="295"><param name="movie" value="http://www.youtube-nocookie.com/v/ymCP6zC_qJU&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/ymCP6zC_qJU&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tikirobot.net/wp/2010/01/26/fever-ray-wants-your-brain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s he building in there?</title>
		<link>http://www.tikirobot.net/wp/2010/01/02/whats-he-building-in-there/</link>
		<comments>http://www.tikirobot.net/wp/2010/01/02/whats-he-building-in-there/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 20:20:03 +0000</pubDate>
		<dc:creator>rajbot</dc:creator>
				<category><![CDATA[video]]></category>
		<category><![CDATA[beats]]></category>
		<category><![CDATA[Tom Waits]]></category>

		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=2892</guid>
		<description><![CDATA[
- Tom Waits, via reddit
]]></description>
			<content:encoded><![CDATA[<p><object width="480" height="385"><param name="movie" value="http://www.youtube-nocookie.com/v/JaLjwSpZ6Cs&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/JaLjwSpZ6Cs&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>- Tom Waits, via reddit</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tikirobot.net/wp/2010/01/02/whats-he-building-in-there/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>the rocket experience</title>
		<link>http://www.tikirobot.net/wp/2009/07/20/the-rocket-experience/</link>
		<comments>http://www.tikirobot.net/wp/2009/07/20/the-rocket-experience/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 16:34:54 +0000</pubDate>
		<dc:creator>shag</dc:creator>
				<category><![CDATA[beats]]></category>
		<category><![CDATA[excursions]]></category>
		<category><![CDATA[lifehacking]]></category>
		<category><![CDATA[old timers]]></category>

		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=2578</guid>
		<description><![CDATA[
Making of Buzz Aldrin&#8217;s Rocket Experience w/ Snoop Dogg and Talib Kweli from Buzz Aldrin
snoop dogg, talib kweli, and buzz aldrin, together at last.  just heard the song on the radio today.
]]></description>
			<content:encoded><![CDATA[<p><object id="ordie_player_f7a26d7505" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="328" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="key=f7a26d7505" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.ordienetworks.com/flash/fodplayer.swf" /><param name="name" value="ordie_player_f7a26d7505" /><param name="quality" value="high" /><embed id="ordie_player_f7a26d7505" type="application/x-shockwave-flash" width="512" height="328" src="http://player.ordienetworks.com/flash/fodplayer.swf" quality="high" name="ordie_player_f7a26d7505" allowscriptaccess="always" allowfullscreen="true" flashvars="key=f7a26d7505"></embed></object></p>
<div style="text-align: left; font-size: x-small; margin-top: 0pt; width: 512px;"><a title="from Buzz Aldrin, FOD Team, and Ryan Perez" href="http://www.funnyordie.com/videos/f7a26d7505/making-of-buzz-aldrin-s-rocket-experience-w-snoop-dogg-and-talib-kweli">Making of Buzz Aldrin&#8217;s Rocket Experience w/ Snoop Dogg and Talib Kweli</a> from <a href="http://www.buzzaldrin.com/">Buzz Aldrin</a></div>
<p>snoop dogg, talib kweli, and buzz aldrin, together at last.  just heard the song on the radio today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tikirobot.net/wp/2009/07/20/the-rocket-experience/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>TikiTV at Pink Saturday</title>
		<link>http://www.tikirobot.net/wp/2009/06/28/tikitv-at-pink-saturday/</link>
		<comments>http://www.tikirobot.net/wp/2009/06/28/tikitv-at-pink-saturday/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 02:35:59 +0000</pubDate>
		<dc:creator>rajbot</dc:creator>
				<category><![CDATA[san francisco]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[beats]]></category>
		<category><![CDATA[pink saturday]]></category>
		<category><![CDATA[pride]]></category>
		<category><![CDATA[tikitv]]></category>
		<category><![CDATA[tronix]]></category>

		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=2537</guid>
		<description><![CDATA[Pink Saturday was amazing.. there were at least a trillion people there!
Peliom took this picture of TikiTV VJ&#8217;ing on the main stage at Castro and Market:

]]></description>
			<content:encoded><![CDATA[<p>Pink Saturday was amazing.. there were at least a trillion people there!</p>
<p>Peliom took this picture of <a href="http://tikitv.net ">TikiTV</a> VJ&#8217;ing on the main stage at Castro and Market:</p>
<p><img class="alignnone size-medium wp-image-2538" title="14547189" src="http://www.tikirobot.net/wp/wp-content/uploads/2009/06/14547189-500x375.jpg" alt="14547189" width="500" height="375" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tikirobot.net/wp/2009/06/28/tikitv-at-pink-saturday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bflat Buddha Machine</title>
		<link>http://www.tikirobot.net/wp/2009/05/12/bflat-buddha-machine/</link>
		<comments>http://www.tikirobot.net/wp/2009/05/12/bflat-buddha-machine/#comments</comments>
		<pubDate>Wed, 13 May 2009 06:31:05 +0000</pubDate>
		<dc:creator>rajbot</dc:creator>
				<category><![CDATA[video]]></category>
		<category><![CDATA[beats]]></category>
		<category><![CDATA[Bflat]]></category>
		<category><![CDATA[Buddha Machine]]></category>
		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=2495</guid>
		<description><![CDATA[I went to bed at 2am last night. The alarm went off at 6am this morning . It was waaaay too early to do much other than check the internets, so that&#8217;s what I did, and found inbflat.net. This site is magic.
Eventually I realized I had to stop playing with it and do some work, [...]]]></description>
			<content:encoded><![CDATA[<p>I went to bed at 2am last night. The alarm went off at 6am this morning . It was waaaay too early to do much other than check the internets, so that&#8217;s what I did, and found <a href="http://inbflat.net/">inbflat.net</a>. This site is magic.</p>
<p>Eventually I realized I had to stop playing with it and do some work, but I wanted to keep listening. So I made <a href="http://tikirobot.net/BbBuddha">the Bb Buddha Machine</a>.</p>
<p>It probably doesn&#8217;t work in IE. It brings linux machines to their knees. But I listened to it for at least eight hours today. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tikirobot.net/wp/2009/05/12/bflat-buddha-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TikiTV In Action</title>
		<link>http://www.tikirobot.net/wp/2009/04/12/tikitv-in-action/</link>
		<comments>http://www.tikirobot.net/wp/2009/04/12/tikitv-in-action/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 05:29:47 +0000</pubDate>
		<dc:creator>rajbot</dc:creator>
				<category><![CDATA[photos]]></category>
		<category><![CDATA[san francisco]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[beats]]></category>
		<category><![CDATA[cocoa]]></category>
		<category><![CDATA[code code]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[tikitv]]></category>

		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=2440</guid>
		<description><![CDATA[Here are some old pics of Sam and Peliom vj-ing with the open source TikiTV software at the Timothy Leary Archives event at 111 Minna. Way fun!




]]></description>
			<content:encoded><![CDATA[<p>Here are some old pics of Sam and Peliom vj-ing with the open source <a href="http://tikitv.net/">TikiTV</a> software at the <a href="http://www.timothylearyarchives.org/">Timothy Leary Archives</a> event at 111 Minna. Way fun!</p>
<p><a href="http://www.flickr.com/photos/rkumar/3351915417/" title="IMG_5628"><img src="http://farm4.static.flickr.com/3644/3351915417_755f56a989.jpg" width="500" height="375" alt="IMG_5628" /></a></p>
<p><a href="http://www.flickr.com/photos/rkumar/3352740860/" title="IMG_5631"><img src="http://farm4.static.flickr.com/3448/3352740860_07527e9899.jpg" width="500" height="375" alt="IMG_5631" /></a></p>
<p><a href="http://www.flickr.com/photos/rkumar/3351915359/" title="IMG_5629"><img src="http://farm4.static.flickr.com/3620/3351915359_113596ec03.jpg" width="500" height="375" alt="IMG_5629" /></a></p>
<p><a href="http://www.flickr.com/photos/rkumar/3352741290/" title="IMG_5633 by rkumar, on Flickr"><img src="http://farm4.static.flickr.com/3540/3352741290_72260bb1bb.jpg" width="375" height="500" alt="IMG_5633" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tikirobot.net/wp/2009/04/12/tikitv-in-action/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This is Rock and Roll.</title>
		<link>http://www.tikirobot.net/wp/2009/01/22/this-is-rock-and-roll/</link>
		<comments>http://www.tikirobot.net/wp/2009/01/22/this-is-rock-and-roll/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 22:31:27 +0000</pubDate>
		<dc:creator>rajbot</dc:creator>
				<category><![CDATA[video]]></category>
		<category><![CDATA[beats]]></category>

		<guid isPermaLink="false">http://www.tikirobot.net/wp/2009/01/22/this-is-rock-and-roll/</guid>
		<description><![CDATA[Wait for it&#8230;

]]></description>
			<content:encoded><![CDATA[<p>Wait for it&#8230;<br />
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/aJCWziYxRVs&#038;hl=en&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/aJCWziYxRVs&#038;hl=en&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tikirobot.net/wp/2009/01/22/this-is-rock-and-roll/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Aer OBAMA</title>
		<link>http://www.tikirobot.net/wp/2009/01/16/aer-obama/</link>
		<comments>http://www.tikirobot.net/wp/2009/01/16/aer-obama/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 06:00:42 +0000</pubDate>
		<dc:creator>rajbot</dc:creator>
				<category><![CDATA[video]]></category>
		<category><![CDATA[beats]]></category>
		<category><![CDATA[DaftPunk]]></category>
		<category><![CDATA[obama]]></category>

		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=2234</guid>
		<description><![CDATA[Daft Punk vs. Adam Freeland &#8211; &#8220;Aer OBAMA&#8221;
The following is a mixed-media stop motion music video and celebration commemorating the election and inauguration of Barack Obama as the forty-fourth president of these United States. Audibly showcasing Adam Freeland&#8217;s remix of Daft Punk&#8217;s &#8220;Aerodynamic&#8221; and the imaginative stylings of forward thinking toy artists Dalek, Bill McMullen [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=YLni8Zl6TeM">Daft Punk vs. Adam Freeland &#8211; &#8220;Aer OBAMA&#8221;</a></p>
<blockquote><p>The following is a mixed-media stop motion music video and celebration commemorating the election and inauguration of Barack Obama as the forty-fourth president of these United States. Audibly showcasing Adam Freeland&#8217;s remix of Daft Punk&#8217;s &#8220;Aerodynamic&#8221; and the imaginative stylings of forward thinking toy artists Dalek, Bill McMullen and Kubrick to name just a few. Independently animated and directed by the progressive minds of the directing team GOLD, the piece is a labor of love that invites everyone to join in or create their own celebration this coming Tuesday January the 20th.</p></blockquote>
<p><object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/YLni8Zl6TeM&#038;hl=en&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/YLni8Zl6TeM&#038;hl=en&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
<p>dunno how I missed this until now! via <a href="http://laughingsquid.com/aer-obama-daft-punk-vs-adam-freeland/">Laughing Squid</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tikirobot.net/wp/2009/01/16/aer-obama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
