<?xml version="1.0"?>
<rss version="2.0"><channel><title>Devplace</title><link>http://www.devplace.nl/blog</link><lastBuildDate>Sat, 26 Dec 09 10:54:52 +0100</lastBuildDate><generator>Habari 0.7-alpha http://habariproject.org/</generator><item><title>Updating Hyper-V drivers after a kernel upgrade on CentOS</title><link>http://www.devplace.nl/blog/updating-hyper-v-drivers-after-kernel-upgrade-on-centos</link><description>A few days ago I was updating a &lt;a href="http://www.centos.org/"&gt;CentOS&lt;/a&gt; machine that happens to be running on &lt;a href="http://www.microsoft.com/windowsserver2008/en/us/hyperv-main.aspx"&gt;Microsoft's Hyper-V platform&lt;/a&gt;. Everything went very smooth. So I tried to reboot the machine, because I wanted to make sure that everything worked fine after a reboot. &#xD;
&#xD;
&lt;h3&gt;The reboot&lt;/h3&gt;&#xD;
&#xD;
Apparently the kernel was updated too and the system did not boot with the new kernel. Since I have no access to the Hyper V environment itself, I needed to call my hosting provider (I only have shell access to the server). The restarted the machine and chose to boot the old kernel (which still worked). This was only a temporary solution because after a reboot the machine would still try to boot the new kernel. &#xD;
&#xD;
&lt;h3&gt;Linux Integration Components&lt;/h3&gt;&#xD;
&#xD;
After some investigation I found out that I needed to install the &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c299d675-bb9f-41cf-b5eb-74d0595ccc5c&amp;displaylang=en"&gt;Linux Integration Components&lt;/a&gt; for Hyper-V in the new kernel. It turns out that these integration components must be installed &lt;strong&gt;for each kernel that you want to boot into&lt;/strong&gt;. There is one problem however, the integration components will only be installed in the currently running kernel by default. Since I have no access to the Hyper V environment and the machine has no ethernet connection without the components, I needed to find another way to install the components into the new kernel. I called my hosting provider again and they wanted to help me, but they would charge me around &#x20AC; 90,- for this (simple) task. I decided to find another solution myself.&#xD;
&#xD;
&lt;h3&gt;Installing the Linux Integration Components into a non-running kernel&lt;/h3&gt;&#xD;
&#xD;
There are a &lt;a href="http://www.howtoforge.com/installing-hyper-v-linux-integration-components-on-centos-5"&gt;few&lt;/a&gt; &lt;a href="http://blogs.zdnet.com/perlow/?p=10830"&gt;good&lt;/a&gt; &lt;a href="http://blog.allanglesit.com/Blog/tabid/66/EntryId/36/Hyper-V-Guests-Linux-Integration-Components-on-RHEL-and-CentOS.aspx"&gt;tutorials&lt;/a&gt; for installing the Linux Integration Components in the currently running kernel, but I couldn't find proper documentation. It turns out that the scripts (and makefiles) that install the components make intensive use of the "&lt;strong&gt;uname -r&lt;/strong&gt;" command to find out for which kernel the integration components should be installed. This means taht by default it's not possible to install the components into another kernel. I found the following solution: &#xD;
&#xD;
&lt;ul&gt;&#xD;
  &lt;li&gt;&#xD;
    Create a checkpoint for your Hyper-V machine (if you can), so that you can always restore the machine to the current state in case something goes wrong.&#xD;
  &lt;/li&gt;&#xD;
  &lt;li&gt;Find the kernel that you want to boot in by listing the installed kernels.&#xD;
     &lt;pre class="brush: bash"&gt;rpm -q kernel&lt;/pre&gt;&#xD;
  &lt;/li&gt;&#xD;
  &lt;li&gt;In my case I got the following output:&lt;pre class="brush: bash"&gt;&#xD;
kernel-2.6.18-128.el5&#xD;
kernel-2.6.18-128.7.1.el5&#xD;
kernel-2.6.18-164.9.1.el5&#xD;
&lt;/pre&gt;&#xD;
In my case the running kernel was "2.6.18-128.7.1.el5" and I wanted to boot into the newest kernel "2.6.18-164.9.1.el5". &#xD;
&lt;/li&gt;&#xD;
  &lt;li&gt;Backup your linux integration components setup directory:&#xD;
     &lt;pre class="brush: bash"&gt;cp -R Linux_IC_V2 Linux_IC_V2-backup&lt;/pre&gt;&#xD;
    And change directory to the Linux integration components setup directory (in my case the components are installed in /root/Linux_IC_V2):&#xD;
    &lt;pre class="brush: bash"&gt;cd Linux_IC_V2&lt;/pre&gt;&#xD;
&lt;/li&gt;&#xD;
  &lt;li&gt;&#xD;
  &lt;li&gt;&#xD;
    The setup script assumes that you've already booted the new kernel when you are installing the new drivers.&#xD;
    I think that it would be a lot easier if the kernel version could be passed as an argument to the script. &#xD;
    &#xD;
    But this is not the case so we need to adjust some files in the setup directory, you can find out which files need to be changed by using grep:&#xD;
&#xD;
    &lt;pre class="brush: bash"&gt;grep -iR "uname -r" *&lt;/pre&gt;&#xD;
    &#xD;
    In my case the following files where found:&#xD;
    &lt;pre class="brush: bash"&gt;&#xD;
drivers/dist/blkvsc/Makefile&#xD;
drivers/dist/blkvsc/Makefile&#xD;
drivers/dist/vmbus/Makefile&#xD;
drivers/dist/vmbus/Makefile&#xD;
drivers/dist/tools/scripts/updategrub.pl&#xD;
drivers/dist/tools/scripts/updateinitrd.p&#xD;
drivers/dist/Makefile&#xD;
drivers/dist/Makefile&#xD;
drivers/dist/Makefile&#xD;
drivers/dist/storvsc/Makefile&#xD;
drivers/dist/storvsc/Makefile&#xD;
drivers/dist/netvsc/Makefile&#xD;
drivers/dist/netvsc/Makefile&#xD;
drivers/dist/makefile.common&#xD;
setup.pl&#xD;
&lt;/pre&gt;&#xD;
&#xD;
  &lt;/li&gt;&#xD;
  &lt;li&gt;&#xD;
    Now we need to edit all those files (you can use your favorite editor) and make sure that we replace "uname -r" with the new kernel version. So in my case I replaced&#xD;
&#xD;
   &lt;pre class="brush: text"&gt;shell uname -r&lt;/pre&gt;&#xD;
   with:&#xD;
   &lt;pre class="brush: text"&gt;shell echo "2.6.18-164.9.1.el5"&lt;/pre&gt;&#xD;
    in the Makefiles. &#xD;
&#xD;
    And in the perl scripts you can replace &lt;pre class="brush: text"&gt;`uname -r`&lt;/pre&gt; with: &lt;pre class="brush: text"&gt;"2.6.18-164.9.1.el5"&lt;/pre&gt;&#xD;
  &lt;/li&gt;&#xD;
  &lt;li&gt;&#xD;
    Now it is time to install the integration components in the kernel:&#xD;
    &lt;pre class="brush: bash"&gt;./setup.pl drivers&lt;/pre&gt;&#xD;
  &lt;/li&gt;&#xD;
  &lt;li&gt;&#xD;
    If the previous step was successful, we can check /boot/grub/menu.lst to make sure that we are booting the new kernel on reboot. &#xD;
  &lt;/li&gt;&#xD;
   &lt;li&gt;&#xD;
     We should now be able to boot into the new kernel! &#xD;
    &lt;pre class="brush: bash"&gt;reboot&lt;/pre&gt;&#xD;
  &lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&#xD;
I hope this post was useful for you, because I have spent quite some hours tackling this specific problem. I have learned a lot about the Hyper-V platform in those hours though...</description><pubDate>Sat, 26 Dec 09 10:54:52 +0100</pubDate><guid isPermaLink="false">tag:www.devplace.nl,2009:updating-hyper-v-drivers-after-kernel-upgrade-on-centos/1261818044</guid></item><item><title>Contributing to the PHP manual - an introduction</title><link>http://www.devplace.nl/blog/contributing-to-the-php-manual</link><description>There are many ways to contribute to the &lt;a href="http://www.php.net"&gt;PHP&lt;/a&gt; programming language. You can contribute by writing code, reporting bugs, helping other users on the &lt;a href="http://news.php.net"&gt;mailing lists&lt;/a&gt;, writing documentation etc. This article is a guide to start documenting for PHP. I think that one of the reasons that PHP is so widely used is because of the quality and completeness of the &lt;a href="http://www.php.net/manual/"&gt;PHP manual&lt;/a&gt;. &#xD;
&#xD;
The documentation team can't keep up with the code that is being written for PHP, so a lot of functionality that is available in PHP (or its extensions) is still undocumented. This is especially true for functions and modules that were added to PHP in the last couple of years. I think that it is important to create proper documentation, because otherwise the new functionality will only be used by experienced PHP developers that are aware of the existence of the undocumented functionality.&#xD;
&#xD;
&lt;h3&gt;How to start?&lt;/h3&gt;&#xD;
&#xD;
To start writing documentation you should think about what PHP functions, classes or extensions that you want to write documentation for. I think one can have several motives to start writing documentation for PHP. This list might help you decide what you want to document about, but is by no means complete.&#xD;
&#xD;
&lt;ul&gt;&#xD;
  &lt;li&gt;&#xD;
     You've used an extension in PHP that you've gotten pretty familiar with, but the documentation of this extension is incomplete.&#xD;
  &lt;/li&gt;&#xD;
  &lt;li&gt;You've encountered one or more bugs in the current documentation that you want to correct.&#xD;
  &lt;/li&gt;&#xD;
  &lt;li&gt;&#xD;
    You want to contribute to PHP because you use PHP a lot, but you are not comfortable with programming in C. In this case the pages &lt;a href="http://doc.php.net/php/undoc_functions.php"&gt;undocumented functions in the PHP manual&lt;/a&gt; or &lt;a href="http://doc.php.net/php/missing_examples.php"&gt;missing examples in the PHP manual&lt;/a&gt; are a good place to start.&#xD;
  &lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&#xD;
After you've decided what you want to document, it's time to read the &lt;a href="http://wiki.php.net/doc/howto"&gt;PHP documentation howto&lt;/a&gt;. This howto is not a definitive guide to start writing documentation for PHP, but it should be sufficient to get you started. The documentation team has switched to SVN a few months ago so there might be some references to CVS in the howto. &#xD;
&#xD;
After you've read the basic principles of the PHP documentation process, you can introduce yourself on the &lt;a href="http://news.php.net/php.doc"&gt;phpdoc mailinglist&lt;/a&gt; and start submitting patches to this list. &#xD;
&#xD;
&lt;h3&gt;Karma&lt;/h3&gt;&#xD;
&#xD;
You need to earn some karma before you will receive direct write access to the phpdoc SVN Repository. To earn karma you can join the discussions on the phpdoc mailinglist and start submitting patches to the documentation on the list. After you've earned some karma you can apply for a &lt;a href="http://www.php.net/svn-php.php"&gt;SVN account&lt;/a&gt;.&#xD;
&#xD;
&lt;h3&gt;Translating the manual&lt;/h3&gt;&#xD;
&#xD;
The PHP manual is available in many different languages. If you're not a developer, you can still contribute to the PHP documentation by translating the manual into your own language. You can start by posting a message to the &lt;a href="http://news.php.net/php.doc"&gt;phpdoc mailinglist&lt;/a&gt; in which you introduce yourself. It is also possible to subscribe yourself to a language specific mailing list. All documentation related mailing lists start with "php.doc.", you can view the available lists at &lt;a href="http://news.php.net/"&gt;news.php.net&lt;/a&gt;. Additional information can be found in the PHP wiki item "&lt;a href="http://wiki.php.net/doc/howto/translations"&gt;Working with translations&lt;/a&gt;".&#xD;
&#xD;
&lt;h3&gt;What you should know about the PHP Manual&lt;/h3&gt;&#xD;
&#xD;
Note that this information can also be found in the PHP wiki and elsewhere on the net, but I thought it could be useful to summarize it here.&#xD;
&#xD;
&lt;ul&gt;&#xD;
  &lt;li&gt;The PHP manual is written in &lt;a href="http://www.docbook.org/whatis"&gt;docbook&lt;/a&gt; XML format with a few enhancements that are PHP manual specific.&lt;/li&gt;&#xD;
&#xD;
  &lt;li&gt;The PHP documentation source resides in the "phpdoc" SVN module from the &lt;a href="http://svn.php.net"&gt;PHP SVN Repository&lt;/a&gt;. &lt;/li&gt;&#xD;
&#xD;
  &lt;li&gt;&lt;a href="http://wiki.php.net/doc/phd"&gt;PhD&lt;/a&gt; is the PHP tool that converts the docbook xml files to the various output formats of the PHP manual (currently PHP, HTML, PDF, CHM and man pages can be generated). Information about using PhD on windows can be found in an excellent blog post called "&lt;a href="http://elizabethmariesmith.com/2009/02/setting-up-phd-on-windows/"&gt;Setting up PhD on Windows&lt;/a&gt;" by Elizabeth Marie Smith.&lt;/li&gt;&#xD;
&#xD;
  &lt;li&gt;The &lt;a href="http://www.php.net/manual/"&gt;PHP manual&lt;/a&gt; is generated on a weekly base. The version that's used by the documentation team is updated four times a day and can be found at &lt;a href="http://docs.php.net/"&gt;http://docs.php.net/&lt;/a&gt;.&lt;/li&gt;&#xD;
  &lt;li&gt;&#xD;
    If you happen to work for a hosting provider, you can help the PHP Community by &lt;a href="http://php.net/mirroring.php"&gt;mirroring the PHP Manual&lt;/a&gt; for your country.&#xD;
  &lt;/li&gt;&#xD;
&lt;/ul&gt;</description><pubDate>Sun, 08 Nov 09 16:26:06 +0100</pubDate><guid isPermaLink="false">tag:www.devplace.nl,2009:contributing-to-the-php-manual/1255553880</guid></item><item><title>Storing large values in MySQL fields with PHP</title><link>http://www.devplace.nl/blog/storing-large-values-in-mysql-fields-with-php</link><description>Today a colleague at work ran into a problem when trying to store file contents into a MySQL database table. We are using this solution for quite some time now and it has always worked pretty good for documents and files up to 15 MB. The main reason for us to put files in the database is that it is easier to migrate a website to another server because the database contains all the data that we need. &#xD;
&#xD;
The problem appeared at a customers' webserver that is running Fedora. First we thought there must be something wrong with our PHP code. But as the code worked fine on our servers (Debian) we soon found out that we couldn't store more than 1 MB in our content field in the database. After a little more investigation the only solution to the problem seems to be raising the mysql system variable &lt;a href="http://dev.mysql.com/doc/refman/5.0/en/server-system-variables.html#sysvar_max_allowed_packet"&gt;max_allowed_packet&lt;/a&gt; to a value that is bigger than the largest content that should go into a single field. &#xD;
&#xD;
For Debian the default max_allowed_packet size is 16 MB, but since the max_allowed_packet is not set for Fedora, MySQL defaults to 1 MB. We have no access to the MySQL server configuration so we had to solve problem this on the client side (our PHP code). An example of how this can be done is given here.&#xD;
&#xD;
&lt;pre class="brush: php"&gt;&#xD;
$fileName = '/file/name/of/uploaded/file.bin';&#xD;
$fileSize = filesize($fileName);&#xD;
&#xD;
// $db holds the (ADODB) database connection&#xD;
// Fetch current packet size&#xD;
$packetSize = (int) $db-&gt;GetOne('SELECT @@max_allowed_packet');&#xD;
if ($packetSize &amp;lt; $fileSize + 2048) {&#xD;
	$sql = sprintf('SET @@max_allowed_packet=%d', $fileSize + 2048);&#xD;
	$db-&gt;Execute($sql);&#xD;
}&#xD;
&#xD;
$db-&gt;Execute('INSERT INTO `file`(`filename`, `filesize`) VALUES(?, ?)', array($fileName, $fileSize));&#xD;
$fileId = $db-&gt;Insert_ID();&#xD;
&#xD;
// Here you can store the file contents in database&#xD;
$handle = fopen($fileName, 'r');&#xD;
while (($data = fread($handle, 524288)) &amp;&amp; strlen($data) &gt; 0) {&#xD;
	// Update record with chunks of 512K, until the file is completely in the database&#xD;
	// This prevents PHP from running out of memory&#xD;
	$sql = sprintf(&#xD;
		'UPDATE `file` &#xD;
		SET `contents` = CONCAT(`contents`, ?) &#xD;
		WHERE `id` = ?');&#xD;
	$this-&gt;db-&gt;Execute($sql, array($db-&gt;Quote($data), $fileId));&#xD;
}&#xD;
fclose($handle);&#xD;
&#xD;
// now set the  max_allowed_packet back to old value&#xD;
$sql = sprintf('SET @@max_allowed_packet=%d', $packetSize);&#xD;
$db-&gt;Execute($sql);&#xD;
&lt;/pre&gt;&#xD;
&#xD;
It is possible to store values up to 1 GB in a field in MySQL (as &lt;a href="http://dev.mysql.com/doc/refman/5.0/en/server-system-variables.html#sysvar_max_allowed_packet"&gt;1 GB is currently the maximum allowed packet size&lt;/a&gt;). It is however not advisable to use the above method using &lt;a href="http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_concat"&gt;CONCAT&lt;/a&gt; to put large files in the database, &lt;a href="http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_concat"&gt;CONCAT&lt;/a&gt; gets very slow when the size of the blob gets bigger. If you want to put large files in the database you probably want to take a look at the &lt;a href="http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_load-file"&gt;LOAD_FILE&lt;/a&gt; function. This is however more complex if MySQL doesn't run on the same server as your PHP code is running on.&#xD;
&#xD;
As you can see in the above PHP code the following MySQL queries can be used to retrieve and set the max_allowed_packet variable for the current connection.&#xD;
&#xD;
&lt;pre class="brush: sql"&gt;&#xD;
-- Fetch maximum allowed packet size (in bytes)&#xD;
SELECT @@max_allowed_packet;&#xD;
&#xD;
-- Set maximum allowed packet size (in bytes)&#xD;
SET @@max_allowed_packet=33554432;&#xD;
&lt;/pre&gt;&#xD;
&#xD;
We use the following table definition to store the files (I have left out some unimportant fields). &#xD;
&#xD;
&lt;pre class="brush: sql"&gt;&#xD;
CREATE TABLE `file` (&#xD;
  `id` int(10) unsigned NOT NULL auto_increment,&#xD;
  `filename` varchar(255) NOT NULL,&#xD;
  `filesize` varchar(50) NOT NULL,&#xD;
  `contents` longblob NOT NULL,&#xD;
  PRIMARY KEY  (`id`)&#xD;
) ENGINE=InnoDB CHARSET=utf8&#xD;
&lt;/pre&gt;</description><pubDate>Tue, 29 Sep 09 22:55:00 +0200</pubDate><guid isPermaLink="false">tag:www.devplace.nl,2009:storing-large-values-in-mysql-fields-with-php/1254255396</guid></item><item><title>Loading SyntaxHighlighter on demand</title><link>http://www.devplace.nl/blog/loading-syntaxhighlighter-on-demand</link><description>SyntaxHighlighter is a great JavaScript script, but it lacks one important feature in my opinion.&#xD;
&#xD;
For this blog, I needed a syntax highlighter for the code examples that will be shown here. I soon found &lt;a href="http://alexgorbatchev.com/wiki/SyntaxHighlighter"&gt;SyntaxHighlighter&lt;/a&gt; as I was looking for an unobtrusive JavaScript solution. But there's one thing that I didn't like about it. You need to load all JavaScript files in advance even if you don't need syntax highlighting on a given page. This is not a problem when you're building static pages, because then you can just include the needed JavaScript files yourself. For this blog however I wanted SyntaxHighlighter to be loaded on demand without specifying for which page the SyntaxHighlighter should be loaded.&#xD;
&#xD;
So I came up with the nifty JavaScript solution below. It uses &lt;a href="http://jquery.com/"&gt;jQuery&lt;/a&gt; because jQuery is already loaded on all pages of this blog. But it shouldn't be so hard to do the same without jQuery.&#xD;
&#xD;
&lt;pre class="brush: javascript"&gt;&#xD;
$(document).ready(&#xD;
	function() {&#xD;
&#xD;
		// only load syntax hilighter when needed&#xD;
		// So check for any HTML &amp;lt;pre&amp;gt; elements for which the class attribute starts with 'brush'&#xD;
		if ($(&amp;quot;pre[class^=brush]&amp;quot;).length &amp;gt; 0) {&#xD;
	&#xD;
			var jsPath = themeUrl + '/js/hilighter/';&#xD;
			var cssPath = themeUrl + '/css/hilighter/';&#xD;
	&#xD;
			// Defines which languages should be supported&#xD;
			var brushes = ['Bash','Php','Plain','JScript', 'Sql'];&#xD;
	&#xD;
			var jsBrushes = '';&#xD;
			for (var i = 0; i &amp;lt; brushes.length; i) {&#xD;
				jsBrushes  = '&amp;lt;script src=&amp;quot;' + jsPath + 'shBrush' + brushes[i] + '.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;';&#xD;
			}&#xD;
	&#xD;
			// Append SyntaxHighlighter scripts to the HTML head&#xD;
			$(&amp;quot;head&amp;quot;).append(&#xD;
				'&amp;lt;script src=&amp;quot;' + jsPath + 'shCore.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;' +&#xD;
				  jsBrushes +&#xD;
				  '&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;' + cssPath + 'shCore.css&amp;quot; type=&amp;quot;text/css&amp;quot;&amp;gt;' +&#xD;
				  '&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;' + cssPath + 'shThemeDefault.css&amp;quot; type=&amp;quot;text/css&amp;quot;&amp;gt;'&#xD;
			);&#xD;
			// Apply SyntaxHilighlighter&#xD;
			SyntaxHighlighter.all();&#xD;
		}&#xD;
	}&#xD;
);&#xD;
&lt;/pre&gt;&#xD;
&#xD;
I think the script is pretty much self-explanatory. First we check if there are one or more PRE-elements having a classname that starts with "brush". If one or more of such PRE-elements exist in our HTML code, the appropriate SyntaxHighlighter CSS and JavaScript files will be loaded by adding script tags to the HTML head.</description><pubDate>Tue, 01 Sep 09 22:12:07 +0200</pubDate><guid isPermaLink="false">tag:devplace.vandesande.no-ip.org,2009:loading-syntaxhighlighter-on-demand/1251835910</guid></item><item><title>About me</title><link>http://www.devplace.nl/blog/about-me</link><description>Hi, my name is Joris van de Sande.&#xD;
&#xD;
&lt;span class="image right"&gt;&lt;img src="/blog/user/files/images/digger.gif" alt="Screenshot of Digger" title="Screenshot of Digger computer game"&gt;&lt;/span&gt; From the moment that I was born in 1983, I have always been interested in technology. My first experience with a PC was back in 1991 when my parents bought their first PC (based on an &lt;a href="http://en.wikipedia.org/wiki/Intel_80286"&gt;Intel 80286 processor&lt;/a&gt;). In these days I used the computer to play games like &lt;a href="http://en.wikipedia.org/wiki/Tetris"&gt;Tetris&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Digger_%28computer_game%29"&gt;Digger&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Space_invaders"&gt;Space Invaders&lt;/a&gt; and to create documents in &lt;a href="http://en.wikipedia.org/wiki/Word_perfect"&gt;Word Perfect 5.1&lt;/a&gt; (for &lt;a href="http://en.wikipedia.org/wiki/DOS"&gt;DOS&lt;/a&gt;). &#xD;
&#xD;
Fast forward a few years (I think it must be 1996) and I was playing around with &lt;a href="http://en.wikipedia.org/wiki/DBase"&gt;DBase III&lt;/a&gt; databases. A couple of months later my dad learned me how to interact with the DBase databases via the programming language &lt;a href="http://en.wikipedia.org/wiki/Clipper_%28programming_language%29"&gt;Clipper&lt;/a&gt; and how to create a simple user interface with it. After some time my first useful program called "Taal" (which means "Language" in Dutch) was born. I used it to learn foreign languages like English and German.&#xD;
&#xD;
&lt;span class="image left"&gt;&lt;a href="http://www.php.net"&gt;&lt;img src="/blog/user/files/images/php_logo.png" alt="PHP Logo" title="PHP Programming Language"&gt;&lt;/a&gt;&lt;/span&gt; In 1999 I created a simple HTML website for my group of friends, to let the world know about our existence. That was one of my first experiences with building websites. One year later I redesigned the website (with Dreamweaver) and I wanted the website to be more interactive, so I stumbled upon &lt;a href="http://www.php.net"&gt;PHP&lt;/a&gt; (version 3.x at that time) and started writing PHP scripts. Soon a &lt;a href="http://www.mysql.com/"&gt;MySql&lt;/a&gt; database was in use too.&#xD;
&#xD;
&lt;span class="image right"&gt;&lt;img src="/blog/user/files/images/aboutme/softwaredesign_gone_wrong.jpg" alt="Software Design gone Wrong" title="Software Design gone Wrong (&amp;copy; geeksaresexy.net)"&gt;&lt;br&gt;&lt;small&gt;&amp;copy; &lt;a href="http://www.geeksaresexy.net/gas-cartoons/"&gt;geeksaresexy.net&lt;/a&gt;&lt;/small&gt;&lt;/span&gt; A couple of years, programs and websites later I went to college and I received my bachelor degree in Computer Science in 2005. In November 2005, I started working as a Junior Application Programmer at &lt;a href="http://www.prezent.nl"&gt;Prezent Internet&lt;/a&gt;. At that time I was mainly working on customer websites (build in &lt;a href="http://www.php.net"&gt;PHP&lt;/a&gt;), creating frontends and new modules for the CMS that was build in house.&#xD;
&#xD;
Today I work as a Software Architect at &lt;a href="http://www.prezent.nl"&gt;Prezent Internet&lt;/a&gt;. I am responsible for the architecture of most web applications that are build by Prezent Internet today. Besides that I spend my days coding (&lt;a href="http://www.php.net"&gt;PHP&lt;/a&gt;, JavaScript, HTML, CSS and MySql), teaching my colleagues about software design and object oriented programming, maintaining the CMS and sometimes I even act as a system administrator (for Windows and Linux).&#xD;
&#xD;
When I have some spare time I like to listen to music, watch (action) movies or one of my favorite TV series (&lt;a href="http://www.cbs.com/primetime/numb3rs/"&gt;Numb3rs&lt;/a&gt;, &lt;a href="http://www.cbs.com/primetime/ncis/"&gt;NCIS&lt;/a&gt; and &lt;a href="http://www.fox.com/house/"&gt;House&lt;/a&gt;), drink some beer with my friends, visit a dance festival, browse the Internet for interesting (open source) projects and other stuff that I am interested in, play with different operating systems and I like programming. </description><pubDate>Fri, 14 Aug 09 21:30:52 +0200</pubDate><guid isPermaLink="false">tag:habari.vandesande.no-ip.org,2009:about/1250278276</guid></item></channel></rss>
