<?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; Windows</title>
	<atom:link href="http://cristian.livadaru.net/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://cristian.livadaru.net</link>
	<description>... think again ...</description>
	<lastBuildDate>Sat, 28 Aug 2010 19:47:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Outlook 2007 Error: None of the Authentication Methods Supported By This Client Are Supported By Your Server</title>
		<link>http://cristian.livadaru.net/2009/08/05/outlook-2007-error-none-of-the-authentication-methods-supported-by-this-client-are-supported-by-your-server/</link>
		<comments>http://cristian.livadaru.net/2009/08/05/outlook-2007-error-none-of-the-authentication-methods-supported-by-this-client-are-supported-by-your-server/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 09:20:07 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[cyrus]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[outlook]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/?p=641</guid>
		<description><![CDATA[I was testing Zimbra with several mail client. Everything worked fine (Thunderbird, Mac Mail, &#8230;) except outlook. Outlook always complained &#8220;None of the Authentication Methods Supported By This Client Are Supported By Your Server&#8221;. I found several hints on the net about how to solve this but none of them helped. After checking and rechecking [...]]]></description>
			<content:encoded><![CDATA[<p>I was testing Zimbra with several mail client. Everything worked fine (Thunderbird, Mac Mail, &#8230;) except outlook. Outlook always complained &#8220;None of the Authentication Methods Supported By This Client Are Supported By Your Server&#8221;.<br />
I found several hints on the net about how to solve this but none of them helped.<br />
After checking and rechecking the Account settings I noticed that encryption type for SMTP and IMAP where both set to &#8220;None&#8221; even if you tell outlook to use encryption. So here is what you have to do to get it working:</p>
<p>1. In the account settings click on &#8220;More Settings &#8230;&#8221;</p>
<p>2. On the Advanced Tab, change the encryption type from &#8220;none&#8221; to what ever works with your server, or just try &#8220;auto&#8221;</p>

<a href='http://cristian.livadaru.net/2009/08/05/outlook-2007-error-none-of-the-authentication-methods-supported-by-this-client-are-supported-by-your-server/outlook1/' title='outlook1'><img width="150" height="150" src="http://cristian.livadaru.net/wp-content/uploads/2009/08/outlook1-150x150.png" class="attachment-thumbnail" alt="outlook1" title="outlook1" /></a>
<a href='http://cristian.livadaru.net/2009/08/05/outlook-2007-error-none-of-the-authentication-methods-supported-by-this-client-are-supported-by-your-server/outlook2/' title='outlook2'><img width="150" height="150" src="http://cristian.livadaru.net/wp-content/uploads/2009/08/outlook2-150x150.png" class="attachment-thumbnail" alt="outlook2" title="outlook2" /></a>

<p>I really can&#8217;t understand why &#8220;none&#8221; is the default &#8230; but who understands Microsoft &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2009/08/05/outlook-2007-error-none-of-the-authentication-methods-supported-by-this-client-are-supported-by-your-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distributing Rails Applications, with migrations</title>
		<link>http://cristian.livadaru.net/2009/02/22/distributing-rails-applications-with-migrations/</link>
		<comments>http://cristian.livadaru.net/2009/02/22/distributing-rails-applications-with-migrations/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 01:38:10 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[distribute]]></category>
		<category><![CDATA[exe]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/?p=613</guid>
		<description><![CDATA[Creating a executable file (.exe for windows for example) from a Ruby on Rails application isn&#8217;t something really new. There enough informations about that on the net, the best one can be found here. Well, then why am I writing this blog? Well the manual from Erik Veenstra ist quite good, but what I didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Creating a executable file (.exe for windows for example) from a Ruby on Rails application isn&#8217;t something really new. There enough informations about that on the net, the best one can be found <a href="http://www.erikveen.dds.nl/distributingrubyapplications/rails.html">here</a>.<br />
Well, then why am I writing this blog? Well the manual from Erik Veenstra ist quite good, but what I didn&#8217;t find there anywhere was how to get the migrations done! I want to be able to give this .exe file to someone (or actually I was forced to do it this way) and they should be able to use the application, but when you keep updates in mind then you must have some way to also get migrations working. </p>
<p>I will be repeating some steps that are already mentioned in the &#8220;<a href="http://www.erikveen.dds.nl/distributingrubyapplications/rails.html">Distributing Rails Applications</a>&#8221; tutorial.<br />
First add this to the top of your environment.rb, this is a bit different then mentioned in the tutorial. Basically it should be working as mentioned in the tutorial, but in the last two days I was trying to solve this problem until late in the night and can&#8217;t really remember why I changed it <img src='http://cristian.livadaru.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">module</span> Rails
  <span style="color:#9966CC; font-weight:bold;">class</span> Configuration
    <span style="color:#9966CC; font-weight:bold;">def</span> database_configuration
      conf = <span style="color:#CC00FF; font-weight:bold;">YAML</span>::<span style="color:#CC0066; font-weight:bold;">load</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC00FF; font-weight:bold;">ERB</span>.<span style="color:#9900CC;">new</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC00FF; font-weight:bold;">IO</span>.<span style="color:#9900CC;">read</span><span style="color:#006600; font-weight:bold;">&#40;</span>database_configuration_file<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">result</span><span style="color:#006600; font-weight:bold;">&#41;</span>
      <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#9966CC; font-weight:bold;">defined</span>?<span style="color:#006600; font-weight:bold;">&#40;</span>TAR2RUBYSCRIPT<span style="color:#006600; font-weight:bold;">&#41;</span>
        conf.<span style="color:#9900CC;">each</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>k, v<span style="color:#006600; font-weight:bold;">|</span>
          <span style="color:#9966CC; font-weight:bold;">if</span> v<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#996600;">&quot;adapter&quot;</span><span style="color:#006600; font-weight:bold;">&#93;</span> =~ <span style="color:#006600; font-weight:bold;">/</span>^sqlite3<span style="color:#006600; font-weight:bold;">/</span>
            v<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#996600;">&quot;database&quot;</span><span style="color:#006600; font-weight:bold;">&#93;</span> = oldlocation<span style="color:#006600; font-weight:bold;">&#40;</span>v<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#996600;">&quot;database&quot;</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> v.<span style="color:#9966CC; font-weight:bold;">include</span>?<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;database&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
            v<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#996600;">&quot;dbfile&quot;</span><span style="color:#006600; font-weight:bold;">&#93;</span>   = oldlocation<span style="color:#006600; font-weight:bold;">&#40;</span>v<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#996600;">&quot;dbfile&quot;</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> v.<span style="color:#9966CC; font-weight:bold;">include</span>?<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;dbfile&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
          <span style="color:#9966CC; font-weight:bold;">end</span>
        <span style="color:#9966CC; font-weight:bold;">end</span>
      <span style="color:#9966CC; font-weight:bold;">else</span>
        <span style="color:#CC00FF; font-weight:bold;">YAML</span>::<span style="color:#CC0066; font-weight:bold;">load</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC00FF; font-weight:bold;">ERB</span>.<span style="color:#9900CC;">new</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC00FF; font-weight:bold;">IO</span>.<span style="color:#9900CC;">read</span><span style="color:#006600; font-weight:bold;">&#40;</span>database_configuration_file<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">result</span><span style="color:#006600; font-weight:bold;">&#41;</span>
      <span style="color:#9966CC; font-weight:bold;">end</span>
    <span style="color:#9966CC; font-weight:bold;">end</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>Create a init.rn in the root of your application folder, you can remove the three &#8220;puts&#8221; lines, just added them for debug purposes.</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#CC0066; font-weight:bold;">at_exit</span> <span style="color:#9966CC; font-weight:bold;">do</span>
  <span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">&quot;irb&quot;</span>
  <span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">&quot;drb/acl&quot;</span>
  <span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">&quot;sqlite3&quot;</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;Running as an RBA.&quot;</span> <span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#9966CC; font-weight:bold;">defined</span>?<span style="color:#006600; font-weight:bold;">&#40;</span>TAR2RUBYSCRIPT<span style="color:#006600; font-weight:bold;">&#41;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;Runing from: &quot;</span> <span style="color:#006600; font-weight:bold;">+</span> oldlocation
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;Runing in: &quot;</span> <span style="color:#006600; font-weight:bold;">+</span> newlocation
&nbsp;
<span style="color:#CC0066; font-weight:bold;">load</span> <span style="color:#996600;">&quot;mig.rb&quot;</span>
<span style="color:#CC0066; font-weight:bold;">load</span> <span style="color:#996600;">&quot;script/server&quot;</span></pre></div></div>

<p>As you can see there is a new &#8220;load&#8221; line which load mig.rb before starting the server. Here is where the magic happens.<br />
Actually the mig.rb is nothing but a copy of the rake script with a extra line.</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'rubygems'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'rake'</span>
&nbsp;
version = <span style="color:#996600;">&quot;&gt;= 0&quot;</span>
&nbsp;
ARGV<span style="color:#006600; font-weight:bold;">&lt;&lt;</span><span style="color:#996600;">&quot;db:migrate&quot;</span>
&nbsp;
gem <span style="color:#996600;">'rake'</span>, version
<span style="color:#CC0066; font-weight:bold;">load</span> <span style="color:#996600;">'rake'</span></pre></div></div>

<p>So what happens is that tar2rubyscript executes init.rb on startup, then the mig.rb is called which always does a rake db:migrate. This is done but manually adding &#8220;db:migrate&#8221; to ARGV, this has to be done so the script can be started with &#8220;load&#8221;, starting the script with a system command won&#8217;t work!<br />
This is because the environment set up by tar2rubyscript will be missing and your migrations just won&#8217;t work.</p>
<p>Thats all! Incredible that for this answer I spend 2 long long nights. But now it works as it should, when starting it without tar2rubyscript it work&#8217;s as usual and with tar2rubyscript it works also great and I can have migrations when I send out new software versions. <br />
The idea is that the same application is intended to run in two different environments, one being a usual ruby on rails environment on Linux with a MySQL Database and the other being sent out via CD and it must run on windows.<br />
I could have made complete installer to install Ruby, Rubygems, SQLite, the Gems I need &#8230; and much more. This way it is much much easier and nobody has to install anything, just click the exe, open the browser and start working.</p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2009/02/22/distributing-rails-applications-with-migrations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Having fun with windows &#8230;</title>
		<link>http://cristian.livadaru.net/2008/05/19/having-fun-with-windows/</link>
		<comments>http://cristian.livadaru.net/2008/05/19/having-fun-with-windows/#comments</comments>
		<pubDate>Mon, 19 May 2008 08:46:11 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Bugs]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/?p=445</guid>
		<description><![CDATA[no I am not joking. I received this today: 1: You can&#8217;t create a folder named CON in windows 2: If you create a new file with notepad and write the text &#8220;Bush hid the facts&#8221; (without the quotes), save it and reopen it, the text is &#8220;hidden&#8221;. Well &#8230; it might sound like something [...]]]></description>
			<content:encoded><![CDATA[<p>no I am not joking.<br />
I received this today:<br/><br />
1: You can&#8217;t create a folder named CON in windows<br />
2: If you create a new file with notepad and write the text &#8220;Bush hid the facts&#8221; (without the quotes), save it and reopen it, the text is &#8220;hidden&#8221;.<br/><br />
Well &#8230; it might sound like something really bad but it&#8217;s just a bug and there is not much behind it. <br />
<br/><br />
to 1. CON like LPT1, COM1 &#8230; are DOS devices and somehow windows gets confused and refuses to create the folder.<br/><br />
to 2. The text &#8220;Bush hid the facts&#8221; is not what causes notepad to hide anything. The problem is that the text is misinterpret as UTF-16, this bug can be reproduced with several sentences, see <a href="http://en.wikipedia.org/wiki/Bush_hid_the_facts">http://en.wikipedia.org/wiki/Bush_hid_the_facts</a> <br/><br />
As you can see, these are just software bugs and there is nothing more behind it <img src='http://cristian.livadaru.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2008/05/19/having-fun-with-windows/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[fun]]></category>
		<category><![CDATA[Windows]]></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>Shell Shock :)</title>
		<link>http://cristian.livadaru.net/2006/10/23/shell-shock/</link>
		<comments>http://cristian.livadaru.net/2006/10/23/shell-shock/#comments</comments>
		<pubDate>Mon, 23 Oct 2006 17:54:13 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/2006/10/23/shell-shock/</guid>
		<description><![CDATA[One Week Back to Windows &#8211; OSNews.com One of the things that has always made Unices so popular and admired was the shells out there. In fact, most operating systems today have some sort of a competent CLI interface. This is for two reasons. Firstly, in order to offer a way to automate repetitive tasks. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.osnews.com/story.php/16260/One-Week-Back-to-Windows/page4/">One Week Back to Windows &#8211; OSNews.com</a></p>
<blockquote><p>
One of the things that has always made Unices so popular and admired was the shells out there. In fact, most operating systems today have some sort of a competent CLI interface. This is for two reasons. Firstly, in order to offer a way to automate repetitive tasks. Secondly, because you may expect to login remotely, without having access to a graphical environment. And thirdly, because there are cases when you will simply discard the GUI, like when running a web server.</p>
<p>Windows sticked to cmd.exe, which is essentially a slightly polished version of command.com. Command.com itself is little more than a CP/M shell clone. So essentially, cmd.exe offers the same facilities which computers were offering <b>25 years ago</b>, on Z80-based machines. Needless to say, this is very painful
</p></blockquote>
<p><br/><br />
Oh yes how true. I now have to search for some software that can change the size of some images in batch and also watermark them. Since ImageMagik is available for windows it would be quite easy if windows had some usefull shell, but how do you do this on windows?</p>
<pre>for ii in *.jpg
do
  convert -resize 600x600 $ii $ii
done
</pre>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2006/10/23/shell-shock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[HowTo] XP + OSX 10</title>
		<link>http://cristian.livadaru.net/2006/09/04/howto-xp-osx-10/</link>
		<comments>http://cristian.livadaru.net/2006/09/04/howto-xp-osx-10/#comments</comments>
		<pubDate>Mon, 04 Sep 2006 21:31:24 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/2006/09/04/howto-xp-osx-10/</guid>
		<description><![CDATA[Interested in runing Mac OSX on a normal PC? Don&#39;t ask me how to get it running, I have a mac but check out the folowing forum post, here you will find an answer.&#160; [HowTo] XP + OSX 10.4.4-10.4.7 native dual boot &#8211; InsanelyMac Forum]]></description>
			<content:encoded><![CDATA[<p>Interested in runing Mac OSX on a normal PC? Don&#39;t ask me how to get it running, I have a mac <img src='http://cristian.livadaru.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  but check out the folowing forum post, here you will find an answer.&nbsp;</p>
<p><a href="http://forum.insanelymac.com/index.php?showtopic=11339">[HowTo] XP + OSX 10.4.4-10.4.7 native dual boot &#8211; InsanelyMac Forum</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2006/09/04/howto-xp-osx-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Non Genuine Windows Warning Messages</title>
		<link>http://cristian.livadaru.net/2006/09/03/disable-non-genuine-windows-warning-messages/</link>
		<comments>http://cristian.livadaru.net/2006/09/03/disable-non-genuine-windows-warning-messages/#comments</comments>
		<pubDate>Sun, 03 Sep 2006 12:36:15 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Pissed]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/2006/09/03/disable-non-genuine-windows-warning-messages/</guid>
		<description><![CDATA[Disable Non Genuine Windows Warning Messages: WGA Workarounds remove WGATray.exe &#187; Digital Inspiration Disable Non Genuine Windows Warning Messages Got the annoying Windows message to get genuine? Method 2 seems to be the easiest one (no safe mode reboot, not much work no deleting) But since I have a Mac and my Linux servers, this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://labnol.blogspot.com/2006/04/workarounds-to-disable-non-genuine.html">Disable Non Genuine Windows Warning Messages: WGA Workarounds remove WGATray.exe &raquo; Digital Inspiration</a> Disable Non Genuine Windows Warning Messages</p>
<p>Got the annoying Windows message to get genuine? Method 2 seems to be the easiest one (no safe mode reboot, not much work no deleting)<br /> But since I have a Mac and my Linux servers, this doesn&#39;t really bother me so M$ you won&#39;t get a fucking cent from me !</p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2006/09/03/disable-non-genuine-windows-warning-messages/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Dear Sir Bill Gates: invoice enclosed</title>
		<link>http://cristian.livadaru.net/2006/08/21/dear-sir-bill-gates-invoice-enclosed/</link>
		<comments>http://cristian.livadaru.net/2006/08/21/dear-sir-bill-gates-invoice-enclosed/#comments</comments>
		<pubDate>Mon, 21 Aug 2006 21:05:06 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/2006/08/21/dear-sir-bill-gates-invoice-enclosed/</guid>
		<description><![CDATA[Oh I love this one. Just received this from Moga, an article on TheRegister. I think my colleagues know just too good how it feels to come back from a meeting and find a rebooted PC and all you work is gone. I must say I was lucky until now since I was always in [...]]]></description>
			<content:encoded><![CDATA[<p>Oh I love this one. Just received this from Moga, <a href="http://www.theregister.com/2006/08/21/bill_gates_invoice/">an article on TheRegister</a>. I think my colleagues know just too good how it feels to come back from a meeting and find a rebooted PC and all you work is gone. I must say I was lucky until now since I was always in front of the pc as windows wanted to reboot and game me some time to hit a cancel button. This reminds me of a other story. Imagine writing a 300 Pages doc. With the &quot;oh so powerful and much better then OpenOffice&quot; Winword. You save the document and the next day you want to open it and print it, but no no &#8230; Winword has other plans, it simply crashes. This happened to my colleague. Thank good I had an older version of OpenOffice installed, I opened the &quot;corrupt&quot; winword .doc file without a problem, saved it again as .doc file for winword (which then had only 1MB instead of 3) and the file could be opened again in winword, without any problem and nothing was missing. Just some tables looked strange, but that was fixed much faster then writing 300 pages from 0.</p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2006/08/21/dear-sir-bill-gates-invoice-enclosed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thanks Billy for protecting us from Viruses</title>
		<link>http://cristian.livadaru.net/2006/03/28/thanks-billy-for-protecting-us-from-viruses/</link>
		<comments>http://cristian.livadaru.net/2006/03/28/thanks-billy-for-protecting-us-from-viruses/#comments</comments>
		<pubDate>Tue, 28 Mar 2006 14:50:37 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/?p=47</guid>
		<description><![CDATA[Oh isn&#8217;t this great! This is a old &#8220;feature&#8221; from outlook but today it once again pissed me off! Since there are so many stupid users that click on everything they get via email, what does Microsoft do? They add a bug ( called feature at Microsoft ) so that &#8220;potential dangerous&#8221; file are hidden [...]]]></description>
			<content:encoded><![CDATA[<p>Oh isn&#8217;t this great! This is a old &#8220;feature&#8221; from outlook but today it once again pissed me off!<br />
Since there are so many stupid users that click on everything they get via email, what does Microsoft do? They add a bug ( called feature at Microsoft ) so that &#8220;potential dangerous&#8221; file are hidden in outlook and you can&#8217;t open them.<br />
So I had to sent such a baaaad file with a .cer extension ( certificate ) which actulay was just a simple text file with some rows of text in it ( a public key ) but hey &#8230; this could be such a bad virus so thanks Outlook for protecting me from virus, or rather from blocking me doing my work. But why complain? M$ is sooo much beter and M$ is sooo much cheaper then Linux and open source! yes yes .. the M$ financed study shows it black on white! Linux and OS and GPL is baaad!</p>
<p>Billy &#038; Co ( especialy Steve Balmer ) I wish you die of a real painful death !</p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2006/03/28/thanks-billy-for-protecting-us-from-viruses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yes, she did it again &#8230;</title>
		<link>http://cristian.livadaru.net/2006/01/19/yes-she-did-it-again/</link>
		<comments>http://cristian.livadaru.net/2006/01/19/yes-she-did-it-again/#comments</comments>
		<pubDate>Thu, 19 Jan 2006 17:43:49 +0000</pubDate>
		<dc:creator>Cristian Livadaru</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://cristian.livadaru.net/?p=36</guid>
		<description><![CDATA[My sister broke her Windows once again! Don&#8217;t know if this time she realy did something wrong or if just the windows paches screwed things up. Anyway the behaivoir of the pc was that the explorer was crashing all the time, I don&#8217;t mean the Internet Explorer, I mean the normal stupid explorer. So couldn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>My sister broke her Windows once again! Don&#8217;t know if this time she realy did something wrong or if just the windows paches screwed things up.<br />
Anyway the behaivoir of the pc was that the explorer was crashing all the time, I don&#8217;t mean the Internet Explorer, I mean the normal stupid explorer. So couldn&#8217;t do anysthing with the PC. No network options could be changed, no Controlpanel no nothing ! always just a crash.<br />
Since I had an idea that some windows updates could be the problem I wanted to deinstal them, but how without controlpanel ?<br />
After a fast search over the internet (thank good the internet knows everything!) I found something how I could call just the Software controlpanel so I hoped it didn&#8217;t crash also while executing. Well I tried this little command<br />
<font face="courier new,courier">rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl</font><br />
and was very happy to receive a software controlpannel where I could deinstall the last 4 patches and rebootet the pc, and everything was back to normal again.<br />
Thanks to this neat site that helped me: <a target="_blank" href="http://masterbootrecord.de/english/rundll.php">http://masterbootrecord.de/english/rundll.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cristian.livadaru.net/2006/01/19/yes-she-did-it-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

