Categories
Archives
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- July 2009
- June 2009
- May 2009
- March 2009
- February 2009
- January 2009
- August 2008
- July 2008
- June 2008
- November 2007
- October 2007
- July 2007
- June 2007
- April 2007
- January 2007
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
Tools
Monthly Archives: May 2009
A Local Vacation
I was driving home the other day when my cell phone rang. I didn’t recognize the number, but I always answer my phone. It was some lady from Colonial Crossings of Williamsburg calling to let me know I won a 2 day/1 night vacation in Williamsburg. I was like, uh, lady, I live in Williamsburg.
No you [...]
Posted in Free Stuff Leave a comment
Review: Devil May Care
Just finished Devil May Care by Sebastian Faulks. Being a James Bond book, I wasn’t expecting a very deep plot and I was not disappointed. The entire premise of the book is ridiculous, and the “surprise” twist at the end was a bit contrived and unrealistic (even for a James Bond novel). The action scenes [...]
Posted in Reviews Leave a comment
PHP Method Overloading: Why?
So some people I know really like to use PHP method overloading. In case you program in pretty much any language other than PHP, let me explain what PHP considers method overloading using this (very simplified) example code:
<?php
class bigAnimal{
function __call($name, $arguments){
return $name;
}
function displayName($name, $arguments){
return $name;
}
}
$animal = new bigAnimal();
$animal->monkey();
$animal->displayName($monkey);
?>
So, in PHP, method overloading means that if bigAnimal::monkey() [...]
Posted in Web Dev Leave a comment
Review: Anathem
I just finished reading Anathem by Neal Stephenson a few days ago. At 960 pages, this was a pretty hefty book and took a few weeks to read, but the read was well worth it.
Anathem is a hard book to describe without ruining the reading experience. I was fortunate enough to read it while having absolutely [...]
Posted in Reviews Leave a comment
Quantcast
So a friend at work asked if I knew anything about Quantcast, a website demographics tool. I had never heard of it, so I pulled up my most popular site (Fake Name Generator) to see if it was accurate.
It wasn’t.
The traffic portion of the stats showed my site as getting less than 5% of its [...]
Posted in My Sites 2 Comments




Zend Certified Engineer