Tim Van Wassenhove

Passionate geek, interested in Technology. Proud father of two

19 Mar 2005

Formatted input

I was in need for formatted input and the decomposition of the input into a stream of tokens so i came up with the follo...
04 Mar 2005

More on recursion

Yesterday i already wrote that an interative implementation for a recursive function is more efficient. And i gave you a...
03 Mar 2005

Calculating Fibonacci

What is a recursive function? It is a function where the value for input n is calculated as a linear combination of the ...
08 Feb 2005

Getting started with CVS

I got an e-mail that asked me how to get started with CVS as quick as possible. The first time i got lost too. So i&rsqu...
06 Feb 2005

Configuring Mutt for GPG

Today i generated a PGP (Pretty Good Privacy) key for my e-mail address. I also configured my mailclient, mutt, for use ...
02 Feb 2005

Elegantly generate SQL queries

Code: php/elegantsql.txt
28 Jan 2005

Bypassing URL file-access is disabled

For some odd reason this host has disabled URL file-access. So i needed something simple to bypass this problem: functio...
23 Jan 2005

Playing with XML and XSL

// add stuff to an xml document in php4 $doc = domxml_open_mem($xml); $root = $doc->document_element(); $inner = $doc...
20 Jan 2005

XSLT annoyances

Today i’ve finally made the switch. My code generates XML and then i translate it to XHTML with XSLT. However, if ...
29 Dec 2004

Basic download script

Code: php/download.txt