Fordnox

Life is about trust

Subscribe to Fordnox
Technorati
del.icio.us
December-16-09

Php Under Control on Ubuntu

posted by Andrius

Install Java

sudo apt-get install sun-java6-jre sun-java6-plugin sun-java6-fonts

Test Java

java -version

Create SymLink

sudo ln -s /usr/bin/java /bin/java

Install Cruise Control

cd /opt

Download Cruise Control binary files at

http://sourceforge.net/projects/cruisecontrol/files/CruiseControl/2.8.2/

or directly

sudo wget http://mesh.dl.sourceforge.net/project/cruisecontrol/CruiseControl/2.8.2/cruisecontrol-bin-2.8.2.zip

Unzip Cruise Control

sudo unzip cruisecontrol-bin-2.8.2.zip -d /opt

Create SymLink

sudo ln -s /opt/cruisecontrol-bin-2.8.2 /opt/cruisecontrol

Start CruiseControl

/opt/cruisecontrol/cruisecontrol.sh

The output should something like this be like this …

[cc]Dec-15 19:58:50 Project       - Project connectfour:  next build in 5 minutes
[cc]Dec-15 19:58:50 Project       - Project connectfour:  waiting for next time to build

Get PhpUnderControl

svn co svn://svn.phpunit.de/phpunit/phpUnderControl/trunk /opt/phpUnderControl

Patch Cruise Control

/opt/phpUnderControl/bin/phpuc.php install /opt/cruisecontrol

Read next to start cruising your project
http://phpundercontrol.org/documentation/getting-started.html

Tags: ,
July-25-09

PHP optimization advice from Google

posted by Andrius

These are some interesting links from Google. Little techniques that every PHP developer should make as habits. I think some of them are really effective.
Check those links:

PHP optimization advice from Google
Response to Google’s optimization advices
Another response to Google’s optimization advices
More on PHP performance

Tags: , ,
February-7-09

Old but interesting news

posted by Andrius

eWeek has posted an interesting article by Darryl K. Taft titled PHP Puts Mainframe Developers in Prime Time. It seems that Wayne Duquaine is excited about PHP and thinks all mainframe programmers should be. Speaking in Baltimore, MD last week, Wayne told a group of mainframe developers that they should learn PHP “because it is coming to the mainframe and it has a short learning curve. PHP is easier to learn than any other Web programming language.” My favorite quote however, is this one.

PHP scripts are five-to-ten times more productive than hand-coding a server application in Java or C from scratch

The article outlines the reasons Duqaine gave for mainframe programmers to begin learning PHP. Without giving away the ending, basically he believes that PHP offers opportunity to mainframe programmers who want to stay in the field.

“For those that elect to stay in the field and avoid early retirement, they have no choice” but to re-tool and learn new technologies, Duquaine said.

He goes on to speculate about the future direction of the Zend and IBM partnership by saying.

The companies have not announced support for Zend Core for IBM on the z/OS operating system for the z/Series mainframe, but sources said that is the direction IBM is leaning toward.

This is an excellent (short, concise, informative, interesting) read and worth the time for anyone interested in PHP on IBM’s mainframes. It’s full of juicy quotes that I wish I could post here but then there would be no reason to visit the original article. So go check it out, I’ll be here when you get back.

Tags: ,