<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:admin="http://webns.net/mvcb/"
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:content="http://purl.org/rss/1.0/modules/content/">

	<channel>
	
	<title>Main Content</title>
	<link>http://www.carnali.com/index.php</link>
	<description></description>
	<dc:language>en</dc:language>
	<dc:creator>al@carnali.com</dc:creator>
	<dc:rights>Copyright 2010</dc:rights>
	<dc:date>2010-02-02T02:11:21+00:00</dc:date>
	<admin:generatorAgent rdf:resource="http://expressionengine.com/" />
	

	<item>
	  <title>Avatar</title>
	  <link>http://www.carnali.com/index.php/avatar</link>
	  <guid>http://www.carnali.com/index.php/avatar#When:03:11:21Z</guid>
	  <description><![CDATA[<p><img class="leftimg" src="/images/site_images/posts_images/avatar.gif" alt="Avatar poster"><br />
I finally got to see Avatar this weekend.&nbsp; We went to the 3:30PM show thinking that it would be empty, but it was anything but; the place was packed.&nbsp; When we arrived the theater was about half full, but by the time the movie started it was almost sold out.</p>

<p>The movie is everything they say it is.&nbsp; The three hours flew by.</p>

<p>Since everyone else has already reviewed Avatar by now, it doesn&#8217;t seem a good use of my time to post another review, so I&#8217;ll just say that it is definitely worth seeing.&nbsp; The CGI is amazing, the 3D is a blast and the movie is action packed without going over the top.&nbsp; The story has been done before a whole bunch of times, but what story hasn&#8217;t.&nbsp; If you go to see it, make sure you see the 3D version.&nbsp; Although the movie would stand up well without 3D, you&#8217;d still be missing a whole lot of the experience.</p>

<p>Before it leaves the theaters, I think I would like to see it one more time at an IMAX theater.&nbsp; I&#8217;m not a big fan of IMAX, but I suspect in this case it might be worth doing.
</p>]]></description> 
	  <dc:subject>Movies,</dc:subject>
	  <dc:date>2010-02-02T03:11:21+00:00</dc:date>
	</item>

	<item>
	  <title>Programatically Shutdown of a Computer without Administrative Privileges</title>
	  <link>http://www.carnali.com/index.php/programatically_shutdown_of_a_computer_without_administrative_privileges</link>
	  <guid>http://www.carnali.com/index.php/programatically_shutdown_of_a_computer_without_administrative_privileges#When:18:42:53Z</guid>
	  <description><![CDATA[<p>I recently fixed a bug at work where one of our applications could not shutdown the computer it was running on when the user logged out.&nbsp; It turned out the problem was introduced when we recently modified the software to run under a non-administrator account.&nbsp; We had made the system more secure, but the program no longer had sufficient privileges to shutdown the computer.&nbsp; The fix for this was to have the software invoke the shutdown program using an administrator account.&nbsp; Since the solution might be useful to someone else, I&#8217;m posting the code that I implemented.</p>

<p>Code appears after the break&#8230;<br />
<span id='wlp_break'></span>
</p><div class="codeblock"><code><span style="color: #000000">
<span style="color: #007700">public&nbsp;</span><span style="color: #0000BB">void&nbsp;ShutdownSystem</span><span style="color: #007700">()<br /></span><span style="color: #0000BB">&#123;<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;SecureString&nbsp;encrypts&nbsp;the&nbsp;contents&nbsp;in&nbsp;memory&nbsp;to&nbsp;prevent&nbsp;unauthorized&nbsp;access<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">System</span><span style="color: #007700">.</span><span style="color: #0000BB">Security</span><span style="color: #007700">.</span><span style="color: #0000BB">SecureString&nbsp;password&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">System</span><span style="color: #007700">.</span><span style="color: #0000BB">Security</span><span style="color: #007700">.</span><span style="color: #0000BB">SecureString</span><span style="color: #007700">();<br /><br />&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;Create&nbsp;the&nbsp;password&nbsp;a&nbsp;character&nbsp;at&nbsp;a&nbsp;time<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">.</span><span style="color: #0000BB">AppendChar</span><span style="color: #007700">(</span><span style="color: #DD0000">'M'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">.</span><span style="color: #0000BB">AppendChar</span><span style="color: #007700">(</span><span style="color: #DD0000">'y'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">.</span><span style="color: #0000BB">AppendChar</span><span style="color: #007700">(</span><span style="color: #DD0000">'@'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">.</span><span style="color: #0000BB">AppendChar</span><span style="color: #007700">(</span><span style="color: #DD0000">'P'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">.</span><span style="color: #0000BB">AppendChar</span><span style="color: #007700">(</span><span style="color: #DD0000">'a'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">.</span><span style="color: #0000BB">AppendChar</span><span style="color: #007700">(</span><span style="color: #DD0000">'s'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">.</span><span style="color: #0000BB">AppendChar</span><span style="color: #007700">(</span><span style="color: #DD0000">'s'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">.</span><span style="color: #0000BB">AppendChar</span><span style="color: #007700">(</span><span style="color: #DD0000">'w'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">.</span><span style="color: #0000BB">AppendChar</span><span style="color: #007700">(</span><span style="color: #DD0000">'o'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">.</span><span style="color: #0000BB">AppendChar</span><span style="color: #007700">(</span><span style="color: #DD0000">'r'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">.</span><span style="color: #0000BB">AppendChar</span><span style="color: #007700">(</span><span style="color: #DD0000">'d'</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">.</span><span style="color: #0000BB">MakeReadOnly</span><span style="color: #007700">();<br /><br />&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;Invoke&nbsp;the&nbsp;shutdown&nbsp;process,&nbsp;using&nbsp;administrator&nbsp;privileges<br />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">System</span><span style="color: #007700">.</span><span style="color: #0000BB">Diagnostics</span><span style="color: #007700">.</span><span style="color: #0000BB">Process</span><span style="color: #007700">.</span><span style="color: #0000BB">Start</span><span style="color: #007700">(@</span><span style="color: #DD0000">"c:\windows\system32\shutdown.exe"</span><span style="color: #007700">,&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #DD0000">"-s&nbsp;-t&nbsp;0&nbsp;-f"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"Administrator"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">password</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"MyDomain"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">&#125;&nbsp;</span>
</span>
</code></div>]]></description> 
	  <dc:subject>C#,</dc:subject>
	  <dc:date>2010-01-30T18:42:53+00:00</dc:date>
	</item>

	<item>
	  <title>Testing the Latest Version of Expression Engine</title>
	  <link>http://www.carnali.com/index.php/testing_the_latest_version_of_expression_engine</link>
	  <guid>http://www.carnali.com/index.php/testing_the_latest_version_of_expression_engine#When:17:57:56Z</guid>
	  <description><![CDATA[<p>I just installed the latest version of Expression Engine, the backend software used to run this site, and I&#8217;m testing to make sure everything is running properly.&nbsp; If you can see this post, things are working as expected.&nbsp; If you can&#8217;t, then you can&#8217;t read this so it doesn&#8217;t matter.</p>

]]></description> 
	  <dc:subject>Site Notes,</dc:subject>
	  <dc:date>2010-01-30T17:57:56+00:00</dc:date>
	</item>

	<item>
	  <title>Dolphins are so cool</title>
	  <link>http://www.carnali.com/index.php/dolphins_are_so_cool</link>
	  <guid>http://www.carnali.com/index.php/dolphins_are_so_cool#When:11:57:55Z</guid>
	  <description><![CDATA[<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/pQ50PYMXDCQ&amp;hl=en_US&amp;fs=1&amp;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/pQ50PYMXDCQ&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>]]></description> 
	  <dc:subject>Cool Stuff,</dc:subject>
	  <dc:date>2010-01-21T11:57:55+00:00</dc:date>
	</item>

	<item>
	  <title>Hitler finds out Scott Brown won Massachusetts</title>
	  <link>http://www.carnali.com/index.php/hitler_finds_out_scott_brown_won_massachusetts</link>
	  <guid>http://www.carnali.com/index.php/hitler_finds_out_scott_brown_won_massachusetts#When:11:42:45Z</guid>
	  <description><![CDATA[<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/c4aQCiRjvZY&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/c4aQCiRjvZY&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object>]]></description> 
	  <dc:subject>Local,</dc:subject>
	  <dc:date>2010-01-21T11:42:45+00:00</dc:date>
	</item>

	<item>
	  <title>Scott Brown Wins Big!!!</title>
	  <link>http://www.carnali.com/index.php/scott_brown_wins_big</link>
	  <guid>http://www.carnali.com/index.php/scott_brown_wins_big#When:02:34:32Z</guid>
	  <description><![CDATA[<p>For over thirty years, I&#8217;ve been voting in Massachusetts.&nbsp; In all that time, I think that maybe two candidates that I have voted for have actually been elected to office.&nbsp; It&#8217;s been a frustrating thirty years, but today may have made it all worth it.</p>

<p>I didn&#8217;t have a whole lot of hope for Scott Brown being successful in this election.&nbsp; My wife had been talking about him for some time and was pretty impressed by him.&nbsp; Feeling like Charlie Brown with Lucy holding the football, I refused to get my hopes up, fearing that once again my heart would be torn out.&nbsp; </p>

<p>I was wrong.</p>

<p>Brown was the right person in the right place at the right time.&nbsp; People have been frustrated with the arogance of the Democrats.&nbsp; The taxpayers (as opposed to the leaches) have let them know that we did not want the Democrats vision of health care.&nbsp; We warned them.&nbsp; We showed up at teapartys.&nbsp; We wrote letters and e-mails but we were ignored and looked down upon.</p>

<p>The arrogance of Obama is astonishing.&nbsp; The man has accomplished little in his life yet he still believes that he&#8217;s smarter than us and we should just shut up and do what he says.&nbsp; </p>

<p>That&#8217;s not the way that it works Mr. President.&nbsp; Consider this a warning from the people in charge.&nbsp; You work for us.&nbsp; We don&#8217;t work for you. Remember that.</p>

<p>Congratulations to Scott Brown.&nbsp; You had the courage to take on the Democratic Machine in Massachusetts when the rest of us had given up.&nbsp; Thank you.</p>

<p>A few days ago, it looked like it was over for the USA as we knew it.&nbsp; Tonight, that has all changed.&nbsp; Who would have thought that the Second American Revolution would begin in Massachusetts.</p>

]]></description> 
	  <dc:subject>Local,</dc:subject>
	  <dc:date>2010-01-20T02:34:32+00:00</dc:date>
	</item>

	<item>
	  <title>Learning How To Fly</title>
	  <link>http://www.carnali.com/index.php/learning_how_to_fly</link>
	  <guid>http://www.carnali.com/index.php/learning_how_to_fly#When:11:49:17Z</guid>
	  <description><![CDATA[<object width="400" height="225"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=4038064&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=4038064&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object><p><a href="http://vimeo.com/4038064">Timescapes Timelapse: Learning to Fly</a> from <a href="http://vimeo.com/timescapes">Tom Lowe @ Timescapes</a> on <a href="http://vimeo.com">Vimeo</a>.</p>

<p>If you haven&#8217;t already seen this, you should check it out.&nbsp; It&#8217;s a really cool timelapse nature video set against some music by Pink Floyd.</p>

<p>Don&#8217;t forget to turn up your sound!
</p>]]></description> 
	  <dc:subject>Cool Stuff,</dc:subject>
	  <dc:date>2010-01-13T11:49:17+00:00</dc:date>
	</item>

	<item>
	  <title>Broken Elliptical</title>
	  <link>http://www.carnali.com/index.php/my_elliptical_broke</link>
	  <guid>http://www.carnali.com/index.php/my_elliptical_broke#When:02:38:23Z</guid>
	  <description><![CDATA[<p><img class="leftimg" src="/images/site_images/posts_images/horizone900.jpg" alt="Horizon e900 elliptical"><br />
About a year and a half ago, in an effort to get fit, we purchased a Horizon E900 Elliptical from Dicks Sporting Goods in Leominster, MA.</p>

<p>Before I make any major purchase I do a lot of research and for the price we were willing to pay, this appeared to be the best model available.&nbsp; People that owned it seemed to think highly of it.</p>

<p>The unit has worked well.&nbsp; On average, I probably use it two or three times a week and although I still weigh more then I&#8217;d like, it has done a pretty good of keeping me fit.</p>

<p>Tonight, I was about half way though my thirty minute session when I heard a strange noise coming from the bottom of the pedal arm.&nbsp; I didn&#8217;t stop immediately, as I probably should have, but it didn&#8217;t matter because within a few seconds, the pedal arm had jumped out of the track and was moving on the floor.&nbsp; I got off the unit and knelt down to see what was going on and found that the axle on the inside right wheel had sheared off.&nbsp; Bummer.</p>

<p>I&#8217;m not surprised that something is broken on the unit, because it does take a lot of abuse in it&#8217;s day to day operation, but I am surprised by the part that did break.&nbsp; It seems like it shouldn&#8217;t be a high stress area.&nbsp; The wheel just moves back and forth in the track and shouldn&#8217;t really be taking a lot of abuse.&nbsp; I suspect the part was just defective.</p>

<p>I&#8217;ve sent an e-mail to the company to see if that part is covered under the warranty and also inquired as to how much it will cost if it is not.&nbsp; Hopefully I&#8217;ll get a response tomorrow and have the thing fixed in the next week or so.</p>

<p>It must be my day for breaking things.&nbsp; Shortly after the elliptical broke, I was attempting to cut off a piece of cheddar cheese with a knife an the wooden handle snapped in two.&nbsp; Maybe I&#8217;m just getting too strong from all the work I&#8217;ve been doing on the elliptical.
</p>]]></description> 
	  <dc:subject>What&apos;s Happening,</dc:subject>
	  <dc:date>2010-01-13T02:38:23+00:00</dc:date>
	</item>

	<item>
	  <title>War of the Worlds &#45; 2005 (Movie)</title>
	  <link>http://www.carnali.com/index.php/war_of_the_worlds_2005_movie</link>
	  <guid>http://www.carnali.com/index.php/war_of_the_worlds_2005_movie#When:23:33:30Z</guid>
	  <description><![CDATA[<p><img class="leftimg" src="/images/site_images/reviews/wow.jpg" alt="War of the Worlds Image"><br />
<strong><br />
Tom Cruise : Ray Ferrier<br />
Dakota Fanning : Rachel<br />
Justin Chatwin : Robbie<br />
Miranda Otto : Mary Ann<br />
Tim Robbins : Harlan Ogilvy<br />
Directed by Steven Spielberg<br />
</strong></p>

<p>It’s quiz time. Which of the following best describes the reason that Steven Spielberg’s War of the Worlds was produced:</p>

<p>A. The original movie wasn’t all that good and the new version improves on it.<br />
B. The original movie was good but the director has a new take on the film<br />
C. The original movie was good, but If we put out a new version we’ll make a lot of money</p>

<p>Let’s see it’s not A because the original version of War of the Worlds was actually a pretty good movie and the new version didn’t improve on it one bit.</p>

<p>And it’s not B because the new version tells the same story as the old version; the new version breaks no new ground.</p>

<p>So it must be…</p>

<p>You guessed it C. Dollar signs were apparently foremost on the mind of Spielberg and his DreamWorks buddies when they decided to produce this picture.</p>

<p>It’s not really a bad movie, it just wasn’t really needed. The 1953 movie had already told this story quite well and the 2005 version does absolutely nothing to improve on it.</p>

<p>In the original version, Gene Barry plays the part of scientist Dr. Clayton Forrester, who has been sent to investigate a number of meteors that have crashed on the outskirts of a small town in California. While investigating, he meets Sylvia Van Buren, the daughter of a local minister, who is played by Ann Robinson. While waiting for the meteors to cool sufficiently to allow them to be analyzed, the meteors hatch and reveal alien ships that rise from the ground and proceed to attack and kill all in their path.</p>

<p>Forrester and Van Buren flee to Los Angles, gathering information about the aliens along the way in hopes of finding a way to stop their onslaught. While the military discovers that their most advanced weapons are useless against the aliens. Just when it seems all is lost, the aliens begin dieing on their own because they are not resistant to the microbes on our world.</p>

<p>In the Spielberg version the characters of Forrester and Van Buren are replaced by a dead beat dad Ray Ferrier, played by Tom Cruise, and his two kids, Rachel (Dakota Fanning) and Robbie (Justin Chatwin). All three are trying to find their way back to Boston so the children can reunite with their mother and step-father during the alien onslaught.</p>

<p>Instead of arriving in meteors, the aliens are transported to Earth in “lighting bolts” which inserts them into their ships that have been hidden within the Earth for millions of years. Like in the 1953 version, the aliens start killing all in sight and are once again brought down through the mysterious magic of microbes.</p>

<p>As you can see, the two films a pretty similar.</p>

<p>The acting in WOW 2005, was decent. Cruise does a pretty good job with his character as do Fanning and Chatwin but it’s not much of a stretch for any of them; these are pretty one dimensional stereotypical characters so there is only so much that can be done with them.</p>

<p>Special effects were good, with the early sequences involving the rise of the aliens from the Earth being the most impressive. The scene taking place in a New York neighborhood with the people coming out into their yards to watch the massive lightening storm was actually quite terrifying. I found myself anxiously waiting for the characters to get back into their homes because I knew the worst was yet to come.</p>

<p>The trek to Boston, that made up the majority of the movie allowed Spielberg to showcase a lot of special effects but beyond that it didn’t add much to the movie. During the trip, Ferrier and his daughter are befriended by a man, played by Tim Robbins, who in the end turns out to be a right-wing survivalist nut case, which once again demonstrates that Spielberg will leave no stereotype unturned.</p>

<p>The end was pretty much anti-climactic with the family reuniting in Boston as the alien ships start falling from the sky accompanied by a voice over letting us know that the invaders couldn’t stand up to our microorganisms.</p>

<p>There were a couple of things that really annoyed me with this film.</p>

<p>First, the aliens apparently had scouted out Earth millions of years earlier and had buried their attack ships in preparation for the invasion. This just seems plain stupid.</p>

<p>Why would they be planning this so long?</p>

<p>Does any species really have the patience to wait a million years and if they did would they remember where they planned to attack?</p>

<p>And if they had visited here in the past, wouldn’t they have figured out the whole microbe thing already?</p>

<p>Next, what was the purpose of vacuuming people up, grinding up their bodies and spraying their guts all over the Earth?</p>

<p>Since Spielberg gave no explanation for this, I will assume it was just to add a gross out factor and make the movie a little scarier and bring in the teens. I just found it annoying.</p>

<p>If Spielberg really had to make this film, I would have hoped that he would have changed the ending in some way to make the payoff better for those of use familiar with the original. I had two controversial ideas that I think would have made this a much better film:</p>

<p>1. The aliens die, not from the naturally occurring microbes, but from all of the pollution that we’ve added to our to our planet. They could be sensitive to hydrocarbons, and the fact that we now have billions of cars on the Earth renders our planet useless to them. Oh the irony!</p>

<p>2. And this one is real controversial. During the trek to Boston Cruise’s character is abducted by the aliens and he finds he is able to destroy a ship from the inside, using hand grenades. What if to rid their planet of the alien menace, people start strapping explosives to their backs and become suicide bombers. (I told you it was controversial) Alright, given the current political climate this probably wouldn’t fly, but unlike Spielberg, at least I was trying to be creative.<br />
So here’s my advice. If you really want to see War of the Worlds (2005), then by all means do. It’s not a great movie but it’s somewhat entertaining. While your at it, make sure that you rent the 1953 George Pal version; although the special effects aren’t in the league with Spielberg’s version, the movie has a lot more heart and in my opinion is the definitive War of the Worlds movie.</p>

<p>6 out of 10 Stars</p>

]]></description> 
	  <dc:subject>Movies,</dc:subject>
	  <dc:date>2010-01-11T23:33:30+00:00</dc:date>
	</item>

	<item>
	  <title>White Heat (Movie)</title>
	  <link>http://www.carnali.com/index.php/white_heat_movie</link>
	  <guid>http://www.carnali.com/index.php/white_heat_movie#When:23:29:47Z</guid>
	  <description><![CDATA[<p><img class="leftimg" src="/images/site_images/reviews/whiteheat.jpg" alt="White Heat Image"><br />
<strong><br />
James Cagney : Arthur ‘Cody’ Jarrett<br />
Virginia Mayo : Verna Jarrett<br />
Edmond O’Brien : Vic Pardo/Hank Fallon<br />
Margaret Wycherly : Ma Jarrett<br />
Directed by Raoul Walsh<br />
</strong></p>

<p>White Heat is one of those rare old movies that actually lives up to the hype. I don’t know how many times I’ve heard great things about an old movie but when I finally get to see it, I end up disappointed. This isn’t the case with White Heat however; it’s just as good as everyone says it is.</p>

<p>The story is about a psychopath, tough as nails gangster, Cody Jarrett, who has a weird, child-like attachment to his mother. Jarrett thinks nothing of robbing trains, stealing payrolls and killing people, but when times get tough, he needs the love and encouragement of his mom.</p>

<p>The story begins with Jarrett and the boys staging a train robbery during which Jarrett brutally kills the train engineers. During the heist, one of the gang members is seriously injured and his later death gives the Feds the ability to link the train robbery back to Jarrett. Jarrett sensing that the Feds now have the evidence needed to put him in prison for a long time confesses to another crime that he did not commit, but which serves as a alibi that prevents him from being implicated in the train robbery.</p>

<p>Jarrett later escapes from prison, and goes on to plan and execute a payroll heist that ends the movie with a spectacular finish.</p>

<p>The movie is much more involved but I’ve left out a lot of details so as not to spoil the movie for you.</p>

<p>James Cagney does a masterful job playing Arthur ‘Cody’ Jarrett. He mixes brutality, insanity and charisma in just the right proportions. I know of Cagney mostly through the various impressions I’ve seen done of him over the years and although the impressions are pretty much spot on and comical, when he does the act he is totally believable.</p>

<p>Another great performance comes from Margaret Wycherly who plays Cody’s mom, Ma Jarrett. She comes across as a cold, calculating evil women who totally loves her son and wants what’s best for him. Unfortunately her view of what’s best for him involves robbery and murder.</p>

<p>Virginia Mayo also does a fine job playing Cody’s cheating wife Verna. She’s a self-absorbed glamour girl, who gives no indication of being in love with Cody but hangs around to reap the rewards that result from a life of crime.</p>

<p>This movie is filled with memorable scenes and tag lines and for these alone it is worth the price of admission. The DVD is currently available for under $20 dollars but if your willing to wait you might be able to catch it on Turner Classic Movies as I did.</p>

<p>“Top of the world, Ma!”</p>

<p>Highly recommended.</p>

<p>10 out of 10 Stars</p>

]]></description> 
	  <dc:subject>Movies,</dc:subject>
	  <dc:date>2010-01-11T23:29:47+00:00</dc:date>
	</item>

	
	</channel>
</rss>