Archive for November 22nd, 2006
PHP Developer - November 22nd, 2006
Sebastian Bergmann has posted an official call for help for a PHPUnit-related project that seems to be a more and more requested feature for the popular unit testing package - an Ajax-based test runner.
It would be great if the frontend for the browser-based test runner would make use of AJAX. Since I am clueless when it comes to both web design in general and AJAX in particular, I would appreciate if someone else could help me with implementing this test runner.
He’s looking for the XHTML, CSS, and Javascript to put it all together as well as the Javascript that makes the magic happen. If you’re interested in helping out, you can either contact him on the mailing list or in #phpunit on the Freenode IRC network.
Continue Reading ·
PHP Developer - November 22nd, 2006
Mike Wallner has thrown together some stats for the latest edition of the pecl/http package to test its response performance.
The results surprised me, because it clearly shows that the performance drop for starting the PHP engine and doing the neccessary negotiation to provide caching is not that bad.
There’s a chart of the results as well as a full PDF with all of the stats the graph maps out. He includes the legend to make the graph easier to understand.
Continue Reading ·
PHP Developer - November 22nd, 2006
The latest edition of php|architect magazine has been published - the November 2006 issue. Articles included in this month’s edition include:
- “Services made simple with PHP” - Caroline Maynard, Graham Charters, Matthew Peters, Megan Beynon, and Simon Laws
- “Tune Your Search Results With Ajax” - Will Fitch and Greg Black
- “Synchronizing the World” - Sherman Lilly
- “Learning from Ruby on Rails” - Chris Hartjes
as well as the latest installments the Security Corner and Test Pattern columns.
You can check out the full contents of the issue here and, if you just want to subscribe to this great PHP publication, you can check out their digital edition and print edition options.
Continue Reading ·
Dev Shed - November 22nd, 2006
Debugging is an important part of coding. One way to make the debugging process easier is to write quality code to begin with. This article the first of two parts will point out some of the most common coding errors and help you identify problems in your code. It is excerpted from chapter 12 of em Zend PHP Certification em written by George Schlossnagle et al Sams ISBN 672327 9 ….
Essentials Whitepaper The Four Essential Steps to DR Data Protection for AIX and LINUX. Learn More.
Continue Reading ·
PHP Developer - November 22nd, 2006
As mentioned over on Ajaxian.com, there’s a new Ajax framework in town that’s looking to “ease the development of rich Ajax applications, by generating the appropriate JavaScript code” - AjaxCore.
AjaxCore takes all the dirty work of JavaScript code generation and provides a solid foundation. The concept is to extend a Generic AjaxCore class and defining methods that handle the Ajax driven events and binding them to HTML objects.
It uses Prototype to work with the DOM and Ajax connections and to help you with binding the scripts to the different elements on the page. Code can be linked to certain elements and have that (server-side) code automatically executed when an element is referenced. You can find out more from the AjaxCore homepage and the Ajaxian post also includes a simple inline example to get you started.
Continue Reading ·