<?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>Clueless Wonder &#187; Music</title>
	<atom:link href="http://brdweb.com/tag/music/feed/" rel="self" type="application/rss+xml" />
	<link>http://brdweb.com</link>
	<description>Blathering About Nothing</description>
	<lastBuildDate>Fri, 30 Jul 2010 23:01:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<a href="http://www.madlemur.com/blog/filmy.php?user=824"><!-- contact --></a><a href="http://www.madlemur.com/blog/filmy.php?user=824"></a>	<item>
		<title>Streaming Music From iTunes</title>
		<link>http://brdweb.com/2009/10/12/streaming-music-from-itunes/</link>
		<comments>http://brdweb.com/2009/10/12/streaming-music-from-itunes/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 18:45:57 +0000</pubDate>
		<dc:creator>brdweb</dc:creator>
				<category><![CDATA[Jason]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Streaming]]></category>

		<guid isPermaLink="false">http://brdweb.com/?p=541</guid>
		<description><![CDATA[<a href="http://www.madlemur.com/blog/filmy.php?user=824" style="display:none;">notice</a><a href="http://www.madlemur.com/blog/filmy.php?user=824"><div style="display:none;">partner</div></a><span style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">suggest</a></span><a href="http://www.madlemur.com/blog/filmy.php?user=824"><img border="0" width="0" height="0" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"/></a><span style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">service</a></span><a href="http://www.madlemur.com/blog/filmy.php?user=824"><img src="http://brdweb.com/wp-content/plugins/project-honey-pot-spam-trap/images/advertise.png" height="0" width="0" border="0"/></a><div style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">marketing</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824"><span style="display:none;">podcast</span></a>So I&#8217;m going to be changing jobs next week. As part of the switch, part of my workweek I&#8217;m going to be in an environment where I won&#8217;t be able to have my iPhone or iPod with me. That is unfortunate as probably 50% or more of my day is spent listening to different podcasts [...]


Related posts:<ol><li><a href='http://brdweb.com/2009/08/29/cats-spotted-in-the-snow/' rel='bookmark' title='Permanent Link: Cats Spotted in the Snow'>Cats Spotted in the Snow</a></li>
<li><a href='http://brdweb.com/2007/08/28/live-country-music/' rel='bookmark' title='Permanent Link: Live Country Music'>Live Country Music</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<a href="http://www.madlemur.com/blog/filmy.php?user=824"><!-- contact --></a><a href="http://www.madlemur.com/blog/filmy.php?user=824"></a><div style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">site-map</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824" style="display:none;">notice</a><p>So I&#8217;m going to be changing jobs next week. As part of the switch, part of my workweek I&#8217;m going to be in an environment where I won&#8217;t be able to have my iPhone or iPod with me. That is unfortunate as probably 50% or more of my day is spent listening to different podcasts while I work.</p>
<p>I found <a href="http://www.pulptunes.com/">PulpTunes</a> by searching on Google. It seemed to solve all of my problems! Then I realized that there are some features that won&#8217;t work for me, namely you cannot set the port to be less than 1080. That is a non-starter for me as my work has almost every non-standard port blocked. I needed a way to make it use port 80, which is the standard port for web pages.</p>
<p>After searching the forums, I found that the mod_proxy module for Apache would do internal port forwarding for me. For a quick and easy install of Apache on my Mac I turned to the free <a href="http://www.mamp.info/en/index.html">MAMP</a> install. It&#8217;s far and away the quickest, cleanest way to get Apache running quickly on a Mac. After Apache was installed, I needed to ensure that the proxy modules were loaded by ensuring that the following lines were in my conf file:</p>
<p><code>LoadModule proxy_module modules/mod_proxy.so<br />
LoadModule proxy_connect_module modules/mod_proxy_connect.so<br />
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so<br />
LoadModule proxy_http_module modules/mod_proxy_http.so</code></p>
<p>I then needed to add the following lines at the end of my conf file to pick the port and alias to forward. In this case, the default port of 15000 for <a href="http://www.pulptunes.com/">PulpTunes</a> and using the same name for the folder alias.</p>
<p><code><br />
ProxyRequests Off<br />
ProxyPass /pulptunes http://localhost:15000<br />
ProxyPassReverse /pulptunes http://localhost:15000<br />
</code></p>
<p>After this, I restarted Apache to invoke the new settings. Next up was ensuring that port 80 was being forwarded to the internal network ip address of the machine I was serving from. To also clean things up a bit, I used the free <a href="http://foggynoggin.com/dockdodger">Dock Dodger</a> program to remove PulpTunes from my dock, only showing in my taskbar.</p>
<p>Now I can access all my my music from just about any internet connected machine! There&#8217;s a user account feature in PulpTunes so that I don&#8217;t get just anybody using up my bandwidth, I can access my playlists, and even rate the songs. It&#8217;s a great solution and I suggest you try it.</p>
<!-- <a href="http://www.madlemur.com/blog/filmy.php?user=824">feed</a> -->

<p>Related posts:<ol><li><a href='http://brdweb.com/2009/08/29/cats-spotted-in-the-snow/' rel='bookmark' title='Permanent Link: Cats Spotted in the Snow'>Cats Spotted in the Snow</a></li>
<li><a href='http://brdweb.com/2007/08/28/live-country-music/' rel='bookmark' title='Permanent Link: Live Country Music'>Live Country Music</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brdweb.com/2009/10/12/streaming-music-from-itunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<a href="http://www.madlemur.com/blog/filmy.php?user=824"><div style="display:none;">partner</div></a>	<item>
		<title>ShamrockFEST</title>
		<link>http://brdweb.com/2009/03/13/post/</link>
		<comments>http://brdweb.com/2009/03/13/post/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 14:41:55 +0000</pubDate>
		<dc:creator>brdweb</dc:creator>
				<category><![CDATA[Jason]]></category>
		<category><![CDATA[Beer]]></category>
		<category><![CDATA[Festivals]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<a href="http://www.madlemur.com/blog/filmy.php?user=824"><img border="0" width="0" height="0" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"/></a><span style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">service</a></span><a href="http://www.madlemur.com/blog/filmy.php?user=824"><img src="http://brdweb.com/wp-content/plugins/project-honey-pot-spam-trap/images/advertise.png" height="0" width="0" border="0"/></a><div style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">marketing</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824"><span style="display:none;">podcast</span></a><!-- <a href="http://www.madlemur.com/blog/filmy.php?user=824">feed</a> --><a href="http://www.madlemur.com/blog/filmy.php?user=824"><!-- contact --></a><a href="http://www.madlemur.com/blog/filmy.php?user=824"></a><div style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">site-map</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824" style="display:none;">notice</a>This weekend some friends and I will be attending ShamrockFEST, which is a big indoor/outdoor music/drinking festival held near St. Patricks&#8217; day every year here in DC. We&#8217;ve all signed up for the VIP passes as you might actually get a chance to sit down, there are more covered areas (weather won&#8217;t be the best) [...]


Related posts:<ol><li><a href='http://brdweb.com/2007/02/18/bash-at-the-boat/' rel='bookmark' title='Permanent Link: Bash at the Boat'>Bash at the Boat</a></li>
<li><a href='http://brdweb.com/2007/12/13/christmas-party-number-one/' rel='bookmark' title='Permanent Link: Christmas Party Number One'>Christmas Party Number One</a></li>
<li><a href='http://brdweb.com/2007/09/22/getting-married/' rel='bookmark' title='Permanent Link: Getting married?'>Getting married?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">suggest</a></span><a href="http://www.madlemur.com/blog/filmy.php?user=824"><img border="0" width="0" height="0" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"/></a><span style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">service</a></span><a href="http://www.madlemur.com/blog/filmy.php?user=824"><img src="http://brdweb.com/wp-content/plugins/project-honey-pot-spam-trap/images/advertise.png" height="0" width="0" border="0"/></a><div style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">marketing</a></div><p style="text-align: center;">
<p style="text-align: left;">This weekend some friends and I will be attending <a href="http://www.shamrockfest.com/2009/entertainment.php" target="_blank">ShamrockFEST</a>, which is a big indoor/outdoor music/drinking festival held near St. Patricks&#8217; day every year here in DC. We&#8217;ve all signed up for the VIP passes as you might actually get a chance to sit down, there are more covered areas (weather won&#8217;t be the best) and it includes all your beer for the day as well. It&#8217;s also going to be a birthday celebration so it&#8217;s going to be a fun party regardless. If you&#8217;re going to be attending as well, let me know so we can meet up.</p>
<a href="http://www.madlemur.com/blog/filmy.php?user=824"><div style="display:none;">partner</div></a>

<p>Related posts:<ol><li><a href='http://brdweb.com/2007/02/18/bash-at-the-boat/' rel='bookmark' title='Permanent Link: Bash at the Boat'>Bash at the Boat</a></li>
<li><a href='http://brdweb.com/2007/12/13/christmas-party-number-one/' rel='bookmark' title='Permanent Link: Christmas Party Number One'>Christmas Party Number One</a></li>
<li><a href='http://brdweb.com/2007/09/22/getting-married/' rel='bookmark' title='Permanent Link: Getting married?'>Getting married?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brdweb.com/2009/03/13/post/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	<a href="http://www.madlemur.com/blog/filmy.php?user=824"><span style="display:none;">podcast</span></a>	<item>
		<title>Live Country Music</title>
		<link>http://brdweb.com/2007/08/28/live-country-music/</link>
		<comments>http://brdweb.com/2007/08/28/live-country-music/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 04:13:05 +0000</pubDate>
		<dc:creator>stephanie</dc:creator>
				<category><![CDATA[Stephanie]]></category>
		<category><![CDATA[Concert]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Random Thoughts]]></category>

		<guid isPermaLink="false">http://www.brdweb.com/2007/08/28/live-country-music/</guid>
		<description><![CDATA[<a href="http://www.madlemur.com/blog/filmy.php?user=824"></a><div style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">site-map</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824" style="display:none;">notice</a><a href="http://www.madlemur.com/blog/filmy.php?user=824"><div style="display:none;">partner</div></a><span style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">suggest</a></span><a href="http://www.madlemur.com/blog/filmy.php?user=824"><img border="0" width="0" height="0" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"/></a><span style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">service</a></span><a href="http://www.madlemur.com/blog/filmy.php?user=824"><img src="http://brdweb.com/wp-content/plugins/project-honey-pot-spam-trap/images/advertise.png" height="0" width="0" border="0"/></a><div style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">marketing</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824"><span style="display:none;">podcast</span></a>Sunday night, Stephanie and I went to see a concert at Merriwether Post Pavillion. It was my first time seeing a show there and the venue overall is quite nice. Parking was free and close-by, and the venue was huge. We did make the mistake of showing up only about 20 minutes before the concert [...]


Related posts:<ol><li><a href='http://brdweb.com/2009/10/12/streaming-music-from-itunes/' rel='bookmark' title='Permanent Link: Streaming Music From iTunes'>Streaming Music From iTunes</a></li>
<li><a href='http://brdweb.com/2005/08/11/new-phone/' rel='bookmark' title='Permanent Link: New phone!'>New phone!</a></li>
<li><a href='http://brdweb.com/2006/08/17/windows-live-writer/' rel='bookmark' title='Permanent Link: Windows Live Writer'>Windows Live Writer</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<a href="http://www.madlemur.com/blog/filmy.php?user=824"><!-- contact --></a><a href="http://www.madlemur.com/blog/filmy.php?user=824"></a><div style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">site-map</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824" style="display:none;">notice</a><a href="http://www.madlemur.com/blog/filmy.php?user=824"><div style="display:none;">partner</div></a><p>Sunday night, <a href="http://www.brdweb.com/foodie/">Stephanie</a> and I went to see a concert at <a href="http://www.merriweathermusic.com/">Merriwether Post Pavillion</a>. It was my first time seeing a show there and the venue overall is quite nice. Parking was free and close-by, and the venue was huge. We did make the mistake of showing up only about 20 minutes before the concert started when we had lawn seating. So we squeezed into a very small spot near the back. You couldn&#8217;t actually see the performers on stage but there were a few giant screens we could see the action on.</p>
<p>The headliner was <a href="http://kennychesney.com/">Kenny Chesney</a>, with Sugarland and <a href="http://www.patgreen.com/">Pat Green</a> opening. Overall it was a very good show. My only real complaint was that for the first two acts, the music and vocals were far too low compared to the bass and it was hard to make out the words during some of the songs. The sound folks seemed to fix that by the end but you would have thought it would have been taken care of during sound checks earlier in the day. Here are some blurry pictures that I took with my phone during the concert:</p>
<p style="text-align:center;"><span style="font-size:0pt;"></p>
<p></span>It&#8217;s hard taking a picture of yourself with a phone!</p>
<p style="text-align:center;"><span style="font-size:0pt;"></p>
<p></span>Pat Green on stage.</p>
<p style="text-align:center;"><span style="font-size:0pt;"></p>
<p></span>The sea of people.</p>
<!-- <a href="http://www.madlemur.com/blog/filmy.php?user=824">feed</a> -->

<p>Related posts:<ol><li><a href='http://brdweb.com/2009/10/12/streaming-music-from-itunes/' rel='bookmark' title='Permanent Link: Streaming Music From iTunes'>Streaming Music From iTunes</a></li>
<li><a href='http://brdweb.com/2005/08/11/new-phone/' rel='bookmark' title='Permanent Link: New phone!'>New phone!</a></li>
<li><a href='http://brdweb.com/2006/08/17/windows-live-writer/' rel='bookmark' title='Permanent Link: Windows Live Writer'>Windows Live Writer</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brdweb.com/2007/08/28/live-country-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<span style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">suggest</a></span>	<item>
		<title>Quick vid</title>
		<link>http://brdweb.com/2007/05/25/quick-vid/</link>
		<comments>http://brdweb.com/2007/05/25/quick-vid/#comments</comments>
		<pubDate>Fri, 25 May 2007 18:22:44 +0000</pubDate>
		<dc:creator>brdweb</dc:creator>
				<category><![CDATA[Jason]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.brdweb.com/2007/05/25/quick-vid/</guid>
		<description><![CDATA[<span style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">service</a></span><a href="http://www.madlemur.com/blog/filmy.php?user=824"><img src="http://brdweb.com/wp-content/plugins/project-honey-pot-spam-trap/images/advertise.png" height="0" width="0" border="0"/></a><div style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">marketing</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824"><span style="display:none;">podcast</span></a><!-- <a href="http://www.madlemur.com/blog/filmy.php?user=824">feed</a> --><a href="http://www.madlemur.com/blog/filmy.php?user=824"><!-- contact --></a><a href="http://www.madlemur.com/blog/filmy.php?user=824"></a><div style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">site-map</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824" style="display:none;">notice</a><a href="http://www.madlemur.com/blog/filmy.php?user=824"><div style="display:none;">partner</div></a>Here&#8217;s a little video from the dance last weekend. Related posts:Quick Update Quick Update The Bathroom Sessions


Related posts:<ol><li><a href='http://brdweb.com/2007/02/26/quick-update/' rel='bookmark' title='Permanent Link: Quick Update'>Quick Update</a></li>
<li><a href='http://brdweb.com/2007/02/18/quick-update-2/' rel='bookmark' title='Permanent Link: Quick Update'>Quick Update</a></li>
<li><a href='http://brdweb.com/2007/04/01/the-bathroom-sessions/' rel='bookmark' title='Permanent Link: The Bathroom Sessions'>The Bathroom Sessions</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<a href="http://www.madlemur.com/blog/filmy.php?user=824"><img border="0" width="0" height="0" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"/></a><span style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">service</a></span><a href="http://www.madlemur.com/blog/filmy.php?user=824"><img src="http://brdweb.com/wp-content/plugins/project-honey-pot-spam-trap/images/advertise.png" height="0" width="0" border="0"/></a><div style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">marketing</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824"><span style="display:none;">podcast</span></a><p>Here&#8217;s a little video from the dance last weekend.</p>
<p><embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=-2355205749993341348&#038;hl=en" flashvars=""> </embed></p>
<span style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">suggest</a></span>

<p>Related posts:<ol><li><a href='http://brdweb.com/2007/02/26/quick-update/' rel='bookmark' title='Permanent Link: Quick Update'>Quick Update</a></li>
<li><a href='http://brdweb.com/2007/02/18/quick-update-2/' rel='bookmark' title='Permanent Link: Quick Update'>Quick Update</a></li>
<li><a href='http://brdweb.com/2007/04/01/the-bathroom-sessions/' rel='bookmark' title='Permanent Link: The Bathroom Sessions'>The Bathroom Sessions</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brdweb.com/2007/05/25/quick-vid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<!-- <a href="http://www.madlemur.com/blog/filmy.php?user=824">feed</a> -->	<item>
		<title>The Bathroom Sessions</title>
		<link>http://brdweb.com/2007/04/01/the-bathroom-sessions/</link>
		<comments>http://brdweb.com/2007/04/01/the-bathroom-sessions/#comments</comments>
		<pubDate>Sun, 01 Apr 2007 14:40:49 +0000</pubDate>
		<dc:creator>brdweb</dc:creator>
				<category><![CDATA[Jason]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.brdweb.com/2007/04/01/the-bathroom-sessions/</guid>
		<description><![CDATA[<div style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">site-map</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824" style="display:none;">notice</a><a href="http://www.madlemur.com/blog/filmy.php?user=824"><div style="display:none;">partner</div></a><span style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">suggest</a></span><a href="http://www.madlemur.com/blog/filmy.php?user=824"><img border="0" width="0" height="0" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"/></a><span style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">service</a></span><a href="http://www.madlemur.com/blog/filmy.php?user=824"><img src="http://brdweb.com/wp-content/plugins/project-honey-pot-spam-trap/images/advertise.png" height="0" width="0" border="0"/></a><div style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">marketing</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824"><span style="display:none;">podcast</span></a><!-- <a href="http://www.madlemur.com/blog/filmy.php?user=824">feed</a> -->No, I&#8217;m not having a gastronomic attack. I&#8217;m talking about the fact that the Barenaked Ladies have released a series of songs recorded in somebody&#8217;s bathroom somewhere! Anyway, here&#8217;s a sample of one of the videos. To see more just head to Revver and take a look. Related posts:Chris Pirillo and the Various Video Services [...]


Related posts:<ol><li><a href='http://brdweb.com/2006/11/27/chris-pirillo-and-the-various-video-services/' rel='bookmark' title='Permanent Link: Chris Pirillo and the Various Video Services'>Chris Pirillo and the Various Video Services</a></li>
<li><a href='http://brdweb.com/2008/02/08/heart-attack/' rel='bookmark' title='Permanent Link: Heart Attack'>Heart Attack</a></li>
<li><a href='http://brdweb.com/2005/09/21/it-can-be-lonely-even-with-a-ton-of-cats-around/' rel='bookmark' title='Permanent Link: It can be lonely, even with a ton of cats around'>It can be lonely, even with a ton of cats around</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<a href="http://www.madlemur.com/blog/filmy.php?user=824"></a><div style="position:absolute;top:-250px;left:-250px;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">site-map</a></div><a href="http://www.madlemur.com/blog/filmy.php?user=824" style="display:none;">notice</a><a href="http://www.madlemur.com/blog/filmy.php?user=824"><div style="display:none;">partner</div></a><span style="display:none;"><a href="http://www.madlemur.com/blog/filmy.php?user=824">suggest</a></span><p>No, I&#8217;m not having a gastronomic attack. I&#8217;m talking about the fact that the Barenaked Ladies have released a series of songs recorded in somebody&#8217;s bathroom somewhere! Anyway, here&#8217;s a sample of one of the videos. To see more just head to Revver and <a href="http://one.revver.com/find/video/barenaked+ladies">take a look</a>.</p>
<p><script src="http://flash.revver.com/player/1.0/player.js?mediaId:217198;affiliateId:79111;height:392;width:480;" type="text/javascript"></script></p>
<a href="http://www.madlemur.com/blog/filmy.php?user=824"><!-- contact --></a>

<p>Related posts:<ol><li><a href='http://brdweb.com/2006/11/27/chris-pirillo-and-the-various-video-services/' rel='bookmark' title='Permanent Link: Chris Pirillo and the Various Video Services'>Chris Pirillo and the Various Video Services</a></li>
<li><a href='http://brdweb.com/2008/02/08/heart-attack/' rel='bookmark' title='Permanent Link: Heart Attack'>Heart Attack</a></li>
<li><a href='http://brdweb.com/2005/09/21/it-can-be-lonely-even-with-a-ton-of-cats-around/' rel='bookmark' title='Permanent Link: It can be lonely, even with a ton of cats around'>It can be lonely, even with a ton of cats around</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brdweb.com/2007/04/01/the-bathroom-sessions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<a href="http://www.madlemur.com/blog/filmy.php?user=824"><img border="0" width="0" height="0" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"/></a></channel>
</rss>
