I’ve been corresponding with Michael Goodfellow, a fellow coder who had recently begun a blog detailing a game he’s working on. If you enjoy the coding write-ups that I do around here then do make sure to give this a look. He’s actually working on an MMO. A few people have nudged me to talk about the technology behind Minecraft, but his post explains the core concepts. Pay special attention to the stuff on Octrees. An Octree is just a three-dimensional version of a quadtree, which I wrote about way back in February 2006. (Hey! This site turned 5 years old back in September and I didn’t notice!)
I’m a big fan of “coding in public” like this. When you’re working on a solo project you might have to plow months into your work before you even have something playable enough to show off, and those months of working in the dark can be disheartening. I’ve found writing about my work also helps to to organize it in my mind. And it makes for an entertaining read for everyone else.
Do check out Let’s Code and let him know what you think.
D&D Campaign

WAY back in 2005, I wrote about a D&D campaign I was running. The campaign is still there, in the bottom-most strata of the archives.
How I Plan To Rule This Dumb Industry

Here is how I'd conquer the game-publishing business. (Hint: NOT by copying EA, 2K, Activision, Take-Two, or Ubisoft.)
MMO Population Problems

Computers keep getting more powerful. So why do the population caps for massively multiplayer games stay about the same?
Push the Button!

Scenes from Half-Life 2:Episode 2, showing Gordon Freeman being a jerk.
Stop Asking Me to Play Dark Souls!

An unhinged rant where I maybe slightly over-reacted to the water torture of Souls evangelism.
A very interesting article, that informs me about a great deal I didn’t know. Thanks for the link!
Ah Coding, a primary alien thing to the likes of me. But extremely interesting to read.
Very cool, thanks for the link!
His site just fell over. Didn’t think it was even possible to crush a site serving static HTML and images anymore, at least, one that’s using modern hardware. Who knows, he might be using some dot com era fossil. The site design dates from at least then.
There also doesn’t seem to be a RSS feed, so I can’t subscribe to it, which pretty much means I won’t read it.
Such is the power of the Twenty Sided community.
I was hoping Shamus would announce the parts as they come out. I’m shooting for one a week, so it’s not like an RSS feed would be very active. More than one person complained though, so I guess I’ll stick a static RSS page in there somewhere.
As for the site, it’s an Apache server hosted on a Hazenet Virtual Private Server running Ubuntu. I’m disappointed it crashed so easily.
OK, RSS at http://www.sea-of-memes.com/rss.xml
Interesting read, thanks for that. Though I do feel mister Goodfellow seems to skip over a lot of stuff you make explicit, making it harder to follow for laypeople.
“I’m going to code my world in cubes. Bam, here they are. Now they’re forming a world. Now they have textures. Here, try this demo.”
Shamus warned me about that. This is my first technical writing for the public. I can expand things a bit if it’s a problem for a lot of people.
It’s just a matter of choosing your level.
Some people will be baffled by a line like “As we traverse the tree, we’ll add the various faces to buffers, one per texture.“, because they have no idea what a buffer is, or even what you mean by traversing a tree. Others will be looking for the ‘Next Post’ button because they already know how to do the basics of 3D graphics, but are looking for some other nugget of explanation.
You just have to choose how layman you’re going to enjoy pitching it and trust that your audience will follow along.
I agree with this notion. Don’t go radically changing your writing style just because some kid with a shiny blue avatar tells you you’re going too fast or too slow or whatever.
Pick your audience, write for them, and if I can’t keep up, hey, tough luck. Who knows, I might learn something trying to keep up.
Thanks for the link to your old terrain-making project – that remains a good read even now, when the code could probably run on an iPhone.
Coding in public seems to work pretty well for StarDock. It’s one of the things I love about their development team – they fill us in on technical difficulties as they crop up, and cooperate with technically astute fans in nailing down bugs.
Another blog to add to the rotation, thanks Shamus!
While we are at it – I recently stumbled across one of those new fancy managed high level languages. I’ve not done anything with .Net until now and I must say I am starting to like it.
The language is F#, and though it was a bit of a hassle to get the Visual Studio Shell up and running with it, coding was so easy. This Friday I wrote my very first lines in F# (and likewise .Net) and now, on Sunday, already have a working application that could be shown to other people. The code is so compact end efficient that I am still baffled to get so much out of so little, and even do some fancy things like using mousewheel scrolling as intuitive input.
I’ve uploaded the source and stand-alone windows executable, if you have a recent .Net framework installed it should work out-of-the-box on windows:
http://www.speedshare.org/download.php?id=10AABC8811
I seriously think I will try to do all my private coding exercises in F# from now on. The language looks brilliant to me.