Archive for February 15th, 2007

Managing OC4J and Configuring J2EE Applications

This article will help you get a better grasp of how Oracle Application Server 1 g supports Java 2EE applications. It is excerpted from chapter eight of the book em Oracle 1 g Application Server Exam Guide em written by Sam Alapati McGraw-Hill ISBN 7226271 ….

Refurbished and Used Networking Equipment Network Liquidators sells refurbished and used networking equipment for up to 95% off list, with a 1 year warranty. We buy and sell top brands like Cisco, Extreme, Foundry, and more. Call us for best pricing.

Continue Reading · Add comment

Zend Developer Zone: PHP: Performance, Scalability, and Web Services Podcast

The Zend Developer Zone points to a new podcast done from the Dr. Dobbs Journal folks with Jon Erickson talking to Andi Gutmans of Zend about a wide range of PHP topics:

In this 5 minute podcast, Jon and Andi talk about a wide variety of topics. They touch on PHP Scalability, Web Services, Zend Framework and how Zend implemented the Lucene search engine in PHP.

Cal also mentions their discussion of the BIRT reporting functionality that is newly integrated with the Zend Platform product.

You can grab the full podcast here.

Continue Reading · Add comment

Web Development Blog: Dynamic thumbnails from websites

The Web Development Blog has a quick new tutorial on using the Girafa.com web service to create a thumbnail of your website.

Since Alexa stopped offering their free thumbnail service last year a lot of thumbnail services are available now. Some of them offering limited free services and others only a paid premium version. On of the bigger and better services is Girafa, a thumbnail service with a free service and also premium services for users with more then 2000 image requests a month.

He includes the simple code needed to make the request (inside of a thumbnail() function) and shows an example of how to fetch and store the resulting image.

Continue Reading · Add comment

Sebastian Bergmann’s Blog: phpOpenTracker Logo Contest

Sebastian Bergmann has posted about a new contest to his blog today centering around the phpOpenTracker software.

After two years in which I did not have the time to work on it, the development of phpOpenTracker is slowly commencing again. The first step to restart the development has been the migration from BerliOS to a Trac setup that is generously provided by Tobias Schlitt.

While setting up Trac it occured to me that I do not have a logo for phpOpenTracker. To get to such a logo I try something new: I ask you to participate in the phpOpenTracker Logo Contest.

He sets up some rules for the competition including that the design should convey flexibility and that the winner’s work will go under the Creative Commons Attribution-NonCommercial-NoDerivs 2.5 license. Check out the post, though, for the full details on rules and submission guidelines.

Continue Reading · Add comment

Tobias Schlitt’s Blog: Avoid an endless pifall

Tobias Schlitt has provided a helpful hint for developers working with lots of objects, methods, and singleton patterned functionality to keep out of the same trouble he faced.

During my current exam phase I’m working on some tiny private project to relax after learning. In there I’m using a main controller class, which implements a singleton pattern and initializes several sub-controllers while being created. The singletons purpose is, that the other controllers can access to main controller and its functionality whenever they need, without storing a reference each.

The problem with the code (he gives snippets) was a recursive loop that was suddenly appearing. He finally tracked it down to a constructor in another class that was accessing the main controller’s constructor. The issue was that the constructor was never finishing up, so a valid instance wasn’t returned, so the whole thing started all over again.

Continue Reading · Add comment