Archive for December 11th, 2007

Nexuiz - A Free-for-all Free For All

Art, Graphics, Nexuiz, Personal No Comments »

My friend is making a movie for a free open-source first person shoot (FPS) we like to play from time to time. Much like the video below… except, this guy knows what he’s doing ;).

Today I designed some graphics for him to use in the movie.

Nexuiz Icons

It should be out in a few weeks. I’ll be sure to post information about it here for those interested.

Getting Entrecard to Work with Blogger

Blogger, Entrecard, Web Development 1 Comment »

Just the other day, I was trying to integrate Entrecard into one of my Blogger accounts and it didn’t work. The reason for this, is google’s very strict about their document validity, while Entrecard has seemingly over-looked a common HTML markup mistake. The use of an ampersand, rather than html entity:

& causes blogger to fail markup validation when saving.

Theirs:

<script src="http://entrecard.s3.amazonaws.com/widget.js?user_id=629&type=standard_200" type="text/javascript" id="ecard_widget"></script>

Valid:

<script src="http://entrecard.s3.amazonaws.com/widget.js?user_id=629&amp;type=standard_200" type="text/javascript" id="ecard_widget"></script>

Note: don’t just copy that code and use it in your blog… unless you want to display my card!