Flash, Forms, or DHTML?

March 29th, 2007

I’ve been trying to learn more and more about web development over the last few months. In part just because there’s a lot to the wider world of software than games, and I think that there’s much that game developers can learn from that wider world ( and vice versa for sure ).
Deliberately unemploying yourself […]

Read the rest of this post...

Blogging w/ XSLT

March 22nd, 2007

For a while now I’ve been wanting to write something that would take a Microsoft Word document and transform it into post-able html.
Word has better formatting, editing, navigation, undo/re-do, and spell check than any standard blogging product I’ve found.
It took me all of today (oh boy but my XSLT was rusty) but I finally got […]

Read the rest of this post...

String Hash

March 21st, 2007

This long overdue post takes a brief look at string hashes.
I was trolling through blogs ( in the passing ship sense, not the flame-baiting, nor monster under the bridge sense ) and came across John Gior’s post on FNV in games. Having never heard of FNV, I thought I’d take a […]

Read the rest of this post...

Sample Chapter

March 12th, 2007

I’ve just put my sample chapter online.
Feel free to take a look: Chapter 8: Templates.
Feedback (positive or negative) welcome and appreciated.

Read the rest of this post...

YAML’s Missing Type

January 31st, 2007

The YAML processing specification defines, in concept, three basic node types: map, sequence, and scalar. In practice, however, the specification requires four: map, sequence, scalar, and string. This post looks at: first, why the specification has four types; then, whether typical parsers successfully handle all four types; finally: why it would be okay to […]

Read the rest of this post...

Catalog Strategies

January 25th, 2007

I’ve been working at some of the more fussy bits of my book’s outline as of late. One of the issues I keep stumbling on is where and how to introduce packages and catalogs. To get this worked out I thought I’d put my pen to paper ( fingers to keys? ) for […]

Read the rest of this post...

Updates

January 24th, 2007

I’ve updated the formatting of a few posts, and fixed the most egregious spelling errors.
Thanks be to the Firefox auto-spell check ( though I honestly think my next mini-project will be an xml transform for Microsoft Word that will create posts straight from properly formatted doc files )
I’ve also added a short new page to […]

Read the rest of this post...

A Simple Yaml Parser

January 17th, 2007

This post is part tutorial for, part documentation of, the Simple Yaml Parser. The goal of this parser is to provide something that is simple to use, easy to understand, and trivial to duplicate. While I will talk a bit about the underlying implementation of the parser, this post focuses mainly on the […]

Read the rest of this post...

Syck and C/++

January 12th, 2007

I’ve got a simple parser running that I will post up come Monday.
First, some thoughts about Syck in C/++.
Syck does exactly what it sets out to do and does it well.
It’s designed to efficiently translate Yaml into the data structures of dynamically typed languages: it’s fast and has a fairly low memory overhead. It’s […]

Read the rest of this post...

In Search of a Simpler Yaml

January 10th, 2007

As part of my continuing exploration of Yaml I’m putting together a rough spec for a simplified subset of Yaml. I will be updating it from time to time in order to give it a little more polish.
As part of this effort I am also going to put together a simple reference implementation which […]

Read the rest of this post...