Running PHPUnit from Eclipse on a remote system

Posted by on Oct 17, 2012 in Test Driven Development | No Comments
Running PHPUnit from Eclipse on a remote system

For the last few years I’ve been using virtual machine to keep my dev Linux isolated from my desktop. Recently I decided to improve my test driven development by integrating PHPUnit with Eclipse. I didn’t want to waste time on switching between IDE and console to run a test. The challenge is to create an […]

PHP Deamon

Posted by on Oct 5, 2012 in PHP Programming | No Comments
PHP Deamon

Not every problem can be solved with an aid of a cronjob. Sometimes a real time background process is required. The most common approach is to create an ordinary script and run it from command line with “&” character at the end.