<?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>Cristian Livadaru's blog &#187; Computer</title>
	<atom:link href="http://cristian.livadaru.net/category/computer/feed/" rel="self" type="application/rss+xml" />
	<link>http://cristian.livadaru.net</link>
	<description>... think again ...</description>
	<lastBuildDate>Sat, 24 Jul 2010 19:20:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>The oldest hard-disk</title>
		<link>http://cristian.livadaru.net/2009/05/10/the-oldest-hard-disk/</link>
		<comments>http://cristian.livadaru.net/2009/05/10/the-oldest-hard-disk/#comments</comments>
		<pubDate>Sun, 10 May 2009 06:21:00 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[harddisk]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/?p=630</guid>
		<description><![CDATA[Seems like I have one of the oldest, if not the oldest, hard disk in the world in one of my servers Didn&#8217;t know they had SATA 136 years ago.]]></description>
			<content:encoded><![CDATA[<p>Seems like I have one of the oldest, if not the oldest, hard disk in the world in one of my servers <img src='http://cristian.livadaru.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Didn&#8217;t know they had SATA 136 years ago. <a class="thickbox" href="http://cristian.livadaru.net/wp-content/uploads/2009/05/old_harddisk.png"><img src="http://cristian.livadaru.net/wp-content/uploads/2009/05/old_harddisk-300x46.png" alt="old_harddisk" title="old_harddisk" width="300" height="46" class="alignnone size-medium wp-image-631" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2009/05/10/the-oldest-hard-disk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AJAX validation on Rails</title>
		<link>http://cristian.livadaru.net/2009/01/05/ajax-validation-on-rails/</link>
		<comments>http://cristian.livadaru.net/2009/01/05/ajax-validation-on-rails/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 09:27:13 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/?p=584</guid>
		<description><![CDATA[I had a ajax form to add languages in the system in one of my projects. A pretty simple form with just one text field. The problem I had was with validations and display the error message if something goes wrong. After search the net for a while I came across this blog from bigsmoke [...]]]></description>
			<content:encoded><![CDATA[<p>I had a ajax form to add languages in the system in one of my projects. A pretty simple form with just one text field. The problem I had was with validations and display the error message if something goes wrong.<br />
After search the net for a while I came across this <a href="http://www.bigsmoke.us/ajax-validation-on-rails/" target="_blank">blog from bigsmoke</a> which could solve my issues, but after looking a bit it kind of looks a bit complicated and I wanted something more simple.<br />
I took some ideas from <a href="http://www.bigsmoke.us/" target="_blank">bigsmoke </a>and did my own thing.</p>
<p>So here is my implementation of Ajax validation on Rails:</p>
<p>My controller has a &#8220;new&#8221; action which looks like this</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">def</span> new
  <span style="color:#0066ff; font-weight:bold;">@language</span> = Language.<span style="color:#9900CC;">new</span><span style="color:#006600; font-weight:bold;">&#40;</span>params<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:language</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
  <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#0066ff; font-weight:bold;">@language</span>.<span style="color:#9900CC;">save</span>
    <span style="color:#0066ff; font-weight:bold;">@language</span>.<span style="color:#9900CC;">reload</span>
    <span style="color:#0000FF; font-weight:bold;">return</span> <span style="color:#9966CC; font-weight:bold;">if</span> request.<span style="color:#9900CC;">xhr</span>?
  <span style="color:#9966CC; font-weight:bold;">else</span>
    render <span style="color:#ff3333; font-weight:bold;">:partial</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'error'</span>, <span style="color:#ff3333; font-weight:bold;">:status</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006666;">444</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>The view where the languages are displayed I have added a hidden div which will display the error message if present</p>
<p>Here is where the most stuff happens, in the _error.rjs</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">page.<span style="color:#9900CC;">replace_html</span> <span style="color:#996600;">'errors'</span>, <span style="color:#996600;">&quot;Language could not be created. Reason: #{@language.errors.full_messages}&quot;</span>
page.<span style="color:#9900CC;">delay</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006666;">5</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#9966CC; font-weight:bold;">do</span>
  page.<span style="color:#9900CC;">visual_effect</span> <span style="color:#ff3333; font-weight:bold;">:fade</span>, <span style="color:#996600;">'errors'</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
page<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#996600;">&quot;errors&quot;</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">toggle</span></pre></div></div>

<p>This replaces the errors div with a message and the errors returned from the validation, it starts a fade with a delay so that the error message will disappear after a while and finally, the div is set to visible.</p>
<p>That&#8217;s it! It really is that simple.</p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2009/01/05/ajax-validation-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Push mail for iPhone with Cyrus and z-push</title>
		<link>http://cristian.livadaru.net/2008/10/16/push-mail-for-iphone-with-cyrus-and-z-push/</link>
		<comments>http://cristian.livadaru.net/2008/10/16/push-mail-for-iphone-with-cyrus-and-z-push/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 11:32:06 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/2008/10/16/push-mail-for-iphone-with-cyrus-and-z-push/</guid>
		<description><![CDATA[Some days ago I came across z-push a very interesting open source project. I decided to give it a try and see how it works with my iPhone. I really didn&#8217;t expect to be up and running in only 5 minutes! So I won&#8217;t write anything here about the installation, just read the manual and [...]]]></description>
			<content:encoded><![CDATA[<p>Some days ago I came across <a href="http://z-push.sourceforge.net/soswp/" title="z-push">z-push</a> a very interesting open source project. I decided to give it a try and see how it works with my iPhone.<br />
I really didn&#8217;t expect to be up and running in only 5 minutes! So I won&#8217;t write anything here about the installation, just read the manual and everything should be clear.<br />
But there are two things I have to mention if you are using Cyrus.</p>
<ul>
<li>Synced mails will be marked as read! The solution for this is in <a href="http://z-push.sourceforge.net/phpbb/viewtopic.php?f=7&amp;t=92&amp;st=0&amp;sk=t&amp;sd=a&amp;start=20#p1507" title="synced mails marked as read">this post in the z-push</a> forum</li>
<li>Sync might not work due to encoding problems (iPhone will say that there is no connection to the server). The solution for this is in <a href="http://z-push.sourceforge.net/phpbb/viewtopic.php?f=7&amp;t=207#p973" title="sync with cyrus">this post in the z-push</a> forum.</li>
</ul>
<p>After solving these two issues everything worked perfect! The only problem that remains, and this is nothing z-push can solve, is the battery usage of the iPhone. Be warned! Your battery will be empty after 2 days in some cases even after 1 day. This really sucks, I have to admit, this is where BlackBerry will get a point.</p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2008/10/16/push-mail-for-iphone-with-cyrus-and-z-push/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Ruby on Rails Search with Squirrel</title>
		<link>http://cristian.livadaru.net/2008/09/15/creating-a-ruby-on-rails-search-with-squirrel/</link>
		<comments>http://cristian.livadaru.net/2008/09/15/creating-a-ruby-on-rails-search-with-squirrel/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 17:53:05 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/2008/09/15/creating-a-ruby-on-rails-search-with-squirrel/</guid>
		<description><![CDATA[I was trying to create a search form with all kind of search fields but almost no text fields so Ferret is nothing that would help me since I need no full text search. I found several hints but none was really what I was looking for until I came across something on scribd (http://www.scribd.com/doc/3188387/Advanced-Searching-in-Rails) [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to create a search form with all kind of search fields but almost no text fields so Ferret is nothing that would help me since I need no full text search.<br />
I found several hints but none was really what I was looking for until I came across something on scribd (http://www.scribd.com/doc/3188387/Advanced-Searching-in-Rails) which didn&#8217;t help me either but it gave me the link to <a href="http://www.thoughtbot.com/projects/squirrel">Squirrel</a> which seemed to be exactly what I needed.<br />
But as usual there is something that doesn&#8217;t quite work as expected, in my case the first problem was with checkboxes. What I tried to accomplish is that it should return all records that have true in the field if the checkbox is checked and ALL records (also the ones with false) if the checkbox is not checked.<br />
My problem was that I was trying all kind of comparisons with ==true or ==1 which all failed. The correct way to do it is ==&#8221;1&#8243; for true or ==&#8221;0&#8243; for false. Here an example:</p>
<p><code>@course= Course.find(:all) do<br />
kinderbetreuung==true unless params[:course_search][:kinderbetreuung]=="0"<br />
end</code></p>
<p>The next problem I had is that I have for each day separate times for the course, yeah I know this is a bit to much work but I really had no better Idea how to solve it. Anyway, my problem was that a course could be on just one day of the week or 3 times a week. This makes the search a bit more complicated.<br />
Let&#8217;s say you are searching all courses that start after 09:00. The correct way to do it is like this:</p>
<p><code>any do<br />
kurszeit_mo_von &gt;= zeit_von.to_s<br />
kurszeit_mo_von==nil<br />
end</code></p>
<p>This will return either if the coursetime for monday matches OR if the coursetime is null. Hope I could save someone a lot of time with this.</p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2008/09/15/creating-a-ruby-on-rails-search-with-squirrel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You get what you pay for</title>
		<link>http://cristian.livadaru.net/2008/06/09/you-get-what-you-pay-for/</link>
		<comments>http://cristian.livadaru.net/2008/06/09/you-get-what-you-pay-for/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 07:18:40 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[InterNet]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Hacked]]></category>
		<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/?p=471</guid>
		<description><![CDATA[Some time ago I got an hosting account at a cheap company (I won&#8217;t mention any names). All was good and fine until the trouble started. 1. No detailed access logs There is no way to see who logged in when over ftp. The only thing that is logged is the access over the web [...]]]></description>
			<content:encoded><![CDATA[<p>Some time ago I got an hosting account at a cheap company (I won&#8217;t mention any names). All was good and fine until the trouble started.</p>
<p><strong>1. No detailed access logs</strong></p>
<p>There is no way to see who logged in when over ftp. The only thing that is logged is the access over the web interface. This is not enough! I just found out that several index.html and index.php files where modified between april and may. They all where &#8220;infected&#8221; with some extra javascript code. Funny enough, somewhen during this time there was a modification to the FTP server of that provider. All passwords where modified and you had to change the password over the webinterface for all accounts. Strange isn&#8217;t it. There was no official statement about anything getting hacked. </p>
<p><strong>2. Useless webstats</strong></p>
<p>One of my sites hosted there had in a day about 200Gig traffic. Although they promise you about 5000 Gig traffic per month, all my sites where locked down due to bandwidth exceeding. Support told me this:</p>
<blockquote><p>All ***** accounts are allowed to use 167 GB of transfer per day. If you site goes over this limit it will be taken offline until the next day. </p></blockquote>
<p> I tried to find anything about this on their website and find no trace about this limitation. Anyway, the reason for the huge traffic amount was of course someone with bad intentions. It is weird since there is no real website on that account. It was used for exchanging larger files (legal content, no piracy) and nothing that would really be of interest to someone. I couldn&#8217;t find out what was downloaded and from where to cause such huge traffic, the support was of no help and <strong>ALL MY SITES WHERE OFFLINE</strong> for one day. Really all of them! Not just the one causing the traffic. </p>
<p>There where some other minor issues why I don&#8217;t like this provider, but they I can&#8217;t remember now and anyway, like I mentioned, they where minor issues. The two big issues I mentioned above is the reason why I will cancel my account. </p>
<p> </p>
<p>oh yes &#8230; one of the minor issues is they don&#8217;t support sFTP or FTP with SSL, just plain unencrypted FTP. Not very nice.</p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2008/06/09/you-get-what-you-pay-for/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The top 8 worst Microsoft promo videos &#124; Crave : The gadget blog</title>
		<link>http://cristian.livadaru.net/2008/04/17/the-top-8-worst-microsoft-promo-videos-crave-the-gadget-blog/</link>
		<comments>http://cristian.livadaru.net/2008/04/17/the-top-8-worst-microsoft-promo-videos-crave-the-gadget-blog/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 12:26:28 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/2008/04/17/the-top-8-worst-microsoft-promo-videos-crave-the-gadget-blog/</guid>
		<description><![CDATA[The top 8 worst Microsoft promo videos &#124; Crave : The gadget blog You thought that Microsoft Vista video from earlier today was bad? Watch these. Lest us forget the turgid history of some other horrifically bad promotional videos from Microsoft that will forever be burned into our brains.]]></description>
			<content:encoded><![CDATA[<p><a href="http://crave.cnet.com/8301-1_105-9920796-1.html">The top 8 worst Microsoft promo videos | Crave : The gadget blog</a><br />
You thought that Microsoft Vista video from earlier today was bad? Watch these.</p>
<p>Lest us forget the turgid history of some other horrifically bad promotional videos from Microsoft that will forever be burned into our brains. </p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2008/04/17/the-top-8-worst-microsoft-promo-videos-crave-the-gadget-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows XP, with Firewall</title>
		<link>http://cristian.livadaru.net/2007/12/10/windows-xp-with-firewall/</link>
		<comments>http://cristian.livadaru.net/2007/12/10/windows-xp-with-firewall/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 12:18:49 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/2007/12/10/windows-xp-with-firewall/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="/wp-content/uploads/cris/2007/decembrie/72029489.jpg" rel="lightbox"  ><img src="/wp-content/uploads/cris/2007/decembrie/.thumbs/th_72029489.jpg" alt="72029489.jpg" title="72029489.jpg" border="0" /></a> <br/></p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2007/12/10/windows-xp-with-firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS Leopard bei Amazon vorbestellen, und 10 Euro sparen</title>
		<link>http://cristian.livadaru.net/2007/10/23/mac-os-leopard-bei-amazon-vorbestellen-und-10-euro-sparen/</link>
		<comments>http://cristian.livadaru.net/2007/10/23/mac-os-leopard-bei-amazon-vorbestellen-und-10-euro-sparen/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 10:05:50 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/2007/10/23/mac-os-leopard-bei-amazon-vorbestellen-und-10-euro-sparen/</guid>
		<description><![CDATA[Bei Amazon kann Mac OS Leopard vorbestellt werden und mit einem Gutscheincode kann man 10 Euro sparen. Also, jetzt hier klicken, und nach der Bestellung diesen Gutscheincode verwenden: AMZNLPRDAPPL]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.de/gp/feature.html?ie=UTF8&#038;docId=1000114113&#038;linkCode=ure&#038;tag=lcxwebhosting-21"><img src="http://ecx.images-amazon.com/images/I/21mjMWTsg6L.jpg" alt="Mac OS Leopard" align="left"/></a>Bei <a href="http://www.amazon.de/gp/feature.html?ie=UTF8&#038;docId=1000114113&#038;linkCode=ure&#038;tag=lcxwebhosting-21">Amazon</a> kann <a href="http://www.amazon.de/gp/feature.html?ie=UTF8&#038;docId=1000114113&#038;linkCode=ure&#038;tag=lcxwebhosting-21">Mac OS Leopard vorbestellt</a> werden und mit einem Gutscheincode kann man 10 Euro sparen. </p>
<p>Also, jetzt <a href="http://www.amazon.de/gp/feature.html?ie=UTF8&#038;docId=1000114113&#038;linkCode=ure&#038;tag=lcxwebhosting-21">hier klicken</a>, und nach der Bestellung diesen Gutscheincode verwenden: <strong>AMZNLPRDAPPL</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2007/10/23/mac-os-leopard-bei-amazon-vorbestellen-und-10-euro-sparen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computerworld &#8211; Just how did Microsoft get OOXML support in Eastern Europe?</title>
		<link>http://cristian.livadaru.net/2007/09/27/computerworld-just-how-did-microsoft-get-ooxml-support-in-eastern-europe/</link>
		<comments>http://cristian.livadaru.net/2007/09/27/computerworld-just-how-did-microsoft-get-ooxml-support-in-eastern-europe/#comments</comments>
		<pubDate>Thu, 27 Sep 2007 15:36:01 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/2007/09/27/computerworld-just-how-did-microsoft-get-ooxml-support-in-eastern-europe/</guid>
		<description><![CDATA[This question, is simply answered by reading my blog about corruption After the International Organization for Standardization voted to reject Microsoft&#8217;s Office Open XML document format as a standard, the detailed results from ISO member countries give us a lot of material to analyze. Votes from South-eastern Europe and former Yugoslavia countries showed Microsoft&#8217;s domination [...]]]></description>
			<content:encoded><![CDATA[<p>This question, is simply answered by reading <a href="http://cristian.livadaru.net/2007/09/27/corruption-perceptions-index-2007-well-done-basescu/">my blog about corruption</a></p>
<p>After the International Organization for Standardization voted to reject Microsoft&#8217;s Office Open XML document format as a standard, the detailed results from ISO member countries give us a lot of material to analyze.</p>
<p>Votes from South-eastern Europe and former Yugoslavia countries showed Microsoft&#8217;s domination of that market, and especially good connections with authorities because most of the national standardization bodies voted &#8220;Yes with no comments&#8221;.</p>
<p>Romania and Bulgaria, members of European Union, together with Bosnia and Herzegovina, Croatia and Serbia, gave a green light for Microsoft&#8217;s format, with comments from Bulgaria. In this story, we take a look at the decision processes and reactions in those countries.</p>
<p>Read more on <a href="http://www.computerworld.com.au/index.php/id;1806484531;pp;1">Computerworld &#8211; Just how did Microsoft get OOXML support in Eastern Europe?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2007/09/27/computerworld-just-how-did-microsoft-get-ooxml-support-in-eastern-europe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Incredible stupid MS Dos commercial</title>
		<link>http://cristian.livadaru.net/2007/09/25/incredible-stupid-ms-dos-commercial/</link>
		<comments>http://cristian.livadaru.net/2007/09/25/incredible-stupid-ms-dos-commercial/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 16:41:19 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Stupidity]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/2007/09/25/incredible-stupid-ms-dos-commercial/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/dmEvPZUdAVI"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/dmEvPZUdAVI" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> </p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2007/09/25/incredible-stupid-ms-dos-commercial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
