David's blog
Attempt to rush an RPG
May 04, 2009 00:00
After reading an article on GameDev about a guy who managed to build an RPG in 40 hours, I decided I'd try my hand at doing an RPG 40 hours too, but in C#. So I started to write the first code on Saturday. After 10 hours of grue...
Read postPutting a separator between your elements
April 16, 2009 00:00
Often when I'm programming, I'll need to list a bunch of stuff and put commas between them. Like this:
1,2,3,4,5
Usually, this is what I, and most of my colleagues do:
List<int> nums = new List<int>();
for (int i = 0; i < 5; i++)
{
...
Read postUpdated the b_pool!
March 20, 2009 00:00
I've updated the bpool again! This one has got some new features such as string functions (not yet complete) and a new bresize function, which basically acts the same as realloc, except that if you are resizing the last block created on the pool, it will resize it without freeing. This makes it a ...
Read postGIS data for topography and shorelines and more
March 20, 2009 00:00
I've found a site recently that provides data for free on the world's shorelines and topography. They have got other datasets too that aren't as complete, but would probably be of interest to those of you who wish to do research on it. For m...
Read postRequesting Code Review
March 11, 2009 00:00
So I've been working on a memory pool lately as a hobby project, and I've come across some things that I haven't found a solution that would satisfy my gut yet. But, after reading this:
I started to realize that since I'm already o...
Read post