Two PS2 and one Gameboy CIB find

Picked these up for 10 euro’s in total. Unfortunately Wario Land is missing the manual and cardboard insert. The box however is in near mint condition.

Recent retrogaming pickups

Below are some pictures of some new retrogaming stuff I bought recently. I finally bought a Super Nintendo system along with some games. Although the Wii Virtual Console has most Super Nintendo games you would want to play, nothing beats the real deal!

80′s Atari 800XL commercials starring Alan Alda

Back in the early 80′s, the popular M*A*S*H actor Alan Alda starred in several Atari 800XL home computer commercials.

I tried to collect most (if not all) commercials I found on YouTube and hope you will enjoy them!

update: I removed the YouTube playlists by accident. I will try to rebuild them.

A few years later, Alan would star in the commercials of another computer manufacturer, “Big Blue” IBM :

update: I removed the YouTube playlists by accident. I will try to rebuild them.

Portal 2… it’s coming!

It’s true my fellow Portal fans. Valve announced this Friday that a sequel is in the works and will be released later this year! This confirms earlier suspicions of an upcoming sequel suggested by a recent patch to the game which introduced clues and a new achievement.

More details will be revealed in the next issue of Game Informer magazine, but apparantly it will be longer than it’s predecessor, and there possibly will be a Mac version.

Making validation with jquery-validate and Internet Explorer 6 work.

As a web developer, one of the more annoying things about forms is the validation part. Luckily there’s jquery-validate which makes validating forms as easy as just adding a simple class to an input field that needs validation.

However, during one of my latest projects I discovered that under certain conditions, jquery-validate doesn’t play nicely with Internet Explorer 6. By the time you will read this, things might have changed, but the issue I had was that no form validation was done at all.

After some Googling, it turned out the problem is caused by the fact that jquery-validate is encoded as ISO-8859-1. Since the page itself was using UTF-8, and Internet Explorer 6 seems to assume all scripts without a proper encoding defined must be using the same encoding as the page, this caused the validation to stop working.

The solution is simple however. You just need to change the line where jquery-validate is loaded :

<script src="jquery.validate.js" type="text/javascript"></script>

and add the proper encoding by adding charset=”iso-8859-1″ to the script tag :

<script src="jquery.validate.js" 
type="text/javascript" charset="iso-8859-1"></script>

An easy guide to installing Windows 7 RC under VMware Fusion

Installing the Microsoft Windows 7 Release Candidate under VMware Fusion on the Mac isn’t difficult at all. Probably the hardest step is downloading Windows 7 RC itself. But for those who still are unsure (or plain lazy), this guide was written! And if that wasn’t enough, a Flickr photoset with even more screenshots is available. Continue reading