<?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>Stine-Blog</title>
	<atom:link href="http://stinebaugh.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://stinebaugh.info</link>
	<description>I Talk To Machines</description>
	<lastBuildDate>Sun, 05 Sep 2010 07:47:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Talking MP3 Players!</title>
		<link>http://stinebaugh.info/talking-mp3-players/</link>
		<comments>http://stinebaugh.info/talking-mp3-players/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 07:05:19 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
				<category><![CDATA[Blah]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[fuze]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[rockbox]]></category>
		<category><![CDATA[sanza]]></category>

		<guid isPermaLink="false">http://stinebaugh.info/?p=1410</guid>
		<description><![CDATA[So I have recently purchased a sanza Fuze but my mom&#8217;s already taken it for her to listen to some audible books, and I&#8217;ve had it for less then 2 weeks&#8230; Yea that didn&#8217;t take long! So I stumbled onto this site Talking MP3 Players and I had to give it a shot. I&#8217;ve played [...]]]></description>
			<content:encoded><![CDATA[<p>So I have recently purchased a sanza Fuze but my mom&#8217;s already taken it for her to listen to some audible books, and I&#8217;ve had it for less then 2 weeks&#8230;</p>
<p>Yea that didn&#8217;t take long!</p>
<p>So I stumbled onto this site <a href="http://www.talkingmp3players.com/">Talking MP3 Players</a> and I had to give it a shot.</p>
<p>I&#8217;ve played a bit with the older <a href="http://www.rockbox.org/">rockbox</a> on a series 1 ipod so needless to say it was a while ago, and I had forgotton about rockbox and what players it supported (and if your wondering why I chose the sanza fuze, it&#8217;s because I run linux and finding an MP3 player that&#8217;s supported is harder then you think!) then I saw that they now also support Talking directory and song titles!</p>
<p>Wait, OMG! An mp3 player that even the blind could use? This is a great idea! So to support them (and get me a new mp3 player!) I&#8217;ve ordered a new sanza fuze 8gb and am anxiously awaiting it&#8217;s arrival with rockbox and voicebox support already installed and configured! SWEET! I&#8217;ll post some pics of it when I get it unwrapped!</p>
]]></content:encoded>
			<wfw:commentRss>http://stinebaugh.info/talking-mp3-players/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spellcheck using the commandline</title>
		<link>http://stinebaugh.info/spellcheck-using-the-commandline/</link>
		<comments>http://stinebaugh.info/spellcheck-using-the-commandline/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 04:39:03 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[spellcheck]]></category>

		<guid isPermaLink="false">http://stinebaugh.info/?p=1381</guid>
		<description><![CDATA[If your anything like myself, I find I use google as a spellchecker more often then anything else, however having to wait for firefox to load when I&#8217;m trying to type in irc and don&#8217;t know the spelling of a word takes up alot of my time and slows the conversation down as well. A [...]]]></description>
			<content:encoded><![CDATA[<p>If your anything like myself, I find I use google as a spellchecker more often then anything else, however having to wait for firefox to load when I&#8217;m trying to type in irc and don&#8217;t know the spelling of a word takes up alot of my time and slows the conversation down as well.</p>
<p>A great post from <a href="http://stormdragon.us/?p=145">Stormdragon</a> has shown me a great and easy way to do this using a program called hunspell.</p>
<p>Following most of his steps you can do this as well on any debian / Ubuntu / Linux Mint pc.</p>
<p>First install hunspell and it&#8217;s english library.</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1"><span class="kw2">sudo</span> apt-get <span class="kw2">install</span> hunspell hunspell-en-us</div>
</li>
</ol>
</div>
<p>then cd over to your ~/bin/ directory</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1"><span class="kw3">cd</span> ~<span class="sy0">/</span>bin<span class="sy0">/</span></div>
</li>
</ol>
</div>
<p>create and edit a file named &#8220;spellcheck&#8221;</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1"><span class="kw2">sudo</span> <span class="kw2">touch</span> spellcheck</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">sudo</span> gedit spellcheck</div>
</li>
</ol>
</div>
<p>Enter in the following script</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1"><span class="co0">#!/bin/bash</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">echo</span> “$<span class="sy0">@</span>” <span class="sy0">|</span> hunspell</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">exit</span> <span class="nu0">0</span></div>
</li>
</ol>
</div>
<p>then save and close gedit.</p>
<p>Now we need to make the file executable</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1"><span class="kw2">sudo</span> <span class="kw2">chmod</span> <span class="nu0">755</span> spellcheck</div>
</li>
</ol>
</div>
<p>Then just close and reopen your terminal of choice (I prefer <a href="http://software.jessies.org/terminator/">terminator</a> myself) and try out your new spellchecker!</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1">spellcheck whatever you cant spell</div>
</li>
</ol>
</div>
<p>Correctly spelled words will just respond with an &#8220;*&#8221; if a word is misspelled it will offer you suggestions! Just that easy! Yea BASH!</p>
]]></content:encoded>
			<wfw:commentRss>http://stinebaugh.info/spellcheck-using-the-commandline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simplify extracting files in the commandline with this alias for your .bashrc file.</title>
		<link>http://stinebaugh.info/simplify-extracting-files-in-the-commandline-with-this-alias-for-your-bashrc-file/</link>
		<comments>http://stinebaugh.info/simplify-extracting-files-in-the-commandline-with-this-alias-for-your-bashrc-file/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 16:08:00 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[extract]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://stinebaugh.info/?p=879</guid>
		<description><![CDATA[This is a straight forward example of using bash script&#8217;s to make everyday use so much easier. Open your .bashrc file in your favorite editor and add this below the alias section. extract &#40;&#41; &#123; &#160; if &#91; -f $1 &#93; ; then &#160; &#160; case $1 in &#160; &#160; &#160; &#160; &#160; *.tar.bz2&#41; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>This is a straight forward example of using bash script&#8217;s to make everyday use so much easier.</p>
<p>Open your .bashrc file in your favorite editor and add this below the alias section.</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1">extract <span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">if</span> <span class="br0">&#91;</span> -f $<span class="nu0">1</span> <span class="br0">&#93;</span> ; <span class="kw1">then</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">case</span> $<span class="nu0">1</span> <span class="kw1">in</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sy0">*</span>.<span class="kw2">tar</span>.bz2<span class="br0">&#41;</span> &nbsp; &nbsp; <span class="kw2">tar</span> xvjf $<span class="nu0">1</span> &nbsp; &nbsp;<span class="sy0">;;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sy0">*</span>.<span class="kw2">tar</span>.gz<span class="br0">&#41;</span> &nbsp; &nbsp; &nbsp;<span class="kw2">tar</span> xvzf $<span class="nu0">1</span> &nbsp; &nbsp;<span class="sy0">;;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sy0">*</span>.bz2<span class="br0">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">bunzip2</span> $<span class="nu0">1</span> &nbsp; &nbsp; <span class="sy0">;;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sy0">*</span>.rar<span class="br0">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; rar x $<span class="nu0">1</span> &nbsp; &nbsp; &nbsp; <span class="sy0">;;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sy0">*</span>.gz<span class="br0">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw2">gunzip</span> $<span class="nu0">1</span> &nbsp; &nbsp; &nbsp;<span class="sy0">;;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sy0">*</span>.<span class="kw2">tar</span><span class="br0">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">tar</span> xvf $<span class="nu0">1</span> &nbsp; &nbsp; <span class="sy0">;;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sy0">*</span>.tbz2<span class="br0">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<span class="kw2">tar</span> xvjf $<span class="nu0">1</span> &nbsp; &nbsp;<span class="sy0">;;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sy0">*</span>.<span class="kw2">zip</span><span class="br0">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">unzip</span> $<span class="nu0">1</span> &nbsp; &nbsp; &nbsp; <span class="sy0">;;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sy0">*</span>.Z<span class="br0">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; uncompress $<span class="nu0">1</span> &nbsp;<span class="sy0">;;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sy0">*</span>.7z<span class="br0">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;7z x $<span class="nu0">1</span> &nbsp; &nbsp; &nbsp; &nbsp;<span class="sy0">;;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="sy0">*</span><span class="br0">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">echo</span> <span class="st0">&quot;don&#39;t know how to extract &#39;%1&#39;&#8230;&quot;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="kw1">esac</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">else</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="kw3">echo</span> <span class="st0">&quot;&#39;$1&#39; is not a valid file!&quot;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">fi</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
<p>Now when you want to extract an archive in the terminal, just type in &#8220;extract filename&#8221; obviously replacing filename with your actual filename.extention and hit enter <img src='http://stinebaugh.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Isn&#8217;t linux beautiful!?!</p>
]]></content:encoded>
			<wfw:commentRss>http://stinebaugh.info/simplify-extracting-files-in-the-commandline-with-this-alias-for-your-bashrc-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Record your soundcard using sox and this script :)</title>
		<link>http://stinebaugh.info/record-your-soundcard-using-sox-and-this-script/</link>
		<comments>http://stinebaugh.info/record-your-soundcard-using-sox-and-this-script/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 15:59:35 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[record]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sox]]></category>
		<category><![CDATA[tape]]></category>

		<guid isPermaLink="false">http://stinebaugh.info/?p=871</guid>
		<description><![CDATA[record your soundcard using sox and this handy script!]]></description>
			<content:encoded><![CDATA[<p>First we install sox.</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1"><span class="kw2">sudo</span> apt-get <span class="kw2">install</span> <span class="kw2">sox</span></div>
</li>
</ol>
</div>
<p>Next we build the recording script. I can&#8217;t remember where I got this from but it&#8217;s a great script!<br />
In your home directory create a new blank file and open it with gedit or the likes.</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1"><span class="co0">#!/bin/bash</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="re2">TIME=</span>$<span class="br0">&#40;</span><span class="kw2">date</span> +<span class="sy0">%</span>d-<span class="sy0">%</span>b-<span class="sy0">%</span>y_<span class="sy0">%</span>H<span class="sy0">%</span>M-<span class="sy0">%</span>Z<span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="co0"># Get sink monitor:</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re2">MONITOR=</span>$<span class="br0">&#40;</span>pactl list <span class="sy0">|</span> <span class="kw2">grep</span> -A2 <span class="st0">&#39;^Source #&#39;</span> <span class="sy0">|</span> \</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw2">grep</span> <span class="st0">&#39;Name: .*<span class="es0">\.</span>monitor$&#39;</span> <span class="sy0">|</span> <span class="kw2">awk</span> <span class="st0">&#39;{print $NF}&#39;</span> <span class="sy0">|</span> <span class="kw2">tail</span> -n1<span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="co0"># Record it raw, and convert to a wav</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">echo</span> <span class="st0">&quot;Recording. Ctrl-C or close window to stop&quot;</span></div>
</li>
<li class="li1">
<div class="de1">parec -d <span class="st0">&quot;$MONITOR&quot;</span> <span class="sy0">|</span> <span class="kw2">sox</span> -t raw -r <span class="nu0">44100</span> -sLb <span class="nu0">16</span> -c <span class="nu0">2</span> &#8211; ~<span class="sy0">/</span>Music<span class="sy0">/</span>Recordings<span class="sy0">/</span>Taped_Recording_<span class="re1">$TIME</span>.wav</div>
</li>
</ol>
</div>
<p>Of course you can set your own recording directory if you like.</p>
<p>Save and name the file.</p>
<p>Right click on it and choose &#8220;properties&#8221; then go to the permissions tab and check the box that says &#8220;Allow executing file as program&#8221; and let&#8217;s add a section in our .bashrc file.</p>
<p>Open .bashrc with gedit (or the likes) and add the following to your alias section:</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1"><span class="kw3">alias</span> <span class="re2">tape=</span><span class="st0">&quot;~/Documents/tape-recorder.sh&quot;</span></div>
</li>
</ol>
</div>
<p>Now when you have something playing through your soundcard that you&#8217;ld like to record, just open a terminal window and type in &#8220;tape&#8221; and it will begin recording!</p>
]]></content:encoded>
			<wfw:commentRss>http://stinebaugh.info/record-your-soundcard-using-sox-and-this-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ninite make&#8217;s re-installing a plethora of apps a breeze!</title>
		<link>http://stinebaugh.info/ninite-makes-re-installing-a-plethora-of-apps-a-breeze/</link>
		<comments>http://stinebaugh.info/ninite-makes-re-installing-a-plethora-of-apps-a-breeze/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 21:58:47 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://stinebaugh.info/?p=859</guid>
		<description><![CDATA[(windows only) Have you recently re-installed windows yet again, just to have to individually install all those apps you need and use every day all over again? You need to go and check out ninite.com your one stop shop for most of the apps and codecs you&#8217;ll be needing with only one installer needed, as [...]]]></description>
			<content:encoded><![CDATA[<p>(windows only)</p>
<p><a href="http://stinebaugh.info/wp-content/uploads/2010/08/download.jpg"><img class="alignnone size-medium wp-image-860" title="download" src="http://stinebaugh.info/wp-content/uploads/2010/08/download-139x300.jpg" alt="" width="139" height="300" /></a></p>
<p>Have you recently re-installed windows yet again, just to have to individually install all those apps you need and use every day all over again?</p>
<p>You need to go and check out <a href="http://ninite.com/">ninite.com</a> your one stop shop for most of the apps and codecs you&#8217;ll be needing with only one installer needed, as it&#8217;s automated the install for quite a few of your favorite apps.</p>
<p>Just visit the website, check in the boxes for the apps you want to download and install, and click the go button on the bottom of the page to get your own customized installer.</p>
<p>It will automatically install (without common annoying things like toolbars) the proper app for your system (32 or 64 bit) and in no time your system is back where you wanted it to be!</p>
<p>Awesome!</p>
]]></content:encoded>
			<wfw:commentRss>http://stinebaugh.info/ninite-makes-re-installing-a-plethora-of-apps-a-breeze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matt saw his site</title>
		<link>http://stinebaugh.info/matt-saw-his-site/</link>
		<comments>http://stinebaugh.info/matt-saw-his-site/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 03:34:24 +0000</pubDate>
		<dc:creator>dan-mobile</dc:creator>
				<category><![CDATA[Blah]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[Matt]]></category>
		<category><![CDATA[raver]]></category>

		<guid isPermaLink="false">https://stinebaugh.info/matt-saw-his-site/</guid>
		<description><![CDATA[So I went to darkness&#8217;s bon fire and raver was there. Here&#8217;s his reaction.]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:auto;margin-left:auto" alt="image" src="http://stinebaugh.info/wp-content/uploads/2010/08/wpid-wp-1281151812155.jpg" /></p>
<p>So I went to darkness&#8217;s bon fire and raver was there. <br />
Here&#8217;s his reaction.</p>
]]></content:encoded>
			<wfw:commentRss>http://stinebaugh.info/matt-saw-his-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playstation 3 get&#8217;s Hulu!</title>
		<link>http://stinebaugh.info/playstation-3-gets-hulu/</link>
		<comments>http://stinebaugh.info/playstation-3-gets-hulu/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 23:26:55 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
				<category><![CDATA[Blah]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[finally]]></category>
		<category><![CDATA[hulu]]></category>
		<category><![CDATA[ps3]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://stinebaugh.info/?p=676</guid>
		<description><![CDATA[So from what I remember for a long time hulu didn&#8217;t want exactly this, hulu content played back on our TV&#8217;s. Well they must have finally seen the light, with a growing market for paid for options such as playon or TVersity and of course the awesome and free Boxee it&#8217;s time they turned to [...]]]></description>
			<content:encoded><![CDATA[<p>So from what I remember for a long time hulu didn&#8217;t want exactly this, hulu content played back on our TV&#8217;s. Well they must have finally seen the light, with a growing market for paid for options such as <a href="http://www.playon.tv/playon">playon</a> or <a href="http://tversity.com/">TVersity</a> and of course the awesome and free <a href="http://www.boxee.tv/">Boxee</a> it&#8217;s time they turned to the dark side and realized that the newer generations are more into the pleasures of on-demand viewing, watching the content you want to watch, when you want to watch it!</p>
<p>It&#8217;s high time the networks realized this as well with item&#8217;s such as <a href="http://www.tivo.com/">Tivo</a> (and I&#8217;ve loved mine!) having been and succeeding in the market for years, that on demand viewing is what the customer wants, and almost every cable provider now offers there own DVR&#8217;s as well. Why not just have it streaming and instantly available without having to remember to record it?</p>
<p>Well the folks at Hulu have finally done just that, and are releasing (under special circumstances which I&#8217;ll get into in a bit) The &#8220;Hulu Plus (Preview)&#8221; it&#8217;s free (for a limited time I&#8217;m guessing) and you have to be both a hulu Plus Subscriber, as well as a Playstation Plus member (both of those are also pay for services) so all in all it&#8217;s not &#8220;Free&#8221; but eh, at least the app is looking like it&#8217;s going to see the light of day.</p>
<p>This is exciting! &#8211; Stay tuned! (I&#8217;m on the list for an invite to Hulu Plus, but if you have an invitation referral code, please feel free to contact me!)</p>
<p><a href="http://stinebaugh.info/wp-content/uploads/2010/07/CIMG0013.png"><img class="alignnone size-medium wp-image-678" title="CIMG0013" src="http://stinebaugh.info/wp-content/uploads/2010/07/CIMG0013-300x225.png" alt="" width="300" height="225" /></a></p>
<p><a href="http://stinebaugh.info/wp-content/uploads/2010/07/CIMG0002.png"><img class="alignnone size-medium wp-image-679" title="CIMG0002" src="http://stinebaugh.info/wp-content/uploads/2010/07/CIMG0002-300x225.png" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://stinebaugh.info/playstation-3-gets-hulu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Media Tips for Ubuntu 10.04 &#8211; Starting VLC in fullscreen mode by default</title>
		<link>http://stinebaugh.info/media-tips-for-ubuntu-10-04-starting-vlc-in-fullscreen-mode-by-default/</link>
		<comments>http://stinebaugh.info/media-tips-for-ubuntu-10-04-starting-vlc-in-fullscreen-mode-by-default/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 08:48:48 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[media pc]]></category>
		<category><![CDATA[fullscreen]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[theater]]></category>
		<category><![CDATA[vlc]]></category>

		<guid isPermaLink="false">http://stinebaugh.info/?p=638</guid>
		<description><![CDATA[So being I have a new aspire revo 3160 that I&#8217;m using as a new media pc on my TV, I wanted the experience to be as smooth for most of the actions as possible being I&#8217;m using a keyboard (or the web ui for boxee) I wanted to be able to start a video [...]]]></description>
			<content:encoded><![CDATA[<p>So being I have a new aspire revo 3160 that I&#8217;m using as a new media pc on my TV, I wanted the experience to be as smooth for most of the actions as possible being I&#8217;m using a keyboard (or the web ui for boxee) I wanted to be able to start a video played from a folder using VLC to start in full screen mode.</p>
<p>This will be the first installment of these media tips as I plan on preparing many to help others enjoy there lightweight and silent media pc&#8217;s using Linux.</p>
<p>So I&#8217;m going to assume you already have VLC Media player installed, if not quickly just type in:</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1"><span class="kw2">sudo</span> apt-get <span class="kw2">install</span> vlc</div>
</li>
</ol>
</div>
<p>Now let&#8217;s open a folder holding your video files. Right click one and go to <strong>properties</strong> on the bottom of the pop up menu.</p>
<p><a href="http://stinebaugh.info/wp-content/uploads/2010/07/Screenshot.png"><img class="alignnone size-medium wp-image-644" title="Screenshot" src="http://stinebaugh.info/wp-content/uploads/2010/07/Screenshot-300x169.png" alt="" width="300" height="169" /></a></p>
<p>Next choose the <strong>Open With</strong> tab.</p>
<p><a href="http://stinebaugh.info/wp-content/uploads/2010/07/Screenshot-1.png"><img class="alignnone size-medium wp-image-645" title="Screenshot-1" src="http://stinebaugh.info/wp-content/uploads/2010/07/Screenshot-1-300x169.png" alt="" width="300" height="169" /></a><br />
click the add button<br />
It will display some default options, however we want to make our own, so <strong>click the add button</strong>.</p>
<p><a href="http://stinebaugh.info/wp-content/uploads/2010/07/Screenshot-3.png"><img class="alignnone size-medium wp-image-648" title="Screenshot-3" src="http://stinebaugh.info/wp-content/uploads/2010/07/Screenshot-3-300x169.png" alt="" width="300" height="169" /></a></p>
<p>Another window will pop up and at the very bottom you&#8217;ll see an option to <strong>Use a Custom Command</strong>. Select that.</p>
<p><a href="http://stinebaugh.info/wp-content/uploads/2010/07/Screenshot-4.png"><img class="alignnone size-medium wp-image-649" title="Screenshot-4" src="http://stinebaugh.info/wp-content/uploads/2010/07/Screenshot-4-300x169.png" alt="" width="300" height="169" /></a></p>
<p>In the text field that appears type in the following noting that there is 2 dashes not just one.</p>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1">vlc &#8211;fullscreen</div>
</li>
</ol>
</div>
<p><a href="http://stinebaugh.info/wp-content/uploads/2010/07/Screenshot-5.png"><img class="alignnone size-medium wp-image-650" title="Screenshot-5" src="http://stinebaugh.info/wp-content/uploads/2010/07/Screenshot-5-300x169.png" alt="" width="300" height="169" /></a></p>
<p>And click the <strong>Add</strong> button when finished.Open With</p>
<p>Now let&#8217;s right click the file again and this time you&#8217;ll see another option from the <strong>Open With</strong> tab that we just created.</p>
<p><a href="http://stinebaugh.info/wp-content/uploads/2010/07/Screenshot-8.png"><img class="alignnone size-medium wp-image-651" title="Screenshot-8" src="http://stinebaugh.info/wp-content/uploads/2010/07/Screenshot-8-300x169.png" alt="" width="300" height="169" /></a></p>
<p><strong>Select the new VLC entry</strong> and your file will be opened in VLC running full screen automatically!</p>
<p>Do take into account that this only works for each file extension that you select it to, so if you want it to do this over multiple file types, you&#8217;ll need to set this as the default <strong>Open With</strong> option for each of them.</p>
<p>IE: if you&#8217;ve done this on an .avi file, you&#8217;ll also need to do this for the .mpeg files .mov files, etc. However the full screen option is already available, it just needs to be set in the Open With tab for each t</p>
]]></content:encoded>
			<wfw:commentRss>http://stinebaugh.info/media-tips-for-ubuntu-10-04-starting-vlc-in-fullscreen-mode-by-default/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asus Aspire Revo 3160 running Ubuntu 10.04 64 bit &#8211; A great Boxee box for those who can&#8217;t wait!</title>
		<link>http://stinebaugh.info/asus-aspire-revo-3160-running-ubuntu-10-04-64-bit-a-great-boxee-box-for-those-who-cant-wait/</link>
		<comments>http://stinebaugh.info/asus-aspire-revo-3160-running-ubuntu-10-04-64-bit-a-great-boxee-box-for-those-who-cant-wait/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 01:04:02 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
				<category><![CDATA[Blah]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://stinebaugh.info/?p=608</guid>
		<description><![CDATA[Just because I know people like media, here&#8217;s a quick video overview of how the acer aspire revo 3160 works with boxee 64 bit on linux (Ubuntu 10.04 &#8211; 64 bit) using both a wireless (RF) keyboard / multi-touch trackpad and a Samsung Moment running Google&#8217;s Android Phone OS and the Boxee Web Remote v1.0 [...]]]></description>
			<content:encoded><![CDATA[<p>Just because I know people like media, here&#8217;s a quick video overview of how the <a title="User Reviews of the Acer Aspire Revo 3160" href="http://alatest.com/user-reviews/desktop-reviews/acer-aspire-revo-r3610-mini-pc/pu3-88792150,28/" target="_blank">acer aspire revo 3160</a> works with <a title="Boxee TV - GET YOU SOME!" href="http://www.boxee.tv/" target="_blank">boxee</a> 64 bit on linux (<a title="Ubuntu Linux - The Best Free OS ALIVE!" href="http://www.ubuntu.com/" target="_blank">U</a><a title="Ubuntu Linux - The Best Free OS ALIVE!" href="http://www.ubuntu.com/" target="_blank">buntu 10.04</a> &#8211; 64 bit) using both a wireless (RF) keyboard / multi-touch trackpad and a Samsung Moment running Google&#8217;s Android Phone OS and the Boxee Web Remote v1.0 application from the marketplace by Sunil Sadasivan which work&#8217;s GREAT! (phew that was a long lead in!)</p>
<p><a href="http://www.youtube.com/watch?v=FiVP8RYeVy8">My Acer Aspire Revo running Boxee on Ubuntu 10.04</a><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/FiVP8RYeVy8&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/FiVP8RYeVy8&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I&#8217;ve been VERY Pleased with the performance of this machine, and it&#8217;s alot more responsive after swapping out Windows 7 for Ubuntu 10.04, however I&#8217;ve been toying with trying out the netbook edition, as it looks like the interface might be a little better for distant navigation, however I haven&#8217;t taken that step yet. (give it time lol!) Also it looks like it&#8217;s going to be easy to open being there&#8217;s only one screw under a sticker on the bottom keeping the thing snapped together. Yea hardware swapping! I&#8217;m thinking an SSD hd and changing from 2 to 4 gig&#8217;s of ram should really show this tiny pc off the way it should!</p>
<p>I am having issues getting wireless working under Ubuntu 10.04 however have read that other&#8217;s seem to be having issues with the wired connection. Mine worked fine out of the box under Ubuntu however I&#8217;ve read that other&#8217;s running the older 9.x Karmic wifi drivers worked fine?! So a little research (and a cheap usb wifi dongle that works great!) will do for now, but I&#8217;ll keep you updated on getting the internal wifi working.</p>
<p>On a good note, HDMI Audio works fine, and shows up in the sound preferences by default.</p>
<p><a rel="attachment wp-att-613" href="http://stinebaugh.info/asus-aspire-revo-3160-running-ubuntu-10-04-64-bit-a-great-boxee-box-for-those-who-cant-wait/cimg0005-2/"><img class="alignnone size-medium wp-image-613" title="CIMG0005" src="http://stinebaugh.info/wp-content/uploads/2010/07/CIMG0005-300x168.jpg" alt="" width="300" height="168" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://stinebaugh.info/asus-aspire-revo-3160-running-ubuntu-10-04-64-bit-a-great-boxee-box-for-those-who-cant-wait/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>BP spill visualized over your own house.</title>
		<link>http://stinebaugh.info/bp-spill-visualized-over-your-own-house/</link>
		<comments>http://stinebaugh.info/bp-spill-visualized-over-your-own-house/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 07:50:19 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
				<category><![CDATA[Blah]]></category>
		<category><![CDATA[area]]></category>
		<category><![CDATA[bay]]></category>
		<category><![CDATA[bay area]]></category>
		<category><![CDATA[BP]]></category>
		<category><![CDATA[california]]></category>
		<category><![CDATA[oil]]></category>
		<category><![CDATA[Spill]]></category>

		<guid isPermaLink="false">http://stinebaugh.info/?p=522</guid>
		<description><![CDATA[So I just ran across a nice use of the google maps overlaying the BP oil leak coverage over your own home town. Now no I don&#8217;t live in Modesto like I put in the map image I just wanted to get a good fit for the spill and the shape of California. The images [...]]]></description>
			<content:encoded><![CDATA[<p>So I just ran across a nice use of the google maps overlaying the BP oil leak coverage over your own home town.</p>
<div id="attachment_523" class="wp-caption alignnone" style="width: 310px"><a rel="attachment wp-att-523" href="http://stinebaugh.info/bp-spill-visualized-over-your-own-house/screenshot-17/"><img class="size-medium wp-image-523" title="BP Spill over Bay Area" src="http://stinebaugh.info/wp-content/uploads/2010/06/Screenshot-17-300x187.png" alt="" width="300" height="187" /></a><p class="wp-caption-text">What it would look like if the BP oil leak happened over the California Bay Area.</p></div>
<p>Now no I don&#8217;t live in Modesto like I put in the map image I just wanted to get a good fit for the spill and the shape of California.</p>
<p>The images were from <a href="http://www.ifitwasmyhome.com/">http://www.ifitwasmyhome.com/</a> (not that you couldn&#8217;t read it in the screenshot&#8217;s but w/e) Very good representation of the sheer size of the issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://stinebaugh.info/bp-spill-visualized-over-your-own-house/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
