<?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>Me blog</title>
	<atom:link href="http://ggaregin.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ggaregin.wordpress.com</link>
	<description>carpe diem</description>
	<lastBuildDate>Sun, 08 Jun 2008 20:27:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ggaregin.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Me blog</title>
		<link>http://ggaregin.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ggaregin.wordpress.com/osd.xml" title="Me blog" />
	<atom:link rel='hub' href='http://ggaregin.wordpress.com/?pushpress=hub'/>
		<item>
		<title>nice tiny pattern for populating SQL filter statements</title>
		<link>http://ggaregin.wordpress.com/2008/06/04/sql-filter-statements-populating/</link>
		<comments>http://ggaregin.wordpress.com/2008/06/04/sql-filter-statements-populating/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 12:54:48 +0000</pubDate>
		<dc:creator>ggaregin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[pattern]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://ggaregin.wordpress.com/?p=11</guid>
		<description><![CDATA[How to populate SQL Select statement with dynamically (according to input parameters) generated Where conditions&#8230;? Once i got an a tiny idea and after that it became like stile of generating such kind of statements, it can be useful or not but i like it and want to share it &#8230; So&#8230; For example you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggaregin.wordpress.com&amp;blog=3714275&amp;post=11&amp;subd=ggaregin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How to populate SQL Select statement with dynamically (according to input parameters) generated Where conditions&#8230;? Once i got an a tiny idea and after that it became like stile of generating such kind of statements, it can be useful or not but i like it and want to share it &#8230;<br />
So&#8230;<br />
For example you have to populate Select statement with &#8220;where&#8221; conditions coming from an filter array, for an good result i will show an filter combined from field names as keys and filters as values :</p>
<blockquote><p>$q = &#8220;SELECT `t`.`f` FROM `t` WHERE 1 &#8220;;<br />
//populating sql filter<br />
if (isset($filter) and is_array($filter)) {</p>
<p>foreach ($filter as $key=&gt;$value) {<br />
$q .= sprintf(&#8221; AND `%s` = &#8216;%s&#8217;&#8221;,$key, $value);<br />
}</p>
<p>}</p></blockquote>
<p>In this example i expect that filter should be the &#8220;equal&#8221; for all attributes, but this topic not for that.<br />
Nicest thing is &#8220;WHERE 1&#8243; in the first line: it allows you to not worry for content of coming filter, is there exists any useful (valid) parameter or not, and of course no cutting strings function in the end of populating (i like this point more).<br />
in other words you say- &#8220;if i have no filters, than i have one &#8230; which is always true&#8221;, and i keep that one above others &#8230;<br />
thanks</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ggaregin.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ggaregin.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggaregin.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggaregin.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggaregin.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggaregin.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggaregin.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggaregin.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggaregin.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggaregin.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggaregin.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggaregin.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggaregin.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggaregin.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggaregin.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggaregin.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggaregin.wordpress.com&amp;blog=3714275&amp;post=11&amp;subd=ggaregin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggaregin.wordpress.com/2008/06/04/sql-filter-statements-populating/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/79e62d1736b49b444bf3dea9f35d50d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggaregin</media:title>
		</media:content>
	</item>
		<item>
		<title>Development process models&#8230; usability compromise</title>
		<link>http://ggaregin.wordpress.com/2008/05/27/development-process-models-compromise/</link>
		<comments>http://ggaregin.wordpress.com/2008/05/27/development-process-models-compromise/#comments</comments>
		<pubDate>Tue, 27 May 2008 18:51:11 +0000</pubDate>
		<dc:creator>ggaregin</dc:creator>
				<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://ggaregin.wordpress.com/?p=9</guid>
		<description><![CDATA[It is very popular now to speak about development process models in software development. I have feeling that it became something like style of developing, and even some companies have created their own standards based on some well known models. Often in this style hunting process people forgetting about the main goal of company. Web [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggaregin.wordpress.com&amp;blog=3714275&amp;post=9&amp;subd=ggaregin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It is very popular now to speak about development process models in software development. I have feeling that it became something like style of developing, and even some companies have created their own  standards based on some well known models. Often in this style hunting process people forgetting about the main goal of company. Web development company, as every trade company, should care more about products success and the annual income itself and not on that how it is going on with the Paper works and are developers follow the rules of defined by company low : &#8220;the only Model of working&#8221;. I don&#8217;t mean that paper work is spending time and money, it is very important to have documentation on everything and everywhere,  but at least we should be as flexible as  different are our problems and products.</p>
<p>I can understand the architects and product leads who wants to have full documents and artifacts, the reasons are very strong, when everything that doing product managers, developers, and architects  is written down and it is written in predefined templates, it is very ease to track everything considering project developing and product future, but in other hand first requirements of any product are budget, deadline,  and quality, and then only strongly documented, but as shows experience technical and none technical documenting is may be the most expensive cycle in whole development process&#8230; so where is the Compromise&#8230;</p>
<p>I&#8217;ll try to explain some points of my opinion on development process model compromise</p>
<p>I think first of all well and fully documented should be only that products who already have got his place under the Sun, of course here some PM can be blame on me, but &#8230; &#8220;selavi&#8221; not every project that was born in someone brain and started development has at least succeed finished implementation.</p>
<p>second: there should be at least two different models described, one for complete new product second for new releases, i don&#8217;t think that it is good idea when you can pass some points of the model or start with the middle of described model according to your needs.</p>
<p>The man who suggesting concrete model should be responsible for success or fail of it, means if he project was failed there can be only fail of planing, good plan- plan to do, in that case model suggester will be more flexible while thinking about selecting model for concrete product.</p>
<p>It is not secret that the heaviest part of whole development process is planing and creating product skeleton, so i think it is better to pay more attention on that points, even in very first steps of product development process discuss more about which modules and technologies should be used product to get functional requirement that needed.</p>
<p>On the first pages of product documentation (vision &#8230;) should be reports of every team participants, product managers,  marketing department, architects, developers &#8230;, other external modules delegates if exists&#8230;,</p>
<p>On the process of implementing should not be any big documentation in tasks of developers, but should be an strong requirement that every peace of code should be well commented by them, supervisors and architects should care about revisions of comments also.</p>
<p>of course the topic is larger then i can put in post, and topic itself is very interesting so i guess we will have hard discussions about it later on&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ggaregin.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ggaregin.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggaregin.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggaregin.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggaregin.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggaregin.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggaregin.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggaregin.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggaregin.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggaregin.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggaregin.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggaregin.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggaregin.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggaregin.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggaregin.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggaregin.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggaregin.wordpress.com&amp;blog=3714275&amp;post=9&amp;subd=ggaregin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggaregin.wordpress.com/2008/05/27/development-process-models-compromise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/79e62d1736b49b444bf3dea9f35d50d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggaregin</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8230; &amp; XML&#8217;s enemy</title>
		<link>http://ggaregin.wordpress.com/2008/05/19/ampersand-and-xml/</link>
		<comments>http://ggaregin.wordpress.com/2008/05/19/ampersand-and-xml/#comments</comments>
		<pubDate>Mon, 19 May 2008 12:34:20 +0000</pubDate>
		<dc:creator>ggaregin</dc:creator>
				<category><![CDATA[xml]]></category>
		<category><![CDATA[ampersand]]></category>

		<guid isPermaLink="false">http://ggaregin.wordpress.com/?p=8</guid>
		<description><![CDATA[After several times of debugging and searching for not valid things in XML, have found &#8220;&#38;&#8221; symbol in an link address. As you probable know every single &#38; sign is a start point for entity in XML, that brings fatal error,&#8230; it was filling that kind of problems stumble us often, so people please be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggaregin.wordpress.com&amp;blog=3714275&amp;post=8&amp;subd=ggaregin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After several times of debugging and searching for not valid things in XML, have found &#8220;&amp;&#8221; symbol in an link address. As you probable know every single &amp; sign is a start point for entity in XML, that brings fatal error,&#8230; it was filling that kind of problems stumble us often, so people please be carefully with ampersands in URLs while generating XML.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ggaregin.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ggaregin.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggaregin.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggaregin.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggaregin.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggaregin.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggaregin.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggaregin.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggaregin.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggaregin.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggaregin.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggaregin.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggaregin.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggaregin.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggaregin.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggaregin.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggaregin.wordpress.com&amp;blog=3714275&amp;post=8&amp;subd=ggaregin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggaregin.wordpress.com/2008/05/19/ampersand-and-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/79e62d1736b49b444bf3dea9f35d50d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggaregin</media:title>
		</media:content>
	</item>
		<item>
		<title>how many instances of apache started&#8230;</title>
		<link>http://ggaregin.wordpress.com/2008/05/15/how-many-apaches-started/</link>
		<comments>http://ggaregin.wordpress.com/2008/05/15/how-many-apaches-started/#comments</comments>
		<pubDate>Thu, 15 May 2008 12:41:39 +0000</pubDate>
		<dc:creator>ggaregin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>

		<guid isPermaLink="false">http://ggaregin.wordpress.com/?p=7</guid>
		<description><![CDATA[this two days we was in terrible war with apache instances, server was not so powuerfull (516 RAM) so we had a lot of problems with num of auto started servers. so limit of auto creating apaches by default is 256, we did decrease it up to 36. and decreased also some other potentials&#8230; 12 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggaregin.wordpress.com&amp;blog=3714275&amp;post=7&amp;subd=ggaregin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>this two days we was in terrible war with apache instances, server was not so powuerfull (516 RAM) so we had a lot of problems with num of auto started servers.</p>
<p>so limit of auto creating apaches by default is 256, we did decrease it up to 36. and decreased also some other potentials&#8230;</p>
<blockquote><p>12 MaxKeepAliveRequests 15<br />
13 KeepAliveTimeout 4<br />
14<br />
15 MinSpareServers 5<br />
16 MaxSpareServers 12<br />
17 StartServers 12<br />
18<br />
19 ServerLimit 64<br />
20 MaxClients 32<br />
21 MaxRequestsPerChild 16</p></blockquote>
<p>for development it not big hurt, but it keeps your server up and running. And one note short command to see how many instances you have (this note i writing especially for me)</p>
<blockquote><p>ps aux | grep apache| grep -v grep | wc -l</p></blockquote>
<p>thanks a lot to Hovik and Arman for support <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ggaregin.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ggaregin.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggaregin.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggaregin.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggaregin.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggaregin.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggaregin.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggaregin.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggaregin.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggaregin.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggaregin.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggaregin.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggaregin.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggaregin.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggaregin.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggaregin.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggaregin.wordpress.com&amp;blog=3714275&amp;post=7&amp;subd=ggaregin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggaregin.wordpress.com/2008/05/15/how-many-apaches-started/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/79e62d1736b49b444bf3dea9f35d50d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggaregin</media:title>
		</media:content>
	</item>
		<item>
		<title>New Fabia</title>
		<link>http://ggaregin.wordpress.com/2008/05/13/new-fabia/</link>
		<comments>http://ggaregin.wordpress.com/2008/05/13/new-fabia/#comments</comments>
		<pubDate>Tue, 13 May 2008 12:00:29 +0000</pubDate>
		<dc:creator>ggaregin</dc:creator>
				<category><![CDATA[car]]></category>

		<guid isPermaLink="false">http://ggaregin.wordpress.com/?p=5</guid>
		<description><![CDATA[car that i am going to buy my first impression for this car was &#8212; it looks like mini ya and btw in competition of autoreview.ru fabia takes second place after mazda 2, there were also pegout 207, opel corsa and toyota yaris. but if you compare prices fabia should take first place<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggaregin.wordpress.com&amp;blog=3714275&amp;post=5&amp;subd=ggaregin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-6" src="http://ggaregin.files.wordpress.com/2008/05/0134288063001.jpeg?w=300&#038;h=225" alt="" width="300" height="225" /><img class="alignleft size-medium wp-image-4" src="http://ggaregin.files.wordpress.com/2008/05/0134288063003.jpeg?w=300&#038;h=225" alt="" width="300" height="225" /><br />
car that i am going to buy<br />
my first impression for this car was &#8212; it looks like mini <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
ya and btw in competition of <a href="http://autoreview.ru/archive/2007/24/mazda2_corsa_207_fabia_yaris/index.php?phrase_id=4515399">autoreview.ru</a> fabia takes second place after mazda 2, there were also pegout 207, opel corsa and toyota yaris.<br />
but if you compare prices fabia should take first place</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ggaregin.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ggaregin.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ggaregin.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ggaregin.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ggaregin.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ggaregin.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ggaregin.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ggaregin.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ggaregin.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ggaregin.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ggaregin.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ggaregin.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ggaregin.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ggaregin.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ggaregin.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ggaregin.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ggaregin.wordpress.com&amp;blog=3714275&amp;post=5&amp;subd=ggaregin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ggaregin.wordpress.com/2008/05/13/new-fabia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/79e62d1736b49b444bf3dea9f35d50d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ggaregin</media:title>
		</media:content>

		<media:content url="http://ggaregin.files.wordpress.com/2008/05/0134288063001.jpeg?w=300" medium="image" />

		<media:content url="http://ggaregin.files.wordpress.com/2008/05/0134288063003.jpeg?w=300" medium="image" />
	</item>
	</channel>
</rss>
