Blog

1 Jun

Loading Dynamic Components in CakePHP In this post we show an EASY (like our company name ) to load any component you want dynamically in cakePHP framework. Simple example: class AutosController extends AppController { … var $components = array(); … // Load Dynamic Components function __construct(){ $this->components = array(‘Component1′, ‘Component2’); parent::__construct(); } … }

12 Feb

How hard could it be to reach performance peaks? Even harder to reach customer performance satisfaction. If there is a performance peak, then you can theoretically achieve.. right? The question is how you practically assume you have reached one. One of our recent challenges was to improve the performance of an existing image editor application. [...]