HDR photography hits mainstream

The New York Times has a wonderful summary article of High Dynamic Range photography.

(I have a strong suspicion that the article is heavily influenced by discussion on the HDR Flickr group.)

This was a little serendipitous because I had a discussion at lunch where I heard the tired old line that “nothing new is in Photoshop since x came out” and I pointed out some of the features in CS2, of which HDR support was one of them.

Continue reading about High Dynamic Range photography after the jump

PHP Sucks

Chris notes that Theo has posted his Six Reasons PHP Sucks PHP Lightning Talk.

My favorite part:

Reason # 4: User comments on the online documentation.
Allows PHP to expose what are perhaps the worst most dysfunctional and retarded code samples.

Reason #5: PEAR.
Allows PHP to expose what are perhaps the worst most dysfunctional and retarded code…
…in an easily downloadable/installable format

If you aren’t laughing, you haven’t used PHP.
Continue reading

Funny lens review

Here is a camera review where I lifted this summary from PhotographyBLOG.

“Bottom line, the Canon 24-105mm f/4 L is a really excellent optic, but one that struggles a bit along the edges and in the corners with full-frame bodies. As such, it’s an almost ideal candidate for use with DxO Optics Pro, particularly if you’re shooting with a full-frame dSLR.”

Translation: “This lens sucks for its intended market.”
Continue reading

Quick PHP caching

I received a question today:

I have some quick caching questions. What is the quickest way to get data into a PHP script? I have some data, I could store it in a database, but I want to avoid that dependency and slow down. I want PHP to compile the file into some data that it can access easily in the script’s name space. Periodically (every 1-2 mins) the system will check the modified time on the file, if it is different, it will reload the data.

The data is not large.

Speaking of caching, what is the best script system for caching these days APC?

Continue reading