Categories
Dolumar English

Dolumar Summer of Code

The Dolumar Summer of Code has began! Like we announced earlier, Dolumar would get some serious updates in august, so last wednesday we began.

More information on the renewed battle system and the improved GUI will follow soon. Most of the graphics will be replaced with brand new, very cool looking graphics and a bunch of new gameplay element will be introduced.

Stay tuned for more information!

Our main designer & art director at workSneak preview to the new Dolumar ;-)

Categories
English Mijn Wereld Spam Uncategorized

I love the Whole World

And here you can find the XKCD version of this song 😉

Categories
English World Wide Web

Thijs’ guide to UTF8

The Thijs way!
This might not be the best way, but it does work like a charm!

First of all: make sure your document is written in UTF8. This will make sure that all forms you submit (yes, even in xmlHttpRequest calls) will be encoded in UTF8.

Second: make sure that your database connection is using UTF8 aswell! Using UTF8 as charset in your fields and tables is one thing, you have to make sure that your connection is using UTF8 aswell! You can change the default charset in your mysql configuration files, but the easiest way to make sure you are using UTF8 is actually telling your connection to use UTF8.
mysql_connect (DB_SERVER, DB_USER, DB_PASS);
mysql_select_db (DB_DATABASE);
mysql_query ("SET NAMES utf8");

This way you will lose those ugly non-utf8 characters in your database.

Now let’s take a look at the xmlHttpRequest. This is fairly simple: what do you want to do? Submit a form ofcourse. What do we have to take in mind? & and = are special characters, so we can’t use those in the form. A simple escape in javascript should take care of that.

The html:
<textarea id="myfield">Some data</textarea>
<button onclick="submitForm();">Submit</button>

The javascript (function submitForm()):
// Only escape the form field
var myfield = encodeURIComponent(document.getElementById('myfield').value);
var req= getXmlHttpRequest (); // Use your own function here..
req.open ('post', 'index.php', true);
req.setRequestHeader("Method", "POST index.php HTTP/1.1");
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
req.send ('myfield='+myfield);

How to receive it in PHP:
// Just remove the special url chars
$myfield = rawurldecode ($_POST['myfield']);

And that’s it really. Since your document is in UTF8 and your form fields are encoded in UTF8, the only thing you have to keep in mind is the “split symbols”. No need to encode or decode anything.

Categories
Dolumar English

SlashLife sais…

Muhaha. The first positive thing he ever said about me, and I’ve got it on logs!

[16:55] <SlashLife> Even though I’m still sure that you’re an inferior coder to me, I have to admit, that you’ve got ideas.

Now tell me that’s not positive!

Categories
English World Wide Web

Generating a tree from MySQL

A few days ago I was working on a navigation tree. The basic idea is simple: every navigation item is part of another navigation item or the root item.

Seems like a simple parent-child relation, so I made a MySQL table to store everything in. Every record has a parent_id and, ofcourse, an unique id. I wanted to load the data in a multi dimensional associated array in PHP, so that I could easily include them in my HTML templates (using recursive functions).

The general aproach for these kinds of data is recursive functions, but this leads to a huge amount of overhead and a lot of useless loops. That’s why I decided to take another approach, using references.

The basic idea is simple: for every parent you create, you write a reference to this parents’ children array in a seperate array.

Take in mind that, in order to use this approach, you need to sort your data on the depth level! That means you will have to store the level of a child (= count the parent, grandparent, …) in your table. Order your data ascending on depth level, and you should be alright. If you dont do this, the script will try to add records to unexisting parents.

You can find my example script here.

Categories
English Mijn Wereld

A little prayer

I have never been religious, but I do appreciate literature. This old, english prayer has always fascinated me. The first time I heard it was in Metallica’s song Enter Sandman (I’m sure you can find the lyrics somewhere) but today I decided to publish the old one.

Apparently, this prayer has been written in the 18th century.

Now I lay me down to sleep
I pray the lord my soul to keep;
And if I die before I wake,
I pray the Lord my soul to take.

Categories
English Spam

Omdat ik er al 2 dagen om grinnik…

duty_calls.png

Bron: xkcd.

Categories
English Uncategorized

Google Shares hit 666!

Google Shares hit 666!

Yesterday the NASDAQ closed with google at a value of $666 a share. This is, ofcourse, a very disturbing thing, especially when we take a closer look at the date: 27 / 11 / 2007, which equals, in fact, 666 aswell: 27 * 11 = 297, 297+2007=2304 = 2, 3, 0, 4 = 2,3,0,2,2 – 3 times each 2 = 666.

Also, Google’s name is based on the number googol, which is, in fact, 10100, which is, ofcourse, a very large number. And we all know that huge numbers are evil aswell.

Categories
English Spam

My Haiku

Flowers grow on ancient ground
My hearth is closed
Winter cold, summer hot. Done.

For April.

Categories
English Uncategorized

Windows Vista at it’s best

I’d like to share this very amusing video of a Vista demonstration.
Like you see, the speaker is talking about a feature that has been available for Mac Os for about 5 years?

It’s great to see how Microsoft keeps innovating.