PHP Gravatar Class
I was recently working on a small side project when I ran across a need for a php implementation of...
Using gmdate()
Recently at work I came across an odd bug involving gmdate(). A client wanted us to post some information to them including two fields:...
Salting Passwords in plain sight
Interesting method of creating a unique salt that can only be derived from the password being encrypted. If you used a salt created by an...
Forking PHP
Interesting code used to fork long running processes in php. The first script, prefork.php, is for...