As many of you know, I have been out sailing every day this summer. This week I am I Port Townsend to have ZDD hauled out and painted. The previous owner told me the centerboard was down, which I had to believe because the cable to raise it was broken. Well he told the truth,
ZDD: Pre-Halloween Lights
Getting some pre-Halloween lights setup on my sailboat Zippety Doh Dah. Hoping to add some outlines of the cabin in orange, haul a lighted plastic candle up the mast, and find a light up ghost to man the tiller. I will post more pictures when I get more setup
My WordPress plugins
I attended a great Seattle WordPress Developer Meetup this evening and a hot topic was what plugins to use for various things. I decided that until we have an official WordPress Seattle Developer’s website I will post the plugins I am fond of here. Feel free to comment with better plugins or ideas for new
Introducing paz: a simple packaging and deployment tool for PHP projects on Windows Azure
Update (04-30-2012): paz has been combined with other tools into the WAZ-PHP-Utils project on Github. Please see there for further information. These days PHP works well on Windows Azure, and there are some great tools available in the Windows Azure SDK for PHP that will help you build, package and deploy your applications. Even though
PHP: Recursively remove a directory and all files and folder contained within
The rmdir function of PHP cannot remove a directory if it has anything inside of it, whether it be files or folders. The following method can be used to recursively remove all the files and folders from the directory, and will remove the directory itself. To use it simply copy the code into your application