Articles

How-to grow any Qemu system image

Qemu images can’t be growed. In this example I will show you a little hack to grow a 6GiB qcow image to a 10GiB image. Beware: these operations can take a lot of time to perform and require lots of free space. First, convert your qcow image to a …
➟ Read more

Ultimate Regular Expression for HTML tag parsing with PHP

!!! alert alert-warning “Disclaimer” This is a dirty hack! To parse HTML or XML, use a dedicated library. Tonight I found the ultimate regex to get HTML tags out of a string. It was written a year ago by Phil Haack on his blog. His regex is quite bullet-proof: it’s …
➟ Read more


Delayed CD Tracks Publishing with PHP

Here is a little piece of code I want to share with you. I created this some months ago for the Cool Cavemen band . They wanted to release all tracks of their new LP on their website, one track per week. That’s the main purpose of the code below …
➟ Read more

Quick How-To: Install NFS Server & Client

In this tiny how-to I’ll explain you how to setup a machine as a NFS server and an other one as a client. This example was written based on my experiences on Mandriva, but all commands should almost be the same for other distributions. First, on the server, install …
➟ Read more