<?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>Ittirkoz's Blog</title>
	<atom:link href="http://ittirkoz.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ittirkoz.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 29 Sep 2009 20:46:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ittirkoz.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ittirkoz's Blog</title>
		<link>http://ittirkoz.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ittirkoz.wordpress.com/osd.xml" title="Ittirkoz&#039;s Blog" />
	<atom:link rel='hub' href='http://ittirkoz.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Some testing issue&#8230;</title>
		<link>http://ittirkoz.wordpress.com/2009/09/29/some-testing-issue/</link>
		<comments>http://ittirkoz.wordpress.com/2009/09/29/some-testing-issue/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 20:42:36 +0000</pubDate>
		<dc:creator>ittirkoz</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://ittirkoz.wordpress.com/2009/09/29/some-testing-issue/</guid>
		<description><![CDATA[#include &#60;cstdlib&#62; #include &#60;iostream&#62; #define OS_Printf(a) printf((a)) using namespace std; int trig = 0; int B = 0; int A = 0; int PAD_BUTTON_A = 1; int PAD_BUTTON_B = 2; void test(int pd){ short padData = pd; if ( padData &#38; PAD_BUTTON_A ) { A=1; if(trig==0) { OS_Printf( &#8220;you pushed A-BUTTON\n&#8221; ); trig = 1; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittirkoz.wordpress.com&amp;blog=6994776&amp;post=56&amp;subd=ittirkoz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>#include &lt;cstdlib&gt;<br />
#include &lt;iostream&gt;</p>
<p>#define OS_Printf(a) printf((a))</p>
<p>using namespace std;</p>
<p>int trig = 0;<br />
int B = 0;<br />
int A = 0;</p>
<p>int PAD_BUTTON_A = 1;<br />
int PAD_BUTTON_B = 2;</p>
<p>void test(int pd){</p>
<p>short padData = pd;</p>
<p>if ( padData &amp; PAD_BUTTON_A )<br />
{<br />
A=1;<br />
if(trig==0)<br />
{<br />
OS_Printf( &#8220;you pushed A-BUTTON\n&#8221; );<br />
trig = 1;<br />
}<br />
if(trig==1)<br />
{<br />
OS_Printf( &#8220;A-BUTTON is triggered\n&#8221; );<br />
}<br />
}<br />
if((!(padData &amp; PAD_BUTTON_A)) &amp;&amp; A==1)<br />
{<br />
OS_Printf( &#8220;you released A-BUTTON\n&#8221; );<br />
trig=0;<br />
A=0;</p>
<p>}<br />
if ( padData &amp; PAD_BUTTON_B )<br />
{<br />
B=1;<br />
if(trig==0)<br />
{<br />
OS_Printf( &#8220;you pushed B-BUTTON\n&#8221; );<br />
trig = 1;<br />
}<br />
if(trig==1)<br />
{<br />
OS_Printf( &#8220;B-BUTTON is triggered\n&#8221; );<br />
}<br />
}<br />
if((!(padData &amp; PAD_BUTTON_B)) &amp;&amp; B==1)<br />
{<br />
OS_Printf( &#8220;you released B-BUTTON\n&#8221; );<br />
trig=0;<br />
B =0;</p>
<p>}</p>
<p>}</p>
<p>int main(int argc, char *argv[])<br />
{<br />
printf(&#8220;test 1\n&#8221;);<br />
// naciskam A<br />
test(1);<br />
test(1);<br />
test(1);<br />
test(1);<br />
// puszczam A<br />
test(0);</p>
<p>printf(&#8220;test 2\n&#8221;);<br />
// naciskam B<br />
test(2);<br />
test(2);<br />
test(2);<br />
test(2);<br />
// puszczam B<br />
test(0);</p>
<p>printf(&#8220;test 3\n&#8221;);<br />
// naciskam B<br />
test(1);<br />
test(1);<br />
test(1);<br />
test(1);<br />
// puszczam B<br />
test(0);</p>
<p>printf(&#8220;test 4\n&#8221;);<br />
// naciskam oba klawisze 2 + 1 = 3<br />
test(3);<br />
test(3);<br />
test(3);<br />
test(3);<br />
// puszczam oba<br />
test(0);</p>
<p>system(&#8220;PAUSE&#8221;);<br />
return EXIT_SUCCESS;<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittirkoz.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittirkoz.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittirkoz.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittirkoz.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittirkoz.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittirkoz.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittirkoz.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittirkoz.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittirkoz.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittirkoz.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittirkoz.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittirkoz.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittirkoz.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittirkoz.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittirkoz.wordpress.com&amp;blog=6994776&amp;post=56&amp;subd=ittirkoz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittirkoz.wordpress.com/2009/09/29/some-testing-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5faa1b17b3fc9f63ee15e40225a3e097?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ittirkoz</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenCV T&amp;T</title>
		<link>http://ittirkoz.wordpress.com/2009/09/23/opencv-tt/</link>
		<comments>http://ittirkoz.wordpress.com/2009/09/23/opencv-tt/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 13:05:15 +0000</pubDate>
		<dc:creator>ittirkoz</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://ittirkoz.wordpress.com/2009/09/23/opencv-tt/</guid>
		<description><![CDATA[Subimage: 1: IplImage* src; IplImage* dst; cvRect rect; ... CvMat* mat = cvGetSubRect( (CvMat*)src, (CvMat*)dst, rect); 2: IplImage* Sub_Image(IplImage *image, CvRect roi) { IplImage *result; // set ROI, you may use following two funs: //cvSetImageROI( image, cvRect( 0, 0, image-&#62;width, image-&#62;height )); cvSetImageROI(image,roi); // sub-image result = cvCreateImage( cvSize(roi.width, roi.height), image-&#62;depth, image-&#62;nChannels ); cvCopy(image,result); cvResetImageROI(image); [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittirkoz.wordpress.com&amp;blog=6994776&amp;post=52&amp;subd=ittirkoz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Subimage:</strong><br />
1:<br />
<code>IplImage* src;<br />
IplImage* dst;<br />
cvRect rect;<br />
...<br />
CvMat* mat = cvGetSubRect( (CvMat*)src, (CvMat*)dst, rect);</code></p>
<p>2:<br />
<code><br />
IplImage* Sub_Image(IplImage *image, CvRect roi)<br />
{<br />
IplImage *result;<br />
// set ROI, you may use following two funs:<br />
//cvSetImageROI( image, cvRect( 0, 0, image-&gt;width, image-&gt;height ));</p>
<p>cvSetImageROI(image,roi);<br />
// sub-image<br />
result = cvCreateImage( cvSize(roi.width, roi.height), image-&gt;depth, image-&gt;nChannels );<br />
cvCopy(image,result);<br />
cvResetImageROI(image); // release image ROI<br />
return result;<br />
}</p>
<p></code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittirkoz.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittirkoz.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittirkoz.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittirkoz.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittirkoz.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittirkoz.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittirkoz.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittirkoz.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittirkoz.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittirkoz.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittirkoz.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittirkoz.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittirkoz.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittirkoz.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittirkoz.wordpress.com&amp;blog=6994776&amp;post=52&amp;subd=ittirkoz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittirkoz.wordpress.com/2009/09/23/opencv-tt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5faa1b17b3fc9f63ee15e40225a3e097?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ittirkoz</media:title>
		</media:content>
	</item>
		<item>
		<title>Przydatne linki</title>
		<link>http://ittirkoz.wordpress.com/2009/09/17/39/</link>
		<comments>http://ittirkoz.wordpress.com/2009/09/17/39/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 10:10:15 +0000</pubDate>
		<dc:creator>ittirkoz</dc:creator>
				<category><![CDATA[Użyteczne linki]]></category>

		<guid isPermaLink="false">http://ittirkoz.wordpress.com/2009/09/17/39/</guid>
		<description><![CDATA[middlebury disparity db algorytmy sieciowe wpa/wep &#8211; linux konfiguracja stereo &#8211; Abhijit Ogale opencv help fajna łączka stereo &#8211; Kolmogorov<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittirkoz.wordpress.com&amp;blog=6994776&amp;post=39&amp;subd=ittirkoz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ol>
<li><a href="http://vision.middlebury.edu/"> middlebury disparity db </a></li>
<li><a href="http://www.avglab.com/andrew/soft.html"> algorytmy sieciowe </a></li>
<li><a href="http://forum.ubuntu.pl/showthread.php?t=71265">wpa/wep &#8211; linux konfiguracja </a></li>
<li><a href="http://code.google.com/p/openvis3d/">stereo &#8211; Abhijit Ogale</a></li>
<li><a href="http://www.kaczanowski.net/elektronika/opencv/trzy.htm"> opencv help </a></li>
<li><a href="http://www.minuscule.tv/">fajna łączka</a></li>
<li><a href="http://www.cs.ucl.ac.uk/staff/V.Kolmogorov/software.html">stereo &#8211; Kolmogorov</a></li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittirkoz.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittirkoz.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittirkoz.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittirkoz.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittirkoz.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittirkoz.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittirkoz.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittirkoz.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittirkoz.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittirkoz.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittirkoz.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittirkoz.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittirkoz.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittirkoz.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittirkoz.wordpress.com&amp;blog=6994776&amp;post=39&amp;subd=ittirkoz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittirkoz.wordpress.com/2009/09/17/39/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5faa1b17b3fc9f63ee15e40225a3e097?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ittirkoz</media:title>
		</media:content>
	</item>
		<item>
		<title>linux wifi</title>
		<link>http://ittirkoz.wordpress.com/2009/08/27/linux-wifi/</link>
		<comments>http://ittirkoz.wordpress.com/2009/08/27/linux-wifi/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 10:03:52 +0000</pubDate>
		<dc:creator>ittirkoz</dc:creator>
				<category><![CDATA[Linux/T&T]]></category>

		<guid isPermaLink="false">http://ittirkoz.wordpress.com/?p=33</guid>
		<description><![CDATA[Jak konfigurować wifi z commandline&#8217;a: wpa/wep<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittirkoz.wordpress.com&amp;blog=6994776&amp;post=33&amp;subd=ittirkoz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Jak konfigurować wifi z commandline&#8217;a:</p>
<ul>
<li><a href="http://forum.ubuntu.pl/showthread.php?t=71265">wpa/wep</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittirkoz.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittirkoz.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittirkoz.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittirkoz.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittirkoz.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittirkoz.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittirkoz.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittirkoz.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittirkoz.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittirkoz.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittirkoz.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittirkoz.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittirkoz.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittirkoz.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittirkoz.wordpress.com&amp;blog=6994776&amp;post=33&amp;subd=ittirkoz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittirkoz.wordpress.com/2009/08/27/linux-wifi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5faa1b17b3fc9f63ee15e40225a3e097?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ittirkoz</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://ittirkoz.wordpress.com/2009/08/27/hello-world/</link>
		<comments>http://ittirkoz.wordpress.com/2009/08/27/hello-world/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 10:01:07 +0000</pubDate>
		<dc:creator>ittirkoz</dc:creator>
				<category><![CDATA[Linux/T&T]]></category>

		<guid isPermaLink="false">http://ittirkoz.wordpress.com/?p=31</guid>
		<description><![CDATA[Nazywam się Rafał Kozik, Witam na moim blogu. Scope: linux, ubuntu, unix, shell, c/c++, pyton, tcl, java, jsp, asp, php, js, html, xml, json, jquery, ajax, as, flex, flare, openlaszlo, clips, lisp, jess, matlab, simulink, dsp, ccs<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittirkoz.wordpress.com&amp;blog=6994776&amp;post=31&amp;subd=ittirkoz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nazywam się Rafał Kozik, Witam na moim blogu.</p>
<p>Scope:</p>
<ul>
<li>linux, ubuntu, unix, shell, c/c++, pyton, tcl, java, jsp, asp, php, js, html, xml, json, jquery, ajax, as, flex, flare, openlaszlo, clips, lisp, jess, matlab, simulink, dsp, ccs</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ittirkoz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ittirkoz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ittirkoz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ittirkoz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ittirkoz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ittirkoz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ittirkoz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ittirkoz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ittirkoz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ittirkoz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ittirkoz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ittirkoz.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ittirkoz.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ittirkoz.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ittirkoz.wordpress.com&amp;blog=6994776&amp;post=31&amp;subd=ittirkoz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ittirkoz.wordpress.com/2009/08/27/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5faa1b17b3fc9f63ee15e40225a3e097?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ittirkoz</media:title>
		</media:content>
	</item>
	</channel>
</rss>
