<?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>JortK.nl &#187; factory method</title>
	<atom:link href="http://www.jortk.nl/tag/factory-method/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jortk.nl</link>
	<description>Mind farts of a crappy coder!</description>
	<lastBuildDate>Fri, 10 Sep 2010 21:49:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Useful PHP and MySQL articles to improve your development skills!</title>
		<link>http://www.jortk.nl/2010/01/useful-php-and-mysql-articles-to-improve-your-development-skills/</link>
		<comments>http://www.jortk.nl/2010/01/useful-php-and-mysql-articles-to-improve-your-development-skills/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 16:30:05 +0000</pubDate>
		<dc:creator>JortK</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[design pattern]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[factory method]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[objects]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[pivot]]></category>
		<category><![CDATA[variables]]></category>

		<guid isPermaLink="false">http://www.jortk.nl/?p=1145</guid>
		<description><![CDATA[CakePHP Authsome Authentication for people who hate the AuthComponent. Triggering Cascading Updates and Deletions with Foreign Key Constraints Cool article how to create cascading updates and deletions on your MySQL database using key constraints. Create Pivot Tables in PHP Tutorial on how you can use PHP to create Pivot Tables. Working in the Method Scope [...]


Related posts:<ol><li><a href='http://www.jortk.nl/2010/01/5-articles-to-improve-your-jquery-skills/' rel='bookmark' title='Permanent Link: 5 articles to improve your jQuery skills!'>5 articles to improve your jQuery skills!</a> <small>jQuery 1.4 API Cheat Sheet Complete cheat sgeet of the...</small></li>
<li><a href='http://www.jortk.nl/2010/02/mysql-caching-techniques/' rel='bookmark' title='Permanent Link: MySQL Caching Techniques'>MySQL Caching Techniques</a> <small>Recently Jay Pipes published great article about lazy connecting and...</small></li>
<li><a href='http://www.jortk.nl/2010/02/23-articles-and-resources-to-improve-your-wordpress-life/' rel='bookmark' title='Permanent Link: 23 articles and resources to improve your WordPress life!'>23 articles and resources to improve your WordPress life!</a> <small>I&#8217;ve collected some cool articles which will give you tips...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a title="Coll plugin for CakePHP" href="http://www.debuggable.com/posts/cakephp-authsome-debuggable-s-xmas-gift:4b34b4e6-9ca4-4673-bea6-4776cbdd56cb" target="_blank">CakePHP Authsome</a><br />
Authentication for people who hate the AuthComponent.<span id="more-1145"></span></p>
<p><a title="MySQL tutorial on cascading deletes and updates" href="http://www.devshed.com/c/a/PHP/Triggering-Cascading-Updates-and-Deletions-with-Foreign-Key-Constraints/" target="_blank">Triggering Cascading Updates and Deletions with Foreign Key Constraints </a><br />
Cool article how to create cascading updates and deletions on your MySQL database using key constraints.</p>
<p><a title="How to create pivot tables using PHP" href="http://gonzalo123.wordpress.com/2010/01/24/pivot-tables-in-php/" target="_blank">Create Pivot Tables in PHP</a><br />
Tutorial on how you can use PHP to create Pivot Tables.</p>
<p><a title="How to use Method Scope in PHP" href="http://www.devshed.com/c/a/PHP/Working-in-the-Method-Scope-with-Static-Variables-in-PHP-5-Classes/" target="_blank">Working in the Method Scope with Static Variables in PHP 5 Classes </a><br />
Despite their name, static properties can help in a wide variety of situations. If you&#8217;re not using them currently, and you regularly implement design patterns in your code, after reading this series you&#8217;ll wonder how you ever did without them.</p>
<p><a title="Article on all bad pratices on PHP" href="http://www.sellmix.com/blog/php/php-mistakes-bad-practices-no-nos/" target="_blank">PHP mistakes, misconceptions, bad practices and blatant no nos.</a><br />
Go to any PHP help forum and you’ll be sure to see many bad practises, innocent misconceptions and blatant no nos. None of us are perfect and none of us started off writing great code. We have all had that moment where we looked back on a script that we wrote years ago and thought “what the hell was I thinking?”. But it is a process. You make mistakes, you learn from those mistakes and then you move on.</p>
<p><a title="Artcile on the Composite PHP pattern" href="http://giorgiosironi.blogspot.com/2010/01/practical-php-patterns-composite.html" target="_blank">Practical Php Patterns: Composite</a><br />
One of the most important structural patterns is the Composite one: its goal is managing a hierarchy of objects where both leaf objects and composition of other objects conform to a common interface. This hierarchy is usually constituted by part-whole relationships (often composition in the strict sense or aggregation), and it can be viewed as a tree.</p>
<p><a title="Tutorial on relations" href="http://giorgiosironi.blogspot.com/2010/01/relationships-between-objects.html" target="_blank">Relationships between objects</a><br />
Clear article where relationships between objects are explained.</p>
<p><a title="Tutorial on how to implement factory methods in PHP 5" href="http://www.devshed.com/c/a/PHP/Implementing-Factory-Methods-in-PHP-5/" target="_blank">Implementing Factory Methods in PHP 5</a><br />
If you’ve ever developed desktop applications using mature object-oriented languages like C++ and Java, then it’s possible that you’ve found yourself saying a few funny phrases such as “I need to implement a factory method within this class,” or in the worst case: “this class needs to implement a factory method, but I don’t have a single clue about how to do that.” Surprisingly, you can implement these factory methods pretty quickly and easily in PHP 5.</p>


<p>Related posts:<ol><li><a href='http://www.jortk.nl/2010/01/5-articles-to-improve-your-jquery-skills/' rel='bookmark' title='Permanent Link: 5 articles to improve your jQuery skills!'>5 articles to improve your jQuery skills!</a> <small>jQuery 1.4 API Cheat Sheet Complete cheat sgeet of the...</small></li>
<li><a href='http://www.jortk.nl/2010/02/mysql-caching-techniques/' rel='bookmark' title='Permanent Link: MySQL Caching Techniques'>MySQL Caching Techniques</a> <small>Recently Jay Pipes published great article about lazy connecting and...</small></li>
<li><a href='http://www.jortk.nl/2010/02/23-articles-and-resources-to-improve-your-wordpress-life/' rel='bookmark' title='Permanent Link: 23 articles and resources to improve your WordPress life!'>23 articles and resources to improve your WordPress life!</a> <small>I&#8217;ve collected some cool articles which will give you tips...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jortk.nl/2010/01/useful-php-and-mysql-articles-to-improve-your-development-skills/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
