Implicit Evaluation with PHP Archives: November 2006
·
30 November 2006
Happy Birthday to Us
I just realized that November 30 was the one-year anniversary of Implicit Evaluation with PHP. Happy Birthday to us!
continue reading... » 0 Comments
29 November 2006
The Challenges of Developing an Ajax Application
I do not think anyone prefers the old style click->reload style applications over newer Web 2.0 applications. Think back to the first time you saw Google Maps: was your first though closer to “Cool!” or “Mapquest’s UI is so much better?” There was an initial wave of resistance to developing applications with this technology, with […]
continue reading... » 0 Comments
21 November 2006
Version 3.0, Revisited
Months ago, I began to rethink the visual identity of this site. Moving from Blogger to Wordpress made the material far more searchable and browsable. But the look of the site took a turn for the worse. Under Blogger, I had a bland looking tech theme. Under Wordpress, I have a bland looking cartoonish theme. […]
continue reading... » 0 Comments
20 November 2006
Comparing array_key_exists With isset
There are two functions for determining the existence of elements in an array: isset and array_key_exists. They are very similar in use, but there are subtle differences.
The biggest difference is speed. array_key_exists takes about 33% longer to execute than isset. For just a few checks, it’s a negligible difference. But in a loop, it will […]
continue reading... » 0 Comments
20 November 2006
A New Way to Browse
Today, I introduced a new tag: Tutorial. Articles about offsite help or my own columns which focus more on implementation than concept will be labeled Tutorial, and if you’re only into code, you now have a convenient way to learn only about useful topics in PHP.
continue reading... » 0 Comments
20 November 2006
Dynamic Image Generation in PHP
Through use of the GD libraries, it’s long been possible to write images in code with PHP. They’re unlikely to be photographic quality, but for captcha’s, counters, charts, etc, it’s unlikely that it needs to be. But this particular feature seems to be generally overlooked. PHP: Dynamic Image Generation is a nice tutorial for using […]
continue reading... » 2 Comments
14 November 2006
History of the World Part XIV: Wherein PHP Assumes Babysitting Responsibilities
I’m a responsible programmer. Really, I am. I ask for advice from my peers whenever the path points to something I feel unsure about. I use (perhaps overuse, but thats another column) functions responsibility. Regardless of what the user is told, I protect against user input internally. And so when I want to write a […]
continue reading... » 0 Comments
2 November 2006
Audio Passthru on PowerMac
For many months, I’ve had my iPod sitting on the desk in its dock, with the speakers plugged into it. The old PowerMac sits on the floor, outputting its alerts through the built in speaker. It’s not an ideal setup, but it works, especially considering the music is more important than dings.
There are enough […]

