Image Resizing Class

This is a simple script to resize images with PHP. It uses the GD Library functions, and is currently not compatible with ImageMagick. It will automatically determine the image type and use the appropriate functions to resize. <?php/** * This class handles image resizing. It will automatically determine the image * type and use the appropriate php… Continue reading Image Resizing Class

Published
Categorized as CakePHP

Kona on the Indo Board

My dog, Kona, used to be terrified of my Indo Board. He wouldn’t even go near it when it was stationary. But, a few treats and he rides on it with me now.

Published
Categorized as General

SVN – Creating a New Repository

Creating a new repository with Subversion is simple. Just run the following command on your svn server: svnadmin create /path/to/svn/example.com This will create a new, blank repository with the name “example.com”. Now you will want to do one of two things, import an existing project, or setup the initial directory structure for your new repository.… Continue reading SVN – Creating a New Repository

SVN Copy – Creating a Branch or Tag

Tagging and branching with svn are as simple as using the copy command. For this tutorial, I will assume that your repository has the following structure: /path/to/repository/branches /path/to/repository/tags /path/to/repository/trunk To create a tag of the trunk, run the following command: svn copy http://svn.example.com/path/to/repository/trunk http://svn.example.com/path/to/repository/tags/snapshot-of-trunk To create a tag of your current working copy (assuming you… Continue reading SVN Copy – Creating a Branch or Tag

Book Review: Beginning CakePHP From Novice to Professional

I have been getting into CakePHP development more and more recently. With all the CakePHP books that have come out in the past year, I was hoping I could find one that would be a pretty comprehensive guide to CakePHP. I was looking for something that would basically tell me everything that Cake’s online manual… Continue reading Book Review: Beginning CakePHP From Novice to Professional