<?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>The Piranha Method &#187; code</title>
	<atom:link href="http://www.piranhamethod.com/tag/code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.piranhamethod.com</link>
	<description>Web Development &#38; Graphic Design Firm - Charlotte, Greenville, Charleston</description>
	<lastBuildDate>Wed, 14 Apr 2010 02:18:08 +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>Converting a UBB Forum to phpBB Fireboard Kunena</title>
		<link>http://www.piranhamethod.com/2009/11/converting-a-ubb-forum-to-phpbb-fireboard-kunena/</link>
		<comments>http://www.piranhamethod.com/2009/11/converting-a-ubb-forum-to-phpbb-fireboard-kunena/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 00:02:39 +0000</pubDate>
		<dc:creator>Matthew Cluver</dc:creator>
				<category><![CDATA[Development Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[code snippets]]></category>
		<category><![CDATA[Conversion]]></category>
		<category><![CDATA[Convert]]></category>
		<category><![CDATA[Fireboard]]></category>
		<category><![CDATA[Forum]]></category>
		<category><![CDATA[Kunena]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[phpBB]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[UBB]]></category>
		<category><![CDATA[UBB Classic]]></category>
		<category><![CDATA[UBB Threads]]></category>
		<category><![CDATA[UBB.x]]></category>
		<category><![CDATA[vBulletin]]></category>

		<guid isPermaLink="false">http://www.piranhamethod.com/?p=378</guid>
		<description><![CDATA[Recently I was tasked with converting a UBB classic (6.7.2) forum to Kunena (1.5.6). Initially I had thought about writing my own custom code to do the conversion, but the thought of parsing the flat files that UBB uses for their forum and member data especially turned me off (besides the amount of time it would have taken). Luckily the open source community had my back and after a lot of research I was able to find and get working several conversion scripts that I found online, these scripts with a little love will help you get out of that musty old perl-based UBB classic forum, once and for all.]]></description>
			<content:encoded><![CDATA[<p>Recently I was tasked with converting a UBB classic (6.7.2) forum to Kunena (1.5.6). Initially I had thought about writing my own custom code to do the conversion, but the thought of parsing the flat files that UBB uses for their forum and member data especially turned me off (besides the amount of time it would have taken).</p>
<p>Luckily the open source community had my back and after a lot of research I was able to find and get working several conversion scripts that I found online, these scripts with a little love will help you get out of that musty old perl-based UBB classic forum, once and for all.</p>
<p>The code (<a href="http://www.piranhamethod.com/downloads/UBB.x_Convertor_0.1.1.zip">UBB.x_Convertor_0.1.1</a>) that I found will work with all flavors of UBB forums, UBB.classic, UBB.threads and UBB.x, it will allow you to convert to phpBB 2.0.x, I used 2.0.23 and have included <a href="http://www.piranhamethod.com/downloads/phpBB-2.0.23.tar.gz">phpBB 2.0.23</a> for your convenience, I have also attached all of the other referenced documents for you as well.</p>
<p><strong>Convert UBB Classic 6.7.2 to phpBB 2.0.x</strong><br />
This is where the magic of the script that I found really shines, it reads the data from the UBB forum and flawlessly converts that data into phpBB and stores it in the MySQL database that phpBB is using, previously as most of you are aware, UBB uses flat files to store the forum data, finally getting that information into a database is exciting! I have also included some other <a href="http://www.piranhamethod.com/downloads/convert-ubb6-to-phpbb2.zip">converter code</a> originally developed by Genfect Media, which was the converter code that Graham Eames used to develop the <a href="http://www.piranhamethod.com/downloads/UBB.x_Convertor_0.1.1.zip">working version</a> (UBB.x Convertor 0.1.1) that I used.</p>
<p><strong>Convert phpBB 2.0.x to phpBB 3.0.x </strong><br />
Once you have converted your forum to phpBB 2.0.x, you are going to need to perform an upgrade to phpBB 3.0.x. This should be fairly simple and straightforward, just follow any phpBB upgrade documentation on their website to accomplish this conversion to a 3.0.x forum, here is a copy of <a href="http://www.piranhamethod.com/downloads/phpBB-3.0.6.zip">phpBB 3.0.6</a> for you to download and use.</p>
<p><strong>Convert UBB phpBB 3.0.x to Kunena 1.5.6</strong><br />
Once the forum has been upgraded to phpBB 3.0.x, you are now ready to convert it over to Kunena 1.5.6. Now <a href="http://www.piranhamethod.com/downloads/converter-phpbb3-to-kunena.zip">this script</a> was originally created to convert the phpBB data to a Fireboard forum, but since Kunena was developed from Fireboard, most of the infrastructure framework is the same still and I was able to successfully convert over to Kunena.</p>
<p>The important thing to note is that this script may require a little hacking to make it work for your specific environment, one thing I specifically remember having to adjust were the memory settings in my php.ini. This all depends on the amount of forum data that you&#8217;re working with though, make sure to also adjust the runtime of PHP scripts, as it could also take a while to run.</p>
<p>During my research I also came across this other <a href="http://www.piranhamethod.com/downloads/convert-phpbb-to-fireboard.zip">conversion code</a>, this may be helpful to you if you are having trouble with the converting the data. There is also good news if you&#8217;re wanting to go with a vBulletin solution in the long run instead of Kunena as the guys over at vBulletin have included their own conversion script for migrating directly from <a href="http://www.vbulletin.com/forum/showthread.php?48257-How-do-I-convert-UBB-to-VBB">UBB to vBulletin</a>.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share this:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.piranhamethod.com/feed/" title="RSS"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F&amp;partner=sociable" title="PDF"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F&amp;partner=sociable" title="Print"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Converting%20a%20UBB%20Forum%20to%20phpBB%20Fireboard%20Kunena&amp;url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F" title="Slashdot"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F&amp;t=Converting%20a%20UBB%20Forum%20to%20phpBB%20Fireboard%20Kunena" title="Facebook"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F&amp;title=Converting%20a%20UBB%20Forum%20to%20phpBB%20Fireboard%20Kunena&amp;source=The+Piranha+Method+Web+Development+%26amp%3B+Graphic+Design+Firm+-+Charlotte%2C+Greenville%2C+Charleston&amp;summary=Recently%20I%20was%20tasked%20with%20converting%20a%20UBB%20classic%20%286.7.2%29%20forum%20to%20Kunena%20%281.5.6%29.%20Initially%20I%20had%20thought%20about%20writing%20my%20own%20custom%20code%20to%20do%20the%20conversion%2C%20but%20the%20thought%20of%20parsing%20the%20flat%20files%20that%20UBB%20uses%20for%20their%20forum%20and%20member%20data%20especially%20turned%20me%20off%20%28besides%20the%20amount%20of%20time%20it%20would%20have%20taken%29.%20Luckily%20the%20open%20source%20community%20had%20my%20back%20and%20after%20a%20lot%20of%20research%20I%20was%20able%20to%20find%20and%20get%20working%20several%20conversion%20scripts%20that%20I%20found%20online%2C%20these%20scripts%20with%20a%20little%20love%20will%20help%20you%20get%20out%20of%20that%20musty%20old%20perl-based%20UBB%20classic%20forum%2C%20once%20and%20for%20all." title="LinkedIn"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Converting%20a%20UBB%20Forum%20to%20phpBB%20Fireboard%20Kunena%20-%20http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F" title="Twitter"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F&amp;title=Converting%20a%20UBB%20Forum%20to%20phpBB%20Fireboard%20Kunena&amp;bodytext=Recently%20I%20was%20tasked%20with%20converting%20a%20UBB%20classic%20%286.7.2%29%20forum%20to%20Kunena%20%281.5.6%29.%20Initially%20I%20had%20thought%20about%20writing%20my%20own%20custom%20code%20to%20do%20the%20conversion%2C%20but%20the%20thought%20of%20parsing%20the%20flat%20files%20that%20UBB%20uses%20for%20their%20forum%20and%20member%20data%20especially%20turned%20me%20off%20%28besides%20the%20amount%20of%20time%20it%20would%20have%20taken%29.%20Luckily%20the%20open%20source%20community%20had%20my%20back%20and%20after%20a%20lot%20of%20research%20I%20was%20able%20to%20find%20and%20get%20working%20several%20conversion%20scripts%20that%20I%20found%20online%2C%20these%20scripts%20with%20a%20little%20love%20will%20help%20you%20get%20out%20of%20that%20musty%20old%20perl-based%20UBB%20classic%20forum%2C%20once%20and%20for%20all." title="Digg"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F&amp;title=Converting%20a%20UBB%20Forum%20to%20phpBB%20Fireboard%20Kunena&amp;notes=Recently%20I%20was%20tasked%20with%20converting%20a%20UBB%20classic%20%286.7.2%29%20forum%20to%20Kunena%20%281.5.6%29.%20Initially%20I%20had%20thought%20about%20writing%20my%20own%20custom%20code%20to%20do%20the%20conversion%2C%20but%20the%20thought%20of%20parsing%20the%20flat%20files%20that%20UBB%20uses%20for%20their%20forum%20and%20member%20data%20especially%20turned%20me%20off%20%28besides%20the%20amount%20of%20time%20it%20would%20have%20taken%29.%20Luckily%20the%20open%20source%20community%20had%20my%20back%20and%20after%20a%20lot%20of%20research%20I%20was%20able%20to%20find%20and%20get%20working%20several%20conversion%20scripts%20that%20I%20found%20online%2C%20these%20scripts%20with%20a%20little%20love%20will%20help%20you%20get%20out%20of%20that%20musty%20old%20perl-based%20UBB%20classic%20forum%2C%20once%20and%20for%20all." title="del.icio.us"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F&amp;title=Converting%20a%20UBB%20Forum%20to%20phpBB%20Fireboard%20Kunena&amp;annotation=Recently%20I%20was%20tasked%20with%20converting%20a%20UBB%20classic%20%286.7.2%29%20forum%20to%20Kunena%20%281.5.6%29.%20Initially%20I%20had%20thought%20about%20writing%20my%20own%20custom%20code%20to%20do%20the%20conversion%2C%20but%20the%20thought%20of%20parsing%20the%20flat%20files%20that%20UBB%20uses%20for%20their%20forum%20and%20member%20data%20especially%20turned%20me%20off%20%28besides%20the%20amount%20of%20time%20it%20would%20have%20taken%29.%20Luckily%20the%20open%20source%20community%20had%20my%20back%20and%20after%20a%20lot%20of%20research%20I%20was%20able%20to%20find%20and%20get%20working%20several%20conversion%20scripts%20that%20I%20found%20online%2C%20these%20scripts%20with%20a%20little%20love%20will%20help%20you%20get%20out%20of%20that%20musty%20old%20perl-based%20UBB%20classic%20forum%2C%20once%20and%20for%20all." title="Google Bookmarks"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F&amp;t=Converting%20a%20UBB%20Forum%20to%20phpBB%20Fireboard%20Kunena" title="MySpace"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F&amp;title=Converting%20a%20UBB%20Forum%20to%20phpBB%20Fireboard%20Kunena" title="StumbleUpon"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F" title="Technorati"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F11%2Fconverting-a-ubb-forum-to-phpbb-fireboard-kunena%2F&amp;t=Converting%20a%20UBB%20Forum%20to%20phpBB%20Fireboard%20Kunena" title="HackerNews"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.piranhamethod.com/2009/11/converting-a-ubb-forum-to-phpbb-fireboard-kunena/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Framework Comparison</title>
		<link>http://www.piranhamethod.com/2009/05/php-framework-comparison/</link>
		<comments>http://www.piranhamethod.com/2009/05/php-framework-comparison/#comments</comments>
		<pubDate>Mon, 25 May 2009 09:42:30 +0000</pubDate>
		<dc:creator>Scott Carroll</dc:creator>
				<category><![CDATA[Development Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[QCubed]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://www.piranhamethod.com/?p=283</guid>
		<description><![CDATA[What is a PHP Framework?
A PHP framework is a set of functions and classes written in PHP that provides a starting point for developing web applications. Frameworks vary in directory structure, feature set, and documentation/support.
Why Use a PHP Framework?
As a PHP developer, it is frustrating to have to code projects over and over again from [...]]]></description>
			<content:encoded><![CDATA[<h3>What is a PHP Framework?</h3>
<p>A PHP framework is a set of functions and classes written in PHP that provides a starting point for developing web applications. Frameworks vary in directory structure, feature set, and documentation/support.</p>
<h3>Why Use a PHP Framework?</h3>
<p>As a PHP developer, it is frustrating to have to code projects over and over again from scratch. Many projects share common features such as mail functions, file handling, database connection, converting and translating text, and on, and on. By alleviating these common coding tasks, a good PHP framework allows a developer to focus more on custom business logic.</p>
<p>I am going to compare a few common PHP frameworks that I have used, feel free to add your own opinions and any frameworks I <strong>will</strong> inevitably miss.</p>
<p><span id="more-283"></span></p>
<h3>Comparison of some PHP Frameworks I have used:</h3>
<h4>QCubed</h4>
<p><a title="QCubed Website" href="http://www.qcu.be" target="_blank">QCubed</a> is a community driven fork of <a title="Qcodo Website" href="http://www.qcodo.com" target="_blank">Qcodo</a>. I am personally no longer using Qcodo in favor of QCubed. QCubed has two main parts, ORM code generation and QForms. Generated code in QCubed follows the MVC pattern, although an actual controller is never generated. Generated code is very easily extended through basic object oriented PHP. A proper MVC file structure can be accomplished and QCubed can produce very high quality web applications. QCubed is not as well documented as some of the other frameworks, but its code generation is extremely powerful and growing stronger.</p>
<p>QForms are essentially PHP objects of HTML forms. They are defined by Mike Ho as &#8220;&#8230;stateful objects that maintain state from one post to the next.&#8221; QControls are PHP objects used to control form elements such as QTextbox, QPanel, QLabel, QButton, and QControls can even be combined and extended to create new QControls. Any QControl can have events assigned to it (click, hover, blur, etc.) that can trigger actions (PHP or JS functions), providing unlimited functionality using advanced AJAX.</p>
<p>ORM Code generation examines the data model and writes data model classes based on relationships it finds. It also writes draft HTML forms to provide basic CRUD functionality. A developer can simply run a codegen on a database and end up with a working application that can list, create, edit, and delete database entries without programming a single line. The drafts will need to be edited, of course, to provide custom logic, but they provide for very rapid prototyping.</p>
<p><a title="QCubed PHP Framework" href="http://www.piranhamethod.com/2009/04/09/qcodo-qcubed/" target="_self">More on QCubed</a>.</p>
<h4>Zend Framework</h4>
<p id="lhid_intr">Extending the art &amp; spirit of PHP, <a title="Zend Framework Website" href="http://framework.zend.com/" target="_blank">Zend Framework</a> is based on simplicity, object-oriented             best practices, corporate friendly licensing, and a rigorously tested agile codebase. Zend Framework is focused             on building more secure, reliable, and modern Web 2.0 applications &amp; web services. Zend is focused on using widely available web service APIs.<br />
<strong>Features:</strong></p>
<ul>
<li>An extensible and well-tested code base â€“ easy to augment</li>
<li>A flexible architecture â€“ not locked-in to a rigid application structure</li>
<li>No configuration files necessary to get up and running â€“ or when maintaining and deploying your apps</li>
<li><strong>AJAX</strong> support through JSON â€“ meet the ease-of-use requirements your users have come to expect</li>
<li><strong></strong> Native PHP edition of the industry-standard <strong>Lucene search engine</strong></li>
<li><strong></strong>Zend Framework aims to be the premier place to consume &amp; publish web services</li>
<li><strong>High-quality, object-oriented PHP 5 class library</strong></li>
</ul>
<p><a title="Articles tagged 'Zend'" href="http://www.piranhamethod.com/tag/zend/" target="_self">More about Zend</a></p>
<h4>CakePHP</h4>
<p>Excellent documentation, simple to set up, easy to use and extend. Very well marketed, with cute names for things &#8211; For instance, applications built on <a title="CakePHP Website" href="http://cakephp.org" target="_blank">CakePHP</a> are considered &#8220;baked,&#8221; The CakePHP manual is called &#8220;The Cookbook,&#8221;Â  and the portal-like &#8220;Bakery&#8221; offers up-to-the-minute details about the CakePHP community.</p>
<p>I like CakePHP and it does its job very well. It is not as enterprise grade like Zend, but it is very thorough and the cute names have attracted a good sized community. Some pretty powerful sites are being &#8220;baked&#8221; using CakePHP.</p>
<h4>CodeIgniter</h4>
<p>A very lightweight and easy to implement framework. A good choice for newcomers to PHP and MVC. <a title="CodeIgniter Website" href="http://www.codeigniter.com" target="_blank">CodeIgniter</a> provides a very thorough class library, as well as helper functions for common tasks. Not my favorite of the bunch, as I prefer QCubed&#8217;s code generation to the scaffolding of CodeIgniter and QCubed is just as robust in other aspects.</p>
<h4>Zoop</h4>
<p><a title="Zoop Framework" href="http://www.zoopframework.com" target="_blank">Zoop</a> has been in development since 2001 and in use for the last 6 years in a number of different production environments. While it predates the recent proliferation of PHP frameworks, it&#8217;s based on solid MVC principles, including separation of display, logic, and data layers. It&#8217;s designed to be efficient, modular, and extensible, striking a balance between lightweight and fully-featured. Zoop is the granddaddy of PHP frameworks, and as such is very solid. I would recommend Zoop to any experienced PHP programmer looking for a good MVC framework.</p>
<h4>Symfony</h4>
<p>Review Coming Soon&#8230;</p>
<h4>Yii</h4>
<p>Review Coming Soon&#8230;</p>
<h4>Seagull</h4>
<p>Seagull is a mature OOP framework for building web, command line and GUI applications. Licensed under BSD, the project allows PHP developers to easily integrate and manage code resources, and build complex applications quickly.</p>
<p>Many popular PHP applications are already seamlessly integrated within the project, as are various templating engines, testing tools and managed library code. If you&#8217;re a beginner, the framework provides a number of sample applications that can be customised and extended to suit your needs. If you&#8217;re an intermediate or advanced developer, take advantage of Seagull&#8217;s best practices , standards and modular codebase to build your applications in record time.</p>
<p>Once your development cycle is complete, use Seagull&#8217;s features for deploying and maintaining your apps locally and remotely. Check out the friendly and active Seagull community and see if Seagull&#8217;s a good fit for you.</p>
<h4>Joomla</h4>
<p>Joomla is considered firstly a CMS, but has been proven to provide a decent framework for PHP development. Current version is 1.5 and has come a long way since the days of Mambo.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share this:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.piranhamethod.com/feed/" title="RSS"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F&amp;partner=sociable" title="PDF"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F&amp;partner=sociable" title="Print"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=PHP%20Framework%20Comparison&amp;url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F" title="Slashdot"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F&amp;t=PHP%20Framework%20Comparison" title="Facebook"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F&amp;title=PHP%20Framework%20Comparison&amp;source=The+Piranha+Method+Web+Development+%26amp%3B+Graphic+Design+Firm+-+Charlotte%2C+Greenville%2C+Charleston&amp;summary=What%20is%20a%20PHP%20Framework%3F%0D%0AA%20PHP%20framework%20is%20a%20set%20of%20functions%20and%20classes%20written%20in%20PHP%20that%20provides%20a%20starting%20point%20for%20developing%20web%20applications.%20Frameworks%20vary%20in%20directory%20structure%2C%20feature%20set%2C%20and%20documentation%2Fsupport.%0D%0AWhy%20Use%20a%20PHP%20" title="LinkedIn"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=PHP%20Framework%20Comparison%20-%20http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F" title="Twitter"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F&amp;title=PHP%20Framework%20Comparison&amp;bodytext=What%20is%20a%20PHP%20Framework%3F%0D%0AA%20PHP%20framework%20is%20a%20set%20of%20functions%20and%20classes%20written%20in%20PHP%20that%20provides%20a%20starting%20point%20for%20developing%20web%20applications.%20Frameworks%20vary%20in%20directory%20structure%2C%20feature%20set%2C%20and%20documentation%2Fsupport.%0D%0AWhy%20Use%20a%20PHP%20" title="Digg"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F&amp;title=PHP%20Framework%20Comparison&amp;notes=What%20is%20a%20PHP%20Framework%3F%0D%0AA%20PHP%20framework%20is%20a%20set%20of%20functions%20and%20classes%20written%20in%20PHP%20that%20provides%20a%20starting%20point%20for%20developing%20web%20applications.%20Frameworks%20vary%20in%20directory%20structure%2C%20feature%20set%2C%20and%20documentation%2Fsupport.%0D%0AWhy%20Use%20a%20PHP%20" title="del.icio.us"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F&amp;title=PHP%20Framework%20Comparison&amp;annotation=What%20is%20a%20PHP%20Framework%3F%0D%0AA%20PHP%20framework%20is%20a%20set%20of%20functions%20and%20classes%20written%20in%20PHP%20that%20provides%20a%20starting%20point%20for%20developing%20web%20applications.%20Frameworks%20vary%20in%20directory%20structure%2C%20feature%20set%2C%20and%20documentation%2Fsupport.%0D%0AWhy%20Use%20a%20PHP%20" title="Google Bookmarks"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F&amp;t=PHP%20Framework%20Comparison" title="MySpace"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F&amp;title=PHP%20Framework%20Comparison" title="StumbleUpon"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F" title="Technorati"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F05%2Fphp-framework-comparison%2F&amp;t=PHP%20Framework%20Comparison" title="HackerNews"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.piranhamethod.com/2009/05/php-framework-comparison/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>QCodo/QCubed</title>
		<link>http://www.piranhamethod.com/2009/04/qcodo-qcubed/</link>
		<comments>http://www.piranhamethod.com/2009/04/qcodo-qcubed/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 12:51:07 +0000</pubDate>
		<dc:creator>Scott Carroll</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[QCodo]]></category>
		<category><![CDATA[QCubed]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.piranhamethod.com/?p=198</guid>
		<description><![CDATA[I have been developing applications from a PHP framework and code generation system called QCodo recently. And more recently, its community-driven branch dubbed QCubed. The QCubed platform is beneficial to me mostly because it allows object-oriented PHP code to be generated from a MySQL database structure (as well as many others) . I use PHP/MySQL [...]]]></description>
			<content:encoded><![CDATA[<p>I have been developing applications from a PHP framework and code generation system called <a title="QCodo PHP Framework" href="http://www.qcodo.com" target="_blank">QCodo</a> recently. And more recently, its community-driven branch dubbed <a title="QCubed PHP Development Framework" href="http://qcu.be" target="_blank">QCubed</a>. The QCubed platform is beneficial to me mostly because it allows object-oriented PHP code to be generated from a MySQL database structure (as well as many others) . I use PHP/MySQL almost exclusively in projects here at Piranha Method, so this is a perfect tool for me.<span id="more-198"></span></p>
<p>There are a few parts to QCodo/QCubed that speed up my coding time. First, I mentioned code generation. This is the strongest feature and is what originally drew me to QCodo. If you provide QCubed with your database information, you can have it scan your DB and write pretty clean &#8220;drafts&#8221; of OOP PHP code based on relationships and foreign keys. It will also generate draft QForms that can be used to perform basic CRUD functionality with the objects it has generated from the database.</p>
<p>Which brings me to the next feature that QCubed offers: QForms and QControls. QForms are as the developer puts it &#8220;stateful, event-driven objects.&#8221; What this means is that each QForm is basically an HTML form that posts back to itself and remembers its state from the previous posting. No sessions or cookies are used.</p>
<p>QControls are essentially PHP objects that have defined getters/setters that can be overridden or added onto.Â  The QForm is responsible for rendering the QControl as HTML and handling any events that are applied to the QControl. QControls can be nested and expanded on to create really powerful web applications.</p>
<p>The last part of QCodo/QCubed are QQueries. This is a shortcut way to perform SQL Queries in an object-oriented manner. QQueries can take in conditions and clauses to provide custom loading of objects in your application. For instance take the following logic:</p>
<p>Select all Projects where: the Project ID &lt;= 2 AND (the manager&#8217;s first name is alphabetically &#8220;greater than&#8221; the last name, or who&#8217;s name contains &#8220;Website&#8221;)</p>
<p><code><span style="color: #000000;"><span style="color: #0000bb;">&lt;?php<br />
$objProjectArray </span><span style="color: #007700;">= </span><span style="color: #0000bb;">Project</span><span style="color: #007700;">::</span><span style="color: #0000bb;">QueryArray</span><span style="color: #007700;">(<br />
</span><span style="color: #0000bb;">QQ</span><span style="color: #007700;">::</span><span style="color: #0000bb;">AndCondition</span><span style="color: #007700;">(<br />
</span><span style="color: #0000bb;">QQ</span><span style="color: #007700;">::</span><span style="color: #0000bb;">OrCondition</span><span style="color: #007700;">(<br />
</span><span style="color: #0000bb;">QQ</span><span style="color: #007700;">::</span><span style="color: #0000bb;">GreaterThan</span><span style="color: #007700;">(</span><span style="color: #0000bb;">QQN</span><span style="color: #007700;">::</span><span style="color: #0000bb;">Project</span><span style="color: #007700;">()-&gt;</span><span style="color: #0000bb;">ManagerPerson</span><span style="color: #007700;">-&gt;</span><span style="color: #0000bb;">FirstName</span><span style="color: #007700;">, </span><span style="color: #0000bb;">QQN</span><span style="color: #007700;">::</span><span style="color: #0000bb;">Project</span><span style="color: #007700;">()-&gt;</span><span style="color: #0000bb;">ManagerPerson</span><span style="color: #007700;">-&gt;</span><span style="color: #0000bb;">LastName</span><span style="color: #007700;">),<br />
</span><span style="color: #0000bb;">QQ</span><span style="color: #007700;">::</span><span style="color: #0000bb;">Like</span><span style="color: #007700;">(</span><span style="color: #0000bb;">QQN</span><span style="color: #007700;">::</span><span style="color: #0000bb;">Project</span><span style="color: #007700;">()-&gt;</span><span style="color: #0000bb;">Name</span><span style="color: #007700;">, </span><span style="color: #dd0000;">'%Website%'</span><span style="color: #007700;">)<br />
),<br />
</span><span style="color: #0000bb;">QQ</span><span style="color: #007700;">::</span><span style="color: #0000bb;">LessOrEqual</span><span style="color: #007700;">(</span><span style="color: #0000bb;">QQN</span><span style="color: #007700;">::</span><span style="color: #0000bb;">Project</span><span style="color: #007700;">()-&gt;</span><span style="color: #0000bb;">Id</span><span style="color: #007700;">, </span><span style="color: #0000bb;">2</span><span style="color: #007700;">)<br />
)<br />
);</span></span></code></p>
<p>foreachÂ (<span style="color: #0000bb;">$objProjectArray </span><span style="color: #007700;">as </span><span style="color: #0000bb;">$objProject</span><span style="color: #007700;">)Â {<br />
</span><span style="color: #0000bb;">_p</span><span style="color: #007700;">(</span><span style="color: #0000bb;">sprintf</span><span style="color: #007700;">(</span><span style="color: #dd0000;">&#8216;%sÂ (managedÂ byÂ %sÂ %s)&#8217;</span><span style="color: #007700;">, </span><span style="color: #0000bb;">$objProject</span><span style="color: #007700;">-&gt;</span><span style="color: #0000bb;">Name</span><span style="color: #007700;">, </span><span style="color: #0000bb;">$objProject</span><span style="color: #007700;">-&gt;</span><span style="color: #0000bb;">ManagerPerson</span><span style="color: #007700;">-&gt;</span><span style="color: #0000bb;">FirstName</span><span style="color: #007700;">, </span><span style="color: #0000bb;">$objProject</span><span style="color: #007700;">-&gt;</span><span style="color: #0000bb;">ManagerPerson</span><span style="color: #007700;">-&gt;</span><span style="color: #0000bb;">LastName</span><span style="color: #007700;">));<br />
</span><span style="color: #0000bb;">_p</span><span style="color: #007700;">(</span><span style="color: #dd0000;">&#8216;&lt;br/&gt;&#8217;</span><span style="color: #007700;">, </span><span style="color: #0000bb;">false</span><span style="color: #007700;">);<br />
}<br />
</span><span style="color: #0000bb;">?&gt;</span></p>
<p>This is much easier to read and understand than the SQL command required to perform the same function. Also, if you change your database source you won&#8217;t have to rewrite code, as long as the relational structure stays the same.</p>
<p>I highly recommend you check out <a title="QCodo Examples" href="http://examples.qcodo.com">http://examples.qcodo.com</a> and <a title="QCubed Tutorials" href="http://trac.qcu.be/projects/qcubed/wiki/Tutorials">http://trac.qcu.be/projects/qcubed/wiki/Tutorials</a> to get a sense of how powerful this framework truly is.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share this:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.piranhamethod.com/feed/" title="RSS"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F&amp;partner=sociable" title="PDF"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F&amp;partner=sociable" title="Print"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=QCodo%2FQCubed&amp;url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F" title="Slashdot"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F&amp;t=QCodo%2FQCubed" title="Facebook"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F&amp;title=QCodo%2FQCubed&amp;source=The+Piranha+Method+Web+Development+%26amp%3B+Graphic+Design+Firm+-+Charlotte%2C+Greenville%2C+Charleston&amp;summary=I%20have%20been%20developing%20applications%20from%20a%20PHP%20framework%20and%20code%20generation%20system%20called%20QCodo%20recently.%20And%20more%20recently%2C%20its%20community-driven%20branch%20dubbed%20QCubed.%20The%20QCubed%20platform%20is%20beneficial%20to%20me%20mostly%20because%20it%20allows%20object-oriented%20" title="LinkedIn"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=QCodo%2FQCubed%20-%20http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F" title="Twitter"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F&amp;title=QCodo%2FQCubed&amp;bodytext=I%20have%20been%20developing%20applications%20from%20a%20PHP%20framework%20and%20code%20generation%20system%20called%20QCodo%20recently.%20And%20more%20recently%2C%20its%20community-driven%20branch%20dubbed%20QCubed.%20The%20QCubed%20platform%20is%20beneficial%20to%20me%20mostly%20because%20it%20allows%20object-oriented%20" title="Digg"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F&amp;title=QCodo%2FQCubed&amp;notes=I%20have%20been%20developing%20applications%20from%20a%20PHP%20framework%20and%20code%20generation%20system%20called%20QCodo%20recently.%20And%20more%20recently%2C%20its%20community-driven%20branch%20dubbed%20QCubed.%20The%20QCubed%20platform%20is%20beneficial%20to%20me%20mostly%20because%20it%20allows%20object-oriented%20" title="del.icio.us"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F&amp;title=QCodo%2FQCubed&amp;annotation=I%20have%20been%20developing%20applications%20from%20a%20PHP%20framework%20and%20code%20generation%20system%20called%20QCodo%20recently.%20And%20more%20recently%2C%20its%20community-driven%20branch%20dubbed%20QCubed.%20The%20QCubed%20platform%20is%20beneficial%20to%20me%20mostly%20because%20it%20allows%20object-oriented%20" title="Google Bookmarks"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F&amp;t=QCodo%2FQCubed" title="MySpace"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F&amp;title=QCodo%2FQCubed" title="StumbleUpon"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F" title="Technorati"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.piranhamethod.com%2F2009%2F04%2Fqcodo-qcubed%2F&amp;t=QCodo%2FQCubed" title="HackerNews"><img src="http://www.piranhamethod.com/wp-content/plugins/sociable/images/hackernews.png" title="HackerNews" alt="HackerNews" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.piranhamethod.com/2009/04/qcodo-qcubed/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
