Custom WordPress theme tutorial
I was looking into custom WordPress theme tutorials when a friend of mine pointed out this tutorial. It is very well written and covers the following topics:
- Creating a Theme HTML Structure
- Template and Directory Structure
- The Header Template
- The Index Template
- The Single Post, Post Attachment, & 404 Templates
- The Comments Template
- The Search Template & The Page Template
- The Archive, Author, Category & Tags Template
- The Sidebar Template
- Reset-Rebuild Theme CSS & Define Your Layouts
Quite complete, and definitely enough to get started in developing your own WordPress themes.
free cocoa packet sniffer for OSX
According to the Cocoa Packet Analyzer website:
Cocoa Packet Analyzer is a native Mac OS X implementation of a network protocol analyzer and packet sniffer. CPA supports the industry-standard PCAP packet capture format for reading, capturing and writing packet trace files.
Features:
- Basic packet capturing (libPCAP/ tcpdump filter expressions can be used).
- Analyze, display and filter packet trace files.
- Supports PCAP packet capture format.
- Quicklook plugin included – it is basic but at least you can get an overview over packet trace files in finder.
- Intel 64-bit CPU support.
Start Subversion (SVN) automatically when Ubuntu server boots
It turned out my Ubuntu server does not start Subversion automatically on boot. I found this website with instructions how to create a startup script.
Create a file called “svnserve” in the /etc/init.d folder
$ sudo nano /etc/init.d/svnserve
Add the following line to this script in order to start the Subversion server:
svnserve -d --root /srv/subversion
Save the file (CTRL+O) and exit nano (CTRL+X)
Now make the file executable
$ sudo chmod +x /etc/init.d/svnserve
Add the svnserve script to the init.d boot sequence
$ sudo update-rc.d svnserve defaults
Now you’re done! On the next reboot the SVN server will start automatically.
Connect from Mac OSX to Ubuntu NFS
I noticed that I connect a lot to my server in order to retrieve files, so I thought it would be useful to connect through NFS instead of Samba. Installing NFS on my server was a piece of cake. Just follow this tutorial and you are done.
The only thing you need to do then is manage your shares in the /etc/exports file. So far so good. But when I want to connect I receive an error which tells me I use the wrong username and/or password. Funny enough the whole system did not even prompt for any of these credentials.

NFS connection error in OSX
How to delete a GPT protected partition in Windows
I accidentally formatted my external harddisk in OSX. Since I wanted this disk to be NTFS I needed it to be formatted in Windows. When I opened up disk management I was unable to format the harddisk because it had a GPT protected partition on it.
SPSS syntax: define numerics, strings and multiline comments
In SPSS you can program datasets in the SPSS syntax language. Unfortunately a lot of people working with SPSS do not really know how to use these syntax commands. A common way of using syntax is just do a “copy/paste” but barely knowing what the code really does. In order to solve this issue these series of SPSS syntax tutorials show, and explain how SPSS syntax can be used.
This tutorial is about how to define multiline comments, numeric and string variables in SPSS syntax code.
Getting started with Android development using Eclipse
Since Marthijn is having his new Android phone we decided to discover Android developing with the free IDE Eclipse. It took some time to get Eclipse working. We followed a Hello World tutorial from the Android website which helps you quite along.
Free SPSS alternative: GNU PSPP
I recently do quite some work in SPSS, which is a program used for statistical analysis. A license for SPSS is quite expensive but there is a cheap solution as well…
How to remove the Apple logo watermark from iDVD menu
I was quite annoyed by the Apple logo watermark on every DVD menu I made with iDVD. It turned out that removing is was suprisely simple.
Fixing mysqldump error: access denied for … when using LOCK TABLES
I use the tool mysqldump to backup my databases today I wanted to backup a database but the following error occured (The command backups the database to the gzipped mydb.sql.gz file):
mysqldump: Got error: 1044: Access denied for user ‘user’@'localhost’ to database ‘database’ when using LOCK TABLES





