EJB Exception Handling

It is striking that most search results for the keywords “EJB” and “exceptions” point to the same few articles at IBM DeveloperWorks. Unfortunately, they are too advanced for beginners. This post is a simple guide to handling exceptions in EJB. Definitions A checked exception is derived from java.lang.Exception but is not a subclass of java.lang.RuntimeException. …

PHP collection class

This is a simple PHP class to manage a collection of items. Refer to the sample at the end for usage example. Collection.php: <?php class Collection { var $elements = array(); var $counter = 0; var $pointer = 0; function Collection() { } function add($element) { $this->elements[$this->counter] = $element; $this->counter++; $this->pointer++; } function remove($element) { …