<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ardeveloper's Weblog</title>
	<atom:link href="http://ardeveloper.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ardeveloper.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 23 Jun 2008 13:29:05 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ardeveloper.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/80199f0a688bb8192bf82266a5a6411f?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Ardeveloper's Weblog</title>
		<link>http://ardeveloper.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ardeveloper.wordpress.com/osd.xml" title="Ardeveloper&#8217;s Weblog" />
		<item>
		<title>Design Pattern in action</title>
		<link>http://ardeveloper.wordpress.com/2008/06/23/design-pattern-in-action/</link>
		<comments>http://ardeveloper.wordpress.com/2008/06/23/design-pattern-in-action/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 13:29:05 +0000</pubDate>
		<dc:creator>ardeveloper</dc:creator>
				<category><![CDATA[Abstract programming]]></category>

		<guid isPermaLink="false">http://ardeveloper.wordpress.com/?p=5</guid>
		<description><![CDATA[since php5 started and all programmers put them eyes on OOP 
Object Oriented programming started to show programmers the best ways to develop, Create and design their Software&#8230;
some programmers believe that no programming language without OOP so , they was put the php as scripting language tools
Since the introduction of php5 we see the one [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ardeveloper.wordpress.com&blog=4010619&post=5&subd=ardeveloper&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>since php5 started and all programmers put them eyes on <strong>OOP </strong></p>
<p><span style="text-decoration:underline;"><strong>Object Oriented</strong></span> programming started to show programmers the best ways to develop, Create and design their Software&#8230;</p>
<p>some programmers believe that no programming language without <strong>OOP </strong>so , they was put the php as scripting language tools</p>
<p>Since the introduction of <em><strong>php5 </strong></em>we see the one of the most famous programming language started</p>
<p>but What is the relation between this words and Design pattern &#8230;</p>
<p>if you were using php as scripting language and don&#8217;t have information about  oop you need to search and learn what OOP is or you have another solution that you wait me to started my posts in php</p>
<p>now we need to know what about design pattern and what it is</p>
<p>Programmer in oop system find problems with Classes and objects such as</p>
<p>the one instance of a class is required or Controlled access to a single object is necessary</p>
<p>so you must have an way to do that</p>
<p><strong>Design patter have a solutions:</strong></p>
<p>Design pattern is the best way to solve OOP issue i think you must read about it in java or C++ to understanding it well so, early i read cheetcheet book which talking about Design pattern and i will get some quote form it and if we need to explaing i will <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li><span style="text-decoration:underline;"><strong><span style="color:#ff0000;"><span style="color:#333399;">Creational Patterns:</span></span></strong></span> Used to construct objects such that they can be decoupled from their implementing system<br />
1- Abstract Factory    2- Builder   3-Factory Method 4- Prototype 5- Singleton</li>
<li><span style="color:#333399;"><span style="text-decoration:underline;"><strong>Structural Patterns:</strong></span></span> Used to form large object structures between many disparate objects<br />
1- adapter 2- bridge  3- Composite 4- Decorator 5- Proxy 6- Flyweight</li>
<li><span style="color:#333399;"><span style="text-decoration:underline;"><strong>Behavioral Patterns:</strong></span></span> Used to manage algorithms, relationships, and responsibilities between objects
<p>1- Chain of Responsibility 2-Command 3-Interpreter 4-Iterator 5-Mediator 6-Memento 7-Observer<br />
8-State 9- strategy 10-Template Method 11-visitors</li>
</ul>
<p>All this pattern you can use if you need the pattern which issue is related with it so you must know</p>
<p>In <a title="Software engineering" href="http://en.wikipedia.org/wiki/Software_engineering">software engineering</a>, a <strong>design pattern</strong> is a general reusable solution to a commonly occurring problem in <a title="Software design" href="http://en.wikipedia.org/wiki/Software_design">software design</a>. A design pattern is not a finished design that can be transformed directly into <a class="mw-redirect" title="Code (computer programming)" href="http://en.wikipedia.org/wiki/Code_%28computer_programming%29">code</a>. It is a description or template for how to solve a problem that can be used in many different situations. <a class="mw-redirect" title="Object-oriented" href="http://en.wikipedia.org/wiki/Object-oriented">Object-oriented</a> design patterns typically show relationships and <a title="Interaction" href="http://en.wikipedia.org/wiki/Interaction">interactions</a> between <a title="Class (computer science)" href="http://en.wikipedia.org/wiki/Class_%28computer_science%29">classes</a> or <a title="Object (computer science)" href="http://en.wikipedia.org/wiki/Object_%28computer_science%29">objects</a>, without specifying the final application classes or objects that are involved. <a class="mw-redirect" title="Algorithms" href="http://en.wikipedia.org/wiki/Algorithms">Algorithms</a> are not thought of as design patterns, since they solve <a title="Computation" href="http://en.wikipedia.org/wiki/Computation">computational</a> problems rather than <a title="Design" href="http://en.wikipedia.org/wiki/Design">design</a> problems.</p>
<p>you can downloading This cheetcheet from</p>
<p><a href="http://www.Dzone.com" target="_blank">www.Dzone.com</a></p>
<p>read more about this topic:</p>
<p><strong>http://en.wikipedia.org/wiki/Design_pattern_(computer_science)</strong></p>
<p>with my best wishes</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ardeveloper.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ardeveloper.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ardeveloper.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ardeveloper.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ardeveloper.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ardeveloper.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ardeveloper.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ardeveloper.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ardeveloper.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ardeveloper.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ardeveloper.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ardeveloper.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ardeveloper.wordpress.com&blog=4010619&post=5&subd=ardeveloper&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ardeveloper.wordpress.com/2008/06/23/design-pattern-in-action/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1bd33edcd6d99b038497fb09f63756be?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Cartooch</media:title>
		</media:content>
	</item>
		<item>
		<title>like programmers do</title>
		<link>http://ardeveloper.wordpress.com/2008/06/18/like-programmers-do/</link>
		<comments>http://ardeveloper.wordpress.com/2008/06/18/like-programmers-do/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 18:14:54 +0000</pubDate>
		<dc:creator>ardeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ardeveloper.wordpress.com/?p=4</guid>
		<description><![CDATA[This is my first blog in the blogging world,
right that this is not a blog with the first filing, but I think that entering the blogging world from a wider doors require special host from WordPress.com
- don&#8217;t worry i will not break your mind with my biography just know what i must do for blogging
just [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ardeveloper.wordpress.com&blog=4010619&post=4&subd=ardeveloper&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is my first blog in the blogging world,</p>
<div id="result_box" dir="ltr">right that this is not a blog with the first filing, but I think that entering the blogging world from a wider doors require special host from WordPress.com</div>
<div dir="ltr">- don&#8217;t worry i will not break your mind with my biography just know what i must do for blogging</div>
<div dir="ltr">just require information to know me</div>
<div dir="ltr">name : Call undefined proberty</div>
<div dir="ltr">age    :  for ($age = 1985; $age = date(&#8220;Y&#8221;, U); $age ++){ break;}</div>
<div dir="ltr">Crime : php developer</div>
<div dir="ltr">address : 404 HTTP street</div>
<div dir="ltr">Blood color : &lt;style type=&#8221;blood/unknown&#8221;&gt; color : smile &lt;/style&gt;</div>
<div dir="ltr">Blood type : integer</div>
<div dir="ltr">life type : bolean</div>
<div dir="ltr">life style : inhert</div>
<div dir="ltr">hobbies : exit();</div>
<div dir="ltr">else : return</div>
<div dir="ltr">this is all about me ! then the ugly question &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230; what about you ?</div>
<div dir="ltr">out of post : in this blog i will explain more things in programming and developing ASAP;</div>
<div dir="ltr">be right back</div>
<div dir="ltr">bye</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ardeveloper.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ardeveloper.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ardeveloper.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ardeveloper.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ardeveloper.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ardeveloper.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ardeveloper.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ardeveloper.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ardeveloper.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ardeveloper.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ardeveloper.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ardeveloper.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ardeveloper.wordpress.com&blog=4010619&post=4&subd=ardeveloper&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ardeveloper.wordpress.com/2008/06/18/like-programmers-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1bd33edcd6d99b038497fb09f63756be?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Cartooch</media:title>
		</media:content>
	</item>
	</channel>
</rss>