<?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>Блогът на Деян &#187; Uncategorized</title>
	<atom:link href="http://dean.spirov.com/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://dean.spirov.com</link>
	<description>Just another Spirov.com weblog</description>
	<lastBuildDate>Tue, 15 Sep 2009 17:59:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>slap script</title>
		<link>http://dean.spirov.com/2009/09/15/slap-script</link>
		<comments>http://dean.spirov.com/2009/09/15/slap-script#comments</comments>
		<pubDate>Tue, 15 Sep 2009 17:50:51 +0000</pubDate>
		<dc:creator>dean</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dean.spirov.com/?p=69</guid>
		<description><![CDATA[&#160;Направих прост python скрипт за IRC клиента Konversation, който шамаросва човек от чата с случаен предмет. Пример:
* yournick slaps demio with a pink cat
Ето кода и пълната документация.


#!/usr/bin/python
# -*- coding: utf-8 -*-

# a simple script that slaps a person with a random object
# it takes a random adjective and a random object
# and puts them [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;Направих прост python скрипт за IRC клиента Konversation, който шамаросва човек от чата с случаен предмет. Пример:</p>
<p>* <span>yournick</span> slaps demio with a pink cat</p>
<p>Ето кода и пълната документация.</p>
<blockquote>
<pre>
#!/usr/bin/python
# -*- coding: utf-8 -*-

# a simple script that slaps a person with a random object
# it takes a random adjective and a random object
# and puts them in a sentence like this:
#	* yournick slaps demio with a pink cat
# example usage:
#	/slap demio
# author Dean Spirov (spirov92 on FreeNode)

import random;
import sys;
from os import system;
import subprocess;

print sys.argv;
SERVER = sys.argv[1];
CHANNEL = sys.argv[2];
target=sys.argv[3];

#adjectives
adj=random.choice(['',
    'pink',
    'green',
    'purple',
    'blue',
    'wet',
    'spiky',
    ]);
#objects
subj=random.choice([
    'fish',
    'VHS',
    'bicycle',
    'cat',
    'book',
    'toy car',
    'snake',
    'pillow',
    'radio',
    'demio',
    ]);

# create the message
t='/me slaps '+target+' with a '+adj+' '+subj;

# array of arguments for DBus
args=['qdbus','org.kde.konversation', '/irc', 'say',SERVER, CHANNEL, t];

c='';
for i in args:
    c=c+' &quot;'+i+'&quot;';

print 'command:'+c;
subprocess.Popen(args).communicate();
</pre>
</blockquote>
<p>Ако ползваш Konversation, можеш да инсталираш скрипта, като го запаметиш като<em>~/.kde4/share/apps/konversation/scripts/slap</em>&nbsp;и го направиш изпълним (<em>chmod +x slap</em>)</p>
]]></content:encoded>
			<wfw:commentRss>http://dean.spirov.com/2009/09/15/slap-script/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Photorec</title>
		<link>http://dean.spirov.com/2009/07/23/photorec</link>
		<comments>http://dean.spirov.com/2009/07/23/photorec#comments</comments>
		<pubDate>Thu, 23 Jul 2009 16:32:13 +0000</pubDate>
		<dc:creator>dean</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dean.spirov.com/?p=63</guid>
		<description><![CDATA[От доста време не съм писал. Работя по един сайт, който беше почти готов, докато не реших да ползвам командата find с параметъра -delete, в резултат на което загубих целия сорс на сайта. За щастие, успях да спася към 1/3 от кода благодарение на полезната програмка photorec, и сега пренаписвам останалото.&#160;
Освен безценните PHP файлове, програмата [...]]]></description>
			<content:encoded><![CDATA[<p>От доста време не съм писал. Работя по един сайт, който беше почти готов, докато не реших да ползвам командата find с параметъра -delete, в резултат на което загубих целия сорс на сайта. За щастие, успях да спася към 1/3 от кода благодарение на полезната програмка photorec, и сега пренаписвам останалото.&nbsp;</p>
<p>Освен безценните PHP файлове, програмата намери доста изтрита музика, както и нещо, останало от изтритата Windows инсталация: <br />
<a href="http://dean.spirov.com/files/2009/07/remains.jpg"><img border="0" width="150" height="150" src="http://dean.spirov.com/files/2009/07/remains-150x150.jpg" alt="remains" class="alignnone size-thumbnail wp-image-64" /></a></p>
<p>Точно така. Wallpapaer-а на Windows XP. Обяснявам си го с факта, че Windows тъпче файловете в началото на диска, а Linux трупа по средата, а диска не е пълнен напълно откакто форматирах диска.</p>
<p>Също така, разбрах, че в PHP е добавена командата goto. За кратко на <a href="http://bg2.php.net/goto">http://bg2.php.net/goto</a> имаше линк към <a href="http://xkcd.com/292/">това</a>. Явно освен че е лоша практика, goto&nbsp; повишава опасността от раптори.</p>
]]></content:encoded>
			<wfw:commentRss>http://dean.spirov.com/2009/07/23/photorec/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Dawn Of Battle</title>
		<link>http://dean.spirov.com/2009/05/01/the-dawn-of-battle</link>
		<comments>http://dean.spirov.com/2009/05/01/the-dawn-of-battle#comments</comments>
		<pubDate>Fri, 01 May 2009 20:41:58 +0000</pubDate>
		<dc:creator>dean</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dean.spirov.com/?p=57</guid>
		<description><![CDATA[Ето една яка песен на Manowar:
Цъкнете тук, за да чуете песента: The Dawn Of Battle


The Dawn Of Battle by Manowar
Dreadful Thunder
The storms moving in
And Judgment day is calling
My soul has been healed
By the power of steel
And the sound of glory 
I will send into the ground
All that are found
By the sign of the hammer falling
Yes [...]]]></description>
			<content:encoded><![CDATA[<p>Ето една яка песен на Manowar:</p>
<p>Цъкнете тук, за да чуете песента: <a href="http://dean.spirov.com/files/2009/05/01-the-dawn-of-battle.mp3">The Dawn Of Battle</a></p>
<blockquote>
<h2>
The Dawn Of Battle by Manowar</h2>
<p>Dreadful Thunder<br />
The storms moving in<br />
And Judgment day is calling<br />
My soul has been healed<br />
By the power of steel<br />
And the sound of glory </p>
<p>I will send into the ground<br />
All that are found<br />
By the sign of the hammer falling<br />
Yes Heathens will fall<br />
I will strike down them all<br />
Then you will know my calling</p>
<p>Bravery calls my name<br />
In the sound of the wind in the night<br />
My sword will drink blood<br />
And I will fight<br />
Yes I will fight<br />
In the dawn of battle<br />
Dawn of Battle</p>
<p>I will rise up from the chaos<br />
I will rise up from the grave<br />
A brother to the darkness<br />
A master to the slave<span id="more-57"></span><br />
I am the soul descendent<br />
Of the fire and the rage<br />
I was wrought upon the earth<br />
Born to rule and battle wage</p>
<p>By the total domination<br />
Of the world in my command<br />
By the Air and the water<br />
By the Fire and the land</p>
<p>I give no explanation<br />
I was branded by the will<br />
Bringer of Death and Destruction<br />
To all that I now kill</p>
<p>Bravery calls my name<br />
In the sound of the wind in the night<br />
My sword will drink blood<br />
And I will fight<br />
Yes I will fight<br />
In the dawn of battle<br />
Dawn of Battle</p>
<p>I long to be free<br />
So I wait for a sign<br />
I wait for a star<br />
To fall from the sky<br />
From the dust of sleep<br />
A promise to keep<br />
Then all who see shall believe<br />
Deliver into my hand<br />
The sword of the land<br />
Let my journey begin<br />
So all shall understand<br />
That if I fall<br />
I will live again</p>
<p>I will rise up from the chaos<br />
I will rise up from the grave<br />
A brother to the darkness<br />
A master to the slaves</p>
<p>I give no explanation<br />
I was branded by the will<br />
To bring of Death and Destruction<br />
To all that I will kill</p>
<p>Bravery calls my name<br />
In the sound of the wind in the night<br />
My sword will drink blood<br />
And I will fight<br />
Yes I will fight<br />
In the dawn of battle</p>
</blockquote>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dean.spirov.com/2009/05/01/the-dawn-of-battle/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
<enclosure url="http://dean.spirov.com/files/2009/05/01-the-dawn-of-battle.mp3" length="16188874" type="audio/mpeg" />
		</item>
		<item>
		<title>mime_content_type &#8211; блаааааа!</title>
		<link>http://dean.spirov.com/2009/04/18/mime_content_type-%d0%b1%d0%bb%d0%b0%d0%b0%d0%b0%d0%b0%d0%b0%d0%b0</link>
		<comments>http://dean.spirov.com/2009/04/18/mime_content_type-%d0%b1%d0%bb%d0%b0%d0%b0%d0%b0%d0%b0%d0%b0%d0%b0#comments</comments>
		<pubDate>Fri, 17 Apr 2009 21:37:10 +0000</pubDate>
		<dc:creator>dean</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://dean.spirov.com/?p=42</guid>
		<description><![CDATA[И тъй, работя си аз по един проект. Избирам си една задачка от бележката &#34;to-do&#34;, а именно качените снимки да се съхраняват и в оригинален формат. За целта обаче ми трябва да знам какъв е тагът &#34;Content-Type&#34; на снимката.
Та търся аз функция, която да извлича информацията. И намирам mime_content_type(). Само че тая функция е deprecated [...]]]></description>
			<content:encoded><![CDATA[<p>И тъй, работя си аз по един проект. Избирам си една задачка от бележката &quot;to-do&quot;, а именно качените снимки да се съхраняват и в оригинален формат. За целта обаче ми трябва да знам какъв е тагът &quot;Content-Type&quot; на снимката.</p>
<p>Та търся аз функция, която да извлича информацията. И намирам mime_content_type(). Само че тая функция е deprecated в полза на библиотеката fileinfo. Само че тая библиотека се появява вградена чак в php 5.3.0, а аз ползвам 5.2.9. Та на ръка ще инсталирам модула с pecl. Да, ама той не ще да се компилира, липсва му някаква библиотека libmagic, която пък никъде не мога да намеря. Та връщам се на варианта mime_content_type(). Оказва се, че си я има функцията, ама за да не връща&nbsp; &quot;&quot; ми трябва един файл /usr/share/mime.magic . Тоя файл също го е хванала липсата. По някое време взех, че погледнах часовника и си казах &quot;Я, то минава полунощ. По-добре да опищя блога и да си лягам.&quot;.</p>
<p>Между другото се сещам как преди 6 часа се захванах с една &quot;дребна задачка&quot;. Да живее php 5.2.9!</p>
<p>p.s. успях! оказа се, че на openSUSE тоя файл е в /usr/share/mime/magic. След като добавих</p>
<blockquote>
<p>mime_magic.magicfile = &quot;/usr/share/mime/magic&quot;</p>
</blockquote>
<p>в php.ini&nbsp; проработи.</p>
<p>p.p.s. всъщност не работи. Какъвто и файл да дам, връща text/plain.</p>
]]></content:encoded>
			<wfw:commentRss>http://dean.spirov.com/2009/04/18/mime_content_type-%d0%b1%d0%bb%d0%b0%d0%b0%d0%b0%d0%b0%d0%b0%d0%b0/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Symphony of destruction</title>
		<link>http://dean.spirov.com/2009/04/16/symphony-of-destruction</link>
		<comments>http://dean.spirov.com/2009/04/16/symphony-of-destruction#comments</comments>
		<pubDate>Thu, 16 Apr 2009 18:52:57 +0000</pubDate>
		<dc:creator>dean</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dean.spirov.com/?p=26</guid>
		<description><![CDATA[Напоследък съм се вманиачил по Megadeth. Ето една яка песен:
Symphony Of Destruction
Symphony Of Destruction by Megadeth
You take a mortal man,
 And put him in control
 Watch him become a god,
 Watch peoples heads a&#8217;roll
 A&#8217;roll, A&#8217;roooooooollll
(Chorus)
 Just like the Pied Piper
 Led rats through the streets
 We dance like marionettes,
 Swaying to the Symphony
 Of [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left">Напоследък съм се вманиачил по Megadeth. Ето една яка песен:</p>
<p><a href="http://dean.spirov.com/files/2009/04/02-symphony-of-destruction.mp3">Symphony Of Destruction</a></p>
<h3>Symphony Of Destruction by Megadeth</h3>
<blockquote><p>You take a mortal man,<br />
 And put him in control<br />
 Watch him become a god,<br />
 Watch peoples heads a&#8217;roll<br />
 A&#8217;roll, A&#8217;roooooooollll</p>
<p>(Chorus)<br />
 Just like the Pied Piper<br />
 Led rats through the streets<br />
 We dance like marionettes,<br />
 Swaying to the Symphony<br />
 Of Destruction<span id="more-26"></span></p>
<p>Acting like a robot,<br />
 Its metal brain corrodes<br />
 You try to take its pulse,<br />
 Before the head explodes<br />
 Explodes, exploooodes</p>
<p>Just like the Pied Piper<br />
 Led rats through the streets<br />
 We dance like marionettes,<br />
 Swaying to the Symphony<br />
 Just like the Pied Piper<br />
 Led rats through the streets<br />
 We dance like marionettes,<br />
 Swaying to the Symphony,Swaying to the Symphony<br />
 of Destruction</p>
<p>Solo &#8211; Marty</p>
<p>The earth starts to rumble<br />
 World powers fall<br />
 A&#8217;warring for the heavens,<br />
 A peaceful man stands tall<br />
 Tall, taaaaaaalll</p>
<p>Just like the Pied Piper<br />
 Led rats through the streets<br />
 We dance like marionettes,<br />
 Swaying to the Symphony<br />
 Just like the Pied Piper<br />
 Led rats through the streets<br />
 We dance like marionettes,<br />
 Swaying to the Symphony, Swaying to the Symphony<br />
 of Destruction</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://dean.spirov.com/2009/04/16/symphony-of-destruction/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://dean.spirov.com/files/2009/04/02-symphony-of-destruction.mp3" length="10752944" type="audio/mpeg" />
		</item>
		<item>
		<title>GoodTyping.com</title>
		<link>http://dean.spirov.com/2009/04/16/goodtypingcom</link>
		<comments>http://dean.spirov.com/2009/04/16/goodtypingcom#comments</comments>
		<pubDate>Thu, 16 Apr 2009 17:41:58 +0000</pubDate>
		<dc:creator>dean</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[интернет]]></category>

		<guid isPermaLink="false">http://dean.spirov.com/?p=20</guid>
		<description><![CDATA[Отдавна си знам, че пиша бавно на клавиатура.&#160; Вчера взех, че потърсих в Google и намерих този сайт: http://www.goodtyping.com/
След безплатна регистрация, този сайт ти дава прости уроци как да пишеш бързо, без да поглеждаш клавиатурата.&#160; От вчера се занимавам и вече мога да пиша почти без да поглеждам клавиатурата (Но все още не особено бързо [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left">Отдавна си знам, че пиша бавно на клавиатура.&nbsp; Вчера взех, че потърсих в Google и намерих този сайт: <a href="http://www.goodtyping.com/">http://www.goodtyping.com/</a></p>
<p style="text-align: left">След безплатна регистрация, този сайт ти дава прости уроци как да пишеш бързо, без да поглеждаш клавиатурата.&nbsp; От вчера се занимавам и вече мога да пиша почти без да поглеждам клавиатурата (Но все още не особено бързо <img src='http://dean.spirov.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  ). Който има проблеми с писането на клавиатура, може да го погледне.</p>
]]></content:encoded>
			<wfw:commentRss>http://dean.spirov.com/2009/04/16/goodtypingcom/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Omegle.com II</title>
		<link>http://dean.spirov.com/2009/04/11/14</link>
		<comments>http://dean.spirov.com/2009/04/11/14#comments</comments>
		<pubDate>Sat, 11 Apr 2009 17:58:09 +0000</pubDate>
		<dc:creator>dean</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[omegle]]></category>
		<category><![CDATA[интернет]]></category>

		<guid isPermaLink="false">http://dean.spirov.com/?p=14</guid>
		<description><![CDATA[Ето най-дългия и най-добрия разговор в omegle, на който съм попадал:

Connecting to server&#8230;
You&#8217;re now chatting with a random stranger. Say hi!
You: Where did you bury the bodies?
Stranger: I burned them
You: good
You: most people disconnect when i ask them
Stranger:  
Stranger: so, who did you kill? I don&#8217;t think I remember
You: me?
You: no!
You: you killed them
Stranger: [...]]]></description>
			<content:encoded><![CDATA[<p>Ето най-дългия и най-добрия разговор в omegle, на който съм попадал:</p>
<blockquote>
<p>Connecting to server&#8230;<br />
You&#8217;re now chatting with a random stranger. Say hi!<br />
You: Where did you bury the bodies?<br />
Stranger: I burned them<br />
You: good<br />
You: most people disconnect when i ask them<br />
Stranger: <img src='http://dean.spirov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br />
Stranger: so, who did you kill? I don&#8217;t think I remember<br />
You: me?<br />
You: no!<br />
You: you killed them<br />
Stranger: really?<span id="more-14"></span><br />
You: yes<br />
Stranger: god I&#8217;m going crazy<br />
Stranger: I really can&#8217;t remember what happend last night<br />
Stranger: I was suddenly in a church and there was a big fire<br />
Stranger: and I saw bodies<br />
Stranger: but I killed no one<br />
You: don&#8217;t lie, I saw you kill them<br />
Stranger: who were it?<br />
Stranger: the people I killed?<br />
Stranger: were they christians?<br />
You: Bill Gates and some other M$ people<br />
You: don&#8217;t worry they deserved it<br />
Stranger: oh <img src='http://dean.spirov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  thanks for telling me<br />
Stranger: that makes me feel a whole lot better<br />
You: so, next it&#8217;s Steve Balmer<br />
Stranger: hm<br />
Stranger: where does he live?<br />
You: I don&#8217;t know<br />
You: i&#8217;m searching<br />
Stranger: ok<br />
You: you find a weapon<br />
Stranger: I have a nice hammer to beat his bald head with<br />
You: should work<br />
Stranger: I guess so<br />
You: here&#8217;s some info:&nbsp;<a href="http://virtualglobetrotting.com/map/22826/" title="http://virtualglobetrotting.com/map/22826/" target="_blank">http://virtualglobetrotting.com/map/2282&#8230;</a><br />
Stranger: and if it doesn&#8217;t we can still burn him<br />
Stranger: thanks<br />
Stranger: I&#8217;ll see if I can go there next week. or is that too late?<br />
You: it&#8217;s ok<br />
Stranger: nice<br />
You: after that we can steal a bomber and blow up M$ headquarters<br />
Stranger: why not burn it? I like fire<br />
You: if you can get out before the cops come<br />
Stranger: I can, don&#8217;t worry<br />
Stranger: I&#8217;ve done harder things, you know that<br />
You: yes, of course<br />
Stranger: so tell me, what have you been up to?<br />
You: making viruses for Windows 7<br />
Stranger: ah<br />
Stranger: I expected something like that<br />
Stranger: will they be better than the last time?<br />
You: i&#8217;m working on one that destroys Windows and installs Linux<br />
Stranger: great idea<br />
You: I hope stupid PC users like Ubuntu<br />
Stranger: they will have no choice<br />
You: i&#8217;m still working on a way to replace the file system while the computer is running<br />
Stranger: hm I&#8217;m sure you can figure it out<br />
You: ok, call me when you kill him<br />
Stranger: yea I will<br />
Stranger: won&#8217;t you help me with it?<br />
Stranger: I need someone to distract him<br />
You: i&#8217;m in Europe, I can&#8217;t come<br />
Stranger: I&#8217;m in europe too, but we can fly to the US next week<br />
You: good. I&#8217;m in Bulgaria. You?<br />
Stranger: I&#8217;m in sweden<br />
Stranger: I&#8217;ll fly from stockholm next wednesday<br />
Stranger: will you come with me?<br />
You: ok. We meet in Washington on April 16th<br />
Stranger: great<br />
Stranger: see you then<br />
Stranger: good luck</p>
</blockquote>
<p>Як разговор <img src='http://dean.spirov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  жалко че не го взе на сериозно човека</p>
]]></content:encoded>
			<wfw:commentRss>http://dean.spirov.com/2009/04/11/14/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Omegle.com</title>
		<link>http://dean.spirov.com/2009/04/10/9</link>
		<comments>http://dean.spirov.com/2009/04/10/9#comments</comments>
		<pubDate>Fri, 10 Apr 2009 16:26:54 +0000</pubDate>
		<dc:creator>dean</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[omegle]]></category>
		<category><![CDATA[интернет]]></category>

		<guid isPermaLink="false">http://dean.spirov.com/?p=9</guid>
		<description><![CDATA[Ето един готин сайт: omegle.com  Този сайт те свързва с случаен човек. Якото е, че през повечето време не се получава сериозен разговор. Ето пример:


You: Mac or PC?


Stranger: Penis


You: PC with Linux


Stranger: No i mean penis


You: but PC is better!


Stranger: no seriously i meant to say penis


You: and you did


Stranger: oh yes

You: but it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Ето един готин сайт: <a target="_blank" href="http://omegle.com">omegle.com </a> Този сайт те свързва с случаен човек. Якото е, че през повечето време не се получава сериозен разговор. Ето пример:</p>
<blockquote>
<div class="logitem">
<div class="youmsg"><span class="msgsource">You:</span> Mac or PC?</div>
</div>
<div class="logitem">
<div class="strangermsg"><span class="msgsource">Stranger:</span> Penis</div>
</div>
<div class="logitem">
<div class="youmsg"><span class="msgsource">You:</span> PC with Linux</div>
</div>
<div class="logitem">
<div class="strangermsg"><span class="msgsource">Stranger:</span> No i mean penis</div>
</div>
<div class="logitem">
<div class="youmsg"><span class="msgsource">You:</span> but PC is better!</div>
</div>
<div class="logitem">
<div class="strangermsg"><span class="msgsource">Stranger:</span> no seriously i meant to say penis</div>
</div>
<div class="logitem">
<div class="youmsg"><span class="msgsource">You:</span> and you did</div>
</div>
<div class="logitem">
<div class="strangermsg"><span class="msgsource">Stranger:</span> oh yes</div>
</div>
<div class="logitem"><span class="msgsource">You:</span> but it&#8217;s not an answer to what i asked</div>
</blockquote>
<div class="youmsg">Интересно е и да търсиш Бог, или да крещиш простотии и да disconnect-ваш.&nbsp; Или пък като те питат от къде си, да твърдиш че си от Интернета.</div>
]]></content:encoded>
			<wfw:commentRss>http://dean.spirov.com/2009/04/10/9/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>F1rst post!</title>
		<link>http://dean.spirov.com/2009/04/10/f1rst-post</link>
		<comments>http://dean.spirov.com/2009/04/10/f1rst-post#comments</comments>
		<pubDate>Fri, 10 Apr 2009 11:42:11 +0000</pubDate>
		<dc:creator>dean</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://dean.spirov.com/?p=3</guid>
		<description><![CDATA[Най-после намерих време да се захвана с блога! Тук ще пиша за Линукс, програмиране и други простотии.  Ето една яка песничка:
Вчера в детската градина
 спамът тръшна двама-трима.
 Две дечица пък от снощи
 нямат лични пощи.
Оня ден пък CIH намина
 тръшна май че двайсетина.
 Дисковете като нови-
 празни до основи.

На Иванчо за играчка
 Дядо Мраз дарил [...]]]></description>
			<content:encoded><![CDATA[<p>Най-после намерих време да се захвана с блога! Тук ще пиша за Линукс, програмиране и други простотии.  Ето една яка песничка:</p>
<blockquote><p>Вчера в детската градина<br />
 спамът тръшна двама-трима.<br />
 Две дечица пък от снощи<br />
 нямат лични пощи.</p>
<p>Оня ден пък CIH намина<br />
 тръшна май че двайсетина.<br />
 Дисковете като нови-<br />
 празни до основи.</p>
<p><span id="more-3"></span></p>
<p>На Иванчо за играчка<br />
 Дядо Мраз дарил търсачка:<br />
 бързо диска тя му рови,<br />
 файлчетата трови.</p>
<p>Днес пък сървъра пострада,<br />
 няма си той веч преграда,<br />
 sisadmin-а до обяд<br />
 оптиката ряза с яд.</p>
<p>Гаден хакер се промъкна,<br />
 всичките пароли смъкна.<br />
 ха сега, деца,кажете,<br />
 де са часовете?</p>
<p>На админа му се спи,<br />
 файл копирал в Ftp<br />
 кредитните карти всички<br />
 на ви ся парички!</p>
<p>Над смълчаните полета<br />
 пеят траурни звънчета.<br />
 Младо хакерче намина,<br />
 сървърът почина.</p>
<p>Две дечица с бодри песни<br />
 вкъщи хъба си отнесли.<br />
 Т&#8217;ва админа го не схвана<br />
 свърза кабела от LAN-а.</p>
<p>кабела го гръм удари,<br />
 всички в нета ни завари,<br />
 дъно няма,платки,RAM:<br />
 всичко свърши се дотам.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://dean.spirov.com/2009/04/10/f1rst-post/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
