In a discussion of the varying levels of efficiency in different web server configurations,
Adam Trachtenberg writes, in part:
We've long since passed the inflection point where hardware resources
are more expensive than business objectives and developer costs, yet
we still persist in undervaluing those two assets. Just because
hardware has a tangible price doesn't mean that it's the only part of
the process with a cost.
Well put.
Read Adam's entire message.
Needing to pick out some bits from a smallish (40 lines) XML document studded with namespaces, I first turned to DomXPath: $doc = new DomDocument(); $doc->loadXML($xml); $x = new DomXPath($doc); $x->registerNamespace('one','first-namespace-uri');
Tracked: Feb 22, 11:32