<?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>Devolblog &#187; Movies</title>
	<atom:link href="http://devolblog.devolfamily.com/category/movies/feed/" rel="self" type="application/rss+xml" />
	<link>http://devolblog.devolfamily.com</link>
	<description>The sole purpose for Devolblog is to be a central location for me to record things to help my failing memory.  A lot of this won't be of any interest to anybody else, but if you do find something please leave me a comment so that I know.</description>
	<lastBuildDate>Wed, 01 Feb 2012 05:36:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Mercedes-Benz &#8220;Decisions&#8221; Commercial</title>
		<link>http://devolblog.devolfamily.com/mercedes-benz-decisions-commercial/</link>
		<comments>http://devolblog.devolfamily.com/mercedes-benz-decisions-commercial/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 20:05:07 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Formula 1]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://devolblog.devolfamily.com/?p=1467</guid>
		<description><![CDATA[Mercedes-Benz commercial with Nico Rosberg and Michael Schumacher.]]></description>
			<content:encoded><![CDATA[<p>Awesome new Mercedes-Benz commercial with Nico Rosberg, Michael Schumacher and a pregnant woman.<br />
<span id="more-1467"></span><br />
<object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="480" height="286" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"><param name="src" value="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2011/04/Mercedes-Benz-_Decisions_-Commercial.mp4" /><embed type="video/quicktime" width="480" height="286" src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2011/04/Mercedes-Benz-_Decisions_-Commercial.mp4" scale="aspect"></embed></object><br />
[ download: <a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2011/04/Mercedes-Benz-_Decisions_-Commercial.mp4">Mercedes-Benz &quot;Decisions&quot; 720p</a> ]</p>
]]></content:encoded>
			<wfw:commentRss>http://devolblog.devolfamily.com/mercedes-benz-decisions-commercial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2011/04/Mercedes-Benz-_Decisions_-Commercial.mp4" length="12023762" type="video/mp4" />
		</item>
		<item>
		<title>Use MySQL for XBMC library [repost from Lifehacker]</title>
		<link>http://devolblog.devolfamily.com/repost-from-lifehacker-use-mysql-for-xbmc-library/</link>
		<comments>http://devolblog.devolfamily.com/repost-from-lifehacker-use-mysql-for-xbmc-library/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 21:10:35 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://devolblog.devolfamily.com/?p=1394</guid>
		<description><![CDATA[Use MySQL to sync all your XBMCs.]]></description>
			<content:encoded><![CDATA[<p><img src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2010/11/How-to-Synchronize-Your-XBMC-Media-Center-Between-Every-Room-in-the-House-300x189.jpg" alt="" title="How to Synchronize Your XBMC Media Center Between Every Room in the House" width="240" class="alignleft size-medium wp-image-1395" />This is a repost of the article, <a href="http://lifehacker.com/5634515/how-to-synchronize-your-xbmc-media-center-across-every-room-in-the-house">How to Synchronize Your XBMC Media Center Between Every Room in the House</a>, at <a href="http://lifehacker.com">Lifehacker</a>.  The functionality is dead simple, I just wasn&#8217;t aware that it existed.  The advantages of keeping a central library for all of the xbmc boxes in your home should seem obvious; however take a moment to think about the design implications.</p>
<p>So, obviously, for this to work you have to have a central server box in your home network that will be on 24/7.  On that box, you&#8217;ll need to install MySQL.  I&#8217;m not going to replicate any of the details of that from the post because I know that I know how to do that.  And since I&#8217;m my audience &#8230; </p>
<p>Next create a new db for xbmc and create/assign a user.  </p>
<ul>
<li>CREATE USER &#8216;xbmc&#8217; IDENTIFIED BY &#8216;xbmc&#8217;;</li>
<li>CREATE database xbmc_video;</li>
<li>CREATE database xbmc_music;</li>
<li>GRANT ALL ON &#8216;xbmc_%&#8217;.* TO &#8216;xbmc&#8217;;</li>
</ul>
<p>The <a href="http://lifehacker.com">Lifehacker</a> author assumes that you only have MySQL running for this purpose and tells you to use grant all on * to xbmc.  Not the best choice if you also have MySQL for other things.  MySQL has additional security options if you&#8217;re so inclined.  </p>
<p>Now that you&#8217;ve got the db setup, export the current XBMC Video and Music libraries.  Once you&#8217;ve got the export, simply modify advancedsettings.xml ( ~/.xbmc/userdata ) and look for the videodatabase and musicdatabase sections.  Should be pretty obvious from the tags below what you need to do.<br />
<code><br />
  &lt;videodatabase&gt;<br />
 &nbsp;&nbsp;&nbsp;&lt;type&gt;mysql&lt;/type&gt;<br />
 &nbsp;&nbsp;&nbsp;&lt;host&gt;***.***.***.***&lt;/host&gt;<br />
 &nbsp;&nbsp;&nbsp;&lt;port&gt;3306&lt;/port&gt;<br />
 &nbsp;&nbsp;&nbsp;&lt;user&gt;xbmc&lt;/user&gt;<br />
 &nbsp;&nbsp;&nbsp;&lt;pass&gt;xbmc&lt;/pass&gt;<br />
 &nbsp;&nbsp;&nbsp;&lt;name&gt;xbmc_video&lt;/name&gt;<br />
    &lt;/videodatabase&gt; </p>
<p>    &lt;musicdatabase&gt;<br />
&nbsp;&nbsp;&nbsp;&lt;type&gt;mysql&lt;/type&gt;<br />
&nbsp;&nbsp;&nbsp;&lt;host&gt;***.***.***.***&lt;/host&gt;<br />
&nbsp;&nbsp;&nbsp;&lt;port&gt;3306&lt;/port&gt;<br />
&nbsp;&nbsp;&nbsp;&lt;user&gt;xbmc&lt;/user&gt;<br />
&nbsp;&nbsp;&nbsp;&lt;pass&gt;xbmc&lt;/pass&gt;<br />
&nbsp;&nbsp;&nbsp;&lt;name&gt;xbmc_music&lt;/name&gt;<br />
    &lt;/musicdatabase&gt;<br />
</code><br />
The use of IPs is dumb, I didn&#8217;t look too hard, but as long as DNS is working (or a local hosts file) I don&#8217;t see why you can&#8217;t use a hostname instead.  Unfortunately, I&#8217;m pretty sure changes to advancedsettings requires a reboot; after that, import your old library and it should write it to the db.  </p>
<p>I don&#8217;t actually want all xbmc boxes to use the same library.  I envision my downstairs wi-fi connected xbmc to be primarily for kids movies and have challenges streaming HD so it&#8217;ll be using local storage.  But my server running MySQL has three different backup strategies running (I&#8217;m paranoid about my digital pictures) so I plan to use this method to always have a backup of my xbmc libraries.  The video library easily recreates itself, it&#8217;s the music library that&#8217;s a pain if I lose it.</p>
]]></content:encoded>
			<wfw:commentRss>http://devolblog.devolfamily.com/repost-from-lifehacker-use-mysql-for-xbmc-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XBMC on an Acer Aspire Revo 1600 *outdated* (see newer xbmc live 10 post)</title>
		<link>http://devolblog.devolfamily.com/xbmc-on-an-acer-aspire-revo-1600/</link>
		<comments>http://devolblog.devolfamily.com/xbmc-on-an-acer-aspire-revo-1600/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 01:07:34 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[xbmc]]></category>

		<guid isPermaLink="false">http://devolblog.devolfamily.com/?p=1274</guid>
		<description><![CDATA[[deprecated] old XBMC install]]></description>
			<content:encoded><![CDATA[<p><a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/12/aeon_backdrops.jpg"><img class="alignleft size-full wp-image-1288" title="aeon_backdrops" src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/12/aeon_backdrops.jpg" alt="aeon_backdrops" width="320" height="180" /></a></p>
<p><strong>This post is outdated after the Dharma release, I will copy relevant info from this post to the newer post.</strong></p>
<p><code><del datetime="2011-03-26T19:41:16+00:00">[<strong>Note</strong>: There's currently a bug that has been fixed in svn (<a href="http://xbmc.org/trac/changeset/26394">changeset</a>) that causes Aeon to crash.  I compiled and installed from svn and confirm that the bug is fixed; will create an idoits guide to installing from svn soon.  Again, like most things XBMC, it wasn't hard but nobody wanted to give up concise, correct instructions.]</del></code></p>
<p><strong>Notes</strong><br />
I&#8217;m filling in a lot of blanks from this guide on the XBMC.org forums <a href="http://xbmc.org/forum/showthread.php?t=53888&amp;highlight=Aspire">here</a>, or the Lifehacker guide <a href="http://lifehacker.com/5391308/build-a-silent-standalone-xbmc-media-center-on-the-cheap">here</a>. Unfortunately a lot of this info is scattered around forum posts and these guides will only get you most of the way there. For instance, don&#8217;t mess with adding the nvidia drivers to the iso &#8230; I mean you could if you wanted to but why not just do them after install?</p>
<p><strong>Purpose</strong><br />
I need to catalogue all of the changes I had to make so that, in the event I ever need to do it all over again, I don&#8217;t spend the six &#8211; seven hours it took me the first time digging through random forum posts. For my purposes, I want to install XMBC directly to the revo&#8217;s hdd but since it has no cd/dvd rom, and there&#8217;s no way I&#8217;ll go buy one just for this, it needs to install from usb. I don&#8217;t know why this is, but there seems to be a lot of posts asking how this is done, and I think people get confused because of extra random steps mentioned in the thread.</p>
<p><strong>I. Install XBMC Live to Revo HDD</strong></p>
<ol>
<li>Download <a href="http://xbmc.org/download/">XBMC Live</a>.</li>
<li>Download <a href="http://unetbootin.sourceforge.net/">unetbootin</a>. <code>[I don't know if this part is correct]</code> For Mac users, like me, it appears easist to run it under a Windows virtual or boot camp even though there&#8217;s a Linux version.</li>
<li>Plug in your USB drive and <code>[I had trouble getting my USB key to boot until I did this]</code> format it FAT32.</li>
<li>Launch unetbootin, select the XMBC Live iso and select the drive letter of your USB key and then let unetbootin do it&#8217;s thing.</li>
<li>Plug the USB key into your Revo, turn it on and <code>[Optional]</code> hit Del to get to the bios and change the boot priority to removable devices. <code>[/Optional]</code> hit F12 for the boot menu and select your USB key.<br />
<code>[Note: the guide has you create a file for permanent storage. This is <strong>only</strong> necessary if you want to run XBMC Live directly from the USB key. If you're installing to HDD then it's pointless.]</code></li>
<li>At the XBMC Live boot menu select the Install to HDD option. You&#8217;ll then see the normal ubuntu command line installer and it&#8217;ll walk you through partitioning the drive, etc.</li>
<li>Remove the USB key, reboot per the installer and make sure XMBC loads. Once it has, immediately shut it down.</li>
</ol>
<p><strong>II. Install Invidia drivers</strong></p>
<ol>
<li><code>[I haven't confirmed if XMBC Live 9.11 final contains up to date Nvidia drivers since the install to HDD option was broken when this was written and I had to use RC1 -&gt; apt-get update / upgrade path]</code>Download latest Nvidia ION Linux drivers <a href="http://www.nvidia.com/content/drivers/drivers.asp">here</a>. Make sure to check beta releases. Current certified 190.53 appears to be working with 9.11 Live.</li>
<li>Copy them over, or easier yet, use <code>[need to verify url]</code> wget http://us.download.nvidia.com/XFree86/Linux-x86/190.53/NVIDIA-Linux-x86-190.53-pkg1.run. Should be obvious from url that you can you just replace the version number with whichever you&#8217;re after.</li>
<li>Install &#8230; sudo sh NVIDIA-Linux-x86-190.53-pkg1.run.</li>
<li>Reboot; done.</li>
<li>Once in XBMC, you should be fine leaving the Renderer option set to Auto, but if you really feel the need switch it to VDPAU.</li>
<li>My Revo 1600 is running 1080p fine with only the stock 1gb, but I still have another 1gb on order. I&#8217;ve also noticed the tiniest bit of jitter during playback (about the same as PS3MS to PS3) and am still investigating all of the xorg.conf posts for that solution.</li>
</ol>
<p><strong>III. Audio over HDMI</strong></p>
<ol>
<li><code>[Note: this is very dependent on how and what you're hooking your Revo up to. Both guides fail to mention that the audio config they give you only works when connecting directly to screen and only outputs stereo. Wich should be obvious from 'Downmix multichannel audio to stereo - ON', but still, who wants stereo?!?]</code></li>
<li>Set Audio Output to Digital.</li>
<li>AC3:on</li>
<li>DTS:on</li>
<li>Both guides state that both, audio output device and passthrough output device should be set to &#8216;hdmi&#8217;. Unfortunately, this didn&#8217;t work for me and all I got was silence. There&#8217;s a massive thread about multichannel audio <a href="http://xbmc.org/forum/showthread.php?t=59877&amp;highlight=plughw%3A0%2C3">here</a>, but I found that I didn&#8217;t need any of it except for one key part.</li>
<li>Alt-F2 to bring up a terminal, and login.</li>
<li>aplay -l and note the HDMI device; it should be card 0 device 3.</li>
<li>Set Audio Output Device to Custom and enter plughw:0,3.</li>
<li>Set Passthrough Output Device to Custom and enter plughw:0,3.</li>
<li>Downmix multichannel audio to stereo: <strong>off</strong></li>
<li>You should now get DD5.1 and DTS5.1 <code>[possibly 7.1 too?]</code> out of the Revo&#8217;s HDMI. My assumption is that you&#8217;re connecting the Revo HDMI to either a receiver with HDMI in, or you&#8217;re routing sound through your TV via HDMI in and then Optical out to your receiver (how mine is configured). Since the Revo 1600 has no optical out, that route isn&#8217;t covered. I would guess that for the 3600 all you&#8217;d need to change would be the approiate card / hardware numbers, but I haven&#8217;t done any research into that.</li>
<li>And of course, if you want menu sounds create /home/xbmc/.asoundrc and put:<br />
pcm.!default {<br />
type plug<br />
slave {<br />
pcm &#8220;hdmi&#8221;<br />
}<br />
}<br />
in it.</li>
</ol>
<p><strong>IV. Logitech Harmony Remote</strong></p>
<ol>
<li>Get an IR Receiver by purchasing a <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16880121001&#038;cm_re=mce_remote-_-80-121-001-_-Product">cheap MCE remote</a>.</li>
<li>Verify that the MCE remote works with xbmc-live out of the box (it should).</li>
<li>In the Harmony remote software setup the revo as a Media Center PC -> Manufacturer: Microsoft -> Model: manually type in Extender.  I had a hell of a time getting my Harmony 550 to work before I found that little tidbit recently.  Even manually learning the IR from the other remote wasn&#8217;t working.</li>
<li>If you also have an Xbox360 that&#8217;s sitting nearby, using the power toggle of the MCE Remote/Harmony will also turn it on or off.  Go into system setup on the 360 and set it to xbox360 remote only.  Don&#8217;t worry, the activity for the 360 on the Harmony will still power it on and off &#8230; I&#8217;d have to guess it won&#8217;t navigate menus but I only use my 360 for gaming so the controller is on and that&#8217;s what I&#8217;m using for navigation.  Why would you watch movies on the 360 now that you have XBMC?  Netflix?!?  Two words &#8230; use, net.</li>
<li><code>[Still need to adjust timing, Harmony software on Mac isn't letting me edit the default 200ms setting.  Also still need to map back and home to a face button.]</code></li>
</ol>
<p><strong>V. Skins from git</strong></p>
<ol>
<li>This is another one of those really easy things that gets more complicated the more people talk about it. For Aeon, use the scripts from <a href="http://xbmc.org/forum/showthread.php?t=56423">here</a> and save yourself some time.</li>
<li>Install git client; sudo apt-get install git-core</li>
<li>git clone git://github.com/ &#8220;/home/xbmc/.xbmc/skin/&#8221;<br />
e.g. git clone git://github.com/HitcherUK/Alaska.git &#8220;/home/xbmc/.xbmc/skin/Alaska&#8221;</li>
</ol>
<p><strong>VI. Password protected Samba share to transfer files to the Revo</strong></p>
<ol>
<li>sudo apt-get install samba</li>
<li>sudo nano /etc/samba/smb.conf</li>
<li>sudo smbpasswd -a [username]. Unlike in the Windows world where the shares use a local account for authentication, samba maintains it&#8217;s own user db. I&#8217;m sure somebody smarter than me knows how to get samba to look at linux local accounts, but for my purposes simply mirroring the user/pass of the local account in samba works.</li>
<li>The tail of my smb.conf file, sharing out two password protected directories.<br />
<code>[XBMC Skins]<br />
path = /home/xbmc/.xbmc/skin</p>
<p>security = user [shared_folder]<br />
public = no<br />
read only = no<br />
guest ok = no<br />
writeable = yes<br />
printable = no<br />
create mask = 0755<br />
force create mode = 0755<br />
directory mask = 0775<br />
force directory mode = 0775</p>
<p>[XBMC Aeon Backdrops]<br />
path = "/home/xbmc/Aeon Backdrops"</p>
<p>security = user [shared_folder]<br />
public = no<br />
read only = no<br />
guest ok = no<br />
writeable = yes<br />
printable = no<br />
create mask = 0755<br />
force create mode = 0755<br />
directory mask = 0775<br />
force directory mode = 0775</code></li>
</ol>
<p><strong>VII. Xorg changes</strong></p>
<ol>
<li>sudo cp /etc/X11/xorg.conf /etc/X11/xorg.orig</li>
<li>sudo nano /etc/X11/xorg.conf</li>
<li>If XBMC boots to a command prompt, you did something wrong. Comment out your change and restart.</li>
<li>Gamma: on my TV XBMC is way too dark so I needed to adjust the gamma. On the XBMC forums, somebody posted that gamma was specified in the form: gamma r g b; calling out gamma values for each channel. Turns out with XBMC Live, it needs a single gamma value, e.g. gamma 1.2, or it pukes. <code>[If you have the opposite problem where the gui is bright but your movies are too dark, enable VDPAU studio level color conversion (need to look up where this is located)]</code></li>
<li>Jitter/Judder: <code>[I'm still messing around with these to see if any work, as it stands some of these modifications make my install puke to command prompt]</code><br />
From the revouser thread <a href="http://www.revouser.com/forum/viewtopic.php?f=7&amp;t=33#p271">here</a>.<br />
<span style="text-decoration: underline;">Monitor Section:</span><br />
HorizSync 31.0 &#8211; 69.0<br />
VertRefresh 59.0 &#8211; 86.0<br />
<code>[confirmed the above works and made a large difference visually]</code><br />
<span style="text-decoration: underline;">Device Section:</span><br />
Option &#8220;DynamicTwinView&#8221; &#8220;False&#8221;<br />
Option &#8220;TripleBuffer&#8221; &#8220;True&#8221;<br />
<code>[above works, but no visual change that I can detect]</code><br />
<span style="text-decoration: underline;">Screen Section:</span><br />
Option &#8220;TwinView&#8221; &#8220;False&#8221;<br />
Option &#8220;AddARGBGLXVisuals&#8221; &#8220;True&#8221;<br />
<code>[untested]</code><br />
<span style="text-decoration: underline;">Add an Extensions Section:</span><br />
Section Extensions<br />
Option &#8220;Composite&#8221; &#8220;Disable&#8221;<br />
EndSection<br />
<code>[untested, not sure that this would make a huge difference]</code></li>
<li>There is mention that this:<br />
Screen Section<br />
Option &#8220;UseEDIDFreqs&#8221; &#8220;False&#8221;<br />
worked too.<br />
<code>[untested]</code></li>
<li>There&#8217;s also a post <a href="http://xbmc.org/forum/showpost.php?p=461163&#038;postcount=10">here</a> detailing how to add your own modelines into xorg.</li>
</ol>
<p><strong>VIII. Automount USB</strong></p>
<ol>
<li>sudo apt-get install usbmount</li>
<li>sudo nano /etc/usbmount/usbmount.conf add ntfs to filesystems string.</li>
</ol>
<p><strong>IX. Resume from USB</strong></p>
<ol>
<li>I had just assumed that this would be configured by default; I&#8217;m increasingly becoming annoyed with all the little fiddling that you have to do for things that should already be configured by default. That and finding all of the information to get stuff to work. Digging through fifty pages of forum postings isn&#8217;t my idea of fun.</li>
<li>Follow <a href="http://xbmc.org/wiki/?title=Enable_Wake-On-Device">this guide</a> from the wiki.</li>
<li>cat /proc/acpi/wakeup | grep ^USB</li>
<li>You should see something like this:<br />
USB0      S3      disabled pci:0000:00:02.0<br />
USB2      S3      disabled pci:0000:00:02.1</li>
<li>sudo su and nano /etc/rc.local and add:<br />
echo USB0&gt;/proc/acpi/wakeup<br />
echo &#8220;rc.local has completed sucessfully.&#8221; &gt;&gt; /tmp/resume.log (optional)</li>
<li><code>[I need to track down the post I found that actually set this as a script to only echo out the enable if it wasn't already enabled.]</code></li>
<li><em>Don&#8217;t enabled USB2 otherwise the computer will wake up immediately after suspend.</em></li>
<li>Now that that&#8217;s over with there&#8217;s another little bit that isn&#8217;t mentioned in that wiki that needed to be enabled on my 1600. Usbcore.autosuspend=-1</li>
<li>sudo nano /boot/grub/menu.lst</li>
<li>in the first entry (not safe mode) append &#8220;usbcore.autosuspend=-1&#8243; (without quotes) to the end of &#8216;kernel&#8217; line.</li>
<li>Reboot.</li>
<li>I see a lot of posts about resume scripts and the remote not working correctly after resume. I&#8217;m still waiting for my newegg order to show up so the previous instructions were only tested using the keyboard.</li>
</ol>
<p><strong>X. Upgrading RAM</strong></p>
<ol>
<li><code>[link to youtube video needed]</code></li>
<li>Needed: philips screwdriver and small standard screwdriver / jeweler&#8217;s screwdriver.</li>
<li>Where the wobbly stand snaps in, there will be a warranty sticker covering a philips screw, Cut the sticker and remove the screw.</li>
<li>Looking at the black top plate, notice the hairline seam on the outer white case.  Run your finger nail down that seam to seperate it slightly.  Enough that you can get the standard screwdriver in without chunking up the plastic.</li>
<li>Wiggle standard screwdriver back and forth to pry the top of the case up releasing the tabs holding it.  Top of case will come off as one piece.</li>
<li>Insert memory module</li>
<li><code>[personal preference]</code> plug in power, keyboard and monitor; boot into bios and make sure the ram is recognized before replacing top case.</li>
<li>In bios adjust <code>[correct term?]</code> video cache from 256mb to 512mb.</li>
</ol>
<p><strong><u>Advanced</u></strong><br />
<strong>XI. Compile and Install XBMC from source</strong><br />
This is incredibly easy, but all of the posts I found were kind of wonky; even the wiki is missing some vital info that you need.  I&#8217;m assuming that you&#8217;re already running XBMC Live and want to latest &#8230; the pre-compiled PPAs are supposed to do this for you but I never can seem to get them to work.</p>
<ol>
<li><code>sudo apt-get update</code> (If you haven&#8217;t already done this previously when you first installed).</li>
<li><code>sudo apt-get build-dep xbmc</code></li>
<li>Here I&#8217;m assuming that you already have nvidia drivers installed from the previous steps.<br />
<code>sudo apt-get install libvdpau-dev</code><br />
This is needed so that you can enable vdpau during configure.</li>
<li><code>sudo apt-get install subversion</code></li>
<li>Either create a directory that you want to download source to, or a &#8216;trunk&#8217; directory will be created in the current directory.</li>
<li><code>svn co -r <version#> http://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk</code><br />
I&#8217;m probably downloading <em>way</em> too much of the source but the previous posted instructions I&#8217;d found called out &#8216;/branches/linuxport/XBMC&#8217; which doesn&#8217;t exist.  I should probably spend some time looking to see what branch I should be downloading.</li>
<li><code>cd trunk</code></li>
<li><code>./bootstrap</code></li>
<li><code>./configure --prefix=/usr --disable-debug --disable-ccache --enable-vdpau</code><br />
prefix=/usr to specify the directory to install to; for some reason I found my Live installed to /usr/xbmc instead of the stated default of /usr/share/xbmc.  Disable debug, self explanatory.  Disable ccache, no idea what this does, copied it from a post?  Enable vdpau; this is supposed to be enabled by default but in my first configure run I noticed that it was disabled.</li>
<li><code>make</code></li>
<li>Prepare to wait a long time if you&#8217;re doing this directly on the AR1600.  Usually takes me an hour or so &#8230; don&#8217;t have exact time since I walk away and come back.</li>
<li><code>sudo make install</code></li>
</ol>
<p><strong>Conclusion</strong><br />
My final hurdle in the next few days, once it arrives from Newegg, is to hook up an ir receiver and get my Harmony remote working with XBMC. From the number of posts on the subject I&#8217;m in for a long couple of days.<br />
Aside from the learning curve of open-source software, for $199 the Revo 1600 is an incredible HTPC bargain. Right now my focus is entirely on playing 1080p MKVs but soon I&#8217;ll move on to Music and Photos. From what I can gather, XBMC has native ALAC support, as well as UPNP (SimplifyMedia server as a backup) support. iPhoto is going to be a beast and I don&#8217;t think I&#8217;ll ever get that conquered. I&#8217;ll probably have to point XBMC at the iPhoto folder structure where it&#8217;s backed up on the server. Or I could just not mess with it. Picture support isn&#8217;t that exciting to me.<br />
Current cost:<br />
Acer Aspire Revo 1600 $199<br />
Crucial 1GB DDR2 800 (PC2 6400) 200-pin SO-DIMM $29.98<br />
AVS Gear Certified MCE Remote $25.41<br />
Total $254.39<br />
I probably could&#8217;ve gotten a Popcorn Hour for just a little more and been done with it. I do plan on checking out the Boxee beta when it goes public next month.<br />
At first I really wanted the Revo 36xx because of the optical out, dual-core proc, extra gig of ram and the wireless N card. But, turns out, the extra options weren&#8217;t necessary. Once I get this one working flawlessly, I&#8217;ll probably get another one and stick it downstairs with a wireless extender.</p>
]]></content:encoded>
			<wfw:commentRss>http://devolblog.devolfamily.com/xbmc-on-an-acer-aspire-revo-1600/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>PS3 Media Server changing default icon.</title>
		<link>http://devolblog.devolfamily.com/ps3-media-server-changing-default-icon/</link>
		<comments>http://devolblog.devolfamily.com/ps3-media-server-changing-default-icon/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 17:21:01 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://devolblog.devolfamily.com/?p=1227</guid>
		<description><![CDATA[[old] Change default icon for PS3 Media Server]]></description>
			<content:encoded><![CDATA[<p>The PS3MS default icon bah-lows.  I tried using all manner of exe resource editors to change the internally embedded icons but after the program wouldn&#8217;t run.  Finally I came across <a href="http://ps3mediaserver.org/forum/viewtopic.php?f=6&#038;t=3583&#038;p=15767&#038;hilit=+icon#p15767">this post</a> on the PS3MS forums.</p>
<ol>
<li>If PS3 Media Server is running, shut it down.</li>
<li>In &#37;program files&#37;&#92;PS3 Media Server&#92; find pms.jar.</li>
<li>Rename pms.jar (make a copy just in case) to pms.zip and open with Windows Explorer.</li>
<li>Find &#92;resources&#92;images&#92;</li>
<li>Replace Play1Hot_256 (and probably Play1Hot_32 and Play1Hot_16 too).</li>
<li>Close and let Windows Explorer recompress.</li>
<li>Change name back to pms.jar and restart PS3 Media Server.</li>
</ol>
<p>The only thing I&#8217;d add is that the instructions only have you change out Play1Hot_256 but there are also resources for 16 and 32 that I changed out.  I didn&#8217;t leave those as default to see what happened, so if you still have the default small icons that&#8217;d be why.  Also, the main XMB icon under Video doesn&#8217;t preserve alpha.</p>
<p>I&#8217;m currently using <a href="http://mat-u.deviantart.com/art/MediaPlayer-Icon-31425819">this</a> icon I found on <a href="http://deviantart.com">deviantart</a>.</p>
<ul style="width:70%"><a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/medplay.ico"><img style="margin-right:20px;margin-bottom:20px;" src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/medplay-160x160.png" alt="medplay" title="medplay" width="100" height="100" class="alignleft size-thumbnail wp-image-1237" /></a></p>
<li><a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/medplay_blac.ico">black</a></li>
<li><a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/medplay_gree.ico">green</a></li>
<li><a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/medplay_purpl.ico">purple</a></li>
<li><a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/medplay_yello.ico">yellow</a></li>
</ul>
<div class="clear"></div>
<p>So far, I have to admit, I&#8217;m only using PS3 Media Server to stream .mkv (usually muxed with <a href="http://www.mkv2vob.com/">mkv2vob</a> first.  Sometimes .mkv transcodes can have audio sync issues.  But next up I&#8217;ll look into internet radio, the itunes library integration and web video feeds.</p>
]]></content:encoded>
			<wfw:commentRss>http://devolblog.devolfamily.com/ps3-media-server-changing-default-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PS3 Media Server movie / folder thumbnail icons.</title>
		<link>http://devolblog.devolfamily.com/ps3-media-server-movie-folder-thumbnail-icons/</link>
		<comments>http://devolblog.devolfamily.com/ps3-media-server-movie-folder-thumbnail-icons/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 05:47:49 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://devolblog.devolfamily.com/?p=1141</guid>
		<description><![CDATA[Thumbnail icons for PS3 Media Server]]></description>
			<content:encoded><![CDATA[<p>Part 2 in my PS3 Media Server series, icons for movies and folders.  This is should be covered extensively in the FAQ, and it may or may not be, I&#8217;m not going to bother checking.  Primarily this a resource on where to find movie art and icon templates.</p>
<p>The naming convention for assigning icons is %filename% (including extension).cover.png(or .jpg).  E.g. Man On Fire 1080p BluRay DTS.m2ts.cover.png.  Folders: create your folder and drop in a folder.png(or .jpg).  Image dimensions are 320&#215;240.</p>
<ul>[ Finding Artwork ]</p>
<li><a href="http://www.themoviedb.org">themoviedb.org</a><br />
Site is mainly for XBMC / Plex style media center apps but it&#8217;s a good resource for good quality artwork.  Look in the lower right corner for the movie poster.</li>
<li><a href="http://getvideoartwork.com">GetVideoArtwork (Beta)</a><br />
New one I just found a couple of weeks ago, geared toward iTunes artwork and sometimes slim pickings but really high quality.</li>
</ul>
<ul>[ Creating Icons ]</p>
<ul>PSD Templates: I did not create these templates, I found them in a forum thread about PS3MS thumbnails.  I believe it was <a href="http://www.avsforum.com/avs-vb/showthread.php?t=1117938&#038;page=3">this thread</a> on avsforum.  Click on the image to download the PSD.</p>
<li class="clear"><a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/ps3mediaserver_coverarttemplate_fullhd.psd"><img style="margin-bottom:20px;" src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/ps3mediaserver_coverarttemplate_fullhd-160x120.png" alt="ps3mediaserver_coverarttemplate_fullhd" title="ps3mediaserver_coverarttemplate_fullhd" width="160" height="120" class="alignright size-thumbnail wp-image-1156" /></a><strong>FullHD Template</strong><br />
1080p text, blue case and disc with blu-ray logo.  I turn off the blue glow layer. Create a new layer in the CoverArt Container group and paste in your artwork.  Use free transform with &lt;shift&gt; to size the artwork in the mask; save for web as png24 and name accordingly.</li>
<li class="clear"><a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/ps3mediaserver_coverarttemplate.psd"><img style="margin-bottom:20px;" src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/ps3mediaserver_coverarttemplate-160x120.png" alt="ps3mediaserver_coverarttemplate" title="ps3mediaserver_coverarttemplate" width="160" height="120" class="alignright size-thumbnail wp-image-1185" /></a><strong>Normal Template</strong><br />
HD text, blue case and disc with blu-ray logo.  Same instructions as the FullHD template above.  At one time I came across a version of this template with 720p text, which would be useful since I don&#8217;t have the font that was used.  Unfortunately, I haven&#8217;t been able to find it again.</li>
<li class="clear"><a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/ps3mediaserver_coverarttemplatesd.psd"><img style="margin-bottom:20px;" src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/ps3mediaserver_coverarttemplatesd-160x120.png" alt="ps3mediaserver_coverarttemplatesd" title="ps3mediaserver_coverarttemplatesd" width="160" height="120" class="alignright size-thumbnail wp-image-1188" /></a><strong>Standard Definition</strong><br />
SD text, silver box and disc with DVD and Widescreen logo.</li>
<li class="clear"><a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/da_bluray_box.psd"><img style="margin-bottom:20px;" src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/da_bluray_box-160x120.png" alt="da_bluray_box" title="da_bluray_box" width="160" height="120" class="alignright size-thumbnail wp-image-1193" /></a><strong>Blu-ray box</strong><br />
Standard blu-ray box with a bit of alpha on the blue case.  Resize to 240&#215;240 for use with PS3MS (haven&#8217;t tried throwing the original 512&#215;512 at it to see what it&#8217;d do).</li>
<li class="clear"><a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/tv-show-thumb-template.psd"><img style="margin-bottom:20px;" src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/tv-show-thumb-template-160x120.png" alt="tv-show-thumb-template" title="tv-show-thumb-template" width="160" height="120" class="alignright size-thumbnail wp-image-1204" /></a><strong>TV Show</strong><br />
Samsung HDTV for TV shows; great to use as a folder image.  I hide the light_retouch and shadow layer.</li>
</ul>
<ul class="clear">Applications:</p>
<li><a href="http://www.worldinhidef.com/ps3ms/thumbnailgenerator/">Thumbnail Generator</a><br />
Search Amazon or upload your own image, scale it and then apply it to different templates.  Amazing home grown webapp, but I don&#8217;t really like the available templates.</li>
<li><a href="http://bohemiancoding.com/slipcover/index.html">SlipCover</a> (Mac only).<br />
<img  style="margin-bottom:20px;" src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/11/sunshine-1080p-bluray-dtsm2tscover-160x120.png" alt="sunshine-1080p-bluray-dtsm2tscover" title="sunshine-1080p-bluray-dtsm2tscover" width="160" height="120" class="alignright size-thumbnail wp-image-1209" />This is what I&#8217;m currently using; they&#8217;re larger than the other templates that include the disc, and the case is sharper than the PSD template case.  Two big draw backs, Mac only and its output is .icns which requires a couple of extra steps to get to .png.</li>
<li class="clear"></li>
</ul>
</ul>
<p>Scrolling through 320&#215;240 icons on a 1080p display is a little rough.  Picking out details in the icons is next to impossible, but it is nice to have them in addition to the standard filename text.  Also, it can take awhile for the PS3 to show the icons; supposedly this can be sped up by using the Media Library option, but I haven&#8217;t had a lot of luck with it. Regardless, it&#8217;s still a <em>lot</em> better than the default PS3MS icon.  </p>
<p><a href="../ps3-media-server-changing-default-icon">Part 3: Changing the PS3MS default icon.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://devolblog.devolfamily.com/ps3-media-server-movie-folder-thumbnail-icons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PS3 Media Server running as a service on Windows 2008R2</title>
		<link>http://devolblog.devolfamily.com/ps3-media-server-running-as-a-service-on-windows-2008r2/</link>
		<comments>http://devolblog.devolfamily.com/ps3-media-server-running-as-a-service-on-windows-2008r2/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 03:22:31 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://devolblog.devolfamily.com/?p=1129</guid>
		<description><![CDATA[PS3 Media Server as a service]]></description>
			<content:encoded><![CDATA[<p>First in a series of three posts about <a href="http://ps3mediaserver.org/forum/viewtopic.php?f=2&#038;t=3217">PS3 Media Server</a>.  Install is a breeze, just run the installer (as admin) and if you don&#8217;t have JRE it&#8217;ll download and install it for you; if you need x64 you&#8217;ll need to <a href="http://java.sun.com/javase/downloads/index.jsp">download it manually</a>.  </p>
<p>The problem I encountered on Windows 2008R2 was that the provided, &#8216;Install as a Windows Service&#8217; option didn&#8217;t work correctly.  It uses <a href="http://wrapper.tanukisoftware.org">Java Service Wrapper</a> and seems to install and start correctly.  Netstat even shows it listening on the correct interface and correct port.  The only thing I could find, was the debug log showed that it was trying to use a temp directory that didn&#8217;t exist.  However, even creating that directory and making sure it had permissions, it still wasn&#8217;t working.  This may also be a problem on Windows 2008, I&#8217;m not sure and I didn&#8217;t find any mention of it on the PS3 Media Server <a href="http://ps3mediaserver.org/forum/">forums</a>.</p>
<p>The solution was to use good old instsrv / srvany from the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9D467A69-57FF-4AE7-96EE-B18C4790CFFD&#038;displaylang=en">Windows 2003 Resource Kit</a>.  Go through the normal process of using instsrv, naming your service and then pointing to srvany.  Edit the service in the registry, add a key for Parameters and then add two strings: AppDirectory and Application and modify them with the correct paths (self explanatory).  Optional: add a key for Description to the service key.  I&#8217;m not comfortable having an open source dlna server that&#8217;s running as Local System, and you can change it to Local Service or create an account to use.</p>
<p>The final step is to create a Windows Firewall exception for &#37;Program Files&#37;&#92;Java&#92;jre6&#92;bin&#92;javaw.exe on TCP 5001.  TCP 5001 is the default, if you forced it to a custom port you&#8217;ll need to substitute.</p>
<p>I like PS3MS over the competition like TVersity (but to be honest I haven&#8217;t checked around for the last 6mo or so) &#8230; and this is pretty lame.</p>
<p>Note: if you need to make any changes to the server, stop the service, load the program from the desktop, save your changes &#8211; quit, and then restart the service.</p>
<p><a href="../ps3-media-server-movie-folder-thumbnail-icons/">Part 2: PS3MS movie / folder thumbnail icons</a></p>
]]></content:encoded>
			<wfw:commentRss>http://devolblog.devolfamily.com/ps3-media-server-running-as-a-service-on-windows-2008r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Movie&#8217;s that don&#8217;t hold up: To Live and Die in L.A.</title>
		<link>http://devolblog.devolfamily.com/movies-that-dont-hold-up-to-live-and-die-in-la/</link>
		<comments>http://devolblog.devolfamily.com/movies-that-dont-hold-up-to-live-and-die-in-la/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 21:23:39 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://devolblog.devolfamily.com/?p=895</guid>
		<description><![CDATA[I use to f*cking love this movie when I was a teenager. Watched it again for the first time in forever last night, how disappointing. Underneath, it&#8217;s still a great movie. But wow, the effects are so awful that it kills it; totally doesn&#8217;t hold up. And while there are a lot of good actors, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.imdb.com/title/tt0090180/"><img src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2009/01/to_live_and_die_in_la_full.jpg" alt="to_live_and_die_in_la_full" title="to_live_and_die_in_la_full" width="179" height="280" class="alignleft size-full wp-image-896" /></a>I use to f*cking <em>love</em> this movie when I was a teenager.  Watched it again for the first time in forever last night, how disappointing.  Underneath, it&#8217;s still a great movie.  But wow, the effects are so awful that it kills it; totally doesn&#8217;t hold up.  And while there are a lot of good actors, some of the, um, performances, are a little, way, over the top.  And the pacing is so plodding compared to what we&#8217;re used to that I just about fell asleep.</p>
]]></content:encoded>
			<wfw:commentRss>http://devolblog.devolfamily.com/movies-that-dont-hold-up-to-live-and-die-in-la/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tropic Thunder: My vote for best movie of the summer.</title>
		<link>http://devolblog.devolfamily.com/tropic-thunder-my-vote-for-best-movie-of-the-summer/</link>
		<comments>http://devolblog.devolfamily.com/tropic-thunder-my-vote-for-best-movie-of-the-summer/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 00:26:34 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://devolblog.devolfamily.com/?p=724</guid>
		<description><![CDATA[Okay, no, not really. How about, &#8216;Best movie I can remember seeing. That wasn&#8217;t Dark Knight.&#8217; By itself, as a hollywood behind-the-scenes parody, at first glance it&#8217;s standard stuff. But three things made this one for me. Robert Downey Jr. That one&#8217;s a given, I mean he&#8217;s the big punch line that&#8217;s supposed to get [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2008/09/tropic_thunder_ver4.jpg" alt="" title="tropic_thunder_ver4" width="180" height="253" class="alignright size-full wp-image-725" />Okay, no, not really.  How about, &#8216;Best movie I can remember seeing.  That wasn&#8217;t Dark Knight.&#8217;  </p>
<p>By itself, as a hollywood behind-the-scenes parody, at first glance it&#8217;s standard stuff.  But three things made this one for me.</p>
<ol>
<li>Robert Downey Jr.  That one&#8217;s a given, I mean he&#8217;s the big punch line that&#8217;s supposed to get everybody to go see it.  But he chews up every scene so much, that you begin just watching the movie to see what his next line is.</li>
<li>There&#8217;s a layer of very subtle humor underneath the obvious schtick.  It&#8217;s hard to catch, it&#8217;ll just a be a line said off screen.</li>
<li>Tom Cruise.  Yes, Tom Cruise.  Wait to see before you judge.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://devolblog.devolfamily.com/tropic-thunder-my-vote-for-best-movie-of-the-summer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Movie Review: Indiana Jones the Kingdom of the Crystal Skull</title>
		<link>http://devolblog.devolfamily.com/movie-review-indiana-jones-the-kingdom-of-the-crystal-skull/</link>
		<comments>http://devolblog.devolfamily.com/movie-review-indiana-jones-the-kingdom-of-the-crystal-skull/#comments</comments>
		<pubDate>Fri, 30 May 2008 22:38:31 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://devolblog.devolfamily.com/?p=293</guid>
		<description><![CDATA[Holy jeebus I wanted to like this movie. I&#8217;ve had the theme song as my ringtone for months now. But, if I&#8217;d known that the entire screenplay was Lucas, I&#8217;d have never gone. The man has either gone senile, or he never had any talent or early on he surround himself with it, sucked it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.imdb.com/title/tt0367882/"><img src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2008/05/indynewposter.jpg" alt="" title="indynewposter" width="160" height="240" class="alignleft size-medium wp-image-294" /></a>Holy jeebus I wanted to like this movie.  I&#8217;ve had the theme song as my ringtone for months now.  But, if I&#8217;d known that the entire screenplay was Lucas, I&#8217;d have never gone.  The man has either gone senile, or he never had any talent or early on he surround himself with it, sucked it dry, and now nobody will get near him.  Either way, this movie is a bomb.    </p>
<p>There&#8217;s a quote in <a href="http://www.imdb.com/title/tt0137523/">Fight Club</a> where the narrator is describing insomnia as viewing the world as a copy of a copy.  That&#8217;s pretty much what KCS is.  Everything&#8217;s there, it just has no feeling to it; it&#8217;s dull and rounded.  </p>
<p>The 3rd Indy movie, while still enjoyable, was already milked dry.  I&#8217;m guessing this is about the time Lucas had strapped on his depends and started shitting on his screenplays.  You can start to feel it in the short round character/mine cart chase in Temple of Doom, but for the most part it tries to take itself seriously.  By Last Crusade they&#8217;d given up and were going mostly for comedy.</p>
<p>I&#8217;ll just leave it at this; any movie that uses CG gophers for comedic effect, and is not titled &#8216;Caddyshack&#8217; probably isn&#8217;t going to be so good.  # of gopher sceens in Crystal Skull?  Three.</p>
]]></content:encoded>
			<wfw:commentRss>http://devolblog.devolfamily.com/movie-review-indiana-jones-the-kingdom-of-the-crystal-skull/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brilliant Shell commercial, &#8220;Circuit&#8221;</title>
		<link>http://devolblog.devolfamily.com/brilliant-shell-commercial-circuit/</link>
		<comments>http://devolblog.devolfamily.com/brilliant-shell-commercial-circuit/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 23:35:11 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[Distraction]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Formula 1]]></category>
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://devolblog.devolfamily.com/index.php/2007/11/30/brilliant-shell-commercial-circuit/</guid>
		<description><![CDATA[I wanted this in the highest possible quality, so with my slow server connection this may take awhile to download. Highly suggest just pausing it, letting it download and then watching it. I don&#8217;t know how they pulled shutting down streets in Manhattan, Rio and Rome to get this commercial shot. Monoco would&#8217;ve been easy [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted this in the highest possible quality, so with my slow server connection this may take awhile to download. Highly suggest just pausing it, letting it download and then watching it.</p>
<p>I don&#8217;t know how they pulled shutting down streets in Manhattan, Rio and Rome to get this commercial shot. Monoco would&#8217;ve been easy during gran prix weekend. And there&#8217;s <strong>no</strong> CGI.</p>
<p>Video after the jump.<br />
<span id="more-261"></span><br />
<a href="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2008/08/shell_-_circuit.mov">shell : circuit</a><br />
<object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="480" height="286" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"><param name="src" value="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2008/08/shell_-_circuit.mov" /><embed type="video/quicktime" width="480" height="286" src="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2008/08/shell_-_circuit.mov"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://devolblog.devolfamily.com/brilliant-shell-commercial-circuit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://devolblog.devolfamily.com/wordpress/wp-content/uploads/2008/08/shell_-_circuit.mov" length="8977053" type="video/quicktime" />
		</item>
	</channel>
</rss>

