<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Fordnox &#187; php</title>
	<atom:link href="http://www.fordnox.com/blog/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fordnox.com/blog</link>
	<description>Life is about trust</description>
	<lastBuildDate>Fri, 19 Mar 2010 22:57:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Php Under Control on Ubuntu</title>
		<link>http://www.fordnox.com/blog/2009/12/php-under-control-on-ubuntu/</link>
		<comments>http://www.fordnox.com/blog/2009/12/php-under-control-on-ubuntu/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 22:54:41 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/?p=289</guid>
		<description><![CDATA[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 &#8230;
[cc]Dec-15 19:58:50 Project       - [...]]]></description>
			<content:encoded><![CDATA[<p>Install Java</p>
<pre class="brush: js">sudo apt-get install sun-java6-jre sun-java6-plugin sun-java6-fonts</pre>
<p>Test Java</p>
<pre class="brush: js">java -version</pre>
<p>Create SymLink</p>
<pre class="brush: js">sudo ln -s /usr/bin/java /bin/java</pre>
<p>Install Cruise Control</p>
<pre class="brush: js">cd /opt</pre>
<p>Download Cruise Control binary files at</p>
<pre class="brush: js">http://sourceforge.net/projects/cruisecontrol/files/CruiseControl/2.8.2/</pre>
<p>or directly</p>
<pre class="brush: js">sudo wget http://mesh.dl.sourceforge.net/project/cruisecontrol/CruiseControl/2.8.2/cruisecontrol-bin-2.8.2.zip</pre>
<p>Unzip Cruise Control</p>
<pre class="brush: js">sudo unzip cruisecontrol-bin-2.8.2.zip -d /opt</pre>
<p>Create SymLink</p>
<pre class="brush: js">sudo ln -s /opt/cruisecontrol-bin-2.8.2 /opt/cruisecontrol</pre>
<p>Start CruiseControl</p>
<pre class="brush: js">/opt/cruisecontrol/cruisecontrol.sh</pre>
<p>The output should something like this be like this &#8230;</p>
<pre class="brush: js">[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</pre>
<p>Get PhpUnderControl</p>
<pre class="brush: js">svn co svn://svn.phpunit.de/phpunit/phpUnderControl/trunk /opt/phpUnderControl</pre>
<p>Patch Cruise Control</p>
<pre class="brush: js">/opt/phpUnderControl/bin/phpuc.php install /opt/cruisecontrol</pre>
<p>Read next to start cruising your project<br />

http://phpundercontrol.org/documentation/getting-started.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fordnox.com/blog/2009/12/php-under-control-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP optimization advice from Google</title>
		<link>http://www.fordnox.com/blog/2009/07/php-optimization-advice-from-google/</link>
		<comments>http://www.fordnox.com/blog/2009/07/php-optimization-advice-from-google/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 08:17:46 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/?p=162</guid>
		<description><![CDATA[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&#8217;s optimization advices
Another response to Google&#8217;s optimization advices
More on PHP performance
]]></description>
			<content:encoded><![CDATA[<p>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.<br />
Check those links:</p>
<p><a href="http://code.google.com/speed/articles/optimizing-php.html">PHP optimization advice from Google</a><br />
<a href="http://groups.google.com/group/make-the-web-faster/browse_thread/thread/ddfbe82dd80408cc">Response to Google&#8217;s optimization advices</a><br />
<a href="http://php100.wordpress.com/2009/06/26/php-performance-google/">Another response to Google&#8217;s optimization advices</a><br />
<a href="http://php100.wordpress.com/2009/07/13/php-performance/">More on PHP performance</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fordnox.com/blog/2009/07/php-optimization-advice-from-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Old but interesting news</title>
		<link>http://www.fordnox.com/blog/2009/02/old-but-interesting-news/</link>
		<comments>http://www.fordnox.com/blog/2009/02/old-but-interesting-news/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 17:36:31 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/?p=117</guid>
		<description><![CDATA[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 [...]]]></description>
			<content:encoded><![CDATA[<p>eWeek has posted an interesting article by Darryl K. Taft titled <a href="http://www.eweek.com/article2/0,1895,2005973,00.asp">PHP Puts Mainframe Developers in Prime Time</a>. 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 <strong>“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.”</strong> My favorite quote however, is this one.</p>
<blockquote><p>PHP scripts are five-to-ten times more productive than hand-coding a server application in Java or C from scratch</p></blockquote>
<p>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.</p>
<blockquote><p>“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.</p></blockquote>
<p>He goes on to speculate about the future direction of the Zend and IBM partnership by saying.</p>
<blockquote><p>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.</p></blockquote>
<p>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.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fordnox.com/blog/2009/02/old-but-interesting-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
