<?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>Rick Williams &#187; patterns</title>
	<atom:link href="http://www.pixelpod.co.uk/blog/category/patterns/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pixelpod.co.uk/blog</link>
	<description>ramblings of a creative developer</description>
	<lastBuildDate>Wed, 14 Jul 2010 14:29:39 +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>Yahoo&#8217;s Design Pattern library</title>
		<link>http://www.pixelpod.co.uk/blog/2008/06/12/yahoos-design-pattern-library/</link>
		<comments>http://www.pixelpod.co.uk/blog/2008/06/12/yahoos-design-pattern-library/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 18:20:53 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[patterns]]></category>
		<category><![CDATA[design pattern solutions]]></category>
		<category><![CDATA[reputation patterns]]></category>
		<category><![CDATA[yahoo design pattern library]]></category>

		<guid isPermaLink="false">http://www.pixelpod.co.uk/blog/?p=272</guid>
		<description><![CDATA[Yahoo have created an excellent resource online called the Yahoo Design Pattern library which helps to illustrate solution to design problems; not design in the creative sense, but in the problem solving sense. They&#8217;ve just added a bunch of solutions around manging and engaging people in reputation management online.]]></description>
			<content:encoded><![CDATA[<p>Yahoo have created an excellent resource online called the <a href="http://developer.yahoo.com/ypatterns/index.php">Yahoo Design Pattern library</a> which helps to illustrate solution to design problems; not design in the creative sense, but in the problem solving sense.<br />
They&#8217;ve just added a bunch of solutions around manging and engaging people in reputation management online.</p>
<p><a href="http://developer.yahoo.com/ypatterns/parent.php?pattern=reputation" class="tt-flickr tt-flickr-Medium"><img src="http://farm4.static.flickr.com/3020/2572005075_1efc0802ae.jpg" alt="Reputation Parent - Yahoo! Design Pattern Library" width="444" height="500" border="0" /></a> </p>
<div style='display:none' id="post-refEl-272"></div>]]></content:encoded>
			<wfw:commentRss>http://www.pixelpod.co.uk/blog/2008/06/12/yahoos-design-pattern-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Singleton</title>
		<link>http://www.pixelpod.co.uk/blog/2006/02/16/the-singleton/</link>
		<comments>http://www.pixelpod.co.uk/blog/2006/02/16/the-singleton/#comments</comments>
		<pubDate>Thu, 16 Feb 2006 10:50:43 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[patterns]]></category>

		<guid isPermaLink="false">http://www.pixelpod.co.uk/blog/?p=6</guid>
		<description><![CDATA[[ftf]class MySingleton { private static var _instance:MySingleton = null; private function MySingleton() {} static function getInstance():MySingleton { if(_instance == null) _instance = new MySingleton(); return _instance; } public function doSomething() { trace(&#8220;This is a singleton method&#8221;); } }[/ftf] The purpose of a Singleton is to enable access to it from anywhere and ensure you don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>[ftf]class MySingleton {</p>
<p>private static var _instance:MySingleton = null;</p>
<p>private function MySingleton() {}</p>
<p>static function getInstance():MySingleton {<br />
if(_instance == null) _instance = new MySingleton();<br />
return _instance;<br />
}</p>
<p>public function doSomething() {<br />
trace(&#8220;This is a singleton method&#8221;);<br />
}</p>
<p>}[/ftf]</p>
<p>The purpose of a Singleton is to enable access to it from anywhere and ensure you don&#8217;t ever have more than one. Another way of looking at it is a _global container of data without using _global.</p>
<div style='display:none' id="post-refEl-6"></div>]]></content:encoded>
			<wfw:commentRss>http://www.pixelpod.co.uk/blog/2006/02/16/the-singleton/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
