<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Kaedrin Weblog</title>
<link>http://kaedrin.com/weblog/</link>
<description>Thoughts and ramblings on culture, movies, politics and more; updated every Sunday.</description>
<copyright>Copyright 2009</copyright>
<lastBuildDate>Wed, 01 Jul 2009 20:53:51 -0500</lastBuildDate>
<generator>http://www.movabletype.org/?v=4.25</generator>
<docs>http://blogs.law.harvard.edu/tech/rss</docs> 


<item>
<title>Link Dump</title>
<description><![CDATA[A few interesting links I've run into recently:

<ul>
<li><a href="http://batteriesfeelincluded.blogspot.com/2009/05/309.html">Easy Solutions #1</a>:  This is easily the most brilliant yet demented thing I've read in a long time.  My favorite part is the subtle ways in which the devious story you concoct are supported by longstanding film franchises.  For example:  "If she questions this flaw in your time travel logic, because you cannot change the past, simply reference Back to the Future."</li>
<li><a href="http://chud.com/articles/articles/19881/1/THE-DEVIN039S-ADVOCATE-ETERNAL-MONSTERS-OF-FILMLAND/Page1.html">Eternal Monsters of Filmland</a>: Devin Faraci makes an argument that the current rash of horror movie remakes is not new and is indeed indicative of a modern set of eternal monsters, placing Jason Voorhees, Michael Myers, and Freddy Kreuger alongside such horror mainstays as Dracula, Frankenstein and the Mummy (this classic trio has literally hundreds of movies to their name, including dozens of remakes and reboots).  The big thing holding back the modern trio?  Copyright.  An interesting idea.  </li>
<li><a href="http://blogs.laweekly.com/style_council/film/khaan-the-greatest-syllable-ev-1/">KHAAN! The Greatest Syllable Ever Told</a>:  This article about a "15-minute meticulously re-spliced creation in a never-ending loop" of William Shatner's infamous cursing of Star Trek villain Khan features a 2 minute excerpt from the film that is mesmerizing...</li>
<li><a href="http://www.dallasnews.com/sharedcontent/dws/ent/stories/DN-writer_0102gd.ART.State.Edition1.4aedf6a.html">What does "The Usual Suspects" mean?</a>: The ending of <a href='http://www.imdb.com/title/tt0114814/' title='IMDB: The Usual Suspects'>The Usual Suspects</a> is generally a topic of contention in film nerd circles, but this interview with writer Christopher McQuarrie and director Bryan Singer adds a new wrinkle to the debate:
<blockquote>
McQuarrie says only after finishing the film and preparing to do press interviews about it did he and Singer realize they both had completely different conceptions about the plot.
<br><br>
"I pulled Bryan aside the night before press began and I said, 'We need to get our stories straight because people are starting to ask what happened and what didn't,' " recalls McQuarrie. "And we got into the biggest argument we've ever had in our lives."
<br><br>
He continues: "One of us believed that the story was all lies, peppered with little bits of the truth. And the other one believed it was all true, peppered with tiny, little lies. ... We each thought we were making a movie that was completely different from what the other one thought."
</blockquote>
I think I've always considered it more of a mostly true, peppered with little lies, but the neat thing is that it probably works either way...
</li>
<li><a href="http://www.kottke.org/09/06/50-films-you-can-wait-to-see-after-youre-dead">50 Films You Can Wait to See After You're Dead</a>:  Perhaps a bit harsh on <em>Death to Smoochy</em> and <em>The Boondock Saints</em>, but otherwise an interesting list.  On the other hand, why subject the dead to such horrors?</li>
</ul>
That's all for now...]]></description>
<link>http://kaedrin.com/weblog/archive/001658.html</link>
<guid>http://kaedrin.com/weblog/archive/001658.html</guid>
<category>Link Dump</category>
<pubDate>Wed, 01 Jul 2009 20:53:51 -0500</pubDate>
</item>

<item>
<title>Interrupts and Context Switching</title>
<description><![CDATA[To drastically simplify how computers work, you could say that computers do nothing more that shuffle bits (i.e. 1s and 0s) around.  All computer data is based on these binary digits, which are represented in computers as voltages (5 V for a 1 and 0 V for a 0), and these voltages are physically manipulated through transistors, circuits, etc...  When you get into the guts of a computer and start looking at how they work, it seems amazing how many operations it takes to do something simple, like addition or multiplication.  Of course, computers have gotten a lot smaller and thus a lot faster, to the point where they can perform millions of these operations per second, so it still feels fast.  The processor is performing these operations in a serial fashion - basically a single-file line of operations.  
<br><br>
This single-file line could be quite inefficent and there are times when you want a computer to be processing many different things at once, rather than one thing at a time.  For example, most computers rely on peripherals for input, but those peripherals are often much slower than the processor itself.  For instance, when a program needs some data, it may have to read that data from the hard drive first.  This may only take a few milliseconds, but the CPU would be idle during that time - quite inefficient.  To improve efficiency, computers use multitasking. A CPU can still only be running one process at a time, but multitasking gets around that by scheduling which tasks will be running at any given time. The act of switching from one task to another is called <a href="http://en.wikipedia.org/wiki/Context_switching">Context Switching</a>.  Ironically, the act of context switching adds a fair amount of overhead to the computing process.  To ensure that the original running program does not lose all its progress, the computer must first save the current state of the CPU in memory before switching to the new program.  Later, when switching back to the original, the computer must load the state of the CPU from memory.  Fortunately, this overhead is often offset by the efficiency gained with frequent context switches.  
<br><br>
If you can do context switches frequently enough, the computer appears to be doing many things at once (even though the CPU is only processing a single task at any given time).  Signaling the CPU to do a context switch is often accomplished with the use of a command called an <a href="http://en.wikipedia.org/wiki/Interrupt">Interrupt</a>.  For the most part, the computers we're all using are Interrupt driven, meaning that running processes are often interrupted by higher-priority requests, forcing context switches.  
<br><br>
This might sound tedious to us, but computers are excellent at this sort of processing.  They will do millions of operations per second, and generally have no problem switching from one program to the other and back again.  The way software is written can be an issue, but the core functions of the computer described above happen in a very reliable way.  Of course, there are physical limits to what can be done with serial computing - we can't change the speed of light or the size of atoms or a number of other physical constraints, and so performance cannot continue to improve indefinitely.  The big challenge for computers in the near future will be to figure out how to use parallel computing as well as we now use serial computing.  Hence all the talk about <a href="http://en.wikipedia.org/wiki/Multi-core">Multi-core</a> processing (most commonly used with 2 or 4 cores). 
<br><br>
Parallel computing can do many things which are far beyond our current technological capabilities.  For a perfect example of this, look no further than the human brain.  The neurons in our brain are incredibly slow when compared to computer processor speeds, yet we can rapidly do things which are far beyond the abilities of the biggest and most complex computers in existance.  The reason for that is that there are truly massive numbers of neurons in our brain, and they're all operating in parallel.  Furthermore, their configuration appears to be in flux, frequently changing and adapting to various stimuli.  This part is key, as it's not so much the number of neurons we have as how they're organized that matters.  In mammals, brain size roughly correlates with the size of the body.  Big animals generally have larger brains than small animals, but that doesn't mean they're proportionally more intelligent.  An elephant's brain is much larger than a human's brain, but they're obviously much less intelligent than humans.  
<br><br>
Of course, we know very little about the details of how our brains work (and I'm not an expert), but it seems clear that brain size or neuron count are not as important as how neurons are organized and crosslinked. The human brain has a huge number of neurons (somewhere on the order of one hundred billion), and each individual neuron is connected to several thousand other neurons (leading to a total number of connections in the hundreds of trillions).  Technically, neurons are "digital" in that if you were to take a snapshot of the brain at a given instant, each neuron would be either "on" or "off" (i.e. a 1 or a 0).  However, neurons don't work like digital electronics.  When a neuron fires, it doesn't just turn on, it pulses.   What's more, each neuron is accepting input from and providing output to thousands of other neurons.  Each connection has a different priority or weight, so that some connections are more powerful or influential than others.  Again, these connections and their relative influence tends to be in flux, constantly changing to meet new needs.  
<br><br>
This turns out to be a good thing in that it gives us the capability to be creative and solve problems, to be <em>unpredictable</em> - things humans cherish and that computers can't really do on their own.    
<br><br>
However, this all comes with its own set of tradeoffs.  With respect to this post, the most relevant of which is that humans aren't particularly good at doing context switches.  Our brains are actually great at processing a lot of information in parallel.  Much of it is subconscious - heart pumping, breathing, processing sensory input,  etc...  Those are also things that we never really cease doing (while we're alive, at least), so those resources are pretty much always in use.  But because of the way our neurons are interconnected, sometimes those resources trigger other processing.  For instance, if you see something familiar, that sensory input might trigger memories of childhood (or whatever).  
<br><br>
In a computer, everything is happening in serial and thus it is easy to predict how various inputs will impact the system. What's more, when a computer stores its CPU's current state in memory, that state can be restored later with perfect accuracy.  Because of the interconnected and parallel nature of the brain, doing this sort of context switching is much more difficult.  Again, we know very little about how the humain brain really works, but it seems clear that there is short-term and long-term memory, and that the process of transferring data from short-term memory to long-term memory is lossy.  A big part of what the brain does seems to be filtering data, determining what is important and what is not.  For instance, studies have shown that people who do well on memory tests don't necessarily have a more effective memory system, they're just better at <a href="http://kaedrin.com/weblog/archive/001013.html">ignoring unimportant things</a>.  In any case, human memory is infamously unreliable, so doing a context switch introduces a lot of thrash in what you were originally doing because you will have to do a lot of duplicate work to get yourself back to your original state (something a computer has a much easier time doing).  When you're working on something specific, you're dedicating a significant portion of your conscious brainpower towards that task.  In otherwords, you're probably engaging millions if not billions of neurons in the task.  When you consider that each of these is interconnected and working in parallel, you start to get an idea of how complex it would be to reconfigure the whole thing for a new task.  In a computer, you need to ensure the current state of a single CPU is saved.  Your brain, on the other hand, has a much tougher job, and its memory isn't quite as reliable as a computer's memory.  I like to refer to this as metal inertia.  This sort of issue manifests itself in many different ways.  
<br><br>
One thing I've found is that it can be very difficult to get started on a project, but once I get going, it becomes much easier to remain focused and get a lot accomplished.  But getting started can be a problem for me, and finding a few uninterrupted hours to delve into something can be difficult as well.  One of my favorite essays on the subject was written by Joel Spolsky - its called <a href="http://www.joelonsoftware.com/articles/fog0000000339.html">Fire and Motion</a>.  A quick excerpt:
<blockquote>
Many of my days go like this: (1) get into work (2) check email, read the web, etc. (3) decide that I might as well have lunch before getting to work (4) get back from lunch (5) check email, read the web, etc. (6) finally decide that I've got to get started (7) check email, read the web, etc. (8) decide again that I really have to get started (9) launch the damn editor and (10) write code nonstop until I don't realize that it's already 7:30 pm.  
<br><br>
Somewhere between step 8 and step 9 there seems to be a bug, because I can't always make it across that chasm. For me, just getting started is the only hard thing. An object at rest tends to remain at rest. There's something incredible heavy in my brain that is extremely hard to get up to speed, but once it's rolling at full speed, it takes no effort to keep it going. 
</blockquote>
I've found this sort of mental inertia to be quite common, and it turns out that there are several areas of study based around this concept.  The state of thought where your brain is up to speed and humming along is often referred to as "flow" or being "in the zone."  This is particularly important for working on things that require a lot of concentration and attention, such as computer programming or complex writing.    
<br><br>
From my own personal experience a couple of years ago during a particularly demanding project, I found that my most productive hours were actually after 6 pm.  Why?  Because there were no interruptions or distractions, and a two hour chunk of uninterrupted time allowed me to get a lot of work done.  Anecdotal evidence suggests that others have had similar experiences.  Many people come into work very early in the hopes that they will be able to get more done because no one else is here (and complain when people are here that early).   Indeed, a lot of productivity suggestions basically amount to carving out a large chunk of time and finding a quiet place to do your work.  
<br><br>
A key component of flow is finding a large, uninterrupted chunk of time in which to work.  It's also something that can be difficult to do here at a lot of workplaces.  Mine is a 24/7 company, and the nature of our business requires frequent interruptions and thus many of us are in a near constant state of context switching.  Between phone calls, emails, and instant messaging, we're sure to be interrupted many times an hour if we're constantly keeping up with them.  What's more, some of those interruptions will be high priority and require immediate attention.  Plus, many of us have large amounts of meetings on our calendars which only makes it more difficult to concentrate on something important.   
<br><br>
Tell me if this sounds familiar: You wake up early and during your morning routine, you plan out what you need to get done at work today.  Let's say you figure you can get 4 tasks done during the day.  Then you arrive at work to find 3 voice messages and around a hundred emails and by the end of the day, you've accomplished about 15 tasks, none of which are the 4 you had originally planned to do.  I think this happens more often than we care to admit.  
<br><br>
Another example, if it's 2:40 pm and I know I have a meeting at 3 pm - should I start working on a task I know will take me 3 solid hours or so to complete?  Probably not.  I might be able to get started and make some progress, but as soon my brain starts firing on all cylinders, I'll have to stop working and head to the meeting.  Even if I did get something accomplished during those 20 minutes, chances are when I get back to my desk to get started again, I'm going to have to refamiliarize myself with the project and what I had already done before proceeding.
<br><br>
Of course, none of what I'm saying here is especially new, but in today's world it can be useful to remind ourselves that we don't need to always be connected or constantly monitoring emails, RSS, facebook, twitter, etc...  Those things are excellent ways to keep in touch with friends or stay on top of a given topic, but they tend to split attention in many different directions.  It's funny, when you look at a lot of attempts to increase productivity, efforts tend to focus on managing time.  While important, we might also want to spend some time figuring out how we manage our attention (and the things that interrupt it).
<br><br>
(<em>Note: As long and ponderous as this post is, it's actually part of a larger series of posts I have planned.  Some parts of the series will not be posted here, as they will be tailored towards the specifics of my workplace, but in the interest of <a href="http://kaedrin.com/weblog/archive/000877.html">arranging my interests in parallel</a> (and because I don't have that much time at work dedicated to blogging on our intranet),  I've decided to publish what I can here.  Also, given the nature of this post, it makes sense to pursue interests in my personal life that could be repurposed in my professional life (and vice/versa).</em>)]]></description>
<link>http://kaedrin.com/weblog/archive/001657.html</link>
<guid>http://kaedrin.com/weblog/archive/001657.html</guid>
<category>Computers &amp; Internet</category>
<pubDate>Sun, 28 Jun 2009 15:44:06 -0500</pubDate>
</item>

<item>
<title>Infinite Summer</title>
<description><![CDATA[David Foster Wallace's mammoth novel <a href="http://www.amazon.com/exec/obidos/ASIN/0316066524/kaedrin">Infinite Jest</a> has been sitting on my shelf, unread, for at leat 5 years.  I have noted on <a href="http://kaedrin.com/weblog/archive/001129.html">frequent</a> <a href="http://kaedrin.com/weblog/archive/001256.html">occassions</a> that it's a book that I should probably read at some point, but for various reasons, I could never find a time that felt right to read it.  I'm not intimidated by its size.  My favorite author is <a href="http://kaedrin.com/weblog/archive/cat_neal_stephenson.html">Neal Stephenson</a>, and that guy hasn't written a novel shorter than 900 pages since the mid-90s (including the 3 part, 2700 page <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2Fgp%2Fseries%2F88340%3Fie%3DUTF8%26ref%255F%3Drcx%255Fser%255Fed%255Fpaperback%26edition%3Dpaperback&tag=kaedrin&linkCode=ur2&camp=1789&creative=390957">Baroque Cycle</a>).  To me, the problem was always that this novel seemed to be one of those post-modern exercises in literary style and cleverness, and my tolerance for such wankery had waned after reading the hugely complex and impenetrable <a href="http://kaedrin.com/fun/books/gravity.html">Gravity's Rainbow</a> (a book I like, to be sure, but that also made me want to chill out for a while).  I'm generally a story-is-king kinda guy, so books that focus on exploring language and narrative style ahead of story and plot tend to grate on me unless they're <em>really</em> well done.  It's not that such books are bad or that I can't enjoy them, it's just that I think it's a very difficult feat, and so whenever a new book of this style comes along, I have to wonder whether it's worth the trouble.
<br><br>
So the book has sat on my shelf, unread.  In the wake of the author's untimely death last year, it seems that some fans have taken it upon themselves to encourage people to read Wallace's masterpiece.  Their challenge:
<blockquote>
Join endurance bibliophiles from around the world in reading Infinite Jest over the summer of 2009, June 21st to September 22nd. A thousand pages<sup>1</sup> &#247; 92 days = 75 pages a week. No sweat.
<br><br>
1. Plus endnotes<sup>a</sup>.<br>
a. A lot of them.
</blockquote>
They're calling it <a href="http://infinitesummer.org/">Infinite Summer</a>.  Despite the strange mixture of measurement units in their equation (one would think the result would be in pages/day, but whatever), 75 pages a week does indeed sound like no sweat.  And as luck would have it, I ran accross that site around the same time I was finishing up a book, and reading through some of the entries there finally made me interested enough to pick up the book and give it a shot.
<br><br>
I haven't read that much of it yet, but so far, I'm quite enjoying it.  It's not nearly as pretentious as I feared, though it's obviously not beach or airport reading material either.  It seems to rate somewhere between <em>Cryptonomicon/Baroque Cycle</em> and <em>Gravity's Rainbow</em> in terms of reading difficulty, though this may need some revision as I get further into the novel.  When I read novels like this, there is a part of me that wants to stop everytime I find something I don't know about and figure that out before continuing.  I read <em>Gravity's Rainbow</em> in that way, and there were times where it would take me an hour to read a single page.  But after reading <a href="http://infinitesummer.org/archives/277">Jason Kottke's forward</a>, I think I'm just going to relax this time around:
<blockquote>
...you don&#8217;t need to be an expert in much of anything to read and enjoy this novel. It isn&#8217;t just for English majors or people who love fiction or tennis players or recovering drug addicts or those with astronomical IQs. Don&#8217;t sweat all the Hamlet stuff; you can worry about those references on the second time through if you actually like it enough to read it a second time. Leave your dictionary at home; let Wallace&#8217;s grammatical gymnastics and extensive vocabulary wash right over you; you&#8217;ll get the gist and the gist is more than enough. Is the novel postmodern or not? Who f&#8217;ing cares&#133;the story stands on its own. 
</blockquote>
And thus I've begun my nfinite Summer...]]></description>
<link>http://kaedrin.com/weblog/archive/001656.html</link>
<guid>http://kaedrin.com/weblog/archive/001656.html</guid>
<category>Arts &amp; Letters</category>
<pubDate>Wed, 24 Jun 2009 17:42:02 -0500</pubDate>
</item>

<item>
<title>Wii Game Corner (again)</title>
<description><![CDATA[Some quick reviews for Wii games I've played recently:

<ul>
<li><a href="http://en.wikipedia.org/wiki/Mario_kart_wii">Mario Kart Wii</a>:  One of the games I used to play all the time in college was the original Mario Kart for SNES (along with NHL 94/95 and GoldenEye).  It was great fun, and with this latest installment, I find that Nintendo has more or less duplicated the simple and fun formula of the original installments (the last MK game I played was the one for N64) and made a few tweaks that make it feel fresh.  The simple motion controls work well and it's a nice change of pace, but at the same time, it's not like the series' old controls were all that tough.  As with the original, this game is a blast to play with friends, especially with 4 players.  Single player gets a bit repetitive after a while, but it's quite fun as well - it's  nice to be able to pop in a bite-sized gaming experience.  I'm glad I own this game becaues I've never owned a Mario Kart game before and I do find it to be a genuinely fun game to play (especially multiplayer), but at the same time, I can't help but think that it's just the same game I started playing 15 years ago.  Indeed, it looks like the grand majority of the tracks are repurposed here from previous editions (of course, they picked the best tracks, so it's not necessarily a bad thing...)  But hey, it's Mario Kart - it was pretty much exactly what I expected and I can't fault it for that!</li>
<li><a href="http://en.wikipedia.org/wiki/Wii_fit">Wii Fit</a>:  For what it is, it's quite good.  Unfortunately, it doesn't really break any of the boundries I was hoping it would.  The concept of a video game centered around a goal of fitness is an intriguing one, but while Wii fit is an interesting first attempt, I was hoping for more.  The thing that really interested me was the concept of combining the <em>just-one-more-level</em> addictiveness of video games with the healthy side-effects of exercise... alas, Wii Fit doesn't really manage that.  The software seems more aimed at providing guidance on traditional exercises, along with a few balance games thrown in for good measure.  When I first got the software, I played it for about a week straight, and then pretty much lost interest.  I'm starting my annual summer exercise kick though, and I think Wii Fit may find a place in my regular exercise schedule, but more as a warmup and a way to keep track of my progress than my primary exercise tool (which will probably be the elliptical machine in my basement, along with some free weights).
<br><br>
The software comes with a plethora of exercises and simple mini-games, many of which you have to unlock as you go.  It can be a bit annoying at first, because a lot of the playing time gets tied up in listening to the Wii Balance Board or your virtual trainer explain stuff to you.  The software keeps track of the time you spent exercising, but when you first start off, most of the exercises take only 1 minute or so to complete.  So to complete a 30 minute workout, it took about an hour (with the other 30 minutes being explainations and loading time, etc...).  As you unlock more and more exercises and get more experience, longer exercises become available.  The step exercise gets pretty good after a while, as does the boxing exercise.  Yoga poses can be cool, but they still eat up a lot of time.  The balance games are a lot of fun, but they're very simple and they also don't seem to be the most vigorous of exercises.
<br><br>
The software anthropomorphizes the Wii Fit Balance Board into a character in the game, and <a href="http://www.escapistmagazine.com/articles/view/comics/stolen-pixels/5717-Stolen-Pixels-61-Unfit">I'm pretty sure it hates me</a>, though it doesn't say so outright (it usually relies on passive-aggressive techniques to accomplish this).  Seriously, sometimes the way the board talks to you is a little odd (my friend <a href="http://nocookiesforme.blogspot.com/2009/04/regional-differences.html">Roy thinks</a> there might be some translation issues that cause the game to sound more caustic...).  I'm not looking forward to <a href="http://www.escapistmagazine.com/articles/view/comics/stolen-pixels/5789-Stolen-Pixels-67-A-Place-for-Pie">returning after a few months absence</a>...  Ultimately, it's not everything I hoped it would be, but it's pretty good. 
</li>
<li><a href="http://en.wikipedia.org/wiki/Okami">&#332;kami</a>:  Traditional gamers have long complained that the Wii has left them out in the cold and not released any "Hardcore" games.  One of the frequent counter-arguments to that is &#332;kami.  Originally released on the PS2, this game was ported to the Wii, presumably because one of the core mechanics of the game seems ideal for motion controls.  The game's setting is right out of Japanese folklore, and you play a sun goddess named Amaterasu, taking the form of a white wolf.  The story centers on how Amaterasu saves the land from a terrible darkness, which sounds like a common trope, but since the setting of traditional Japanese folklore is one I am not that familiar with, it still feels fresh.  One of the key abilities of Amaterasu is something called the Celestial Brush.  When you're playing, you can bring the game to a pause, which converts the screen into a canvas that you can paint on.  Various brush strokes and patterns can be used for a variety of results:  drawing a swirl can summon the wind, drawing a line through an enemy can cut them, drawing a circle in the sky can restore sunlight to the land, etc...
<br><br>
You would think that these Celestial Brush techniques would make the game an ideal candidate for the Wii, but I am constantly struggling with them.  There seems to be a certain precision that is required that is beyond what the Wiimote can provide by default.  Perhaps I'm just doing something wrong (if I am, it's not particularly obvious what it is), but I often find myself struggling to duplicate whatever exact movement they want me to make.  In particular, drawing a straight line can be rough (and early on in the game, that is a very important technique).  Human beings have elbows, which are essentially pivots.  The very physical nature of our arms means that moving our hand horizontally typically describes an arc, rather than a straight line.  This is a basic tenet of human factors design, and I believe it's why I have so much trouble drawing a straight line in this game.  So to be honest, I'm not even sure how well these motion controls would work, even if this game was ported to Wii Motion Plus, unless they also allowed some sort of corresponding tolerance to the system.
<br><br>
The current generation of console video games seems to have massively improved a couple of the really annoying traits of the past.  One of the most important of these is how you save your game.  On most of my PS3 games, progress is mostly saved automatically whenever you accomplish something.  Even games that do not have auto-save (such as <a href="http://kaedrin.com/weblog/archive/001609.html">Dead Space</a>), make sure to provide frequent save points so that you don't have to constantly repeat large areas of the game (and even then, I hate the arbitrary nature of save points in those games).  Unfortunately, like most Nintendo games where progress into a story matters (i.e. not games like Wii Fit or Wii Sports, where there isn't much in the way of "progress"), &#332;kami suffers from save points that are spaced relatively far apart.  This caused me to get stuck around 2 hours into the game at a point where I would have to play for about an hour, make a ton of progress, and then lose everything because I died in some random fight on my way back to the save point.  I've now spent 3 hours trying to get past this point, and have pretty much given up on the game.  Given the simplicity of the combat system, it's clear that fighting is not the point of this game.  Fighing basically consists of random Wiimote waggling combined with the occasional Celestial Brush stroke, and it's not very fun.  It would be one thing if the system was well balanced and fun to play - I'd want to master such a game and wouldn't mind the save system so much.  But seriously, it's 2009.  There are no more excuses for failing to provide an easy way to save games.
<br><br>
The game also seems to be very heavy on text and dialog cutscenes (not sure if they technically qualify as cut scenes, but that's basically what they are), often forcing you to read through several screens of text (each screen is relatively short on text, but still, reading through 5 screens at once starts to get tedious).  Fortunately, most of this text is skippable... but skipping such text causes the game to pause itself and transition to after the cutscene (in some cases, you're probably better off just pressing through the dialog as fas as it will let you).  It doesn't seem like it would be that difficult to provide a more seamless transition from cutscene back to gameplay.  Also, the interface is rather difficult to understand.  It took me a while, for instance, to figure out how the health meter worked, which is kinda ridiculous.
<br><br>
I know the game is somewhat old and that it was originally developed for the previous generation of consoles, but these flaws are intensely annoying, especially when I play a game like this side by side with PS3 games that get these usability details exactly right.   This is a game I very much want to like a lot - the visual art style is actually quite good.  This sort of stylish presentation is common on the Wii, but it truly does look great here and it fits the mood of the story well.  I also like the way the game gradually nudges you to solve puzzles, allowing you the freedom to explore and figure out what to do, but also giving you some help if you really get stuck.  The story itself seems pretty straightforward and conceptually the puzzles and general gameplay <em>sound</em> great.  In practice though, they tend to be frustrating.
<br><br>
This game gets generally great reviews from critics, but in all its incarnations, it has apparently sold very poorly.  I can see why the critics like this game so much - again, it has all the right conceptual elements - but I can also see why it is shunned by players as well... it's not a very fun game.  Again, I wanted to like this game - it's got a lot of elements I find intriguing (i.e. visual style, uncommon mythological setting, story, etc...), but in practice, the game just grates on me...  I know I'm picky about usability stuff like the motion controls, save points, and dialog cutscenes, but I don't think those things are excusable anymore (at least, the combination of all three should be avoided). Ultimately, I was very disappointed in this game and to be honest, I'm not sure if I'm up to giving it another try.  To be honest, the games theme of restoring life to a darkened world only wants to make me play another motion controlled game - <a href="http://kaedrin.com/weblog/archive/001610.html">Flower</a>, for the PS3.
</li>
</ul>
That's all for now (you could also check out the <a href="http://kaedrin.com/weblog/archive/001404.html">previous installment of Wii Game Corner</a>).  For all my gushing about the PS3 and for my general distaste for single-player Wii games of late, I still have several games I want to play or am otherwise looking forward to.  <a href="http://en.wikipedia.org/wiki/Madworld">Madworld</a>, <a href="http://en.wikipedia.org/wiki/House_of_the_Dead:_Overkill">House of the Dead: Overkill</a>, and <a href="http://en.wikipedia.org/wiki/The_Conduit">The Conduit</a> all sound like a lot of fun.  The new Punch Out seems similar to Mario Kart in that it doesn't look to add too much to the original experience, and I have to admit that sort of thing isn't that exciting... but I wouldn't mind trying out the game.  I'm not all that interested in purchasing <a href="http://en.wikipedia.org/wiki/Wii_Sports_Resort">Wii Sports Resort</a> or <a href="http://en.wikipedia.org/wiki/Wii_MotionPlus">Wii Motion Plus</a>, but I would definitely  like to play the games, just to see how well Motion Plus works... Who knows, maybe it will restore my <a href="http://kaedrin.com/weblog/archive/001654.html">flagging faith in motion controls</a>.]]></description>
<link>http://kaedrin.com/weblog/archive/001655.html</link>
<guid>http://kaedrin.com/weblog/archive/001655.html</guid>
<category>Video Games</category>
<pubDate>Sun, 21 Jun 2009 21:12:02 -0500</pubDate>
</item>

<item>
<title>The Motion Control Sip Test</title>
<description><![CDATA[A few weeks ago, Microsoft and Sony unveiled rival motion control systems, presumably in response to Nintendo's dominant market position.  The Wii has sold much better than both the Xbox 360 and the PS3 (to the point where sales of Xbox and PS3 combined are around the same as the Wii), so I suppose it's only natural for the competition to adapt.  To be honest, I'm not sure how wise that would be... or rather, I'm not sure Sony and Microsoft are imitating the right things.  Microsoft's Project Natal seems quite ambitious in that it relies completely on gestures and voice (no controllers!). The Sony motion control system, which relies on a camera and two handheld wands, seems somewhat similar to the Wii in that there are still controllers and buttons.  Incidentally, the Wii actually released Wii Motion Plus, an improvement to their already dominant system.
<br><br>
My first thought at a way to compete with the Wii would have been along similar lines, but not for the reasons I suspect Microsoft and Sony released their solutions.  The problem for MS & Sony is that the Wii is the unquestionable winner of this generation of gaming consoles, and everyone knows that.  A third party video game developer can create a game for a console with an install base of 20 million (the PS3), 30 million (Xbox) or 50 million (Wii).  Since the PS3 and Xbox have similar controllers, 3rd parties can often release games on both consoles, though there is overhead in porting your code to both systems.  This gives a rough parity between those two systems and the Wii... until you realize that developing games for the Xbox/PS3 means HD and that means those games will be much more costly (in both time and money) to develop.  On the other hand, you could reach the same size audience by developing a game for the Wii, using standard definition (which is much easier to develop for) and not having to worry about compatibility issues between two consoles.
<br><br>
The problem with Natal and Sony's Wands is that they basically represent brand new consoles.   This totally negates the third party advantage of releasing a game on both platforms.  Now a third party developer who wants to create a motion control game is forced to choose between two underperforming platforms and one undisputed leader in the field.  How do you think that's going to go?  
<br><br>
Microsoft's system seems to be the most interesting in that they're trying something much different than Nintendo or Sony.   But "interesting" doesn't necessarily translate into successful, and from what I've read, Natal is a long ways away from production quality.  Yeah, the <a href="http://www.youtube.com/xboxprojectnatal">marketing video they created</a> is pretty neat, but from what I can tell, it doesn't quite work that well yet.  Even <a href="http://www.gamasutra.com/view/feature/4053/microsofts_future_begins_now_.php?page=1">MS execs are saying</a> that what's in the video is "conceptual" and what they "hope" to have at launch.  If they launch it at all.  I'd be surprised if what we're seeing is ever truly launched.   Yeah, the <a href='http://www.imdb.com/title/tt0181689/' title='IMDB: Minority Report'>Minority Report</a> interface (which is basically what Natal is) really <em>looks</em> cool, but I have my doubts about how easy it will be to actually use.  Won't your arms get tired?  Why use motion gestures for something that is so much easier and more precise with a mouse?
<br><br>
<a href="http://www.gametrailers.com/video/e3-09-playstation-3/50276">Sony's system</a> seems to be less ambitious, but also too different from Nintendo's Wiimote.  If I were at Sony, I would have tried to duplicate the Wiimote almost <em>exactly</em>.  Why?  Because then you give 3rd party developers the option of developing for Wii then porting to PS3, thus enlarging the pie from 50 million to 70 million with minimal effort. Sure the graphics wouldn't be as impressive as other PS3 efforts, but as the Wii has amply demonstrated, you don't need unbelievable graphics to be successful.  The PS3 would probably need a way to upscale the SD graphics to ensure they don't look horrible, but that should be easy enough.  I'm sure there would be some sort of legal issue with that idea, but I'm also sure Sony could weasel their way out of any such troubles.  To be clear, this strategy wouldn't have a chance at cutting into Wii sales - it's more of a holding pattern, a way to stop the bleeding (it might help them compete with MS though).   Theoretically, Sony's system isn't done yet either and could be made into something that could get Wii ports, but somehow I'm doubting that will actually be in the works.
<br><br>
The big problem with both Sony and Microsoft's answer to the Wiimote is that they've completely misjudged what made the Wii successful.  It's not the Wiimote and motion controls, though that's part of it.  It's that Nintendo courted everyone, not just video gamers.  They courted grandmas and kids and "hardcore" gamers and "casual" gamers and everyone inbetween.  They changed video games from solitary entertainment to something that is played in living rooms with families and friends.  They moved into the <a href="http://malstrom.50webs.com/theblueoceanarticles.htm">Blue Ocean</a> and <a href="http://malstrom.50webs.com/disruptionchronicles.htm">disrupted</a> the gaming industry.  The unique control system was important, but I think that's because the control system was a signfier that the Wii was for everyone.  The fact that it was simple and intuitive was more important than motion controls.  The most important part of the process wasn't motion controls, but rather <a href="http://en.wikipedia.org/wiki/Wii_Sports">Wii Sports</a>.  Yes, Wii Sports uses motion controls, and it uses them exceptionally well.  It's also extremely simple and  easy to use and it was targeted towards <em>everyone</em>.   It was a lot of fun to pop in Wii Sports and play some short games with your friends or family (or coworkers or enemies or strangers off the street or whoever).
<br><br>
The big problem for me is that even Nintendo hasn't improved on motion controls much since then.  It's been 3 years since Wii Sports, and yet it's still probably the <em>best example</em> of motion controls in action.  I have not played any <a href="http://en.wikipedia.org/wiki/Wii_Motion_Plus">Wii Motion Plus</a> games yet, so for me, the jury is still out on that one.  However, I'm not that interested in playing the games I'm seeing for Motion Plus, let alone the prospect of paying for yet another peripheral for my Wii (though it does seem to be cheap).  The other successful games for the Wii weren't so much successful for their motion controls so much as other, intangible factors.  Mario Kart is successful... because it's always successful (incidentally, while I still enjoy playing with friends every now and again, the motion controls have nothing to do with that - it's more just the nostagia I have for the original Mario Kart).  Wii Fit has been an amazing success story for Nintendo, but it introduced a completely new peripheral and its success is probably more due to the fact that Nintendo was targeting more than just the core gamer audience with software that broadened what was possible on a video game console.   Again, Nintendo's success is due to their strategy of creating new customers and their marketing campaigns that follow the same strategy.  Wii has a lot of games that have less than imaginitive motion controls - games which simply replace random button mashing with random stick waggling.  But where they're most successful seems to be where they target a broader audience.  They also seem to be quite adept at playing on people's nostalgia, hence I find myself playing new Mario, Zelda, and Metroid games, even when I don't like some of them (I'm looking at you, Metroid Prime 3!)
<br><br>
Motion controls play a part in this, but they're the least important part.  Why?  Because the same complaints I have for Natal and the <em>Minority Report</em> interface apply to the Wii (or the new PS3 system, for that matter).  For example, take <a href="http://kaedrin.com/weblog/archive/001359.html">Metroid Prime 3</a>.  A FPS for the Wii!  Watch how motion controls will revolutionize FPS!  Well, not so much.  There are a lot of reasons I don't like the game, but one of the reasons was that you constantly had to have your Wiimote pointed up.  If your hand strayed or you wanted to rest your wrists for a moment, your POV also strays.  There are probably some other ways to do FPS on the Wii, but I'm not especially convinced (<a href="http://en.wikipedia.org/wiki/The_Conduit">The Conduit</a> looks promising, I guess) that a true FPS game will work that well on a Wii (heck, it doesn't work <em>that</em> well on a PS3 or Xbox when compared to the PC).  That's probably why <a href="http://en.wikipedia.org/wiki/House_of_the_Dead_Overkill">Rail</a> <a href="http://en.wikipedia.org/wiki/Resident_Evil_Umbrella_Chronicles">Shooters</a> have been much more successful on the Wii.
<br><br>
Part of the issue I have is that motion controls are great for short periods of time, but even when you're playing a great motion control game like Wii Sports, playing for long periods of time has adverse affects (<a href="http://www.urbandictionary.com/define.php?term=Wii%20elbow">Wii elbow </a>anyone?).  Maybe that's a good thing; maybe gamers shouldn't spend so much time playing video games... but personally, I enjoy a nice marathon session every now and again.
<br><br>
You know what this reminds me of?  New Coke.  Seriously.  Why did Coca-Cola change their time-honored and fabled secred formula?  Because of the Pepsi Challenge.  In the early 1980s, Coke was losing ground to Pepsi.  Coke had long been the most popular soft drink, so they were quite concerned about their diminishing lead.  Pepsi was growing closer to parity every day, and that's when they started running these commercials pitting Coke vs. Pepsi.   The Pepsi Challenge took dedicated Coke drinkers and asked them to take a sip from two different glasses, one labeled Q and one labeled M.  Invariably, people chose the M glass, which was revealed to contain Pepsi. Coke initially disputed the results... until they started private running sip tests of their own.  It turns out that people really did prefer Pepsi (hard as that may be for those of us who love Coke!).   So Coke started tinkering with their secret formula, attempting to make it lighter and sweeter (i.e. more like Pepsi).  Eventually, they got to a point where their new formulation consistently outperformed Pepsi in sip tests, and thus New Coke was born.  Of course, we all know what happened.  New Coke was a disaster.  Coke drinkers were outraged, the company's sales plunged, and Coke was forced to bring back the original formula as "Classic Coke" just a few months later (at which point New Coke practically disappeared).  What's more, Pepsi's seemingly unstoppable ascendance never materialized.  For the past 20-30 years, Coke has beaten Pepsi despite sip tests which say that it should be the other way around.  What was going on here?  Malcolm Gladwell explains this incident and the aftermath in his book <a href="http://www.amazon.com/exec/obidos/tg/detail/-/0316010669/kaedrin">Blink</a>:
<blockquote>
The difficulty with interpreting the Pepsi Challenge findings begins with the fact that they were based on what the industry calls a sip test or a CLT (central location test). Tasters don&#8217;t drink the entire can. They take a sip from a cup of each of the brands being tested and then make their choice. Now suppose I were to ask you to test a soft drink a little differently. What if you were to take a case of the drink home and tell me what you think after a few weeks? Would that change your opinion? It turns out it would. Carol Dollard, who worked for Pepsi for many years in new-product development, says, &#8220;I&#8217;ve seen many times when the CLT will give you one result and the home-use test will give you the exact opposite. For example, in a CLT, consumers might taste three or four different products in a row, taking a sip or a couple sips of each. A sip is very different from sitting and drinking a whole beverage on your own. Sometimes a sip tastes good and a whole bottle doesn&#8217;t. That&#8217;s why home-use tests give you the best information. The user isn&#8217;t in an artificial setting. They are at home, sitting in front of the TV, and the way they feel in that situation is the most reflective of how they will behave when the product hits the market.&#8221;
<br><br>
Dollard says, for instance, that one of the biases in a sip test is toward sweetness: &#8220;If you only test in a sip test, consumers will like the sweeter product. But when they have to drink a whole bottle or can, that sweetness can get really overpowering or cloying.&#8221; Pepsi is sweeter than Coke, so right away it had a big advantage in a sip test. Pepsi is also characterized by a citrusy flavor burst, unlike the more raisiny-vanilla taste of Coke. But that burst tends to dissipate over the course of an entire can, and that is another reason Coke suffered by comparison. Pepsi, in short, is a drink built to shine in a sip test. Does this mean that the Pepsi Challenge was a fraud? Not at all. It just means that we have two different reactions to colas.  We have one reaction after taking a sip, and we have another reaction after drinking a whole can.
</blockquote>
To me, motion controls seem like a video game sip test. The analogy isn't perfect, because I think that motion controls are here to stay, but I think the idea is relevant.  Coke is like Sony - they look at a successful competitor and completely misjudge what made them successful.   Yes, motion controls are a part of the Wii's success, but their true success lies elsewhere.  In small doses and optimized for certain games (like bowling or tennis), nothing can beat motion controls.  In larger doses with other types of games, motion controls have a long ways to go (and they make my arm sore).    Microsoft and Sony certainly don't seem to be abandoning their standard controllers, and even the Wii has a "Classic Controller", and I think that's about right.  Motion controls have secured a place in gaming going forward, but I don't see it completely displacing good old-fashioned button mashing either.
<br><br>
<strong>Update:</strong>  Incidentally, I forgot to mention the best motion control game I've played since Wii Sports has been... <a href="http://kaedrin.com/weblog/archive/001610.html">Flower</a>, for the PS3.  Flower is also probably a good example of a game that makes excellent use of motion controls, but hasn't achieved anywhere near the success of Nintendo's games.  It's not because it isn't a good game (it is most definitely an excellent game, and the motion controls are great), it's because it doesn't expand the audience the way Nintendo does.  If Natal and Sony's new system do make it to market, and if they do manage to release good games (and those are two big "ifs"), I suspect it won't matter much...]]></description>
<link>http://kaedrin.com/weblog/archive/001654.html</link>
<guid>http://kaedrin.com/weblog/archive/001654.html</guid>
<category>Video Games</category>
<pubDate>Wed, 17 Jun 2009 18:40:47 -0500</pubDate>
</item>

<item>
<title>Burial Ground: The Nights of Terror</title>
<description><![CDATA[<a href="http://finalgirl.blogspot.com/2009/06/pick.html">This month's pick for the Final Girl Film Club</a> is an Italian zombie flick called <a href="http://www.imdb.com/title/tt0081248/">Burial Ground: The Nights of Terror</a> (aka Zombie 3).  Those Italians sure do love their zombies, but I have to admit that it's a subgenre I've never really gotten into... Unfortunately, this film does little to change my mind.  It's pretty much your standard zombie fare - a group of people gather at some Professor's mansion in the country (not sure how a professor could afford such a swanky place to live, but hey, it's a zombie movie, why get bogged down in details), only to find that the professor has accidentally awoken the dead, who proceed to shuffle slowly towards our heroes in the typical zombie fashion.  This being a bad horror movie, many characters go wandering off on their own so that they can succumb to the undead masses.  I suppose I should mention that there are some <strong>minor spoilers</strong> in the below, but that really doesn't matter that much in a movie like this, does it?
<br><br>
<center>
<a href="http://kaedrin.com/images/screenshots/burial/bg08.jpg"><img src="http://kaedrin.com/images/screenshots/burial/bg08_sm.jpg" alt="Zombietastic" border="0"></a>
</center>
<br>
The movie is pretty craptacular, but the filmmakers also knew where their bread was buttered and hit the zombie movie sweet spots well enough.  Instead of spending what little money they had on things like actors and story, they appear to have blown everything on their special effects and makeup, to reasonably good effect.  Aside from similar clothing, these zombies don't all look the same or have the same makup - each one has a somewhat distinct look, varying in stages of decomposition.  Being a zombie flick, there is no personality to any of them, only to the mob.  There's some pretty effective gore here, but by the third or fourth time you see a group of zombies squishing around some unlucky character's entrails, it gets to be a bit boring.  The acting is horrible, of course, and we never really get to know most of the characters, but we do get to know the female characters' bodies pretty well (not good actresses, but they <em>look</em> pretty good onscreen).
<br><br>
Again, pretty standard fare for a zombie flick.  At first, I was a little confused at how this movie had achieved such a high cult-film status.  Then this little fella struts onscreen:
<br><br>
<center>
<a href="http://kaedrin.com/images/screenshots/burial/bg14.jpg"><img src="http://kaedrin.com/images/screenshots/burial/bg14_sm.jpg" alt="Zombietastic" border="0"></a>
</center>
<br>
The character of "young" Michael is best thing in the movie, and he is definitely why this movie has attained cult status.  You see, the character is supposed to be a 12 year old boy with a serious Oedipal complex.  Apparently, Italian law prohibited actual children from being in schlock-fests like this, so the filmmakers had to try and find an adult who looked like a child.  Somehow, they settled on 26 year old Peter Bark, who is quite small, but looks a lot older than 26 (let alone 12).  Strangely, even the voice actor they got to do the dubbing on the English version sounds like a grown man imitating a child. Anyway, this character steals the show.  He's actually not onscreen for a good portion of the movie, but when he is, he's awesome.  And the climactic payoff of his bizarre Oedipal complex is indeed disgusting and depraved and surely the reason this film has any following at all today.  I suppose a groan-inducing <em>"I can't believe they went there"</em> ending is better than many zombie movies manage, but still...
<br><br>
Aside from the unintentional comedy such a film offers, it didn't really do much for me.  Zombie fanatics will surely love the experience, but I left the film with a resounding "meh."  The whole Oedipal subplot certainly sets this movie apart from the shuffling mob of other zombie movies, but I don't find that particularly impressive either...  Some nice gore, nudity, and unintentional comedy, but otherwise nothing special.  **
<br><br>
Lots more screenshots and comments in the extended entry...]]></description>
<link>http://kaedrin.com/weblog/archive/001653.html</link>
<guid>http://kaedrin.com/weblog/archive/001653.html</guid>
<category>Movies</category>
<pubDate>Sun, 14 Jun 2009 20:22:36 -0500</pubDate>
</item>

<item>
<title>Screenshots</title>
<description><![CDATA[When I write about movies or anime, I like to include screenshots.  Heck, half the fun of the <a href="http://kaedrin.com/weblog/archive/001640.html">Friday the 13th marathon</a> has been the screenshots.  However, I've been doing this manually and it's become somewhat time intensive... So I've been looking for ways to make the process of creating the screenshots easier.  I was going to write a post about a zombie movie tonight and I had about 15 screenshots I wanted to use...
<br><br>
I take screenshots using <a href="http://www.cyberlink.com/products/powerdvd/overview_en_US.html">PowerDVD</a>, which produces .bmp files.  To create a screenshot for a post, I will typically crop out any unsightly black borders (they're ugly and often asymmetrical), convert to .jpg and rename the file.  Then I will create a smaller version (typically 320 pixels, while maintaining the aspect ratio), using a variant of the original .jpg's filename.  This smaller version is what you see in my post, while the larger one is what you see when you click on the image in my post.
<br><br>
I've always used <a href="http://www.gimp.org/">GIMP</a> to accomplish this, but it's a pretty manual process, so I started looking around for some batch image processing programs.  There are tons of the things out there.  I found several promising programs.  <a href="http://www.binarymark.com/Products/BatchImageResizer/default.aspx">Batch Image Resizer</a> was pretty awesome and did exactly what I wanted, but the free trial version inserted a huge unwanted watermark that essentially rendered the output useless.  I looked at a few other free apps, but they didn't meet some of my needs.
<br><br>
Eventually, I came accross the open source <a href="http://photobatch.stani.be/">Phatch</a>, which looked like it would provide everything I needed.  The only issue was the <a href="http://photobatch.wikidot.com/install">installation process</a>.  It turns out that Phatch was written in Python, so in addition to Phatch, you also need to download and install Python, wxPython, Python Imaging Library and the Python Win32 Extensions.  What's more is that the Phatch documentation has not taken into account that new versions of all of those are available and not all of them are compatible with each other.  After a false start, I managed to download and install all the necessary stuff.  Then, to run the application, I have to use the goddamned command line.  Yeah, I know windows users don't get much support from the linux community, but this is kinda ridiculous.
<br><br>
But I got it all working and now I was on my way.  As I've come to expect from open source apps, Phatch has a different way of setting up your image processing than most of the other apps I'd seen... but I was able to figure it out relatively quickly.  According to the Phatch documentation, the <a href="http://photobatch.wikidot.com/action-crop">Crop action</a> looked pretty easy to use... the only problem was that when I ran Phatch, Crop did not appear to be on the list of actions.  Confused, I looked around the documentation some more and it appeared that there were several other actions that could be used to crop images.  For example, if I used the Canvas action, I could technically crop the image by specifying measurements smaller than the image itself - this is how I eventually accomplished the feat of converting several screenshots from their raw form to their edited versions.  Here's an example of the zombietastic results (for reference, <a href="http://kaedrin.com/images/screenshots/burial/PDVD_953.jpg">a .jpg of the original</a>):
<br><br>
<center>
<a href="http://kaedrin.com/images/screenshots/burial/bg08.jpg"><img src="http://kaedrin.com/images/screenshots/burial/bg08_sm.jpg" alt="Zombietastic" border="0"></a>
</center>
<br>
Bonus points to anyone who can name the movie!
<br><br>
The process has been frustrating and it took me a while to get all of this done. At this point, I have to wonder if I'd have been better off just purchasing that first app I found... and then I would have been done with it (and probably wouldn't be posting this at all).  I'm hardly an expert on the subject of batch image manipulation and maybe I'm missing something fairly obvious, but I have to wonder why Phatch is so difficult to download, install, and use.  I like open source applications and use several of them regularly, but sometimes they make things a lot harder than they need to be.
<br><br>
<strong>Update:</strong> I just found <a href="http://members.ozemail.com.au/~hodsond/dbp.html">David's Batch Processor</a> (a plugin for GIMP), but its renaming functionality is horrible (you can't actually rename the images - but you can add a prefix or suffix to the original filename.)  Otherwise, it's decent.
<br><br>
And I also found <a href="http://www.faststone.org/FSResizerDetail.htm">FastStone Photo Resizer</a>, which does everything I need it to do, and I don't need to run it from the command line either.   This is what I'll probably be using in the future...
<br><br>
<strong>Update II:</strong>  I got an email from Stani, who works on Phatch and was none to pleased about the post.  It seems he had trouble posting a comment here (d'oh - second person this week who mentioned that, which is strange as it seems to have been working fine for the past few months and I haven't changed anything...).  Anyway, here are his responses to the above:
<blockquote>
As your comment system doesn't work, I post it through email. Considering the rant of your blog post, I would appreciate if you publish it as a comment for:
http://kaedrin.com/weblog/archive/001652.html
<br><br>
> Eventually, I came accross the open source Phatch, which looked like it would provide everything I needed.
<br><br>
Thanks for taking the effort to try out Phatch. 
<br><br>
> What's more is that the Phatch documentation has not taken into account that new versions of all of those are available and not all of them are compatible with each other.
<br><br>
The Phatch documentation is a wiki. The installation process for Windows would be much less a pain if Windows users would help improving the wiki and keeping the wiki up to date.
<br><br>
Unfortunately I've run into this behavior:<br>
http://photobatch.wikidot.com/forum/t-145786/windows-installation-question<br>
Luckily Linux users update the wiki themselves or send me the instructions, but don't run away. (Hint, hint)
<br><br>
I know several people have installed Phatch on Windows, but none of them documented for their fellow Window users. I only update the instructions with every major release.
<br><br>
> Then, to run the application, I have to use the goddamned command line.
<br><br>
If you installed Python right, you could just double click on phatch.py to start it or make a shortcut for it on your desktop.
<br><br>
> Yeah, I know windows users don't get much support from the linux community, but this is kinda ridiculous. 
<br><br>
I hope to see your contribution on the wiki. Until then the situation is indeed ridiculous.
<br><br>
> the Crop action looked pretty easy to use...
<br><br>
You're right, but the crop action is part of the next release, Phatch 0.2 which is packed with many new features. If you want to be a beta tester, please let me know.
<br><br>
> maybe I'm missing something fairly obvious, but I have to wonder why Phatch is so difficult to download, install, and use. I like open source applications and use several of them regularly, but sometimes they make things a lot harder than they need to be. 
<br><br>
I hope I explained it to you. I only use Windows to test my open source software. Maybe you would want me to make a one click installer. You probably understand that such negative ranting is not really stimulating.
</blockquote>
And my response:
<blockquote>
Apologies if my ranting wasn't stimulating enough, but considering that it took a couple of hours to get everything working and that I value my time, I wasn't exactly enthused with the application or the documentation.  Believe it or not, I did click on the "edit" link the wiki with the intention of adding some notes about the updated version numbers, but it said I had to be registered and I was already pretty fed up and not in the mood to sign up for anything.  I admit that I neglected to do my part, but I got into this to save time and it ended up being an enormous time-sink.  If I get a chance, I'll take another look.
<br><br>
It looks like I can just double-click on the .py file, but the documentation says to run it from the command line (another thing for me to fix, perhaps?)
<br><br>
As for a simple installer, I would love to... if I had the time, motivation, or, uh, talent to create one. In the mean time, I'll see what I can do about the documentation, but honestly, I doubt that will help much until someone does create a windows installer.
<br><br>
Sorry about the comment functionality on my blog.  I've been having issues with spammers and the plugin I'm using to block spammers seems to block legitimate comments sometimes as well (Question: did you use the "preview" function?).  Yet another thing I'll have to look into...
</blockquote>
<strong>Update III:</strong>  <a href="http://www.midnitetease.com/serendipity/index.php?/archives/105-Trying-Linux-for-the-umpteenth-time....html">Ben over at Midnight Tease</a> has been having fun with Open Source as well...]]></description>
<link>http://kaedrin.com/weblog/archive/001652.html</link>
<guid>http://kaedrin.com/weblog/archive/001652.html</guid>
<category>Computers &amp; Internet</category>
<pubDate>Wed, 10 Jun 2009 21:54:40 -0500</pubDate>
</item>

<item>
<title>A Decade of Kaedrin</title>
<description><![CDATA[It's hard to believe, but it has been <em>ten years</em> since I started this website.  The exact date is a bit hard to pinpoint, as the site was launched on my student account at Villanova, which existed and was accessible on the web as far back as 1997.  However, as near as I can tell, the site now known as Kaedrin began in earnest on May 31, 1999 at approximately 8 pm.  That's when I wrote and published the first entry in <a href="http://kaedrin.com/tandem/ts_safa.html">The Rebel Fire Alarms</a>, an interactive story written in tandem with my regular visitors.  I called these efforts <a href="http://kaedrin.com/tandem_start.html">Tandem Stories</a>, and it was my primary reason for creating the website.  Other content was being published as well - mostly book, movie, and music reviews - but the primary focus was the tandem stories, because I wanted to do something different on an internet that was filled with boring, uninspired, static content homepages that were almost never updated.   At the time, the only form of interaction you were likely to see on a given website was a forum of some kind, so I thought the tandem stories were something of a differentiator for my site, and it was, though I never really knew how many different people visited the site.  As time went on, interactivity on the web, even of the interactive story variety, became more common, so that feature became less and less unique...
<br><br>
I did, however, have a regular core of visitors, most of whom knew me from the now defunct 4degreez message boards (which has since morphed into <a href="http://4thkingdom.com/index.html">4th Kingdom</a>, which is still a vibrant community site).  To my everlasting surprise and gratitude, several of these folks are <em>still</em> regular visitors and while most of what I do here is for my own benefit, I have to admit that I never would have gotten this far without them.  So a big thank you to those who are still with me!
<br><br>
But I'm getting ahead of myself here.  Below is a rough timeline of my website, starting with my irrelevant student account homepage (which was basically a default page with some personal details filled in), moving on to the first incarnation of Kaedrin, and progressing through several redesigns and technologies until you got the site you're looking at now (be forewarned, this gets to be pretty long, though it's worth noting that the site looked pretty much like it does today way back in 2001, so the bulk of redesigning happened in the 1999-2001 timeframe)...

<ul>
<li><strong>1997-1999:</strong>  As I started to take computer programming courses in college, I gained access to a student account on the university website.  By default, all student accounts came with a <a href="http://kaedrin.com/old/index.html">bare-bones homepage</a> which we were encouraged to personalize.  I never really did much with it, though I thought it was funny to see some of the courses I was taking back in the day:  <em>MAT 1050 - Who cares about math</em>, and <em>HIS 3140 - The History of the spork</em>.  Also of note, the fact that we referred to it as "electronic mail address" and that google was not on my radar yet...  Sometime during this timeframe I started considering a more comprehensive "homepage" and made a few stabs that never really got beyond the photoshop stage (thankfully for you!).  Among these ill-fated designes included the uber-nerdy logic gate design shown below (<em>click for larger, more complete version</em>):
<br><br>
<center>
<a href="http://kaedrin.com/old/header.gif"><img src="http://kaedrin.com/old/header_sm.gif" alt="Old, bad, nerdy design"  border="0"></a>
</center>
<br>
I'm not really embarrassed so much at the logic gate aspect of the design (which I thought was mildly clever at the time) as the font choice.  Gah.  Anyway, it was during this timeframe that the first designs for a site called <em>Kaedrin</em> started.  The first drafts of the now iconic (well, to me) <a href="http://kaedrin.com/old/kaedrin.jpg">Kaedrin logo</a> were created during this timeframe.  They were not used, but every logo since then has used the same <em>Viner Hand ITC</em> font, though these days the logo isn't quite as prominent as it once was (as you'll see below).
</li>
<li><strong>May 1999 - Kaedrin v1.0:</strong> Again, I've had difficulty pinpointing the exact date when I launched Kaedrin in earnest, but judging from the timestamp of the first entry in <a href="http://kaedrin.com/tandem/ts_safa.html">The Rebel Fire Alarms</a>, I gather that the site had been fully launched in May of 1999 (just as I was finishing up the semester and had some free time on my hands).  Thanks to my participation on 4degreez.com (which may have been known as the T.A.S. Boards at the time, I don't remember exactly), I immediately had a built-in audience of like 5 people, which was pretty cool at the time.  That summer was filled with updates and content (this was before blogs, so updates came in the form of reviews for books, movies, and music amongst other stuff that was popular on the web at the time, like sound clips and funny pictures, etc...).  The layout initially featured mostly red text on a black background, but I found that to be a bit hard on the eyes, so in August I tried to soften the colors a bit (though even the new color scheme was pretty tough on the eyes).  I can't seem to find an example of the full red on black, but here's the tweaked version (<em>Click the image to see the full HTML page</em>).
<br><br>
<center>
<a href="http://kaedrin.com/old/v1/kaedrinold.html"><img src="http://kaedrin.com/old/v1/kaedrin_v1_sm.gif" alt="Kaedrin: Version 1.0" border="0"></a>
</center>
<br>
For the full effect, you have to click through to the HTML page and mouse over the left-navigation.  Back in the day, CSS support was minimal, so to do those rollovers I had to write a custom javascript.  I don't think any of the links off the page will work, but it's worth viewing just for the fun of it.   Also worth noting:  the copyright logo animated gif thingy and the fact that I had a guestbook (which was all the rage back in the day). Finally, if you have a high resolution monitor today, it's difficult to notice, but at 800x600 the Kaedrin logo is <em>enormous</em>!
</li>
<li><strong>May 2000 - Kaedrin v2.0:</strong>  After graduating college and initiating a job search, I decided that the old homepage design wasn't very professional looking.  During the course of my Senior year, I had spent time learning and thinking about usability and accessibility, and my site at the time was not especially great in those respects (i.e. I figured out for certain that dark red and blue text on a black background was a bad thing). Also, being stuck with a modum connection (after the school's snappy T3 lines) made me more acutely aware of page loading speeds (and the old page was rather image heavy).  So I came up with a much cleaner and simpler design (<em>Click the image to see the full HTML page</em>).
<br><br>
<center>
<a href="http://kaedrin.com/old/v2/kaedrin.html"><img src="http://kaedrin.com/old/v2/kaedrin_v2_sm.jpg" alt="Kaedrin: Version 2.0" border="0"></a>
</center>
<br>
This was certainly an improvement and when I eventually did find a job, my boss  mentioned that she liked my site, so mission accomplished, I guess.  Unfortunately, a "much cleaner and simpler design" also meant a more <em>boring</em> design, so it wasn't long before I started fiddling around with the layout again.  This was a little vexing because I was maintaining all of the pages on the site by hand, and converting to the new layout was a monumental pain in the ass.  As such, many of the design tweaks made during this (rather short) era were inconsistent throughout the site.
</li>
<li><strong>July 2000 - Kaedrin Weblog launched:</strong>  The summer of 2000 is also when I discovered weblogs (the yellow-heavy designs of <a href="http://dack.com/">dack</a> and <a href="http://kottke.org/">kottke</a> were my first exposure to the world of weblogs) and the relatively new <a href="http://blogger.com/">Blogger</a>.  I remember being amazed at the fully featured blogging software that these crazy Pyra people were giving away for <em>free</em>!  It's easy enough to pinpoint my first blog entry, but to be perfectly honest, I'm not sure what the design of the blog was like.  It was probably something along the lines of the v2 design, but I'm also virtually positive that the v3.0 design was pioneered on the blog, due to the fact that Blogger was something of a light CMS in that I could tweak the design for all blog pages rather easily.  I do vaguely remember having a lot of issues with my free web-hosing company (at the time, I believe it was someone called "redrival"), and in particular their ftp sucked.  I think there was a time when I would write an entry on Blogger, publish it to one free host, then transfer the code over to the new host.  This is perhaps part of why the initial months of the blog were somewhat sparse in terms of entries, but things got going pretty well in September 2000 and I posted a record-high 29 posts in December 2000.</li>
<li><strong>November 2000 - Kaedrin v3.0:</strong>  Due to the blandness of the the v2.0 site and the fact that Blogger provided easily updatable templates, I came up with a different design.  It was still clean and simple and ultimately it didn't last too long because it was still pretty boring.  In fact, I'm pretty sure I never got around to updating the entire site.  Just the homepage and the blog got this new design.  (<em>Click the image to see the full HTML page</em>).
<br><br>
<center>
<a href="http://kaedrin.com/old/v3/kaedrin.html"><img src="http://kaedrin.com/old/v3/kaedrin_v3_sm.jpg" alt="Kaedrin: Version 3.0" border="0"></a>
</center>
<br>
Ultimately not that much different than v2.0 (I suppose you could consider it more of a v2.5 than a new version, but then it's probably different enough).  It's still got the big honkin Kaedrin logo, but for some reason I liked this better.. and there's also the first appearance of the "You are here" bar at the top of the page.  While I liked this design better than v2.0, I wasn't very happy with it and almost immediately started working on something new.  I was also getting pretty well fed up with hand coding all these pages for what amounted to minor layout tweaks.  One thing that helped in that respect was Blogger, which worked like a CMS-lite, allowing quick and easy layout changes with the click of a mouse.  Here is the first design for the blog that I could find. (<em>Click the image to see the full HTML page</em>).
<br><br>
<center>
<a href="http://kaedrin.com/old/v3/weblog/index.html"><img src="http://kaedrin.com/old/v3/kaedrinweblog_v3_sm.jpg" alt="Kaedrin Weblog" border="0"></a>
</center>
<br>
Interestingly, it seems that I decided to forgo the Kaedrin logo in favor of a little HTM text thingy.  Also, I had completely forgotten about the blog's original subtitle, which could use some explaining.  Back in the 1990s it was popular to use "handles" instead of your real name.  When I first started posting to message boards and the like, I absent-mindedly chose the moniker "tallman" because I was a big fan of a certain <a href="http://www.imdb.com/title/tt0079714/">cheesy 1970s horror movie</a> that featured a character who went by that name.  Since a lot of popular blogs at the time had playful titles like <a href="http://boingboing.net/">Boing Boing</a> and the like, I went with "The Royal Kingdom of Tallmania".  I have no idea what possessed me to do that, and it wasn't long before the subtitle was dropped in favor of just "Kaedrin Weblog".
</li>
<li><strong>January 2001 - Kaedrin.com and v4.0:</strong>  After dealing with the hassle of free hosting companies, I finally realized that I had a steady income and could probably afford a professional hosting service and a real domain, so I bought kaedrin.com and started work on a new design.  Fed up with manually coding redesigns, I devised a kludgey XSLT solution that allowed me to completely separate content from design.  So I put all my content into XML files and coded the new design into some XSL stylesheets.  This design may look somewhat familiar (<em>Click the image to see the full HTML page</em>):
<br><br>
<center>
<a href="http://kaedrin.com/old/v4/index.html"><img src="http://kaedrin.com/old/v4/kaedrin_v4_sm.jpg" alt="Kaedrin Version 4.0" border="0"></a>
</center>
<br>
Being obsessed with download speeds and page rendering, I devised an interesting layout for the blog.  Instead of using the typical single-table design, I put the blog navigation at the top (instead of to the left or right) and I put each entry in it's own table.  The idea was that browsers render content as it's downloaded, and if you have a large table with a lot of content, it could take a while to load.  So having a series of smaller tables on the page, while increasing the size, also make the page seem to load quicker.  All in all, I rather liked the look of this layout, though I don't think it's something I'll be returning to at any point (<em>Click the image to see the full HTML page</em>):
<br><br>
<center>
<a href="http://kaedrin.com/weblog/archive/2002_02_01_archive.html"><img src="http://kaedrin.com/old/v4/kaedrinweblog_v4_sm.jpg" alt="Kaedrin Weblog" border="0"></a>
</center>
<br>
While I like what I was able to do with that navigation at the top, I think there were ultimately more things that needed to go into the navigation and that space just couldn't fit it.  I broke down and put it all in a big table in later designs (see below).
</li>
<li><strong>July 2002 - Movable Type:</strong>  After a couple of years, I had finally gotten fed up with Blogger's centralized system.   Blogger was growing faster than they could keep up with, and so the service was experiencing frequent downtime and even when you could access it, it was often mind-numbingly slow.  Around this time, a few other solutions were becoming available, one of which was <a href="http://www.movabletype.org/">Movable Type</a> (I started with version 2.x - also, it's worth mentioning that Wordpress was not available yet).  This solution increased functionality (most notably bringing comments into the fold) and provided a much stabler system for blogging.  The design changed to take advantage of some of this stuff and to make my blog more consistent with certain blogging standards.  This one should look really familiar (<em>Click the image to see the full HTML page</em>):
<br><br>
<center>
<a href="http://web.archive.org/web/20021217064535/www.kaedrin.com/weblog/"><img src="http://kaedrin.com/old/v4/kaedrinweblog_v4.1_sm.jpg" alt="Kaedrin Weblog - Powered by Movable Type" border="0"></a>
</center>
<br>
That's basically the same design as today, except for the date and some of the junk in the right navigation.
</li>
<li>And from there it was a series of tiny, incremental improvements, upgrades, and design tweaks.  It's funny, I didn't realize until now just how little the site has changed since 2002.  Also funny: the fact that I had finally devised a way to make redesigns a lot easier (i.e. my xslt solution) and basically stopped redesigning.  Then again, it came in really handy when I wanted to do some little things.  For instance, the original v4.0 design didn't have the same borders around the main content area that I use today (it did have a small border at the top of the area, but it was barely noticeable and it was coded using spacers - yuck).  I suppose the grand majority of the work that I've done has been behind the scenes: upgrading software, switching databases, fighting spam, and did I mention upgrades?  In 2004, the main homepage was updated to account for the fact that the grand majority of the updates on the site were coming from the blog, and the design has remained largely unchanged since then.  Around the same time, I tried to make sure the blog and homepage were valid HTML 4.01 (this is perhaps not the case for every page on the blog, as I'm sure I missed an &amp; somehwere and of course, embedding video never validates, but otherwise, it should be pretty good).</li>
<li>Of course, the big visible thing that I was doing all throughout was blogging.  When I started out, technology made it somewhat difficult to update the blog.  Eventually I got Blogger working with my host at the time and enjoyed 3 months or so of somewhat prolific blogging.  Of course, at the time, I was posting mostly just links and minor commentary, and this eventually trailed off because others were much better at that than I was.  December 2000 is still my most prolific month when it comes to the number of posts (29 posts that month), but again, those were mostly just links and assorted short comments.  From there, things trailed off for a couple of years until May 2003, when I established my weekly posting schedule.  This made the blog a bit more consistent, and gradually, I started to find more and more visitors.  Not a lot, mind you.  Even today, it's doubtful that I have more than a few dozen semi-regular visitors (if that many).  Actually, if you're reading this, you probably know most of the recent history of the blog, which basically amounts to at least 2 posts a week. </li>
</ul>
Whew, I didn't realize that trip down memory lane would take quite so long, but it was interesting to revisit just how tumultuous the design was in the early years and how it has calmed down considerably since then... Hopefully things will continue to improve around here though, so what kinds of things can you expect in the near future?   I have a few ideas:
<ul>
<li><strong>CSS Layout:</strong> The site currently uses a table based layout, primarily because it was designed and coded in 2001 and browser support of CSS was pretty bad back then, so CSS layouts weren't really an option.  In 2007 (has it really been that long), I put together a mockup of the site using CSS layout, but never got around to actually implementing it.  There were a few things about the layout that were bugging me and I never found the time to fix them.  Someday, I'll dust off my mockups, finalize them, and launch them to the world.  Having a CSS layout would also allow me to optimize for other media like cell phone browsers, print (my goal is to make it easier to read Kaedrin on the can), the Wii browser, etc...  None of those things is a particularly burning need, which is probably why I've put this off so long...</li>
<li><strong>Weblog Post Designs: </strong> I've never really been too happy with the way each post is laid out.  For one thing, I feel like I've always given too much prominence to the date - which is something I could probably just remove.  Also, the post title should perhaps be a bit larger (and be linked to the permalink).</li>
<li><strong>Homepage:</strong>  The homepage has largely become irrelevant and should probably just redirect to the weblog, as that's where 99% of the content is these days.  Again, this doesn't seem to be a burning need, so I haven't spent much time looking into that, but it would be pretty easy to accomplish.</li>
<li><strong>Comments: </strong> The comments functionality is a bit of a mess and could use some work.  </li>
<li><strong>Post Content:</strong> I feel like I've been in a bit of a rut lately, mostly relying on various crutches like movie reviews, etc... and not writing as much about things that really interest me.  Not that movies or video games don't interest me, but I used to write more posts about technology and culture, which is something I'd like to get back into.  The issue is that those posts are a lot harder to write, which I think is part of why I've been avoiding them...</li>
</ul>
So there you have it.  Ten years of Kaedrin.  Hopefully, it will last another ten years, though perhaps it will be in a completely different format by then...  If you have any comments, questions, or suggestions, feel free to leave a comment...]]></description>
<link>http://kaedrin.com/weblog/archive/001651.html</link>
<guid>http://kaedrin.com/weblog/archive/001651.html</guid>
<category>Administration</category>
<pubDate>Sun, 07 Jun 2009 09:38:19 -0500</pubDate>
</item>

<item>
<title>Fallout 3 Thoughts</title>
<description><![CDATA[I've spent the past month or so playing through <a href="http://en.wikipedia.org/wiki/Fallout_3">Fallout 3</a>.  I realize I'm a little late to the party, but here are some thoughts:
<ul>
<li>Overall, I suppose I liked the game.  Strangely, that sort of begrudging "it's good, but meh..." response seems to be the general consensus - at least among the 3 <a href="http://www.shamusyoung.com/twentysidedtale/?p=2074">folks</a> I <a href="http://www.batrock.net/?p=486">read</a> (ok, so he was perhaps a bit less than "meh") and <a href="http://www.escapistmagazine.com/videos/view/zero-punctuation/420-Fallout-3">watch</a>.  Honestly, when I first thought about posting on the game, I had the same "Yeah, it's allright!" fake-out review as <a href="http://www.escapistmagazine.com/videos/view/zero-punctuation/420-Fallout-3">Yahtzee</a>.  But I did like the game enough to finish it and according to the game's timer, I spent around 40 hours of time playing it.  Considering that I never managed to finish <a href="http://en.wikipedia.org/wiki/The_Elder_Scrolls_IV:_Oblivion">Oblivion</a> and indeed, gave up on it after just a few hours, that's not so bad.</li>
<li>Speaking of <em>Oblivion</em>, this game is pretty much exactly the same, but with a different setting.  And shotguns.  It's the shotguns that really did it for me, as first-person sword fighting is kinda weak (and yes, I realize I could use some sort of long distance magic in Oblivion, but still).</li>
<li>And with shotguns comes one of the game's most vaunted features - the V.A.T.S. aiming system.  Basically, when fighting, you can hit a button, and the game pauses and displayes your enemy along with various targets on their body and a percentage indicating how easy it is to hit.  Hitting different areas has different effects.  Hitting the legs will cripple your enemy, slowing them down.  Hitting their arm might cause them to drop their weapon.  And so on.  When you attack using V.A.T.S., the game also shows you a variety of slow-motion animations of your attack.  You'd think this would get old, but nope, watching a super-mutant's head explode is always pretty awesome. There are limited "action points" though, so this system does sometimes force you to fire away in real-time (and as a standard FPS, the game is not quite up to par with the competition) or at least, run away and hide until your action points recharge.  The system is basically a way to mix the traditional RPG turn-based strategy with FPS action.  A lot of people hate this and think the game is bad at both, but I enjoyed it well enough.  It's not perfect and I think it could be improved a bit by increasing the action points (or their recharge rate), but it works and I'd be interested to see how this sort of gameplay will evolve.</li>
<li>As storylines go, I guess it's ok.  Nothing particularly special, and the main thread makes sense and has some neat sub-quests (for some reason, I particularly enjoyed the Matrix-like simulation quest). Most of the side quests end up being "fetch" quests, but there's still some fun to be had.  Also, there are a TON of side quests and at 40 hours, I still feel like I've barely scratched the surface.</li>
<li>One of the things that bothered me about the game is that I felt like I had to really have a sizeable chunk of time set aside to play it.  I feel like the game requires at least 2 hours or so in order to have a productive session, and there were plenty of times when I played for 2 hours and felt like I didn't get anywhere.  There's definitely something weird going on here though, because the game I'm playing now (<a href="http://en.wikipedia.org/wiki/Burnout_Paradise">Burnout Paradise</a>) doesn't require any such long periods of time, yet I find myself playing for longer than 2 hours at a time and not minding it at all.  I'm guessing that's because I actually accomplish something every time I play <em>Burnout</em> for more than 15 minutes.</li>
<li>Whoever designed the concept of the metro system in this game needs to do some soul searching, because their game design skills are weak.  Ok, so that's a bit harsh,  but the amount of time I spent lost in the metro system, just trying to find my way to the marker on the map, was truly frustrating. Every metro station looks the same, and the destinations don't seem to match any reasonable geographic pattern.  I would constantly find myself way off where I thought I was heading.  Without the metro system, my experience with the game would have improved considerably.</li>
<li>I don't get the appeal of post-apocalyptic settings.  Obviously, it can be interesting, but I feel like they're overused these days...</li>
<li>Games like this tend to bring out my pack-rat nature.  I found myself chronically out of inventory space, which got kinda frustrating at times.  Yeah, yeah, you're not supposed to keep every gun type you find and you're obviously not going to use all the components you find, but I have a compulsion.  Seriously, the one time I got fed up and sold off a bunch of my stuff, I met up with some NPCs who told me that they needed a fission battery to escape... and I had just sold like 5 of them.  All RPGs have to impose some limits on inventory, and Fallout 3 is actually pretty forgiving in this regard, but I still find myself constantly falling into the trap of collecting junk I don't need.   When I enter a location, I feel obligated to go through every path, inspect every room, and look in every box (half of which are empty).  This is obviously more of an issue with me personally than with the game, but I find it interesting, as it seems to crop up in a lot of games (I had similar issues with <a href="http://kaedrin.com/weblog/archive/001609.html">Dead Space</a>).</li>
</ul>
So yeah, I liked it, kinda,  and I might even play it again as a more "evil" person (my character this time around was a goody-goody guy), but not anytime soon...]]></description>
<link>http://kaedrin.com/weblog/archive/001650.html</link>
<guid>http://kaedrin.com/weblog/archive/001650.html</guid>
<category>Video Games</category>
<pubDate>Wed, 03 Jun 2009 19:54:20 -0500</pubDate>
</item>

<item>
<title>Friday the 13th Marathon (Crossover and Reboot)</title>
<description><![CDATA[So the <a href="http://kaedrin.com/weblog/archive/001640.html">last couple of installments of the <em>Friday</em> series</a> left nowhere for the series to go.  I mean, what do you do after <em>shoot Jason into Space</em>?  Theoretically, you could have devised another SF style sequel that takes place on Earth 2 (which was sorta hinted at the end of <em>Jason X</em>), but that's a bit of a stretch (not that the series is beyond stretching).  So they were finally able to do the crossover they teased at the end of part 9, and then they went on to reboot the series just a few months ago.  Results, as always in this series, are mixed.

<ul>
<li><a href='http://www.imdb.com/title/tt0329101/' title='IMDB: Freddy vs. Jason'>Freddy vs. Jason</a>: So New Line finally delivers on the promise shown at the end of part 9.  I have no idea why it took them 10 years to do it - it certainly wasn't because they were trying to figure out a good story, because the plot is pretty abysmal here.  The film starts with Freddy explaining his current predicament.  After years of successfully terrorizing the kids of Elm street, it seems the town has finally succeeded in defeating him by getting everyone to forget who he is... Apparently, Freddy gets his power from the fear of the children, and if they don't know who he is, they can't be scared of him and thus he can't enter their dreams.  This, of course, makes no sense in light of the original <a href='http://www.imdb.com/title/tt0087800/' title='IMDB: A Nightmare on Elm Street'>Nightmare on Elm Street</a>, but since when do these things make sense anyway?  So Freddy's plan is to summon Jason (currently vacationing in Hell, as per the 9th movie) and send him to Elm street to instill fear in the current generation of teens.  Once again, this makes no sense at all, because you'd think that the kids would be more scared of the mask wearing homicidal maniac with the machete than Freddy, but apparently Freddy can exert some sort of control on Jason and so the first kill appears to be more of a Freddy type kill than a Jason type kill (this whole sequence of events is probably just as much of a stretch as having a new <em>Friday</em> set on Earth 2, but I digress).  The townsfolk go nuts and we're off to the races.  Again, it makes no sense, but whatever.  We're here for the boobs and the blood, and there's actually quite a few cool things about this movie.  While the film is ostensibly driven by Freddy, Jason gets the best kills by far.  There's some nifty machete-work going on, and even a folding bed gag that'll open your eyes.  Production values are high, so the film looks pretty good and the stuntwork and makeup are also great.
<br><br>
Remember back in <a href="http://kaedrin.com/weblog/archive/001637.html">part VIII when I mentioned the missed opportunities</a> of Jason running around in New York?  For whatever reason, he only focused on the two kids from earlier in the movie, and it was a real letdown - he should have been mowing down people left and right.  Well, this movie gets the concept right.  After a while, Freddy loses control of Jason, who just goes on a rampage, killing everyone in sight.  All of our teenage heros decide to attend a rave in a cornfield and of course, Jason shows up to crash the party.  After foiling an attempted rape (see, Jason's not that bad a guy!), Jason makes his way to the rave and, like a kid in a candy story, starts hacking the crap out of everyone in sight.  Someone sets him on fire, but he just plows on, setting the cornfield ablaze and slaughtering as many kids as he can.
<br><br>
<center>
<a href="http://kaedrin.com/images/f13/f13-11-1.jpg"><img src="http://kaedrin.com/images/screenshots/f13/f13-11-1_sm.jpg" alt="Jason attends a rave" border="0"></a>
<br><em>Jason attends a rave</em>
</center>
<br>
Later in the film comes the vaunted battle sequence between Freddy and Jason.  This is pretty cool for a little while, but eventually gets somewhat boring.  These are two villains who have amply demonstraited their invulnerability during the tenure of their resprective franchises, so there's not really any stakes to the fight, which is basically just an excuse to put each character through the ringer and deal out massive amounts of damage.  This can be fun, but it's ultimately a pretty pointless exercise... like the movie as a whole.  It's got some good stuff going for it and it's an entertaining watch, but it's pretty bad.  **
</li>

<li><a href="http://www.adultswim.com/video/?episodeID=8a2505951e3ac6db011e3b7cdbbb004a">It's the Gifts That I Hate</a> (robot chicken)</li>
<li><a href="http://www.youtube.com/watch?v=Kp276DOPQw0">Friday the 13th</a> (2009 teaser)</li>
<li><a href="http://www.youtube.com/watch?v=AezxNgUtKPE">The Slasher: Jason's Comeback</a> (fake trailer)</li>

<li><a href='http://www.imdb.com/title/tt0758746/' title='IMDB: Friday the 13th'>Friday the 13th (2009)</a>:  After being shot into space and crossing over with another franchise, the series had nowhere to go, so they decided to start over.  The film was made under the Platinum Dunes banner (a production company run by Michael Bay who have been responsible for a large number of the recent horror remakes) and was directed by Marcus Nispel (who is most famous for the <a href='http://www.imdb.com/title/tt0324216/' title='IMDB: The Texas Chainsaw Massacre'>2003 remake of The Texas Chainsaw Massacre</a>, also a PD movie.)  What we get is a back-to-basics type of movie.  It's not a remake of the original <em>Friday</em>, but it plays out like a summary of the first 4 or so movies.  You get the backstory of Jason and his mother in the first 5 minutes or so (which coveres the original <em>Friday</em>), you see Jason in his sack-face outfit for a while (like in part 2) before he dons his iconic mask (which happens in part 3), and you've got a camper who's trying to find his sister and hooks up with the final girl (part 4).  The first 15-20 minutes or so of this are good stuff.   Then the movie falls back into the standard slasher formula that typifies the series.  This isn't in itself, a terrible thing for a reboot to do, but it also doesn't make for a great movie.
<br><br>
There are some changes to the standard formula, I guess.  Jason moves fast this time around, sometimes even running (he's played by Derek Mears, who is a big guy and seems to do a pretty good job behind the mask).  He also seems to be a bit more shrewd and intelligent in that he actually sets traps and uses bait, etc... He's got a secret lair as well.  I think my favorite thing about the movie is that it's possible to interpret the entire story as being about Jason protecting his weed.  You see, the film opens with a small group of kids who are coming to Crystal Lake to collect their secret stash of marijuana that was planted earlier in the year.  They find the plants, and Jason murders them.  Later in the movie, a local yokel finds the weed and attempts to sell it to one of our heroes.  Soon after, Jason kills him.  They never actually show him smoking up or anything, but I'm pretty sure he's primarily just protecting his weed in this movie.
<br><br>
There are some decent kills, and the aforementioned trap-setting is a nice touch, but for the most part, this movie doesn't set any new highs in the kills or gore department.  The nudity department is well covered (er, uncovered? Incidentally, this may be the first time fake boobs have made it into the series, though I'm not positive about that...) though and in terms of characters you want to see die, well, there's one of the all-time great douchebag victims in this movie.  His kill perhaps leaves something to be desired, but it was a great performance (a rarity for the series).  Otherwise, the production values are high and the movie looks great, even if the plot is lackluster.  Oh, and by the way, the ending is breathtakingly bad.  I guess I get what they were trying to do, but they just failed miserably.  Ultimately, this movie did exactly what it needed to do, but it doesn't exactly set the bar high.  I'm interested in seeing what the next installment has in store for us, though I'm guessing it will just be more of the same.  **1/2
</li>
</ul>
Well, that about covers it for the series.  I'll probably end up doing a wrapup post or two, because I know everyone's enjoying these posts sooo much.  Perhaps someday I'll be able to describe why I like these movies despite how horrible they are. Anyways, sorry for the lack of screenshots in this post.  It turns out that most of the ones I took for Freddy vs. Jason didn't turn out that well (or I didn't have much to say about them) and I saw the reboot in the theater, so no screenshots there.  In any case, I'm sure my wrapup posts will have plenty of screens... ]]></description>
<link>http://kaedrin.com/weblog/archive/001643.html</link>
<guid>http://kaedrin.com/weblog/archive/001643.html</guid>
<category>Movies</category>
<pubDate>Sun, 31 May 2009 20:46:54 -0500</pubDate>
</item>

<item>
<title>Crime Doesn&apos;t Pay</title>
<description><![CDATA[Over at the Whatever, <a href="http://whatever.scalzi.com/2009/05/26/china-mieville-on-crime-novels/">China Mi&eacute;ville opines on the difficulties of ending a crime novel</a> (or, at least, the whodunnit sub-genre):
<blockquote>
Reviews of crime novels repeatedly refer to this or that book&#8217;s slightly disappointing conclusion. This is the case even where reviewers are otherwise hugely admiring. Sometimes you can almost sense their bewilderment when, looking closely at the way threads are wrapped up and plots and sub-plots knotted, they acknowledge that nothing could be done to improve an ending, that it works, that it is &#8216;fair&#8217; (a very important quality for the crime aficionado - no last-minute suspects, no evidence the reader hasn&#8217;t seen), that it is well-written, that it surprises&#133; and yet that it disappoints.
<br><br>
The reason, I think, is that crime novels are impossible. Specifically, impossible to end.
</blockquote>
My first inclination is that this is a bit harsh.  Surely there must be at least <em>one</em> crime novel that has managed to have a good ending (and sure enough, when I got to the end of the post, I found out that even Mi&eacute;ville acknowledges this).  Statements like the above are just begging for dismissive responses.  After all, the only thing one needs to disprove the statement is a single example.  If I didn't know any better, I'd say that Mi&eacute;ville was a troll.  In an effort to explain himself, he offers three examples, one of which is perhaps the most infamous crime solver of them all:
<blockquote>
...crime novels are not what they say they are. They are not, for a start, realist novels. Holmes&#8217;s intoxicating and ludicrous taxonomies derived from scuffs on a walking stick are not acts of ratiocination but of bravura magical thinking. (Not that they, or other &#8216;deductions&#8217;, are necessarily &#8216;illogical&#8217;, or don&#8217;t make sense of the evidence, but that they precisely do so: they make it into sense. The sense follows the detection, in these stories, not, whatever the claim, vice versa.)
</blockquote>
From what I've read of Sir Arthur Conan Doyle (which is not terribly much), I'd have to agree with Mi&eacute;ville here.  Sherlock Holmes is an enjoyable character because of his immense intelligence and ridiculous powers of observation, but I always somehow feel cheated by this.  There is a certain vicarious thrill when Holmes deducts the truth via details so small that no mere mortal would notice them, but at the same time, I always find myself annoyed when this happens because these details which Holmes uses in his logic were often not available to me as the reader.  It's something of a cheat, what Mi&eacute;ville rightly calls "magical thinking."  So yes, I did find myself let down by my first Sherlock Holmes story (and subsequent ones).  Perhaps this is why the <a href="http://www.youtube.com/watch?v=k8OM1BA2PIU">latest cinematic interpretation of Holmes</a> makes him into an action hero and master of martial arts (Incidentally, I think I'd rather have the mystery with an impossible ending, thankyouverymuch.  In reality, we'll probably get both.)
<blockquote>
...detective novels are not novels of detection, still less of revelation, still less of solution. Those are all necessary, but not only are they insufficient, but they are in certain ways regrettable. These are novels of potentiality. Quantum narratives. Their power isn&#8217;t in their final acts, but in the profusion of superpositions before them, the could-bes, what-ifs and never-knows. Until that final chapter, each of those is as real and true as all the others, jostling realities all dreamed up by the crime, none trapped in vulgar facticity. That&#8217;s why the most important sentence in a murder mystery isn&#8217;t the one starting &#8216;The murderer is&#133;&#8217; - which no matter how necessary and fabulously executed is an act of unspeakable narrative winnowing -  but is the snarled expostulation halfway through: &#8216;Everyone&#8217;s a suspect.&#8217; Quite. When all those suspects become one certainty, it&#8217;s a collapse, and a let-down. How can it not be?
</blockquote>
This is perhaps where Mi&eacute;ville falters.  The point he makes here (it's the journey, not the destination) is fine by itself I suppose, but it ultimately comes down to the fact that we're disappointed by the ending because, well, it ended.  Something similar could be said for almost any story.  How many times have you finished a book or a movie or any other form of storytelling and wanted more?  How many times have you wanted to spend more time with your favorite characters?   In all stories that end, there are possibilies that are constricted by the finale.  One might even argue that this is the point of storytelling (and sure, there's room for subversion and deconstruction there too, but such techniques rely on the original tropes to work in the first place).
<br><br>
Unfortunately, our desire for more isn't always a good thing.  This summer's blockbuster movie fare is a reasonable example of this. <a href='http://www.imdb.com/title/tt0458525/' title='IMDB: X-Men Origins: Wolverine'>X-Men Origins: Wolverine</a> revealed nothing of particular consequence.  We'd have probably been better off not knowing the specifics of Logan's past.  Vague insinuations of a mysterious past did a pretty fantastic job in the first two movies.  Similarly, I had always loved the brief glimpses of the future shown in James Cameron's <a href='http://www.imdb.com/title/tt0088247/' title='IMDB: The Terminator'> Terminator</a> films and wanted to see more.  So along comes <a href='http://www.imdb.com/title/tt0438488/' title='IMDB: Terminator Salvation'>Terminator Salvation</a>, which adds nothing of particular consequence to the series. I haven't read it in a while, but <a href="http://en.wikipedia.org/wiki/Terminator:_The_Burning_Earth">Terminator: The Burning Earth</a> did an excellent job telling pretty much the same story, so perhaps such efforts are not always doomed to failure.  As Mi&eacute;ville notes, all of this may be due more to "authorial inadequacy" than anything else.  It is quite easy to provoke interest in a plot or a mystery, but more difficult to solve it in an entertaining manner.   
<br><br>
I think some authors tend to write themselves into a corner by exploring intriguing ideas.  Ideas that are so intriguing that they don't want to give them up when they realize that there is no adequate solution.  Stephen King seems like one of these people.  Look no further than the <a href="http://www.amazon.com/exec/obidos/tg/detail/-/0670032565/kaedrin">third Dark Tower tome</a>, which ended on a cliffhanger several years before the release of the next book (by which time he had concocted a not-so-convincing answer to the cliffhanger, then rushed on to tell a different story, perhaps hoping to distract us from his cliff-hanging shennanigans).  Other stories I've read of his do similar things (I mean seriously, <em>the hand of God came down and saved them</em> should not be a valid option for saving your characters from an inescapable position).
<br><br>
Long form television series suffer from this as well.  The <em>X-Files</em> and <em>Battlestar Galactica</em> are two that come to mind for me.  Each has a pretty underwhelming ending (did X-Files ever even end?  Does anyone care?), and I have to say that part of the reason I haven't progressed past the first season of <em>Lost</em> is that I'm pretty sure the ending will be pretty lame.  And I have to admit that I'm less outraged about Firefly now that I realize that it probably would have <a href="http://kaedrin.com/weblog/archive/001526.html">gone on too long and ended poorly</a>.  Of course, like any true geek, I'm still outraged, just not as much as I used to be.
<br><br>
But I digress.  I think what Mi&eacute;ville is really saying here is rather simple: it's hard to write a crime story with a good ending.  This isn't exactly earth shattering news.  It's hard to write a good ending to any story, let alone something like a crime novel (which I admit presents more of a challenge than some other genres). I don't think it's inaccurate to say that most attempts fail, just as Mi&eacute;ville claims.  <a href="http://en.wikipedia.org/wiki/Sturgeon's_law">Sturgeon's Law</a> seems particularly relevant here, but I don't think it's impossible to write a good ending to a crime novel.  To his credit, Mi&eacute;ville does cite one example of a successful crime novel ending (alas, this book does not appear to be available, uh, anywhere).  After all, while Sturgeon's Law states that 90% of everything is crap, there is still 10% of everything that is not!  But what do I know, <a href="http://kaedrin.com/weblog/archive/001495.html">apparently I'm easy on people who write "bad" endings</a>.]]></description>
<link>http://kaedrin.com/weblog/archive/001642.html</link>
<guid>http://kaedrin.com/weblog/archive/001642.html</guid>
<category>Arts &amp; Letters</category>
<pubDate>Wed, 27 May 2009 20:04:30 -0500</pubDate>
</item>

<item>
<title>Video Game Podcasts</title>
<description><![CDATA[Thanks to my recent interest in video games and with the end of <a href="http://blog.spout.com/category/filmcouch/">one of my favorite movie podcasts</a>, I've been looking to video game podcasts to augment my time.  Alas, the pickins are somewhat slim.  Still, there have been a few bright spots and I've found some other promising prospects as well.  
<ul>
<li><a href="http://www.1up.com/do/minisite?cId=3144909&ct=PODCASTS">Listen Up!</a> - This podcast (formerly known as "1up Yours") is put together by the fine folks over at <a href="http://www.1up.com/">1up.com</a> and can be quite entertaining.  There are generally about 4 people on the program at any given time - the regular lineup seems to change up semi-frequently (though at the beginning of the year, several people left 1up to work for other publications or even game companies), but there seems to be a pretty constant core 3 people right now, with a rotating 4th person.  Each episode runs about 2 hours or so and has a similar format.  Each person talks about what games they've been playing that week (which generally takes up about half the show), followed by a segment or two on news, interviews, or questions from their audience.  These guys play a lot of games (it is, after all, their job), probably wayyy more than you or I do, but I've found it to be somewhat interesting even when I'm not that familiar with the games they're talking about (which is most of the time).  Since they're reviewers, they will often be playing games and giving impressions about them before release (this can be annoying when they say they played a game but can't talk about it because of a press embargo or something).  All in all, it's a solid podcast, and they put out a large amount of content on a regular schedule.  This has become one of my two main podcasts every week (the other being <a href="http://filmspotting.net/">Filmspotting</a>).</li>
<li><a href="http://www.brainygamer.com/">The Brainy Gamer Podcast</a> - The companion podcast to Michael Abbott's excellent video game blog, it often features interviews and commentary with prominent journalists or video game professionals.  A typical episode runs about 1- 2 hours or so.  There's no set format really, so you can get an in depth discussion or a series of smaller discussions.  Abbott is an intelligent guy and a decent interviewer, and the show often tackles subjects in ways you don't normally associate with gamers.  New episodes seem to be published once a month, towards the beginning of the month.  Depending on what's going on, it could be a single episode or multiple episodes (for instance, during the GDC conference, he published a couple of episodes at once, and he had a nice 3 part holiday edition as well).  It's not as regular as Listen Up, but it's high quality stuff.</li>
<li><a href="http://mexicutedbyhepitacos.libsyn.com/">Out of the Game</a> - This one's a bit of a cheat since it doesn't focus exclusively on video games, but I gather it's put together by several former video game journalists who like to get together and talk about interesting stuff.  There's no real set format for the show, but they seem to come to each episode with a plan and that seems to work out well.  It seems to be something of a media diet type show, where each person talks about what they're reading/watching/playing... though it covers other topics as well (and often, they'll discuss interesting ideas that are presented in the book/movie/tv show/game rather than just doing the standard review).  The episodes come out around every other week and are typically somwhere between 1.5 and 2 hours long.  This has become another of my favorite podcasts, perhaps because the people on the show are always discussing ideas and concepts that are really interesting...</li>
<li>A couple of now-defunct podcasts I like are Game Theory (no website anymore) and the long defunct <a href="http://www.mastercritic.com/mcpodcast/">Mastercritic</a> (which was mostly movies, but was put together by people who worked on video games and who did occasional video game episodes).  </li>
</ul>
It remains to be seen whether or not any of these will spur video game playing the way Filmspotting (then Cinecast) spurred moviewatching, but so far, I wouldn't say that it has (perhaps because video games take so much longer to play - it's much easier to keep up with a movie or two a week than it is to play 10 games a week.)  Still, I find these podcasts pretty interesting and so long as they continue, I'll be listening...]]></description>
<link>http://kaedrin.com/weblog/archive/001641.html</link>
<guid>http://kaedrin.com/weblog/archive/001641.html</guid>
<category>Video Games</category>
<pubDate>Sun, 24 May 2009 21:05:38 -0500</pubDate>
</item>

<item>
<title>Friday the 13th Marathon (parts IX &amp; X)</title>
<description><![CDATA[Coming down the homestretch, the next two <em>Fridays</em> feature what could charitably be described as high concept plots.

<ul>
<li><a href='http://www.imdb.com/title/tt0107254/' title='IMDB: Jason Goes to Hell: The Final Friday'>Jason Goes to Hell: The Final Friday</a>: After the unsuccessful debacle that was part VIII, Paramount shelved the <em>Friday</em> franchise and eventually sold it to New Line Cinema (known in the industry as "the house that <a href="http://www.imdb.com/title/tt0087800/">Freddy</a> built").  The filmmakers decided to take the series in a completely different direction, attempting to establish something of a mythology for Jason and devising a bizzare body-hopping scheme that <em>Friday</em> fans seem to either love or hate.  So this winds up being the least <em>Friday</em>-like movie in the series.  Indeed, while Jason appears in the film, most of his screen time is spent inhabiting the bodies of other characters as he hops from one to the other in an effort to reincarnate himself.  It turns out that Jason can only be reborn in the body of another Voorhees.  Also, he can only be killed by a Voorhees.  As such, there are a few Voorhees women in the movie and... damn, this is a pretty bonkers idea to hinge the movie on.  I have to respect the filmmakers' ambition to do something new and interesting with the series and I actually like the idea here, but in what has become the refrain for the series, there were some problems in the execution.  The film starts out promisingly enough, with Jason stalking a scantily clad woman through the woods when suddenly the enter a clearing, giant lights turn on and an FBI swat team unleashes an assault on Jason, eventually dropping a fucking bomb on him and blowing him up. From there, things start to go awry, but I have to admit that I found myself enjoying this film.
<br><br>
<center>
<a href="http://kaedrin.com/images/screenshots/f13/f13-9-6.jpg"><img src="http://kaedrin.com/images/screenshots/f13/f13-9-6_sm.jpg" alt="Creighton Duke, Dopey Bounty Hunter" border="0"></a><br>
<em>Creighton Duke, Dopey Bounty Hunter</em>
</center>
<br>
The one thing that really elevates this film above some of the others in the character of Creighton Duke, a nutty bounty hunter who has sworn to hunt down and destroy Jason, once and for all.  To give you an idea just how dopey this character is, I present this exerpt from a hard-hitting interview with Mr. Duke:
<blockquote>
<strong>Robert Campbell:</strong> I'm going to say a couple of words to you and I want you to say the first thing that comes into your mind. <br>
<strong>Creighton Duke: </strong>Okay. <br>
<strong>Robert Campbell: </strong>Jason Voorhees.<br> 
<strong>Creighton Duke: </strong>That makes me think of a little girl in a pink dress sticking a hot dog through a doughnut.
</blockquote>
I swear to God, that's in the movie.  He actually says that, and I'm not taking it out of context either.  It's fucking brilliant, isn't it?  By the way, this is probably a good time to mention that this movie actually features a few bona-fide actors and actresses.  The aforementioned Creighton Duke was played with campy glee by Steven Williams (of <em>X-Files</em> and <em>21 Jump Street</em> fame).  In the dialogue above, the character of Rober Campbell is played by Steven Culp, who is most famous for <em>Desperate Housewives</em> but has also done some good work in movies (he was a great RFK in <a href='http://www.imdb.com/title/tt0146309/' title='IMDB: Thirteen Days'>Thirteen Days</a>).  And, of course, Erin Gray from <em>Buck Rodgers</em>.  Anyway, the movie can be fun if you're in the right frame of mind, but it's ultimately not that great (shocking, I know).  There are a few good kills and the filmmaking is slightly slicker than previous installments. Unfortunately, the story doesn't make much sense, especially when measured against the rest of the series.  Then again, the rest of the series represents something of a <a href="http://en.wikipedia.org/wiki/Retcon">retcon</a> nightmare, so it kinda makes sense to completely go off the deep end, right?  RIGHT?  Also amusing is that this movie is subtitled "The Final Friday" while there are still three more films in the series (well, one more, a crossover, and a reboot, but still).  Actually, I respect what the filmmakers were going for here, and there are some interesting elements that they were able to pull together, but this is ultimately lacking and it doesn't fit too well with the rest of the series...  But it has a nice final shot, previewing what will happen in a later movie (alas, it would not happen for another decade or so... but we'll cover that in the next post). **1/2
</li>

<li><a href="http://www.youtube.com/watch?v=k3CaYYEkGXI">Crazy Ralph Tribute</a></li>
<li><a href="http://www.youtube.com/watch?v=CPd5XLtzEVA">Freddy vs. Jason (trailer)</a></li>
<li><a href="http://www.youtube.com/watch?v=ZlSLaeJIrgY">Friday the 13th (2009 - trailer)</a></li>

<li><a href='http://www.imdb.com/title/tt0211443/' title='IMDB: Jason X'>Jason X</a>:  At this point in the series, there really wasn't anywhere to go.  So what the hell, let's send Jason into space!  There's actually not much to say about this movie.  It's exactly the sort of silly fun you'd expect "Jason in space" to be.  It features one truly iconic kill (which will be chronicled in the extended entry) and another that is a reprise of an older iconic kill (with an added twist that really perfects the notion). It also features an odd cameo by director David Cronenberg, who plays a government official who helped capture Jason and freeze him.  I'm seriously baffled by the appearance of such a good director in such a bad movie, but then again, perhaps this lends creedence to my <a href="http://kaedrin.com/weblog/archive/001637.html#001637more">uncredited Francis Ford Coppola cameo theory</a> (see bottom of linked post). The movie is also notable for nanobot technology that completely rebuilds Jason, turning him into, no shit, Uber-Jason.  I kinda like the new look, but it also seems pretty dated (which is pretty impressive considering that this movie isn't that old).  
<br><br>
<center>
<a href="http://kaedrin.com/images/screenshots/f13/f13-x-7.jpg"><img src="http://kaedrin.com/images/screenshots/f13/f13-x-7_sm.jpg" alt="Uber-Jason" border="0"></a><br>
<em>Uber-Jason</em>
</center>
<br>
This is actually the first <em>Friday</em> movie made after <a href='http://www.imdb.com/title/tt0117571/' title='IMDB: Scream'>Scream</a>, which probably explains the ridiculous premise and tongue-in-cheek feel to most of the movie.  Straightforward slasher movies of the sort the <em>Friday</em> series thrived on aren't made anymore... So this is a movie I had a lot of fun with, but which is also pretty obviously a bad movie.  It also leaves the series nowhere to go, hence the recent reboot (which will be covered in the next post).  **1/2</li>
</ul>
More screenshots and comments in the extended entry below...]]></description>
<link>http://kaedrin.com/weblog/archive/001640.html</link>
<guid>http://kaedrin.com/weblog/archive/001640.html</guid>
<category>Movies</category>
<pubDate>Wed, 20 May 2009 19:00:27 -0500</pubDate>
</item>

<item>
<title>Subterranean Filmsick Blues</title>
<description><![CDATA[To celebrate a significant milestone in his life, Alonso Moseley (best fake blogger name evar) of <a href="http://acrentropy.blogspot.com/">Acrentropy</a> has posted a new filmic compilation and made a contest out of it:
<blockquote>
On May 17th, between 7pm and 8pm EST, I will post my newest clipshow to YouTube. The first person to email me (alonzomosleyfbi@yahoo.com) the complete and correct list of 88 titles will win a DVD prize pack. There's no fee to enter, but only one entry per person, please. 
<br><br>
I'm doing this all out of my own pocket to celebrate the upcoming birth of my first child in June (and this is easier than passing out cigars to all of you). So tune in on May 17th, and good luck!
</blockquote>
So I figure I'll take a shot.  I doubt I'll be able to get all 88 films, but these things are fun anyway (for reference, this is the same guy who did  <a href="http://www.youtube.com/watch?v=FExqG6LdWHU">100 Movies, 100 Quotes, 100 Numbers</a> and <a href="http://www.youtube.com/watch?v=k97JpnZRDgo">100 Movies, 100 Quotes, 100 Numbers: The Centennial Edition</a>).  Here's the video:
<br><br>
<center>
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/fmtlSUt_BIk&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/fmtlSUt_BIk&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
</center>
<br>
And here are my guesses (the * denotes when I'm not positive, but still reasonably sure):
<ol>
<li><a href='http://www.imdb.com/title/tt0088763/' title='IMDB: Back to the Future'>Back to the Future</a></li>
<li><a href='http://www.imdb.com/title/tt0137523/' title='IMDB: Fight Club'>Fight Club</a></li>
<li><a href='http://www.imdb.com/title/tt0093779/' title='IMDB: The Princess Bride'>The Princess Bride</a></li>
<li><a href='http://www.imdb.com/title/tt0105236/' title='IMDB: Reservoir Dogs'>Reservoir Dogs</a></li>
<li><a href='http://www.imdb.com/title/tt0031679/' title='IMDB: Mr. Smith Goes to Washington'>Mr. Smith Goes to Washington</a></li>
<li><a href='http://www.imdb.com/title/tt0094226/' title='IMDB: The Untouchables'>The Untouchables</a></li>
<li><a href='http://www.imdb.com/title/tt0119488/' title='IMDB: L.A. Confidential'>L.A. Confidential</a></li>
<li><a href='http://www.imdb.com/title/tt0064665/' title='IMDB: Midnight Cowboy'>Midnight Cowboy</a> * (Is that Ratso?  Gah, haven't seen this movie often enough to tell...)</li>
<li><a href='http://www.imdb.com/title/tt0034583/' title='IMDB: Casablanca'>Casablanca</a></li>
<li><a href='http://www.imdb.com/title/tt0241527/' title='IMDB: Harry Potter and the Sorcerers Stone'>Harry Potter and the Sorcerer's Stone</a> * (Could be any one with Quidditch, right?  I'll go with the first one though.)</li>

<li><a href='http://www.imdb.com/title/tt0080684/' title='IMDB: Star Wars: Episode V - The Empire Strikes Back'>Star Wars: Episode V - The Empire Strikes Back</a></li>
<li><a href='http://www.imdb.com/title/tt0120655/' title='IMDB: Dogma'>Dogma</a></li>
<li><a href='http://www.imdb.com/title/tt0054215/' title='IMDB: Psycho'>Psycho</a> * (this had me stumped for a bit, but I think I nailed it down)</li>
<li>Not sure. 26 seconds in. <em>Update:</em> Commenter grasskit notes that this is probably the godfather, but I'm pretty sure it's <a href='http://www.imdb.com/title/tt0071562/' title='IMDB: The Godfather: Part II'>The Godfather: Part II</a> (Because the first is already in the vid, and why would you include the third?)</li>
<li><a href='http://www.imdb.com/title/tt0098635/' title='IMDB: When Harry Met Sally...'>When Harry Met Sally...</a></li>
<li>Not sure.  29 seconds in, John Wayne in a raccoon hat? <em>Update:</em> Kaedrin friend gmichailovic mentions that this is probably <a href='http://www.imdb.com/title/tt0053580/' title='IMDB: The Alamo'>The Alamo (1960)</a>.  Duh, he plays Davy Crockett.</li>
<li><a href='http://www.imdb.com/title/tt0079588/' title='IMDB: The Muppet Movie'>The Muppet Movie</a> * (Could be one of their other movies I guess)</li>
<li>Not sure.  31 seconds in.</li>
<li><a href='http://www.imdb.com/title/tt0070379/' title='IMDB: Mean Streets'>Mean Streets</a> *</li>
<li><a href='http://www.imdb.com/title/tt0080455/' title='IMDB: The Blues Brothers'>The Blues Brothers</a></li>

<li>Stupid tapdancing musical of some kind.  38 seconds in.</li>
<li><a href='http://www.imdb.com/title/tt0130827/' title='IMDB: Lola rennt'>Run Lola Run (Lola rennt)</a></li>
<li>Not sure.  41 seconds in.  I want to say <a href='http://www.imdb.com/title/tt0058331/' title='IMDB: Mary Poppins'>Mary Poppins</a> but... you know what, I'm virtually positive this is Mary Poppins, even though I haven't seen it in like 25 years.  Let's go with that.</li>
<li><a href='http://www.imdb.com/title/tt0113277/' title='IMDB: Heat'>Heat</a> ("Cause she's got a great ass... and you got your head all the way up it!")</li>
<li><a href='http://www.imdb.com/title/tt0091419/' title='IMDB: Little Shop of Horrors'>Little Shop of Horrors</a> *</li>
<li><a href='http://www.imdb.com/title/tt0071360/' title='IMDB: The Conversation'>The Conversation</a></li>
<li>Not sure. 47 seconds in.  Is that Paul Newman? <em>Update: </em>Kaedrin friend Larry thinks this might be <a href='http://www.imdb.com/title/tt0051459/' title='IMDB: Cat on a Hot Tin Roof'>Cat on a Hot Tin Roof</a>, a movie I have not seen, but which might be right.</li>
<li><a href='http://www.imdb.com/title/tt0240772/' title='IMDB: Ocean's Eleven'>Ocean's Eleven</a></li>
<li><a href='http://www.imdb.com/title/tt0102138/' title='IMDB: JFK'>JFK</a></li>
<li><a href='http://www.imdb.com/title/tt0295297/' title='IMDB: Harry Potter and the Chamber of Secrets'>Harry Potter and the Chamber of Secrets</a> * (I think?  Hard to see there...)</li>

<li><a href='http://www.imdb.com/title/tt0106977/' title='IMDB: The Fugitive'>The Fugitive</a></li>
<li><a href='http://www.imdb.com/title/tt0110912/' title='IMDB: Pulp Fiction'>Pulp Fiction</a></li>
<li>Not sure.  55 seconds in.</li>
<li><a href='http://www.imdb.com/title/tt0120382/' title='IMDB: The Truman Show'>The Truman Show</a></li>
<li><a href='http://www.imdb.com/title/tt0095016/' title='IMDB: Die Hard'>Die Hard</a></li>
<li>Not sure.  59 seconds in.</li>
<li><a href='http://www.imdb.com/title/tt0066999/' title='IMDB: Dirty Harry'>Dirty Harry</a></li>
<li><a href='http://www.imdb.com/title/tt0107048/' title='IMDB: Groundhog Day'>Groundhog Day</a></li>
<li><a href='http://www.imdb.com/title/tt0032138/' title='IMDB: The Wizard of Oz'>The Wizard of Oz</a> *</li>
<li>Not sure. 1:05 in.  I want to say <a href='http://www.imdb.com/title/tt0064116/' title='IMDB: C era una volta il West'>Once Upon a Time in the West</a>, but Charles Bronson was Harmonica, and that doesn't look like him...</li>

<li><a href='http://www.imdb.com/title/tt0091042/' title='IMDB: Ferris Buellers Day Off'>Ferris Bueller's Day Off</a></li>
<li><a href='http://www.imdb.com/title/tt0066921/' title='IMDB: A Clockwork Orange'>A Clockwork Orange</a></li>
<li><a href='http://www.imdb.com/title/tt0138097/' title='IMDB: Shakespeare in Love'>Shakespeare in Love</a> *</li>
<li>Not sure.  1:12.  Looks like a silent comedy type of thing, an area I'm not too familiar with...</li>
<li>Not sure.  Not much to go on here, and it's not ringing a bell...</li>
<li><a href='http://www.imdb.com/title/tt0104348/' title='IMDB: Glengarry Glen Ross'>Glengarry Glen Ross</a></li>
<li><a href='http://www.imdb.com/title/tt0042192/' title='IMDB: All About Eve'>All About Eve</a> *</li>
<li><a href='http://www.imdb.com/title/tt0126029/' title='IMDB: Shrek'>Shrek</a> * (no idea which one, so I'll go with the original)</li>
<li><a href='http://www.imdb.com/title/tt0082971/' title='IMDB: Raiders of the Lost Ark'>Raiders of the Lost Ark</a></li>
<li><a href='http://www.imdb.com/title/tt0105435/' title='IMDB: Sneakers'>Sneakers</a></li>

<li>Not sure. 1:18 in.  Obviously a Steve Martin movie.  Possibly <a href='http://www.imdb.com/title/tt0095031/' title='IMDB: Dirty Rotten Scoundrels'>Dirty Rotten Scoundrels</a> but I'm not sure...</li>
<li><a href='http://www.imdb.com/title/tt0095631/' title='IMDB: Midnight Run'>Midnight Run</a> (this was obviously going to be in here somewhere)</li>
<li><a href='http://www.imdb.com/title/tt0093058/' title='IMDB: Full Metal Jacket'>Full Metal Jacket</a></li>
<li><a href='http://www.imdb.com/title/tt0304141/' title='IMDB: Harry Potter and the Prisoner of Azkaban'>Harry Potter and the Prisoner of Azkaban</a> (seriously? 3 HP movies?)</li>
<li><a href='http://www.imdb.com/title/tt0093822/' title='IMDB: Raising Arizona'>Raising Arizona</a></li>
<li><a href='http://www.imdb.com/title/tt0118749/' title='IMDB: Boogie Nights'>Boogie Nights</a></li>
<li>Not sure.  1:24 in.  Song says something about cheaters, and this is reminding me of something like <a href='http://www.imdb.com/title/tt0090863/' title='IMDB: The Color of Money'>The Color of Money</a>, but I can't tell... <em>Update:</em> Commenter grasskit notes that this is <a href='http://www.imdb.com/title/tt0120735/' title='IMDB: Lock, Stock and Two Smoking Barrels'>Lock, Stock and Two Smoking Barrels</a>, which makes sense.</li>
<li>Not sure.  Obviously a war movie, probably Vietnam era, but still not sure.</li>
<li><a href='http://www.imdb.com/title/tt0075686/' title='IMDB: Annie Hall'>Annie Hall</a></li>
<li><a href='http://www.imdb.com/title/tt0090685/' title='IMDB: Back to School'>Back to School</a></li>

<li><a href='http://www.imdb.com/title/tt0096928/' title='IMDB: Bill & Ted's Excellent Adventure'>Bill & Ted's Excellent Adventure</a></li>
<li><a href='http://www.imdb.com/title/tt0091763/' title='IMDB: Platoon'>Platoon</a></li>
<li><a href='http://www.imdb.com/title/tt0061512/' title='IMDB: Cool Hand Luke'>Cool Hand Luke</a> *</li>
<li><a href='http://www.imdb.com/title/tt0053221/' title='IMDB: Rio Bravo'>Rio Bravo</a> *</li>
<li>Not sure.  1:36 in.  B&W western.</li>
<li>Also not sure.  This silliness seems like a movie I would have seen. <em>Update:</em> Commenter grasskit notes that this is <a href='http://www.imdb.com/title/tt0085959/' title='IMDB: The Meaning of Life'>The Meaning of Life</a>, another movie I need to catch up with...</li>
<li><a href='http://www.imdb.com/title/tt0081505/' title='IMDB: The Shining'>The Shining</a></li>
<li><a href='http://www.imdb.com/title/tt0467406/' title='IMDB: Juno'>Juno</a></li>
<li><a href='http://www.imdb.com/title/tt0105323/' title='IMDB: Scent of a Woman'>Scent of a Woman</a> *</li>
<li><a href='http://www.imdb.com/title/tt0103064/' title='IMDB: Terminator 2: Judgment Day'>Terminator 2: Judgment Day</a></li>

<li><a href='http://www.imdb.com/title/tt0109707/' title='IMDB: Ed Wood'>Ed Wood</a></li>
<li><a href='http://www.imdb.com/title/tt0086250/' title='IMDB: Scarface'>Scarface</a></li>
<li><a href='http://www.imdb.com/title/tt0317705/' title='IMDB: The Incredibles'>The Incredibles</a></li>
<li><a href='http://www.imdb.com/title/tt0068646/' title='IMDB: The Godfather'>The Godfather</a></li>
<li>Not sure.  1:49 in.  Is that Steve McQueen? <em>Update:</em> Kaedrin friend gmichailovic thinks this might be <a href='http://www.imdb.com/title/tt0054698/' title='IMDB: Breakfast at Tiffanys'>Breakfast at Tiffany's</a>, which might be right...</li>
<li><a href='http://www.imdb.com/title/tt0077975/' title='IMDB: Animal House'>Animal House</a></li>
<li><a href='http://www.imdb.com/title/tt0151804/' title='IMDB: Office Space'>Office Space</a></li>
<li><a href='http://www.imdb.com/title/tt0330373/' title='IMDB: Harry Potter and the Goblet of Fire'>Harry Potter and the Goblet of Fire</a></li>
<li><a href='http://www.imdb.com/title/tt0072431/' title='IMDB: Young Frankenstein'>Young Frankenstein</a></li>
<li>Not sure. 1:56 in.  That looks like Carrie-Anne Moss, so perhaps one of the <em>Matrix</em> movies or <em>Memento</em>?</li>

<li><a href='http://www.imdb.com/title/tt0084787/' title='IMDB: The Thing'>The Thing</a></li>
<li>Not sure.  1:59 in.  <em>Lawrence of Arabia</em>? <em>Update:</em> According to commenter grasskit, this is <a href='http://www.imdb.com/title/tt0079470/' title='IMDB: Life of Brian'>Life of Brian</a>.  I need to watch more Python...</li>
<li><a href='http://www.imdb.com/title/tt0033467/' title='IMDB: Citizen Kane'>Citizen Kane</a></li>
<li><a href='http://www.imdb.com/title/tt0047296/' title='IMDB: On the Waterfront'>On the Waterfront</a> *</li>
<li><a href='http://www.imdb.com/title/tt0073486/' title='IMDB: One Flew Over the Cuckoo's Nest'>One Flew Over the Cuckoo's Nest</a></li>
<li><a href='http://www.imdb.com/title/tt0071230/' title='IMDB: Blazing Saddles'>Blazing Saddles</a></li>
<li>Not sure. 2:06 in... <em>Update:</em> Another from commenter grasskit: <a href='http://www.imdb.com/title/tt0057115/' title='IMDB: The Great Escape'>The Great Escape</a>.  Again, I've not seen it, but it looks right.</li>
<li>Also not sure.  Stupid musicians. <em>Update:</em> Finally, another from commenter grasskit: <a href='http://www.imdb.com/title/tt0368794/' title='IMDB: Im Not There.'>I'm Not There.</a></li>
</ol>
Wow, someone from the Academy Awards needs to hire Alonso to produce some montages for the next Oscars!  Seriously awesome work there.  I don't know how he does it...
<br><br>
So I'm reasonably sure of about 68 out of 88.  Of those, there are a few I'm not positive about (again, marked with an *), but I think I did alright considering how hard some of those were...  Of the ones I don't know, I made a couple guesses, but I'm pretty sure they're wrong. Can you help fill in any of the gaps?
<br><br>
PS - Sorry, the next <em>Friday the 13th</em> Marathon post will have to wait a bit - this was too fun to pass up (and in a rare bit of convergence, it aligns with my posting schedule too)...
<br><br>
<strong>Update 5/18/09:</strong> Several of the unknowns have been provided by friends and a helpful commenter. The new ones have been added above...
<br><br>
<strong>Update 5/21/09:</strong> It appears that <a href="http://acrentropy.blogspot.com/2009/05/subterranean-filmsick-blues-list.html">the answers were announced yesterday</a>.  Looks like we did pretty good, but there were a handful of ones we didn't get (I'm kicking myself on a couple of them, but for the most part I haven't seen the ones that were missing from my answers.)]]></description>
<link>http://kaedrin.com/weblog/archive/001639.html</link>
<guid>http://kaedrin.com/weblog/archive/001639.html</guid>
<category>Movies</category>
<pubDate>Sun, 17 May 2009 19:05:01 -0500</pubDate>
</item>

<item>
<title>Link Dump</title>
<description><![CDATA[A few links for your enjoyment:

<ul>
<li><a href="http://www.funny-games.biz/alienstheboardgame.html">Aliens Board Game</a>: Ok, I admit, this is pretty much the reason I'm doing a link dump tonight instead of something more substantial.  Longtime readers know <a href="http://kaedrin.com/weblog/archive/001167.html">I love this game</a>, so cut me a break...</li>
<li><a href="http://www.flickr.com/photos/ollym/2967937004/">Tank!</a> - I wonder how many people will get the reference.</li>
<li><a href="http://www.youtube.com/watch?v=mHuEtd1HleI">Patrick Duffy Compilation</a> - There are no words.</li>
<li><a href="http://loadingreadyrun.com/videos/view/421/Watchmen-Watching">LoadingReadyRun - Watchmen Watching</a>: Who watches the watchers of the Watchmen?</li>
<li><a href="http://www.textsfromlastnight.com/">Texts From Last Night</a>: It's like <a href="http://bash.org/">bash.org</a> for people with cell phones.</li>
<li><a href="http://www.youtube.com/watch?v=f2mHkQUBEpM">Business Card Fail</a>: This is... awesome?  This can't be real.</li>
<li><a href="http://www.youtube.com/watch?v=AQMer46V0LY&NR=1">Kevin Smith Part 1 : Sellling Out And Salty Language</a>: What can I say, I'm a sucker for Kevin Smith interview type stuff, and there are several followups to this one.  In addition, I love those <a href="http://www.amazon.com/exec/obidos/ASIN/B00007149S/kaedrin">Evening With Kevin Smith DVDs</a> and have watched them multiple times (the first set is brilliant, the second is not as much, and the third, well, he spends like 45 minutes answering a question about his dogs, which started to grate at about the 20 minute mark.  Anyway, the first <em>Evening</em> is highly recommended if you like Smith's brand of raunchy humor.)</li>
<li><a href="http://beta.stinkdigital.tv/work/carousel">Carousel</a>:  Utterly amazing short film by Adam Berg (no credits on IMDB at this time) consisting of "an epic &#8216;frozen moment&#8217; cops and robbers shootout sequence that included clowns, explosions, a decimated hospital, and plenty of broken glass and bullet casings."  It's kinda hypnotic... amazing stuff.</li>
</ul>
That's all for now.  Stay tuned for more <em>Friday the 13th</em> madness on Sunday...]]></description>
<link>http://kaedrin.com/weblog/archive/001638.html</link>
<guid>http://kaedrin.com/weblog/archive/001638.html</guid>
<category>Link Dump</category>
<pubDate>Wed, 13 May 2009 20:11:45 -0500</pubDate>
</item>


</channel>
</rss>
