<?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/"
	>

<channel>
	<title>keptshut.com</title>
	<atom:link href="http://www.keptshut.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.keptshut.com</link>
	<description></description>
	<pubDate>Mon, 26 Jul 2010 03:50:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Free IP Information and DNS Lookup Tool</title>
		<link>http://www.keptshut.com/2010/07/25/free-ip-information-and-dns-lookup-tool/</link>
		<comments>http://www.keptshut.com/2010/07/25/free-ip-information-and-dns-lookup-tool/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 03:50:16 +0000</pubDate>
		<dc:creator>tom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.keptshut.com/?p=261</guid>
		<description><![CDATA[I&#8217;ve worked to develop an IP Information and DNS Lookup tool to replace some other commercial products that offer similar functionality.  Currently, the tool displays IP Information (including AS Number, AS Name, BGP Prefix and Allocation Date), as well as IP Information from DNS, IP Geolocation, Spam Blacklist lookup (DNSBL/RBL Lookup) and DNS Queries [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve worked to develop an <a href="http://ipxer.com/" onclick="javascript:urchinTracker ('/outbound/article/ipxer.com');">IP Information and DNS Lookup tool</a> to replace some other commercial products that offer similar functionality.  Currently, the tool displays IP Information (including AS Number, AS Name, BGP Prefix and Allocation Date), as well as IP Information from DNS, IP Geolocation, Spam Blacklist lookup (DNSBL/RBL Lookup) and DNS Queries for A, MX, PTR and NS records.  More information about the site, including example lookups can be found here: <a href="http://ipxer.com/about/" onclick="javascript:urchinTracker ('/outbound/article/ipxer.com');">http://ipxer.com/about/</a></p>
<p>The site can be found here: <a href="http://ipxer.com/" onclick="javascript:urchinTracker ('/outbound/article/ipxer.com');">ipxer.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keptshut.com/2010/07/25/free-ip-information-and-dns-lookup-tool/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bit Torrent From the Command Line</title>
		<link>http://www.keptshut.com/2009/02/22/bit-torrent-from-the-command-line/</link>
		<comments>http://www.keptshut.com/2009/02/22/bit-torrent-from-the-command-line/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 20:57:41 +0000</pubDate>
		<dc:creator>tom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.keptshut.com/?p=243</guid>
		<description><![CDATA[At home, having a headless, dedicated machine for server tasks can be a very handy thing.  I have an Ubuntu machine connected directly to our router that I use for development, storage and occasional torrenting.  Finding the adequate BitTorrent tools has been a challenge, since this machine is headless and administered solely through [...]]]></description>
			<content:encoded><![CDATA[<p>At home, having a headless, dedicated machine for server tasks can be a very handy thing.  I have an Ubuntu machine connected directly to our router that I use for development, storage and occasional torrenting.  Finding the adequate BitTorrent tools has been a challenge, since this machine is headless and administered solely through ssh.  Most of the existing BitTorrent applications, though lightweight, require a GUI interface.</p>
<p>I&#8217;ve found a great solution using two programs, <strong>GNU screen</strong> and <strong>bittorrent-curses</strong>.  GNU Screen is a terminal multiplexer that allows one to run several terminal sessions within a single window.  It also allows one to completely detach from a terminal session, and reattach at a later time.  Bittorrent-curses is simply a BitTorrent client programmed with the <a href="http://en.wikipedia.org/wiki/Curses_(programming_library)" onclick="javascript:urchinTracker ('/outbound/article/en.wikipedia.org');">curses</a> library, making it suitable for command line interaction.  Using both of these tools together makes a pretty slick and lightweight torrenting solution that can be completely managed through ssh.</p>
<p>First, you will need to install both screen and bittorrent-curses.  Many systems may already have these packages installed.  In the Ubuntu or Debian world, you would need to execute the following commands:</p>
<p><code>$ sudo apt-get update  #first, update package libraries.<br />
$ sudo apt-get install screen  #install screen<br />
$ sudo apt-get install python-bittorrent  #install python-bittorrent</code></p>
<p>Now that these programs are installed, you can start torrenting files in the background and resume later.  First, enter a <strong>screen</strong> session:</p>
<p><code>$ screen</code></p>
<p>You will be greeted with a welcome screen.  Hit enter to continue, and a new terminal will appear within screen.  From this session, you can run up to 10 terminal sessions concurrently, and the completely disconnect from the server without terminating any processes.  For our purposes, let&#8217;s process a torrent file.</p>
<p><code>$ bittorrent-curses 'http://www.example.com/somefile.torrent'    #remote file<br />
$ bittorrent-curses somefile.torrent    #local file</code></p>
<p>Now, you should be greeted by a curses window, similar to this one:<br />
<img src="http://www.keptshut.com/wp-content/uploads/bittorrent-curses.png" alt="bittorrent-curses" title="bittorrent-curses" width="505" height="591" class="alignnone size-full wp-image-250" /></p>
<p>From here, you can do a number of other things while this bittorrent session continues.  If you like, you can attach to a new session.  To do this, press <code>ctrl-a</code> and then <code>c</code>.  A new session will start.  Or, you can detach from screen altogether, while your programs continue to run.  To do this, press <code> ctrl-a</code> followed by <code>ctrl-d</code>.  You may also close your ssh session without any repercussions.  To reattach to a running screen session, simply run:</p>
<p><code>$ screen -r</code></p>
<p>Then, control any of the existing sessions in screen by pressing <code>ctrl-a</code> followed by the number of the session you wish to control, 0 through 9.  Not too hard at all.  For more detail on screen, take a look at tha <a href="http://www.manpagez.com/man/1/screen/" onclick="javascript:urchinTracker ('/outbound/article/www.manpagez.com');">man page.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keptshut.com/2009/02/22/bit-torrent-from-the-command-line/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Grand Canyon</title>
		<link>http://www.keptshut.com/2008/09/20/grand-canyon/</link>
		<comments>http://www.keptshut.com/2008/09/20/grand-canyon/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 23:28:11 +0000</pubDate>
		<dc:creator>tom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.keptshut.com/?p=237</guid>
		<description><![CDATA[Photos of the Grand Canyon from the summer of 2007.  It&#8217;s an amazing sight, emerging from the forest and seeing the vast emptyness below.  From the perspective we were at, the canyon seemed wholly out of place.
Obligatory song per post: Girl Talk - No Pause  Pay what you want (a la Radiohead) [...]]]></description>
			<content:encoded><![CDATA[<p>Photos of the Grand Canyon from the summer of 2007.  It&#8217;s an amazing sight, emerging from the forest and seeing the vast emptyness below.  From the perspective we were at, the canyon seemed wholly out of place.<br /><div class="ngg-galleryoverview" id="ngg-gallery-3"><div class="slideshowlink"><a class="slideshowlink" href="/feed/?show=slide">[Show as slideshow]</a></div><div id="ngg-image-70" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2134.JPG"id="thumb70"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2134.JPG" alt="IMG_2134.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2134.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-69" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2133.JPG"id="thumb69"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2133.JPG" alt="IMG_2133.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2133.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-68" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2132.JPG"id="thumb68"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2132.JPG" alt="IMG_2132.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2132.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-58" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2121.JPG"id="thumb58"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2121.JPG" alt="IMG_2121.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2121.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-59" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2122.JPG"id="thumb59"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2122.JPG" alt="IMG_2122.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2122.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-60" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2123.JPG"id="thumb60"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2123.JPG" alt="IMG_2123.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2123.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-61" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2124.JPG"id="thumb61"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2124.JPG" alt="IMG_2124.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2124.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-67" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2131.JPG"id="thumb67"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2131.JPG" alt="IMG_2131.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2131.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-66" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2130.JPG"id="thumb66"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2130.JPG" alt="IMG_2130.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2130.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-65" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2129.JPG"id="thumb65"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2129.JPG" alt="IMG_2129.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2129.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-64" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2127.JPG"id="thumb64"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2127.JPG" alt="IMG_2127.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2127.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-63" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2126.JPG"id="thumb63"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2126.JPG" alt="IMG_2126.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2126.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-62" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2125.JPG"id="thumb62"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2125.JPG" alt="IMG_2125.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2125.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-57" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2120.JPG"id="thumb57"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2120.JPG" alt="IMG_2120.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2120.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-56" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2119.JPG"id="thumb56"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2119.JPG" alt="IMG_2119.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2119.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-55" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2118.JPG"id="thumb55"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2118.JPG" alt="IMG_2118.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2118.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-54" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2117.JPG"id="thumb54"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2117.JPG" alt="IMG_2117.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2117.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-53" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2114.JPG"id="thumb53"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2114.JPG" alt="IMG_2114.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2114.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-52" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2113.JPG"id="thumb52"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2113.JPG" alt="IMG_2113.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2113.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-51" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a href="http://www.keptshut.com/wp-content/gallery/grand-canyon/IMG_2112.JPG"id="thumb51"  title="" class="thickbox" rel="grand-canyon"  ><img title="IMG_2112.JPG" alt="IMG_2112.JPG" src="http://www.keptshut.com/wp-content/gallery/grand-canyon/thumbs/thumbs_IMG_2112.JPG" style="width:100px; height:75px;" /></a>
</div>
</div>
</div>
<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="/feed/?nggpage=2">2</a><a class="next" href="/feed/?nggpage=2">&#9658;</a></div><br />
<strong>Obligatory song per post: </strong><a href="http://www.keptshut.com/wp-content/uploads/06 No Pause.mp3" >Girl Talk - No Pause</a>  Pay what you want (a la Radiohead) for the entire album <a href="http://74.124.198.47/illegal-art.net/__girl__talk___feed__the__anima.ls___/" onclick="javascript:urchinTracker ('/outbound/article/74.124.198.47');">here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keptshut.com/2008/09/20/grand-canyon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Video of The Walkmen performing In The New Year</title>
		<link>http://www.keptshut.com/2008/09/19/video-of-the-walkmen-performing-in-the-new-year/</link>
		<comments>http://www.keptshut.com/2008/09/19/video-of-the-walkmen-performing-in-the-new-year/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 06:40:04 +0000</pubDate>
		<dc:creator>tom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[the walkmen video]]></category>

		<category><![CDATA[walkmen live]]></category>

		<guid isPermaLink="false">http://www.keptshut.com/?p=230</guid>
		<description><![CDATA[While I thoroughly enjoy the album version of this song, seeing and hearing them play it live definitely  lights it up in all the right places.  From Pitchfork TV

]]></description>
			<content:encoded><![CDATA[<p>While I thoroughly enjoy the album version of this song, seeing and hearing them play it live definitely  lights it up in all the right places.  <em>From <a href="http://pitchfork.tv/" onclick="javascript:urchinTracker ('/outbound/article/pitchfork.tv');">Pitchfork TV</a></em></p>
<p><object width="540" height="425"><param name="allowfullscreen" value="true" /><param name="movie" value="http://video.pitchfork.tv/mediaplayer.swf" /><param name="flashvars" value="file=http://pitchfork.tv/node/1717/embed.xml" /><embed src="http://video.pitchfork.tv/mediaplayer.swf" type="application/x-shockwave-flash" flashvars="file=http://pitchfork.tv/node/1717/embed.xml" allowfullscreen="true" width="540" height="425"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keptshut.com/2008/09/19/video-of-the-walkmen-performing-in-the-new-year/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using an external hard drive with a PS3 to play media files</title>
		<link>http://www.keptshut.com/2008/09/01/using-an-external-hard-drive-with-a-ps3-to-play-media-files/</link>
		<comments>http://www.keptshut.com/2008/09/01/using-an-external-hard-drive-with-a-ps3-to-play-media-files/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 22:40:26 +0000</pubDate>
		<dc:creator>tom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[mgmt]]></category>

		<category><![CDATA[playstation 3 external hard drive]]></category>

		<category><![CDATA[ps3 external media]]></category>

		<category><![CDATA[ps3 media player]]></category>

		<guid isPermaLink="false">http://www.keptshut.com/?p=191</guid>
		<description><![CDATA[
I use my PlayStation 3 primarily as a media player.  Aside from its inability to playback some of the more common open-source media codecs, such as OGG and FLAC, it is a very flexible machine, and will readily playback the most common audio and video files.  A full (and frequently updated) list of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.keptshut.com/wp-content/uploads/crossmedia.jpg" ><img src="http://www.keptshut.com/wp-content/uploads/crossmedia.jpg" alt="" title="crossmedia" width="500" height="281" class="alignnone size-full wp-image-198" /></a></p>
<p>I use my PlayStation 3 primarily as a media player.  Aside from its inability to playback some of the more common open-source media codecs, such as OGG and FLAC, it is a very flexible machine, and will readily playback the most common audio and video files.  A full (and frequently updated) list of file formats is available at the Sony site <a href="http://playstation.custhelp.com/cgi-bin/playstation.cfg/php/enduser/std_adp.php?p_faqid=361" onclick="javascript:urchinTracker ('/outbound/article/playstation.custhelp.com');">here.</a>  However, initial hard drive space on the PS3 is meager, especially if you consider game data and demos alongside your audio and video files.  Furthermore, the PS3 isn&#8217;t exactly portable, if you&#8217;d like to quickly take your media files to another machine.</p>
<p>Thankfully, Sony has learned from past lessons (namely the ATRAC/Minidisc failures) and opened up this platform a bit.  The PS3 can play files from an array of supported media, including USB hard drives, USB thumb drives, and CF/SD/MS cards.  You will first need to create Sony&#8217;s prescribed folder structure on the media, and then drop in your corresponding files.  The directories should look like:<br />
<code><br />
/MUSIC<br />
/PICTURE<br />
/VIDEO<br />
</code></p>
<p>When these folders and files are in place, connect your devices to the PS3.  It will automatically scan the drive for playable media.  When finished, simply use the XMB to navigate to the proper category.  A new icon will appear representing the new drive.</p>
<p><em>Note: The media must be formatted as FAT32.  Most portable drives are formatted FAT32 at the factory.  However, if you&#8217;ve reformatted the drive with Windows, it may be in the incompatible NTFS format.  If you decide to reformat your drive, know that you will lose all existing data on the drive.</em></p>
<p>Off-topic file of forgiveness:<br />
<a href='http://www.keptshut.com/wp-content/uploads/mgmt-kids-burntpianos-robo-remix.mp3'>MGMT - Kids (Burntpianos Robo Remix)</a><br />
found via <a href="http://www.theworldforgot.com/" onclick="javascript:urchinTracker ('/outbound/article/www.theworldforgot.com');">theworldfogot.com</a><br />
<a href="http://www.insound.com/search/results4.jsp?from=37796&#038;query=mgmt" onclick="javascript:urchinTracker ('/outbound/article/www.insound.com');">Get at Insound!</a></p>
<p align="center"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keptshut.com/2008/09/01/using-an-external-hard-drive-with-a-ps3-to-play-media-files/feed/</wfw:commentRss>
<enclosure url="http://www.keptshut.com/wp-content/uploads/mgmt-kids-burntpianos-robo-remix.mp3" length="5453998" type="audio/mpeg" />
		</item>
		<item>
		<title>Use wget to download all mp3s on a webpage (and more)</title>
		<link>http://www.keptshut.com/2008/08/27/use-wget-to-download-all-mp3s-on-a-webpage-and-more/</link>
		<comments>http://www.keptshut.com/2008/08/27/use-wget-to-download-all-mp3s-on-a-webpage-and-more/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 06:35:18 +0000</pubDate>
		<dc:creator>tom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[automatic download]]></category>

		<category><![CDATA[batch download]]></category>

		<category><![CDATA[batch mp3 download]]></category>

		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://www.keptshut.com/?p=169</guid>
		<description><![CDATA[
wget is a rudimentary program used to download files from the web.  It can be configured to simply download single files, or, with the right options, much, much more.  If used with the complete indiscretion, it can be turned into an efficient web spider, following links and voraciously downloading in an attempt to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.keptshut.com/wp-content/uploads/wget-screen.png" alt="" title="wget" width="500" height="286" class="alignnone size-full wp-image-177" /></p>
<p><a href="http://www.gnu.org/software/wget/" onclick="javascript:urchinTracker ('/outbound/article/www.gnu.org');">wget</a> is a rudimentary program used to download files from the web.  It can be configured to simply download single files, or, with the right options, much, much more.  If used with the complete indiscretion, it can be turned into an efficient web spider, following links and voraciously downloading in an attempt to download the entire web.  wget is available (and is sometimes standard) on most UNIX/Linux systems, <a href="http://www.statusq.org/archives/2008/07/30/1954/" onclick="javascript:urchinTracker ('/outbound/article/www.statusq.org');">including Mac OS X.</a>  Windows versions <a href="http://www.google.com/search?q=wget%20windows" onclick="javascript:urchinTracker ('/outbound/article/www.google.com');">are available</a> as well, but with some more work.  </p>
<p>For our purposes, the following script <strong>downloads all of the mp3 files linked from a single webpage (www.keptshut.com), and places them in the current folder:</strong></p>
<p><code>wget -r -l 1 -nd -A mp3 http://www.keptshut.com/</code></p>
<p>The items between the invocation of the wget command and the final URL are options that describe how wget should behave.  In this case, we want wget to download recursively <strong>(-r)</strong>, one link deep <strong>(-l 1)</strong>, all mp3 files <strong>(-A mp3)</strong> found at <strong>www.keptshut.com</strong>.  We also want the files to be placed in our current directory <strong>(-nd)</strong>, rather the remote directory structure, as wget does by default.</p>
<p>Here are some other examples and explanations.  Full documentation for wget can be found <a href="http://www.gnu.org/software/wget/manual/wget.html" onclick="javascript:urchinTracker ('/outbound/article/www.gnu.org');">here.</a></p>
<p><strong>Download all mp3 and wav files in the URLs listed in sites.txt.  Copy the webserver&#8217;s directory structure:</strong></p>
<p><code>wget -r -nc -A mp3 -i sites.txt</code></p>
<p><strong>Follow all links indefinitely (spanning domains), starting at URL, and save all mp3 files in the current directory.  This one can fill a hard drive quickly, and can be considered abusive:</strong></p>
<p><code>wget -r -nd -nc -H -A mp3 URL</code></p>
<p>And, because I got off-topic, here&#8217;s a song by Danish Band, <a href="http://www.myspace.com/smallatmyspace" onclick="javascript:urchinTracker ('/outbound/article/www.myspace.com');">SMALL.</a><br />
<a href='http://www.keptshut.com/wp-content/uploads/comic-girl-1.mp3'>SMALL - Comic Girl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keptshut.com/2008/08/27/use-wget-to-download-all-mp3s-on-a-webpage-and-more/feed/</wfw:commentRss>
<enclosure url="http://www.keptshut.com/wp-content/uploads/comic-girl-1.mp3" length="2185255" type="audio/mpeg" />
		</item>
		<item>
		<title>Damon Albarn, Monkey: Journey to the West</title>
		<link>http://www.keptshut.com/2008/08/25/damon-albarn-monkey-journey-to-the-west/</link>
		<comments>http://www.keptshut.com/2008/08/25/damon-albarn-monkey-journey-to-the-west/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 05:07:44 +0000</pubDate>
		<dc:creator>tom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[damon albarn]]></category>

		<category><![CDATA[monkey: journey to the west]]></category>

		<guid isPermaLink="false">http://www.keptshut.com/?p=140</guid>
		<description><![CDATA[
The ever industrious Damon Albarn is on another side of the globe, again working with new people, sounds and styles.  Monkey: Journey to the West is an &#8220;Operatic&#8221; adaptation of a Chinese folk story dating back to the Ming Dynasty.  Albarn collaborated with Chinese director Chen Shi-Zheng and Gorillaz&#8217; Jamie Hewlett on the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.keptshut.com/wp-content/uploads/img4.jpg" ><img src="http://www.keptshut.com/wp-content/uploads/img4.jpg" alt="illustration from monkey journey to the west" title="monkey journey to the west" width="499" height="315" class="size-full wp-image-141" /></a></p>
<p>The ever industrious Damon Albarn is on another side of the globe, again working with new people, sounds and styles.  <em><a href="http://www.monkeyjourneytothewest.com/" onclick="javascript:urchinTracker ('/outbound/article/www.monkeyjourneytothewest.com');">Monkey: Journey to the West</a></em> is an &#8220;Operatic&#8221; adaptation of a Chinese folk story dating back to the Ming Dynasty.  Albarn collaborated with Chinese director Chen Shi-Zheng and Gorillaz&#8217; Jamie Hewlett on the production, which also includes the talents of numerous Chinese acrobats and musicians.  </p>
<p>Samples of the recently released soundtrack (based on the production pieces) can be found on the official site <a href="http://www.monkeyjourneytothewest.com/the-album/" onclick="javascript:urchinTracker ('/outbound/article/www.monkeyjourneytothewest.com');">here</a>.  Among them are the particularly charming song here:</p>
<p><a href='http://www.keptshut.com/wp-content/uploads/08_heavenly_peach_banquet.mp3'>Heavenly Peach Banquet</a></p>
<p>Previously, Albarn collaborated with numerous Malian musicians on <em><a href="http://en.wikipedia.org/wiki/Mali_Music" onclick="javascript:urchinTracker ('/outbound/article/en.wikipedia.org');">Mali Music</a></em>.  Perhaps unknown to most, he also lent a strange and haunting soundtrack to <em><a href="http://www.imdb.com/title/tt0129332/" onclick="javascript:urchinTracker ('/outbound/article/www.imdb.com');">Ravenous</a></em>, an odd film about cannibals in the early American West.</p>
<p><a href='http://www.keptshut.com/wp-content/uploads/boydsjourney.mp3'>Damon Albarn - Boyd&#8217;s Journey</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keptshut.com/2008/08/25/damon-albarn-monkey-journey-to-the-west/feed/</wfw:commentRss>
<enclosure url="http://www.keptshut.com/wp-content/uploads/08_heavenly_peach_banquet.mp3" length="2544231" type="audio/mpeg" />
<enclosure url="http://www.keptshut.com/wp-content/uploads/boydsjourney.mp3" length="2942976" type="audio/mpeg" />
		</item>
		<item>
		<title>Archive: Refused -&gt; TEXT</title>
		<link>http://www.keptshut.com/2008/08/24/archive-refused-text/</link>
		<comments>http://www.keptshut.com/2008/08/24/archive-refused-text/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 22:58:06 +0000</pubDate>
		<dc:creator>tom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[refused]]></category>

		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://www.keptshut.com/?p=127</guid>
		<description><![CDATA[
Short-lived but successful Swedish hardcore band, Refused, broke up about a decade ago.  The band couldn&#8217;t reconcile their own success, and major-label status, with their anarchist leanings and lyrics.  After the break-up, some members started a project called TEXT, which culminated in a single self-titled album release from Buddyhead records.  The album [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.keptshut.com/wp-content/uploads/refused03.jpg" ><img src="http://www.keptshut.com/wp-content/uploads/refused03.jpg" alt="" title="refused03" class="alignnone size-medium wp-image-167" /></a><br />
Short-lived but successful Swedish hardcore band, Refused, broke up about a decade ago.  The band couldn&#8217;t reconcile their own success, and major-label status, with their anarchist leanings and lyrics.  After the break-up, some members started a project called TEXT, which culminated in a single self-titled album release from Buddyhead records.  The album is dense, and difficult, some of the songs best being categorized as math rock.</p>
<p><a href="http://www.keptshut.com/wp-content/uploads/04 - We have explosives! - Schmexplosives_.mp3" >TEXT - We have explosives! - Schmexplosives_.mp3</a><br />
<a href="http://www.insound.com/search/showrelease.jsp?from=37796&#038;p=INS44290" onclick="javascript:urchinTracker ('/outbound/article/www.insound.com');">Buy It At Insound!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keptshut.com/2008/08/24/archive-refused-text/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ratatat Remixes Volume 2</title>
		<link>http://www.keptshut.com/2008/08/22/ratatat-remixes-volume-2/</link>
		<comments>http://www.keptshut.com/2008/08/22/ratatat-remixes-volume-2/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 22:13:34 +0000</pubDate>
		<dc:creator>tom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.keptshut.com/?p=87</guid>
		<description><![CDATA[Ratatat released their second set of remixes as a free download.  Yeah, I know that this is almost a year old.  I&#8217;m playing catch-up.


young buck, t.i. &#038; ludacris - stomp
notorious b.i.g. - party &#038; bullshit
notorious b.i.g. - allure
z-ro, devin the dude &#038; juvenile - the mule
young buck - shorty wanna ride
beanie sigel &#038; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ratatatmusic.com/" onclick="javascript:urchinTracker ('/outbound/article/www.ratatatmusic.com');">Ratatat</a> released their second set of remixes as a free download.  Yeah, I know that this is almost a year old.  I&#8217;m playing catch-up.<br />
<a href="http://www.keptshut.com/wp-content/uploads/mixtape2.gif" ><img src="http://www.keptshut.com/wp-content/uploads/mixtape2-300x296.gif" alt="" title="ratatatmixtape2" width="300" height="296" class="alignnone size-medium wp-image-88" /></a></p>
<p>
<a href='http://www.keptshut.com/wp-content/uploads/01-stomp.mp3'>young buck, t.i. &#038; ludacris - stomp</a></br><br />
<a href='http://www.keptshut.com/wp-content/uploads/02-party-and-bullshit.mp3'>notorious b.i.g. - party &#038; bullshit</a></br><br />
<a href='http://www.keptshut.com/wp-content/uploads/03-allure.mp3'>notorious b.i.g. - allure</a></br><br />
<a href='http://www.keptshut.com/wp-content/uploads/04-the-mule.mp3'>z-ro, devin the dude &#038; juvenile - the mule</a></br><br />
<a href='http://www.keptshut.com/wp-content/uploads/05-shorty-wanna-ride.mp3'>young buck - shorty wanna ride</a></br><br />
<a href='http://www.keptshut.com/wp-content/uploads/06-glock-nines.mp3'>beanie sigel &#038; jay-z - glock nines</a></br><br />
<a href='http://www.keptshut.com/wp-content/uploads/07-despot-freestyle.mp3'>despot - freestyle</a></br></br><br />
<a href='http://www.keptshut.com/wp-content/uploads/09-three-kings.mp3'>slim thug, t.i. &#038; bun b. - three kings</a></br><br />
<a href='http://www.keptshut.com/wp-content/uploads/10-over-here.mp3'>young jeezy &#038; bun b. - over here</a></br><br />
<a href='http://www.keptshut.com/wp-content/uploads/11-diamonds.mp3'>kanye west - diamonds</a></br><br />
<a href='http://www.keptshut.com/wp-content/uploads/12-beans-freestyle.mp3'>beans - freestyle</a></br><br />
<a href='http://www.keptshut.com/wp-content/uploads/13-dead-wrong.mp3'>notorious b.i.g. - dead wrong</a></br><br />
<a href='http://www.keptshut.com/wp-content/uploads/14-we-gon-ride.mp3'>saigon &#038; u.g.k. - we gon ride</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keptshut.com/2008/08/22/ratatat-remixes-volume-2/feed/</wfw:commentRss>
<enclosure url="http://www.keptshut.com/wp-content/uploads/02-party-and-bullshit.mp3" length="5767911" type="audio/mpeg" />
<enclosure url="http://www.keptshut.com/wp-content/uploads/03-allure.mp3" length="6430576" type="audio/mpeg" />
<enclosure url="http://www.keptshut.com/wp-content/uploads/04-the-mule.mp3" length="5777316" type="audio/mpeg" />
<enclosure url="http://www.keptshut.com/wp-content/uploads/05-shorty-wanna-ride.mp3" length="5660066" type="audio/mpeg" />
<enclosure url="http://www.keptshut.com/wp-content/uploads/06-glock-nines.mp3" length="6066331" type="audio/mpeg" />
<enclosure url="http://www.keptshut.com/wp-content/uploads/07-despot-freestyle.mp3" length="2484617" type="audio/mpeg" />
<enclosure url="http://www.keptshut.com/wp-content/uploads/09-three-kings.mp3" length="7197328" type="audio/mpeg" />
<enclosure url="http://www.keptshut.com/wp-content/uploads/10-over-here.mp3" length="6613016" type="audio/mpeg" />
<enclosure url="http://www.keptshut.com/wp-content/uploads/11-diamonds.mp3" length="5302703" type="audio/mpeg" />
<enclosure url="http://www.keptshut.com/wp-content/uploads/12-beans-freestyle.mp3" length="3554173" type="audio/mpeg" />
<enclosure url="http://www.keptshut.com/wp-content/uploads/13-dead-wrong.mp3" length="4694585" type="audio/mpeg" />
<enclosure url="http://www.keptshut.com/wp-content/uploads/14-we-gon-ride.mp3" length="5805517" type="audio/mpeg" />
		</item>
		<item>
		<title>The Mending of the Gown, Slow Version</title>
		<link>http://www.keptshut.com/2008/08/21/the-mending-of-the-gown-slow-version/</link>
		<comments>http://www.keptshut.com/2008/08/21/the-mending-of-the-gown-slow-version/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 07:23:47 +0000</pubDate>
		<dc:creator>tom</dc:creator>
		
		<category><![CDATA[song]]></category>

		<category><![CDATA[Daytrotter]]></category>

		<category><![CDATA[mp3]]></category>

		<category><![CDATA[Sunset Rubdown]]></category>

		<category><![CDATA[The Mending of the Gown]]></category>

		<guid isPermaLink="false">http://www.keptshut.com/?p=78</guid>
		<description><![CDATA[
Daytrotter has an excellent studio version of Sunset Rubdown performing their song &#8220;The Mending of the Gown.&#8221;  It&#8217;s much slower and more organic sounding than the (in my opinion) artificially manic version included on the album.  However, in this slower version, the listener may be quick to judge the band on a whole, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.keptshut.com/wp-content/uploads/sunsetrubdown-boweryballroomoctober92007.jpg" ><img src="http://www.keptshut.com/wp-content/uploads/sunsetrubdown-boweryballroomoctober92007-300x123.jpg" alt="" title="sunsetrubdownlive" width="300" height="123" class="alignnone size-medium wp-image-79" /></a></p>
<p>Daytrotter has an excellent studio version of Sunset Rubdown performing their song &#8220;The Mending of the Gown.&#8221;  It&#8217;s much slower and more organic sounding than the (in my opinion) artificially manic version included on the album.  However, in this slower version, the listener may be quick to judge the band on a whole, since it&#8217;s easier to understand (at least phonetically) the sprawling, obtuse lyrics.  I still have no problem with it at all.</p>
<p>It can be found as the encore on their session page <a href="http://www.daytrotter.com/article/1088/sunset-rubdown-encore-session" onclick="javascript:urchinTracker ('/outbound/article/www.daytrotter.com');">here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keptshut.com/2008/08/21/the-mending-of-the-gown-slow-version/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
