<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: The &#8220;easy&#8221; way to listen to internet radio in Ubuntu</title>
	<atom:link href="http://www.doknowevil.net/2009/07/15/the-easy-way-to-listen-to-internt-radio-in-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.doknowevil.net/2009/07/15/the-easy-way-to-listen-to-internt-radio-in-ubuntu/</link>
	<description>Tyler Mulligan's Tips and Tricks For Increasing Efficiency</description>
	<lastBuildDate>Tue, 23 Feb 2010 23:38:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tyler Mulligan</title>
		<link>http://www.doknowevil.net/2009/07/15/the-easy-way-to-listen-to-internt-radio-in-ubuntu/comment-page-1/#comment-75728</link>
		<dc:creator>Tyler Mulligan</dc:creator>
		<pubDate>Fri, 12 Feb 2010 00:10:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=450#comment-75728</guid>
		<description>Download the playlist to a folder, you can do this visually with your web browser, or using wget &lt;url&gt; [ex: wget http://www.di.fm/mp3/electro.pls].

Then browse to the folder in moc and add it to the list with Shift+A</description>
		<content:encoded><![CDATA[<p>Download the playlist to a folder, you can do this visually with your web browser, or using wget <url> [ex: wget <a href="http://www.di.fm/mp3/electro.pls" rel="nofollow">http://www.di.fm/mp3/electro.pls</a>.</p>
<p>Then browse to the folder in moc and add it to the list with Shift+A</url></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.doknowevil.net/2009/07/15/the-easy-way-to-listen-to-internt-radio-in-ubuntu/comment-page-1/#comment-75645</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 08 Feb 2010 19:46:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=450#comment-75645</guid>
		<description>Thanks for the post, 

I like the stripped down functionality of moc. How would you go about adding other music streams, such as shoutcast etc.?</description>
		<content:encoded><![CDATA[<p>Thanks for the post, </p>
<p>I like the stripped down functionality of moc. How would you go about adding other music streams, such as shoutcast etc.?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using Nautilus Scripting Abilities to Integrate Right Click File Enqueues with mocp at Do Know Evil - Tyler Mulligan&#8217;s Tips and Tricks</title>
		<link>http://www.doknowevil.net/2009/07/15/the-easy-way-to-listen-to-internt-radio-in-ubuntu/comment-page-1/#comment-71973</link>
		<dc:creator>Using Nautilus Scripting Abilities to Integrate Right Click File Enqueues with mocp at Do Know Evil - Tyler Mulligan&#8217;s Tips and Tricks</dc:creator>
		<pubDate>Sun, 08 Nov 2009 15:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=450#comment-71973</guid>
		<description>[...] moc player can prove to be both beneficial and challenging. I&#8217;ve found myself going back to exaile for a [...]</description>
		<content:encoded><![CDATA[<p>[...] moc player can prove to be both beneficial and challenging. I&#8217;ve found myself going back to exaile for a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tyler Mulligan</title>
		<link>http://www.doknowevil.net/2009/07/15/the-easy-way-to-listen-to-internt-radio-in-ubuntu/comment-page-1/#comment-71972</link>
		<dc:creator>Tyler Mulligan</dc:creator>
		<pubDate>Sun, 08 Nov 2009 14:56:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=450#comment-71972</guid>
		<description>yes, actually, I was just coming to post this nautilus script that allows me to enqueue files via a right click

&lt;pre lang=&quot;bash&quot;&gt;#!/bin/bash
# Enqueue with mocp
# by Tyler &quot;-z-&quot; Mulligan
#
# This is a nautilus script. When placed in ~/.gnome2/nautilus-scripts
# and chmod +x you will have the ability to right click &gt;&gt; enqueue files
# or directories in mocp.
#
 
for f in &quot;$@&quot;; do mocp -a &quot;$f&quot;; done&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>yes, actually, I was just coming to post this nautilus script that allows me to enqueue files via a right click</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;color: #ccc; font: 12px Consolas, Lucida Console, Monaco, monospace;"><span class="co0">#!/bin/bash</span>
<span class="co0"># Enqueue with mocp</span>
<span class="co0"># by Tyler &quot;-z-&quot; Mulligan</span>
<span class="co0">#</span>
<span class="co0"># This is a nautilus script. When placed in ~/.gnome2/nautilus-scripts</span>
<span class="co0"># and chmod +x you will have the ability to right click &amp;gt;&amp;gt; enqueue files</span>
<span class="co0"># or directories in mocp.</span>
<span class="co0">#</span>
&nbsp;
<span class="kw1">for</span> f <span class="kw1">in</span> <span class="st0">&quot;$@&quot;</span>; <span class="kw1">do</span> mocp <span class="re5">-a</span> <span class="st0">&quot;<span class="es2">$f</span>&quot;</span>; <span class="kw1">done</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Hanna (mossgarden) 's status on Monday, 12-Oct-09 19:25:29 UTC - Identi.ca</title>
		<link>http://www.doknowevil.net/2009/07/15/the-easy-way-to-listen-to-internt-radio-in-ubuntu/comment-page-1/#comment-70438</link>
		<dc:creator>Hanna (mossgarden) 's status on Monday, 12-Oct-09 19:25:29 UTC - Identi.ca</dc:creator>
		<pubDate>Mon, 12 Oct 2009 19:25:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=450#comment-70438</guid>
		<description>[...]  http://www.doknowevil.net/2009/07/15/the-easy-way-to-listen-to-internt-radio-in-ubuntu/        a few seconds ago  from  Gwibber   in context [...]</description>
		<content:encoded><![CDATA[<p>[...]  <a href="http://www.doknowevil.net/2009/07/15/the-easy-way-to-listen-to-internt-radio-in-ubuntu/" rel="nofollow">http://www.doknowevil.net/2009/07/15/the-easy-way-to-listen-to-internt-radio-in-ubuntu/</a>        a few seconds ago  from  Gwibber   in context [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: c3po</title>
		<link>http://www.doknowevil.net/2009/07/15/the-easy-way-to-listen-to-internt-radio-in-ubuntu/comment-page-1/#comment-70092</link>
		<dc:creator>c3po</dc:creator>
		<pubDate>Mon, 05 Oct 2009 23:04:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=450#comment-70092</guid>
		<description>Nice post, better blog.
I really miss direct &#039;clic and play&#039; with mocp, any idea?</description>
		<content:encoded><![CDATA[<p>Nice post, better blog.<br />
I really miss direct &#8216;clic and play&#8217; with mocp, any idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peng&#8217;s links for Sunday, 2 August &#171; I&#8217;m Just an Avatar</title>
		<link>http://www.doknowevil.net/2009/07/15/the-easy-way-to-listen-to-internt-radio-in-ubuntu/comment-page-1/#comment-65091</link>
		<dc:creator>Peng&#8217;s links for Sunday, 2 August &#171; I&#8217;m Just an Avatar</dc:creator>
		<pubDate>Sun, 02 Aug 2009 21:08:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.doknowevil.net/?p=450#comment-65091</guid>
		<description>[...] Mulligan: The &#8220;easy&#8221; way to listen to internet readio in Ubuntu. Tyler has gone through the usual pain of trying to listen to his favorite &#8216;net radio station [...]</description>
		<content:encoded><![CDATA[<p>[...] Mulligan: The &#8220;easy&#8221; way to listen to internet readio in Ubuntu. Tyler has gone through the usual pain of trying to listen to his favorite &#8216;net radio station [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
