Tim Van Wassenhove

Passionate geek, interested in Technology. Proud father of two

03 Apr 2006

JSpace

I wrote a simple shoot-em-up game: JSpace.zip.
02 Apr 2006

Allow a form to be posted only once

People can fill in a form and submit it. Then they can hit their back button, and choose to submit it again. Usually the...
01 Apr 2006

Using cmd.exe

Earlier someone asked me how he could use windows cmd.exe with PHP. People run into trouble as soon as there are quotes ...
29 Mar 2006

Silly bug in Visual Studio 2005 editor

If you try to compile the code below you will see that the i in the second loop is not defined in my main function. Posi...
28 Mar 2006

More about marshalling

Last month i’ve started programming with the .NET Framework using Visual Basic, C++.NET and C# on a daily basis. T...
19 Mar 2006

Adding support for localization to a WordPress plugin

WordPress uses GNU gettext, as explained in Translating WordPress and Writing a Plugin, for localization. I decided that...
19 Mar 2006

Internationalizing strings with variables

Yesterday i wrote that you can use __($string, $domain) and _e($string, $domain) to internationalize a string with WordP...
19 Mar 2006

Plugin template for WordPress

Today i’ve been cleaning up my code. All my plugins live in a directory %plugin_name% under the wp-content/plugins...
15 Mar 2006

Adding an action when your plugin is activated

The WordPress documentation says that you have to call add_action(‘activate_pluginurl’, ‘somefunction&...
01 Mar 2006

More marshalling...

This snippet uses GetPrivateProfileString that is available in kernel32.dll. Apparently microsoft has decided to remove ...