<?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>Extra</title>
	<atom:link href="http://diude.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://diude.wordpress.com</link>
	<description>It&#039;s more than meets the eye</description>
	<lastBuildDate>Thu, 18 Nov 2010 21:40:51 +0000</lastBuildDate>
	<language>ro</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='diude.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Extra</title>
		<link>http://diude.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://diude.wordpress.com/osd.xml" title="Extra" />
	<atom:link rel='hub' href='http://diude.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Domino</title>
		<link>http://diude.wordpress.com/2010/11/18/domino/</link>
		<comments>http://diude.wordpress.com/2010/11/18/domino/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 20:55:14 +0000</pubDate>
		<dc:creator>diude</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://diude.wordpress.com/?p=352</guid>
		<description><![CDATA[Se dau n piese de domino. Fiecare piesa poate fi rotita cu 180 de grade. Sa se determine subsirul de piese de lungime maxima astfel incat oricare 2 piese alaturate in subsir sa aiba un numar in comun. Exemplu: v.first: 5 1 2 3 1 6 5 5 2 1 5 5 3 v.second: 6 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=352&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<div>
<p>Se dau n piese de domino.</p>
<p>Fiecare piesa poate fi rotita cu 180 de grade.</p>
<p>Sa se determine subsirul de piese de lungime maxima astfel incat oricare 2 piese alaturate in subsir sa aiba un numar in comun.</p>
<p><strong>Exemplu:</strong></p>
<p>v.first: 5 1 2 3 1 6 5 5 2 1 5 5 3</p>
<p>v.second: 6 1 5 2 5 4 1 3 1 4 5 2 3</p>
<p><strong>Algoritm:</strong></p>
<p>#include &lt;fstream.h&gt;<br />
#include &lt;iostream.h&gt;<br />
typedef struct { int first, sec; } PIESA;<br />
PIESA v[100];<br />
int n, d[2][100], poz[2][100];<br />
void citire()<br />
{<br />
ifstream f(“domino.in”);<br />
while(!f.eof())<br />
f&gt;&gt;v[++n].first&gt;&gt;v[n].sec;<br />
f.close();<br />
}<br />
void dinamica()<br />
{<br />
int i, j ,max0, max1, p0, p1;<br />
d[0][n]=d[1][n]=1;<br />
poz[0][n]=poz[1][n]=0;<br />
for(i=n-1;  i&gt;=1;  i–-)<br />
{ max0=max1=0;<br />
p0=p1=0;<br />
for(j=i+1;  j&lt;=n;  j++)<br />
{ if(v[i].sec==v[j].first  &amp;&amp;  d[0][j]&gt;max0)<br />
{ max0=d[0][j];<br />
p0=j;<br />
}<br />
if(v[i].sec==v[j].sec  &amp;&amp;  d[1][j]&gt;max0)<br />
{ max0=d[1][j];<br />
p0=j;<br />
}<br />
if(v[i].first==v[j].sec  &amp;&amp;  d[1][j]&gt;max1)<br />
{ max1=d[1][j];<br />
p1=j;<br />
}<br />
if(v[i].first==v[j].first  &amp;&amp;  d[0][j]&gt;max1)<br />
{ max1=d[0][j];<br />
p1=j;<br />
}<br />
}<br />
d[0][i]=max0+1;<br />
d[1][i]=max1+1;<br />
poz[0][i]=p0;<br />
poz[1][i]=p1;<br />
}<br />
}<br />
void afisare()<br />
{<br />
int i, k ,p, aux, max=0;<br />
for(i=1;  i&lt;=n;  i++)<br />
{ if(d[0][i]&gt;max) { max=d[0][i];  k=0;  p=i;}<br />
if(d[1][i]&gt;max) { max=d[1][i];  k=1;  p=i; }<br />
}<br />
cout&lt;&lt;max&lt;&lt;endl;<br />
if(k==0) { cout&lt;&lt;v[p].first&lt;&lt;” “&lt;&lt;v[p].sec&lt;&lt;endl;  aux=v[p].sec;}<br />
else { cout&lt;&lt;v[p].sec&lt;&lt;” “&lt;&lt;v[p].first&lt;&lt;endl;  aux=v[p].first;}<br />
p=poz[k][p];<br />
while(p&gt;0)<br />
{ if(aux==v[p].first)<br />
{ cout&lt;&lt;v[p].first&lt;&lt;” “&lt;&lt;v[p].sec&lt;&lt;endl;  aux=v[p].sec;  k=0;}<br />
else { cout&lt;&lt;v[p].sec&lt;&lt;” “&lt;&lt;v[p].first&lt;&lt;endl;  aux=v[p].first;  k=1;}<br />
p=poz[k][p];<br />
}<br />
}<br />
int main ()<br />
{<br />
citire();<br />
dinamica();<br />
afisare();<br />
return 0;<br />
}</p>
</div>
</div>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diude.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diude.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diude.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diude.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diude.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diude.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diude.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diude.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diude.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diude.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diude.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diude.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diude.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diude.wordpress.com/352/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=352&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diude.wordpress.com/2010/11/18/domino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c4666d2be5ac45f972ac4b14d1b68ad?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">diude</media:title>
		</media:content>
	</item>
		<item>
		<title>Depeche Mode &#8211; I feel loved (Dj Andi remix )</title>
		<link>http://diude.wordpress.com/2010/11/18/depeche-mode-i-feel-loved-dj-andi-remix/</link>
		<comments>http://diude.wordpress.com/2010/11/18/depeche-mode-i-feel-loved-dj-andi-remix/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 22:49:26 +0000</pubDate>
		<dc:creator>diude</dc:creator>
				<category><![CDATA[Diverse]]></category>
		<category><![CDATA[Existentiale!]]></category>
		<category><![CDATA[Muzica]]></category>

		<guid isPermaLink="false">http://diude.wordpress.com/?p=349</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=349&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='510' height='317' src='http://www.youtube.com/embed/NdykZL9GLPk?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diude.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diude.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diude.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diude.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diude.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diude.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diude.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diude.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diude.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diude.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diude.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diude.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diude.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diude.wordpress.com/349/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=349&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diude.wordpress.com/2010/11/18/depeche-mode-i-feel-loved-dj-andi-remix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c4666d2be5ac45f972ac4b14d1b68ad?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">diude</media:title>
		</media:content>
	</item>
		<item>
		<title>Subsir comun</title>
		<link>http://diude.wordpress.com/2010/11/18/subsir-comun/</link>
		<comments>http://diude.wordpress.com/2010/11/18/subsir-comun/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 22:43:11 +0000</pubDate>
		<dc:creator>diude</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://diude.wordpress.com/2010/11/18/subsir-comun/</guid>
		<description><![CDATA[Se dau x si y doua siruri cu m respectiv n numere. Se cere sa se determine cel mai lung subsir comun celor doua siruri. Exemplu: m=8 10 4 20 10 40 2 0 60 n=9 4 90 7 10 70 2 71 81 0 Cel mai lung subsir comun este : 4 10 2 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=348&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Se dau x si y doua siruri cu m respectiv n numere.</p>
<p>Se cere sa se determine cel mai lung subsir comun celor doua siruri.</p>
<p>Exemplu:</p>
<p>m=8</p>
<p>10 4 20 10 40 2 0 60</p>
<p>n=9</p>
<p>4 90 7 10 70 2 71 81 0</p>
<p>Cel mai lung subsir comun este : 4   10    2    0</p>
<p>Program :</p>
<p>#include<br />
int x[100], y[100], a[50][50], n, m;<br />
void citire (int v[],i nt n)<br />
{<br />
int i;<br />
cin&gt;&gt;n;<br />
for(i=1; i&gt;v[i];</p>
<p>}</p>
<p>int maxim (int x, int y)<br />
{<br />
if(x&gt;y) return x;</p>
<p>else return y;</p>
<p>}</p>
<p>void dinamica()<br />
{<br />
int i, j;</p>
<p>for(i=1; i&lt;=m; i++)<br />
for(j=1 ;j&lt;=n; j++)<br />
if(x[i]==y[j]) a[i][j]=a[i-1][j-1]+1;<br />
else a[i][j]=maxim(a[i-1][j], a[i][j-1]);<br />
cout&lt;&lt;”Lungimea maxima este: ”&lt;&lt;a[m][n]&lt;0 &amp;&amp; j&gt;0)</p>
<p>if(x[i]==y[j]){v[++k]=x[i];<br />
i–;j–;}<br />
else { if(a[i][j]==a[i-1][j])i–-;<br />
else j–-;}<br />
for(i=k; i&gt;=1; i–)cout&lt;&lt;v[i]&lt;&lt;” “;<br />
}<br />
int main()<br />
{<br />
citire(x, m);<br />
citire(y, n);<br />
dinamica();<br />
afisare(m, n);<br />
return 0;<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diude.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diude.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diude.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diude.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diude.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diude.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diude.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diude.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diude.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diude.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diude.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diude.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diude.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diude.wordpress.com/348/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=348&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diude.wordpress.com/2010/11/18/subsir-comun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c4666d2be5ac45f972ac4b14d1b68ad?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">diude</media:title>
		</media:content>
	</item>
		<item>
		<title>Tema la info v2</title>
		<link>http://diude.wordpress.com/2010/11/14/tema-la-info-v2/</link>
		<comments>http://diude.wordpress.com/2010/11/14/tema-la-info-v2/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 17:33:21 +0000</pubDate>
		<dc:creator>diude</dc:creator>
				<category><![CDATA[Diverse]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://diude.wordpress.com/?p=344</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=344&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<a href="http://polldaddy.com/poll/4085222/">View This Poll</a>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diude.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diude.wordpress.com/344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diude.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diude.wordpress.com/344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diude.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diude.wordpress.com/344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diude.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diude.wordpress.com/344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diude.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diude.wordpress.com/344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diude.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diude.wordpress.com/344/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diude.wordpress.com/344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diude.wordpress.com/344/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=344&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diude.wordpress.com/2010/11/14/tema-la-info-v2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c4666d2be5ac45f972ac4b14d1b68ad?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">diude</media:title>
		</media:content>
	</item>
		<item>
		<title>Tema la info v1</title>
		<link>http://diude.wordpress.com/2010/11/14/tema-la-info-v1/</link>
		<comments>http://diude.wordpress.com/2010/11/14/tema-la-info-v1/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 17:31:44 +0000</pubDate>
		<dc:creator>diude</dc:creator>
				<category><![CDATA[Diverse]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://diude.wordpress.com/?p=342</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=342&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<a href="http://polldaddy.com/poll/4085187/">View This Poll</a>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diude.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diude.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diude.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diude.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diude.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diude.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diude.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diude.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diude.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diude.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diude.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diude.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diude.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diude.wordpress.com/342/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=342&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diude.wordpress.com/2010/11/14/tema-la-info-v1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c4666d2be5ac45f972ac4b14d1b68ad?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">diude</media:title>
		</media:content>
	</item>
		<item>
		<title>Nero &#8211; Act Like You Know</title>
		<link>http://diude.wordpress.com/2010/10/26/nero-act-like-you-know/</link>
		<comments>http://diude.wordpress.com/2010/10/26/nero-act-like-you-know/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 20:50:28 +0000</pubDate>
		<dc:creator>diude</dc:creator>
				<category><![CDATA[Muzica]]></category>

		<guid isPermaLink="false">http://diude.wordpress.com/?p=338</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=338&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='510' height='317' src='http://www.youtube.com/embed/pjgFYQMWtqo?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diude.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diude.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diude.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diude.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diude.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diude.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diude.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diude.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diude.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diude.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diude.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diude.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diude.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diude.wordpress.com/338/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=338&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diude.wordpress.com/2010/10/26/nero-act-like-you-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c4666d2be5ac45f972ac4b14d1b68ad?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">diude</media:title>
		</media:content>
	</item>
		<item>
		<title>Chase and Status &#8211; Eastern Jam</title>
		<link>http://diude.wordpress.com/2010/10/17/chase-and-status-eastern-jam/</link>
		<comments>http://diude.wordpress.com/2010/10/17/chase-and-status-eastern-jam/#comments</comments>
		<pubDate>Sun, 17 Oct 2010 12:43:58 +0000</pubDate>
		<dc:creator>diude</dc:creator>
				<category><![CDATA[Muzica]]></category>

		<guid isPermaLink="false">http://diude.wordpress.com/?p=332</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=332&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='510' height='317' src='http://www.youtube.com/embed/gM-q01-Bfck?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diude.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diude.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diude.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diude.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diude.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diude.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diude.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diude.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diude.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diude.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diude.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diude.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diude.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diude.wordpress.com/332/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=332&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diude.wordpress.com/2010/10/17/chase-and-status-eastern-jam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c4666d2be5ac45f972ac4b14d1b68ad?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">diude</media:title>
		</media:content>
	</item>
		<item>
		<title>Nas &amp; Damian Marley – As We Enter</title>
		<link>http://diude.wordpress.com/2010/05/16/nas-damian-marley-%e2%80%93-as-we-enter/</link>
		<comments>http://diude.wordpress.com/2010/05/16/nas-damian-marley-%e2%80%93-as-we-enter/#comments</comments>
		<pubDate>Sun, 16 May 2010 20:37:26 +0000</pubDate>
		<dc:creator>diude</dc:creator>
				<category><![CDATA[Muzica]]></category>

		<guid isPermaLink="false">http://diude.wordpress.com/?p=325</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=325&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='510' height='317' src='http://www.youtube.com/embed/pyY70LE2D-Y?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diude.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diude.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diude.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diude.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diude.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diude.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diude.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diude.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diude.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diude.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diude.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diude.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diude.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diude.wordpress.com/325/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=325&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diude.wordpress.com/2010/05/16/nas-damian-marley-%e2%80%93-as-we-enter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c4666d2be5ac45f972ac4b14d1b68ad?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">diude</media:title>
		</media:content>
	</item>
		<item>
		<title>AcadNet Cisco</title>
		<link>http://diude.wordpress.com/2010/05/02/acadnet-cisco/</link>
		<comments>http://diude.wordpress.com/2010/05/02/acadnet-cisco/#comments</comments>
		<pubDate>Sun, 02 May 2010 08:26:32 +0000</pubDate>
		<dc:creator>diude</dc:creator>
				<category><![CDATA[Diverse]]></category>
		<category><![CDATA[Existentiale!]]></category>

		<guid isPermaLink="false">http://diude.wordpress.com/?p=323</guid>
		<description><![CDATA[Locul 1. Am dat cam bine.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=323&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://cnrv.ro/2010/05/02/concursul-acadnet-cisco-rezultate-faza-nationala/">Locul 1. Am dat cam bine.</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diude.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diude.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diude.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diude.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diude.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diude.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diude.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diude.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diude.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diude.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diude.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diude.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diude.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diude.wordpress.com/323/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=323&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diude.wordpress.com/2010/05/02/acadnet-cisco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c4666d2be5ac45f972ac4b14d1b68ad?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">diude</media:title>
		</media:content>
	</item>
		<item>
		<title>Wycleaf Jean &#8211; Party like I party</title>
		<link>http://diude.wordpress.com/2010/04/24/wycleaf-jean-party-like-i-party/</link>
		<comments>http://diude.wordpress.com/2010/04/24/wycleaf-jean-party-like-i-party/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 15:24:41 +0000</pubDate>
		<dc:creator>diude</dc:creator>
				<category><![CDATA[Muzica]]></category>

		<guid isPermaLink="false">http://diude.wordpress.com/?p=320</guid>
		<description><![CDATA[A lot of projects!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=320&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A lot of projects!</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='510' height='317' src='http://www.youtube.com/embed/CcxZ9kEgoLc?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/diude.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/diude.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/diude.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/diude.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/diude.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/diude.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/diude.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/diude.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/diude.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/diude.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/diude.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/diude.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/diude.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/diude.wordpress.com/320/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=diude.wordpress.com&amp;blog=2960431&amp;post=320&amp;subd=diude&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://diude.wordpress.com/2010/04/24/wycleaf-jean-party-like-i-party/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c4666d2be5ac45f972ac4b14d1b68ad?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">diude</media:title>
		</media:content>
	</item>
	</channel>
</rss>
