I think I heard the word “graduation” butchered more times yesterday than I have in my entire life. Gradumacation, gradjeeyation, gorducation… blah :p
Everything went pretty well… I didn’t really care much for the speeches (except for Mr. McCollum’s… he’s always funny!) but consoled myself with the fact that I was almost done. I was so proud… I didn’t trip on my robe or knock my hat off when I flipped my tassel! Still, for only 21 graduates, we have one of the longest ceremonies EVER. Blah. But now it’s all done— and I’m free!
I got the coolest graduation gift from Kasey and Kaitlin… this huge multi-back-rubber thing… they know me too well :p After I showed it to people, they came to the general consensus that I needed to try it out immediately
But I also got a pair of Bose QuietComfort2 Noise-Canceling headphones from Mom and Dad. These things are NICE. Paired with my newly purchased Creative Audigy 2 ZS Platinum… mmmmmm 
Went and saw Shrek 2 with Emily today; it was pretty good… better than the first one. The movie started out kinda slow, but got pretty good. One of the highlights were the numerous spoofs off movies such as:
- The Lord of the Rings
- Beauty and the Beast
- Indiana Jones and the Raiders of the Lost Ark
- Mission Impossible
- The Matrix
and some more I’m probably not thinking of. Fun stuff ^_^
http://photos.sethkinast.com/thumbnails.php?album=1
All in all, I’m very pleased. More later.
Hahaha, sweet. My Wordpress review got published on the front page of Neowin
http://neowin.net/comments.php?id=20344&category=main
So XHTML is all evil and doesn’t allow target = “_blank”. Let’s try rel = “external” and see what happens with a bit of JavaScript 
function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName('a');
for (var i=0; i < anchors.length; i++) {
var anchor = anchors[i];
if ( anchor.getAttribute(’href’) &&
anchor.getAttribute(’rel’) == ‘external’ )
anchor.target = ‘_blank’;
}
}
window.onload = externalLinks;
We get opening in new windows using rel=”external”