hellinga.org


How to write a TYPO3 extension (frontend plugin)

Posted in TYPO3 by Durk Hellinga on August 27, 2007

This document is writen for the single purpose of helping people start developing their TYPO3 extension. It's not a step by step guide but it should point you in the right direction. There is enough information online but not...

Import a CSV File into a MySQL Table

Posted in MySQL by Lammert Hellinga on August 14, 2007

Today i found myself having a CSV file (or Comma Seperated Values) with over 432000 lines. But for some project i'm working on i would like to have those values inside a MySQL Database. I already knew how to export a table to a...

chmod directories recursively

Posted in SysAdmin by Lammert Hellinga on August 13, 2007

Quite often i use "chmod -R 755 something" to set permissions on all things inside a directory but today i wanted to do the same but only on directories.

To do this is actually quite simple "find . -type d -exec chmod 755 {} \;"...