<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Ex nihilo nihil fit</title>
	
	<link>http://victorhurdugaci.com</link>
	<description>Victor Hurdugaci on software</description>
	<lastBuildDate>Fri, 08 Jan 2010 22:53:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ExNihiloNihilFit" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="exnihilonihilfit" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://add.my.yahoo.com/rss?url=http%3A%2F%2Ffeeds.feedburner.com%2FExNihiloNihilFit" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif">Subscribe with My Yahoo!</feedburner:feedFlare><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2FExNihiloNihilFit" src="http://www.newsgator.com/images/ngsub1.gif">Subscribe with NewsGator</feedburner:feedFlare><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://feeds.my.aol.com/add.jsp?url=http%3A%2F%2Ffeeds.feedburner.com%2FExNihiloNihilFit" src="http://o.aolcdn.com/favorites.my.aol.com/webmaster/ffclient/webroot/locale/en-US/images/myAOLButtonSmall.gif">Subscribe with My AOL</feedburner:feedFlare><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://www.bloglines.com/sub/http://feeds.feedburner.com/ExNihiloNihilFit" src="http://www.bloglines.com/images/sub_modern11.gif">Subscribe with Bloglines</feedburner:feedFlare><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Ffeeds.feedburner.com%2FExNihiloNihilFit" src="http://www.netvibes.com/img/add2netvibes.gif">Subscribe with Netvibes</feedburner:feedFlare><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2FExNihiloNihilFit" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><feedburner:feedFlare xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" href="http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2FExNihiloNihilFit" src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;fileName=ATP_blu_91x17.gif">Subscribe with Pageflakes</feedburner:feedFlare><item>
		<title>Using UAC with C# – Part 3</title>
		<link>http://victorhurdugaci.com/using-uac-with-c-part-3/</link>
		<comments>http://victorhurdugaci.com/using-uac-with-c-part-3/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 22:02:28 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[UAC]]></category>

		<guid isPermaLink="false">http://victorhurdugaci.com/?p=1716</guid>
		<description><![CDATA[After a long period since I wrote part 2 of this article I decided to add some extra information. There is one thing that was missed by the previous two articles: the design of UAC enabled applications.
If you use Windows Vista/7 then you know that buttons and links which elevate privileges are preceded by a [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">After a long period since I wrote <a href="http://victorhurdugaci.com/using-uac-with-c-part-2/" target="_blank">part 2</a> of this article I decided to add some extra information. There is one thing that was missed by the previous two articles: the design of UAC enabled applications.</p>
<p style="text-align: justify;">If you use Windows Vista/7 then you know that buttons and links which elevate privileges are preceded by a shield icon. This is the way Microsoft decided to inform the user about the effect of clicking that control.</p>
<p style="text-align: justify;">The first idea that might pop up is the reinvention of the wheel (or shield). In other words you could draw the shield on a button. This is OK except that:</p>
<ol style="text-align: justify;">
<li>Is not easy</li>
<li>Will require you to recompile the interface if Microsoft decides to change the icon</li>
<li>You need the icon in many sizes 16&#215;16, 24&#215;24, 32&#215;32, etc. (extract it from MS&#8217; DLLs)</li>
<li>Will create a lot of overhead with layout (position icon relative to text size/position)</li>
</ol>
<p style="text-align: justify;">The second method is easier, safer and recommended by MS. All you need to do is send a specific message (<em>BCM_SETSHIELD</em>) to the button if the user has limited privileges and pressing that button will trigger the UAC window. Actually there is a second, tricky, thing that must be done: the style of the button must be &#8220;System&#8221; (in C# &#8220;<a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.flatstyle.aspx" target="_blank">System.Windows.FlatStyle</a>.System&#8221;). Without this you will not be able to see the shield.</p>
<p style="text-align: justify;">The code provided in <a href="http://victorhurdugaci.com/using-uac-with-c-part-1/" target="_blank">part 1</a> of this article will be modified in order to display the shield on the two buttons. Moreover, the shield will be displayed only when the user runs under an account with limited privileges or non-elevated administrator.</p>
<p style="text-align: center;"><img title="UACShield" src="http://victorhurdugaci.com/wp-content/uploads/2010/01/UACShield.png" alt="" width="700" height="280" /></p>
<p style="text-align: justify;">In order to display the shield one needs to send the <em>BCM_SETSHIELD </em>(=<em>0&#215;0000160C)</em> message to the button. This can be done by using the <a href="http://msdn.microsoft.com/en-us/library/ms644950%28VS.85%29.aspx">SendMessage function from user32.dll</a>. This article will not cover what is and how to use SendMessage, if you need more information about it follow the previous link.</p>
<p style="text-align: justify;">To set the shield of the &#8220;Elevate this application&#8221; button one needs to send the message in the following way:</p>

<div class="wp_codebox"><table><tr id="p17164"><td class="code" id="p1716code4"><pre class="csharp" style="font-family:monospace;">SendMessage<span style="color: #008000;">&#40;</span>btnElevate<span style="color: #008000;">.</span><span style="color: #0000FF;">Handle</span>, BCM_SETSHIELD, <span style="color: #FF0000;">0</span>, <span style="color: #FF0000;">1</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span></pre></td></tr></table></div>

<p style="text-align: justify;">The first parameter is the handle of the button, the second one is the message, the third one is not used and must be &#8216;0&#8242; and the last argument must be non-zero in order to draw the shield, zero otherwise.</p>
<p style="text-align: justify;">If you try this it will not work :) Remember the &#8216;tricky&#8217; thing told before? This is the full code to display the shield for <em>btnElevate</em>:</p>

<div class="wp_codebox"><table><tr id="p17165"><td class="code" id="p1716code5"><pre class="csharp" style="font-family:monospace;">btnElevate<span style="color: #008000;">.</span><span style="color: #0000FF;">FlatStyle</span> <span style="color: #008000;">=</span> FlatStyle<span style="color: #008000;">.</span><span style="color: #000000;">System</span><span style="color: #008000;">;</span>
SendMessage<span style="color: #008000;">&#40;</span>btnElevate<span style="color: #008000;">.</span><span style="color: #0000FF;">Handle</span>, BCM_SETSHIELD, <span style="color: #FF0000;">0</span>, <span style="color: #FF0000;">1</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span></pre></td></tr></table></div>

<p style="text-align: justify;">There is only one thing that must be done in order to work properly. Remove the shield if the user has elevated privileges. I don&#8217;t know if this is against MS&#8217; recommendation but in my opinion one must not be shown information that cannot be used in that context; in our case don&#8217;t show the elevate shield if there is nothing to elevate.</p>
<p style="text-align: justify;">Part 1 described how to check if a user has full rights. Now we are just using that boolean variable:</p>

<div class="wp_codebox"><table><tr id="p17166"><td class="code" id="p1716code6"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF; font-weight: bold;">if</span> <span style="color: #008000;">&#40;</span><span style="color: #008000;">!</span>hasAdministrativeRight<span style="color: #008000;">&#41;</span>
    SetUACShields<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span></pre></td></tr></table></div>

<p style="text-align: justify;">Where <em>SetUACShields</em> will send the message to all buttons that require the shield drawn.</p>
<p style="text-align: justify;">The full updated code from Part 1: <a href="http://victorhurdugaci.com/download/uacapp3.zip"><img src="http://victorhurdugaci.com/img/download-icon.jpg" alt="Download Icon" width="24" height="24" />UAC Code 3 (10.13 KB)</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=VteBtpGVIMM:iHC04xsBxXw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=VteBtpGVIMM:iHC04xsBxXw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=VteBtpGVIMM:iHC04xsBxXw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=VteBtpGVIMM:iHC04xsBxXw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=VteBtpGVIMM:iHC04xsBxXw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=VteBtpGVIMM:iHC04xsBxXw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=VteBtpGVIMM:iHC04xsBxXw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=VteBtpGVIMM:iHC04xsBxXw:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=VteBtpGVIMM:iHC04xsBxXw:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=VteBtpGVIMM:iHC04xsBxXw:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=VteBtpGVIMM:iHC04xsBxXw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=VteBtpGVIMM:iHC04xsBxXw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=VteBtpGVIMM:iHC04xsBxXw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=TzevzKxY174" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://victorhurdugaci.com/using-uac-with-c-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy New Year</title>
		<link>http://victorhurdugaci.com/happy-new-year-2010/</link>
		<comments>http://victorhurdugaci.com/happy-new-year-2010/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 09:42:30 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Personal/Blog]]></category>
		<category><![CDATA[Greetings]]></category>
		<category><![CDATA[New Year]]></category>

		<guid isPermaLink="false">http://victorhurdugaci.com/?p=1697</guid>
		<description><![CDATA[
See you in the next year&#8230;
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img alt="Happy New Year" src="http://www.smashingapps.com/wp-content/uploads/2008/12/merry-christmas-happy-new-year-santa.jpg" title="HappyNewYear" width="500" height="500" /></p>
<p>See you in the next year&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=w64Fx_TDPnA:vBpJpYGz5ew:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=w64Fx_TDPnA:vBpJpYGz5ew:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=w64Fx_TDPnA:vBpJpYGz5ew:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=w64Fx_TDPnA:vBpJpYGz5ew:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=w64Fx_TDPnA:vBpJpYGz5ew:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=w64Fx_TDPnA:vBpJpYGz5ew:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=w64Fx_TDPnA:vBpJpYGz5ew:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=w64Fx_TDPnA:vBpJpYGz5ew:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=w64Fx_TDPnA:vBpJpYGz5ew:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=w64Fx_TDPnA:vBpJpYGz5ew:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=w64Fx_TDPnA:vBpJpYGz5ew:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=w64Fx_TDPnA:vBpJpYGz5ew:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=w64Fx_TDPnA:vBpJpYGz5ew:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=TzevzKxY174" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://victorhurdugaci.com/happy-new-year-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tip #8: Make Firefox Better</title>
		<link>http://victorhurdugaci.com/tip-8-make-firefox-better/</link>
		<comments>http://victorhurdugaci.com/tip-8-make-firefox-better/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 10:21:45 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[tweak]]></category>

		<guid isPermaLink="false">http://victorhurdugaci.com/?p=1681</guid>
		<description><![CDATA[What I want from a browser

To show the pages correctly
To show as much as possible from a page (to remove the need of scrolling)
To provide me with an easy way of accessing pages.

What I don&#8217;t like at Firefox

The search bar is superfluous. I really like what Chrome is doing (and the latest version of Opera?): [...]]]></description>
			<content:encoded><![CDATA[<h3 style="text-align: justify;">What I want from a browser</h3>
<ol style="text-align: justify;">
<li>To show the pages correctly</li>
<li>To show as much as possible from a page (to remove the need of scrolling)</li>
<li>To provide me with an easy way of accessing pages.</li>
</ol>
<h3 style="text-align: justify;">What I don&#8217;t like at Firefox</h3>
<ul style="text-align: justify;">
<li>The search bar is superfluous. I really like what Chrome is doing (and the latest version of Opera?): use the address bar as search bar.</li>
<li>There is no ad blocker</li>
<li>There is a lot of wasted space: bookmarks toolbar, menu bar (just think how often you use the top menu), big icons</li>
</ul>
<p style="text-align: justify;">After a few tweaks I got a browser looking like the one in the picture below that satisfies almost all my needs.</p>
<p style="text-align: center;"><a href="http://victorhurdugaci.com/wp-content/uploads/2009/12/firefox-details.jpg" rel="lightbox[1681]"><img class="aligncenter size-large wp-image-1688" title="firefox" src="http://victorhurdugaci.com/wp-content/uploads/2009/12/firefox-1024x574.jpg" alt="" width="717" height="402" /></a></p>
<h3 style="text-align: justify;">Tweaks applied and how/why to use them</h3>
<p><span id="more-1681"></span></p>
<ol style="text-align: justify;">
<li><strong>Remove the bookmark toolbar. </strong>You just don&#8217;t need that bar! How often do you click a bookmark? If you need a page opened all the time you just don&#8217;t close it. Why do you minimize the working are just to see some buttons that you click them in an infinite small amount of the time you spend in browser? <strong>How to apply:</strong> right click the menu bar -&gt; Uncheck Bookmarks Toolbar.</li>
<li><strong>Remove the menu bar. </strong>Just like the bookmark toolbar, you don&#8217;t use it to often. If you want to see it just press Alt+F. <strong>How to apply: </strong>Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/4762" target="_blank">Hide Menubar extension</a>.</li>
<li><strong>Merge address bar and search bar. </strong>Is not practical to need to think if you want to search or you want to enter an a priori known address. There should be just on input field and the browser should be able to decide if you want to search or go to some specific place. <strong>How to apply: </strong>First remove the search bar by right clicking the menubar -&gt; Customize and drag the search bar out of the menu. Second navigate to &#8220;about:config&#8221; and search for &#8220;keywork.url&#8221;. Replace its value with &#8220;http://google.com/search?q=&#8221;. This will make Firefox search on Google when it cannot resolve a name.</li>
<li><strong>Remove ads.</strong> Most of the time you just don&#8217;t want to see &#8220;Super/Extra/Mega/Ultra discount for X&#8221;. Also you don&#8217;t want to see links that are on top of the search list just because they paid. <strong>How to apply: </strong>Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/1865" target="_blank">Adblock Plus extension</a>.</li>
<li><strong>Move icons and make them smaller. </strong>This is just a personal preference. I want the bookmarks button in the left corner. And in order to maximize working area I want small icons. <strong>How to apply: </strong>Right click a toolbar -&gt; Customize. Drag/drop the icons you want. For small icons check the appropriate box.</li>
<li><strong>Mouse gestures. </strong>I like the back button on the toolbar because of the drop down menu but usually I go back by holding the right mouse button and dragging left. The gesture functionality saves a lot of time and movement. <strong>How to apply: </strong>Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/6366" target="_blank">FireGesture extension</a>.</li>
<li style="text-align: justify;"><strong>Protect/sync bookmarks. </strong>Sometimes one might accidentally delete an important bookmark or, even worse, the entire bookmark collection. Is a good idea to backup bookmarks online. This also gives you the possibility of synchronizing bookmarks across multiple machines. <strong>How to apply: </strong>Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/2410" target="_blank">Xmarks extension</a>.</li>
</ol>
<h3>Future work</h3>
<ol>
<li><strong>Remove the status bar. </strong>Currently this cannot be done because there is no other way of knowing where a link is sending. Any suggestion?</li>
<li><strong>Remove the tabs bar. </strong>The tabs bar should be removed in order to get more space but I have no idea where it could go&#8230;</li>
</ol>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=5mbDo7gEshM:Arhsw7PVp6Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=5mbDo7gEshM:Arhsw7PVp6Q:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=5mbDo7gEshM:Arhsw7PVp6Q:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=5mbDo7gEshM:Arhsw7PVp6Q:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=5mbDo7gEshM:Arhsw7PVp6Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=5mbDo7gEshM:Arhsw7PVp6Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=5mbDo7gEshM:Arhsw7PVp6Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=5mbDo7gEshM:Arhsw7PVp6Q:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=5mbDo7gEshM:Arhsw7PVp6Q:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=5mbDo7gEshM:Arhsw7PVp6Q:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=5mbDo7gEshM:Arhsw7PVp6Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=5mbDo7gEshM:Arhsw7PVp6Q:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=5mbDo7gEshM:Arhsw7PVp6Q:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=TzevzKxY174" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://victorhurdugaci.com/tip-8-make-firefox-better/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Part of my plan: Books</title>
		<link>http://victorhurdugaci.com/part-of-my-plan-books/</link>
		<comments>http://victorhurdugaci.com/part-of-my-plan-books/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 22:23:47 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Personal/Blog]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Book]]></category>
		<category><![CDATA[High Rated]]></category>
		<category><![CDATA[Plan]]></category>
		<category><![CDATA[Read]]></category>

		<guid isPermaLink="false">http://victorhurdugaci.com/?p=1664</guid>
		<description><![CDATA[I decided to read books (real books!) and many of them. For those (geeks) that don&#8217;t know what books are I will remind that books were used before the computers age, by people (!), to store and transmit high quantities of information. :-)
Today books are used to add extra height to different objects ranging from [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I decided to read books (real books!) and many of them. For those (geeks) that don&#8217;t know what books are I will remind that books were used before the computers age, by people (!), to store and transmit high quantities of information. :-)</p>
<p style="text-align: justify;">Today books are used to add extra height to different objects ranging from computers and laps to &#8230; babies. Books can be also found on shelves. If you find yourself between many shelves with many books it means you are in a library or a book store.</p>
<p style="text-align: center;"><a href="http://it.zest.id.lv/dropbox/scriviritto/laptop_books.jpg" rel="lightbox[1664]"><img class="alignnone" title="Books under monitor" src="http://it.zest.id.lv/dropbox/scriviritto/laptop_books.jpg" alt="" width="307" height="230" /></a> <a href="http://farm1.static.flickr.com/207/507010435_85be53fb63.jpg" rel="lightbox[1664]"><img class="alignnone" title="Baby book" src="http://farm1.static.flickr.com/207/507010435_85be53fb63.jpg" alt="" width="360" height="230" /></a></p>
<p style="text-align: justify;">OK, funny enough. I tried to gather, from different sources, the high rated titles (tech and non-tech geeky books). The reading process will take me a few months (years maybe) but it worth.</p>
<p style="text-align: justify;">It is obvious that one cannot enjoy all the books people recommend. Many times I found horrible a book rated by many with five stars. I am sure that from the list of books I want to read at least 10% will be abandoned after the first few pages. Some books just don&#8217;t have that&#8230; sparkle&#8230; that makes you want to continue the lecture.</p>
<p style="text-align: justify;">Each book will get one of the following ratings:</p>
<ol style="text-align: justify;">
<li>&#8220;Must read&#8221; (these books will get on the Books page)</li>
<li>&#8220;Good book&#8221;</li>
<li>&#8220;Mediocre&#8221;</li>
<li>&#8220;Bad book&#8221;</li>
</ol>
<p style="text-align: justify;">Currently I am reading the first book in the list and seems to be a good one. Here goes &#8220;The List&#8221; in random order.</p>
<table border="0" width="720px">
<tbody>
<tr>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/51AGVJzr9LL._SL500_AA240_.jpg" alt="" width="150" height="150" /></p>
</td>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/51YRKG4QX8L._SL500_AA240_.jpg" alt="" width="150" height="150" /></p>
</td>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://img.amazon.ca/images/I/51WQECVJG4L._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU15_.jpg" alt="" width="150" height="150" /></p>
</td>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/41kG9cnueLL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU01_.jpg" alt="" width="150" height="150" /></p>
</td>
</tr>
<tr>
<td style="text-align: center;"><a href="http://www.amazon.co.uk/Inmates-are-Running-Asylum-High-tech/dp/0672326140" target="_blank">The Inmates are Running the Asylum: Why High-tech Products Drive Us Crazy and How to Restore the Sanity</a></td>
<td style="text-align: center;"><a href="http://www.amazon.co.uk/Practices-Agile-Developer-Pragmatic-Programmers/dp/097451408X" target="_blank">Practices of an Agile Developer: Working in the Real World</a></td>
<td style="text-align: center;"><a href="http://www.amazon.ca/Habits-Highly-Effective-People-Powerful/dp/0743269519" target="_blank">The 7 Habits of Highly Effective People: Powerful Lessons in Personal Change</a></td>
<td style="text-align: center;"><a href="http://www.amazon.com/Cryptonomicon-Neal-Stephenson/dp/344245512X" target="_blank">Cryptonomicon</a></td>
</tr>
<tr>
<td colspan="4"></td>
</tr>
<tr>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/31VTerGLfML._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU02_.jpg" alt="" width="150" height="150" /></p>
</td>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/41V5ZTF24CL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU01_.jpg" alt="" width="150" height="150" /></p>
</td>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/51DEnAtKzBL._SL500_AA240_.jpg" alt="" width="150" height="150" /></p>
</td>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/51MlUgcSICL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU02_.jpg" alt="" width="150" height="150" /></p>
</td>
</tr>
<tr>
<td style="text-align: center;"><a href="http://www.amazon.co.uk/Working-Effectively-Legacy-Robert-Martin/dp/0131177052" target="_blank">Working Effectively with Legacy Code</a></td>
<td style="text-align: center;"><a href="http://www.amazon.com/Godel-Escher-Bach-Eternal-Golden/dp/0465026567" target="_blank">Godel, Escher, Bach: An Eternal Golden Braid</a></td>
<td style="text-align: center;"><a href="http://www.amazon.com/Coders-at-Work-Peter-Seibel/dp/1430219483" target="_blank"> Coders at work</a></td>
<td style="text-align: center;"><a href="http://www.amazon.co.uk/Peopleware-Productive-Projects-Tom-DeMarco/dp/0932633439" target="_blank">Peopleware: Productive Projects and Teams</a></td>
</tr>
<tr>
<td colspan="4"></td>
</tr>
<tr>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/51ZAKnvbufL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU02_.jpg" alt="" width="150" height="150" /></p>
</td>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/419AvyCIVTL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU02_.jpg" alt="" width="150" height="150" /></p>
</td>
<td><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/41VY8ASPE1L._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU01_.jpg" alt="" width="150" height="150" /></td>
<td><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/4104N6ME70L._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU01_.jpg" alt="" width="150" height="150" /></td>
</tr>
<tr>
<td style="text-align: center;"><a href="http://www.amazon.co.uk/Surely-Youre-Joking-Mr-Feynman/dp/0393316041" target="_blank">&#8220;Surely You&#8217;re Joking, Mr Feynman&#8221;</a></td>
<td style="text-align: center;"><a href="http://www.amazon.co.uk/Design-Everyday-Things-Don-Norman/dp/0465067107" target="_blank">The Design of Everyday Things</a></td>
<td style="text-align: center;"><a href="http://www.amazon.com/Nineteen-Eighty-Four-George-Orwell/dp/0452284236" target="_blank">Nineteen Eighty-Four</a></td>
<td style="text-align: center;"><a href="http://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/dp/0142000280" target="_blank">Getting Things Done: The Art of Stress-Free Productivity</a></td>
</tr>
<tr>
<td colspan="4"></td>
</tr>
<tr>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/41VPCK8QCXL._SL500_AA240_.jpg" alt="" width="150" height="150" /></p>
</td>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/41233D6XS0L._SL500_AA240_.jpg" alt="" width="150" height="150" /></p>
</td>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/51WIpM70FEL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU02_.jpg" alt="" width="150" height="150" /></p>
</td>
<td>
<p style="text-align: center;"><img class="alignnone" title="Book cover" src="http://ecx.images-amazon.com/images/I/31VTerGLfML._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU02_.jpg" alt="" width="150" height="150" /></p>
</td>
</tr>
<tr>
<td style="text-align: center;"><a href="http://www.amazon.co.uk/Structure-Interpretation-Computer-Electrical-Engineering/dp/0262510871" target="_blank">Structure and Interpretation of Computer Programs, 2nd Edition</a></td>
<td style="text-align: center;"><a href="http://www.amazon.co.uk/Art-Computer-Programming-Fundamental-Algorithms/dp/0201896834" target="_blank">The Art of Computer Programming: Fundamental Algorithms</a></td>
<td style="text-align: center;"><a href="http://www.amazon.co.uk/Mythical-Month-Essays-Software-Engineering/dp/0201835959">The Mythical Man Month and Other Essays on Software Engineering</a></td>
<td style="text-align: center;"><a href="http://www.amazon.co.uk/Code-Hidden-Language-2nd-DV-Undefined/dp/0735611319" target="_blank">Code: The Hidden Language</a></td>
</tr>
</tbody>
</table>
<p><strong>Did you read one of these books? Help me prioritize the list by telling your opinion about that book.<br />
</strong></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=HPlCpviEgsw:Y8X6f6MZrkI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=HPlCpviEgsw:Y8X6f6MZrkI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=HPlCpviEgsw:Y8X6f6MZrkI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=HPlCpviEgsw:Y8X6f6MZrkI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=HPlCpviEgsw:Y8X6f6MZrkI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=HPlCpviEgsw:Y8X6f6MZrkI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=HPlCpviEgsw:Y8X6f6MZrkI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=HPlCpviEgsw:Y8X6f6MZrkI:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=HPlCpviEgsw:Y8X6f6MZrkI:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=HPlCpviEgsw:Y8X6f6MZrkI:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=HPlCpviEgsw:Y8X6f6MZrkI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=HPlCpviEgsw:Y8X6f6MZrkI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=HPlCpviEgsw:Y8X6f6MZrkI:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=TzevzKxY174" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://victorhurdugaci.com/part-of-my-plan-books/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>To visualize or not to visualize</title>
		<link>http://victorhurdugaci.com/to-visualize-or-not-to-visualize/</link>
		<comments>http://victorhurdugaci.com/to-visualize-or-not-to-visualize/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 21:01:02 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[VSImageVisualizer]]></category>
		<category><![CDATA[Debug Visualizer]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://victorhurdugaci.com/?p=1627</guid>
		<description><![CDATA[VSImageVisualizer is one of my free open-source projects. Basically, it is debug visualizer for images for Visual Studio 2008 that allows developers to inspect the graphical representation of Image objects while in Debug mode.
Check the project page for more info.
]]></description>
			<content:encoded><![CDATA[<p>VSImageVisualizer is one of my free open-source projects. Basically, it is debug visualizer for images for Visual Studio 2008 that allows developers to inspect the graphical representation of Image objects while in Debug mode.</p>
<p>Check the <a href="http://victorhurdugaci.com/projects/vsimagevisualizer/">project page</a> for more info.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=xTnnim0QMZk:Z9_465vsRsM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=xTnnim0QMZk:Z9_465vsRsM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=xTnnim0QMZk:Z9_465vsRsM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=xTnnim0QMZk:Z9_465vsRsM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=xTnnim0QMZk:Z9_465vsRsM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=xTnnim0QMZk:Z9_465vsRsM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=xTnnim0QMZk:Z9_465vsRsM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=xTnnim0QMZk:Z9_465vsRsM:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=xTnnim0QMZk:Z9_465vsRsM:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=xTnnim0QMZk:Z9_465vsRsM:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=xTnnim0QMZk:Z9_465vsRsM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=xTnnim0QMZk:Z9_465vsRsM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=xTnnim0QMZk:Z9_465vsRsM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=TzevzKxY174" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://victorhurdugaci.com/to-visualize-or-not-to-visualize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>11-11-11-11 Contest Winners</title>
		<link>http://victorhurdugaci.com/11-contest-winners/</link>
		<comments>http://victorhurdugaci.com/11-contest-winners/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 15:10:21 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Contest]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://victorhurdugaci.com/?p=1595</guid>
		<description><![CDATA[The winners of the contest are:
1st place (HandyBackup Professional): Timotei Dolean
2nd place (HandyBackup Standard): tisi, Ursul
Winners: please check your e-mail Inbox and Junk folder.
]]></description>
			<content:encoded><![CDATA[<p>The winners of the contest are:</p>
<h3>1<sup>st</sup> place (HandyBackup Professional):<a href="http://victorhurdugaci.com/11-contest/?cp=1#comment-974" target="_blank"> Timotei Dolean</a></h3>
<p>2<sup>nd</sup> place (HandyBackup Standard): <a href="http://victorhurdugaci.com/11-contest/?cp=1#comment-976" target="_blank">tisi</a>, <a href="http://victorhurdugaci.com/11-contest/?cp=1#comment-987" target="_blank">Ursul</a></p>
<p>Winners: please check your e-mail Inbox and Junk folder.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=p4p5ZLLaNa0:eYWBGZ1pLDA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=p4p5ZLLaNa0:eYWBGZ1pLDA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=p4p5ZLLaNa0:eYWBGZ1pLDA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=p4p5ZLLaNa0:eYWBGZ1pLDA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=p4p5ZLLaNa0:eYWBGZ1pLDA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=p4p5ZLLaNa0:eYWBGZ1pLDA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=p4p5ZLLaNa0:eYWBGZ1pLDA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=p4p5ZLLaNa0:eYWBGZ1pLDA:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=p4p5ZLLaNa0:eYWBGZ1pLDA:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=p4p5ZLLaNa0:eYWBGZ1pLDA:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=p4p5ZLLaNa0:eYWBGZ1pLDA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=p4p5ZLLaNa0:eYWBGZ1pLDA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=p4p5ZLLaNa0:eYWBGZ1pLDA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=TzevzKxY174" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://victorhurdugaci.com/11-contest-winners/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>11-11-11-11 Contest</title>
		<link>http://victorhurdugaci.com/11-contest/</link>
		<comments>http://victorhurdugaci.com/11-contest/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 11:00:59 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Contest]]></category>
		<category><![CDATA[Competition]]></category>
		<category><![CDATA[HandyBackup]]></category>
		<category><![CDATA[Prize]]></category>

		<guid isPermaLink="false">http://victorhurdugaci.com/?p=1542</guid>
		<description><![CDATA[



First Place
(Handy Backup Professional &#8211; $99)

Handy Backup Professional is an advanced backup software designed for small and medium businesses. It extends functionality of the Standard edition with the following functions:

Backup to SFTP servers
Image backup
Database backup via ODBC connectivity



2 x Second Place
(Handy Backup Standard &#8211; $39)

Handy Backup Standard is a simple PC backup and data synchronization [...]]]></description>
			<content:encoded><![CDATA[<table style="border-width: 1px; border-color:#000000;border-style: solid;" border="0" width="100%" bgcolor="#f8f8f8">
<tbody>
<tr valign="top">
<td width="50%">
<h3 style="text-align: center;">First Place<br />
(Handy Backup Professional &#8211; $99)</h3>
<h3 style="text-align: center;"><img class="  alignright" title="Handy Backup Professional" src="http://www.handybackup.net/templates/handy/images/handybackup-professional.gif" alt="pro" width="85" height="108" /></h3>
<p style="text-align: justify;">Handy Backup Professional is an advanced backup software designed for small and medium businesses. It extends functionality of the Standard edition with the following functions:</p>
<ul style="text-align: justify;">
<li>Backup to SFTP servers</li>
<li>Image backup</li>
<li style="text-align: justify;">Database backup via ODBC connectivity</li>
</ul>
</td>
<td width="50%">
<h3 style="text-align: center;">2 x Second Place<br />
(Handy Backup Standard &#8211; $39)</h3>
<h3 style="text-align: center;"><img class=" alignright" title="Handy Backup Standard" src="http://www.handybackup.net/templates/handy/images/handybackup-standard.gif" alt="standard" width="85" height="108" /></h3>
<p style="text-align: justify;">Handy Backup Standard is a simple PC backup and data synchronization utility for home and small office. It lets you easily back up all specifics of your system and your favorite applications:</p>
<ul style="text-align: justify;">
<li>Outlook backup</li>
<li>My Documents backup</li>
<li>Desktop backup</li>
<li>Windows Registry backup</li>
<li>Individual files and folders backup</li>
<li style="text-align: justify;">Program settings, playlists, skins, etc.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p style="text-align: justify;">The <strong>rules </strong>of the contest are simple:</p>
<ul style="text-align: justify;">
<li>Write here (as a comment) or on another site (with link to this post) the most unusual way in which you could lose your data.</li>
<li>The text must be written in English.</li>
</ul>
<p style="text-align: justify;">Contest <strong>period</strong>:</p>
<ul style="text-align: justify;">
<li>Starts on October 27<sup>th</sup>, 2009 at 11:11 AM GMT</li>
<li>Ends on November 11<sup>th</sup>, 2009 at 11:11 AM GMT</li>
</ul>
<p>Why<strong> 11-11-11-11</strong>?</p>
<ul>
<li>Because the contest ends on 11/11 at 11:11.</li>
</ul>
<p><strong>Prizes:</strong></p>
<ul>
<li>Handy Backup Professional license</li>
<li>2 x Handy Backup Standard license</li>
</ul>
<p>Winning <strong>conditions</strong>:</p>
<ul>
<li>The best 3 texts win.</li>
</ul>
<p style="text-align: justify;"><strong>Winners </strong>will be announced on November 12th.</p>
<p style="text-align: justify;">Reviews of Handy Backup:</p>
<ul style="text-align: justify;">
<li><a href="http://www.softpedia.com/reviews/windows/Handy-Backup-Review-33128.shtml" target="_blank">Review 1</a></li>
<li style="text-align: justify;"><a href="../handy-backup-review/" target="_blank">Review 2</a></li>
</ul>
<p style="text-align: justify;">Remarks:</p>
<ul style="text-align: justify;">
<li>If you post as comment make sure you enter a valid e-mail address so I can contact you in case of winning.</li>
<li>If you post on another site make sure there are some contact details there.</li>
</ul>
<p><span id="more-1542"></span><br />
!!The contest is now closed!!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=m3VoRtAr_z0:bhnvBqnzDoM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=m3VoRtAr_z0:bhnvBqnzDoM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=m3VoRtAr_z0:bhnvBqnzDoM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=m3VoRtAr_z0:bhnvBqnzDoM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=m3VoRtAr_z0:bhnvBqnzDoM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=m3VoRtAr_z0:bhnvBqnzDoM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=m3VoRtAr_z0:bhnvBqnzDoM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=m3VoRtAr_z0:bhnvBqnzDoM:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=m3VoRtAr_z0:bhnvBqnzDoM:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=m3VoRtAr_z0:bhnvBqnzDoM:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=m3VoRtAr_z0:bhnvBqnzDoM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=m3VoRtAr_z0:bhnvBqnzDoM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=m3VoRtAr_z0:bhnvBqnzDoM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=TzevzKxY174" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://victorhurdugaci.com/11-contest/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Handy Backup Review</title>
		<link>http://victorhurdugaci.com/handy-backup-review/</link>
		<comments>http://victorhurdugaci.com/handy-backup-review/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 09:52:07 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Data Protection]]></category>
		<category><![CDATA[Handy Backup]]></category>
		<category><![CDATA[Novosoft]]></category>

		<guid isPermaLink="false">http://victorhurdugaci.com/?p=1507</guid>
		<description><![CDATA[The worst thing can happen is to loose all you the pictures you made in the last 2 years or all the customer information you gathered in the last 5 days. These kind of scenarios can happen to anyone and unless you create a duplicate of your data (a backup) you cannot recover it. There [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The worst thing can happen is to loose all you the pictures you made in the last 2 years or all the customer information you gathered in the last 5 days. These kind of scenarios can happen to anyone and unless you create a duplicate of your data (a backup) you cannot recover it. There are many ways in which data can be accidentally destroyed:</p>
<ul style="text-align: justify;">
<li>Hardware failure</li>
<li>Software failure</li>
<li>Accidents (fire, water, earth quake)</li>
<li>Theft</li>
</ul>
<p style="text-align: justify;">Handy Backup from Novosoft is a solution that can help in this unfortunate situations (if is used prior to those events :) ). Unlike most other backup software out there, Handy Backup doesn’t treat your data like faceless chunks of memory. It features a complete, extensible plug-in-based system and a variety of plug-ins designed to back up settings, playlists, tweaks and preferences. New plugins care be created with basic XML knowledge.</p>
<p style="text-align: center;"><a href="http://victorhurdugaci.com/wp-content/uploads/2009/10/HandyBackup04.jpg" rel="lightbox[1507]"><img class="aligncenter size-full wp-image-1518" title="HandyBackup04" src="http://victorhurdugaci.com/wp-content/uploads/2009/10/HandyBackup04.jpg" alt="HandyBackup04" width="654" height="385" /></a></p>
<p><span id="more-1507"></span></p>
<p style="text-align: justify;">As expected, <a href="http://www.handybackup.net" target="_blank">Handy Backup</a> can:</p>
<ul style="text-align: justify;">
<li>Create backup, restore and synchronization tasks</li>
<li>Schedule tasks (hourly, daily, monthly)</li>
<li>Backup of different supports (depending on the version you have): Local Disk, FTP, SFTP, CD, DVD, Blu-Ray, Online Account</li>
<li>Create full or incremental backup with or without compression and encryption</li>
</ul>
<p style="text-align: justify;"><a href="http://victorhurdugaci.com/wp-content/uploads/2009/10/HandyBackup01.jpg" rel="lightbox[1507]"><img class="alignright size-medium wp-image-1515" title="HandyBackup01" src="http://victorhurdugaci.com/wp-content/uploads/2009/10/HandyBackup01-300x176.jpg" alt="HandyBackup01" width="300" height="176" /></a>IT-experts can take advantage of extended feature set including disk image backup and database backup.  There are several plug-ins that can handle backup and restore of most popular DBMS including Microsoft SQL Server, Oracle database, IBM DB2 Data Server, Lotus Domino/Notes environment, and a common Database Backup plug-in that can be used for any ODBC-compatible databases. Also, there is a plug-in for backing up Microsoft Exchange Server stores.</p>
<p style="text-align: justify;">The interface is minimalistic and the application uses ~9 MB of RAM memory. Some might say that the interface is too old-style but I find it pleasant and it is really easy to access any function. However there are some language problems in the GUI &#8211; the English is not always correct.</p>
<p style="text-align: justify;">You can see the difference between HandyBackup versions on the <a href="http://www.handybackup.net/backup-comparisons.shtml" target="_blank">official website</a> or you can download a full-featured 30-days trial by clicking the following link <a href="http://www.handybackup.net/downloads/handybackup-setup.msi" target="_blank">download Handy Backup</a>.</p>
<p style="text-align: center;"><a href="http://victorhurdugaci.com/wp-content/uploads/2009/10/HandyBackup02.jpg" rel="lightbox[1507]"><img class="alignnone size-medium wp-image-1516" title="HandyBackup02" src="http://victorhurdugaci.com/wp-content/uploads/2009/10/HandyBackup02-300x176.jpg" alt="HandyBackup02" width="300" height="176" /></a> <a href="http://victorhurdugaci.com/wp-content/uploads/2009/10/HandyBackup03.jpg" rel="lightbox[1507]"><img class="alignnone size-medium wp-image-1517" title="HandyBackup03" src="http://victorhurdugaci.com/wp-content/uploads/2009/10/HandyBackup03-300x176.jpg" alt="HandyBackup03" width="300" height="176" /></a></p>
<table border="1">
<tbody>
<tr>
<td width="50%" align="center"><strong>Pros</strong></td>
<td width="50%" align="center"><strong>Cons</strong></td>
</tr>
<tr>
<td width="50%">Slim interface</td>
<td width="50%">Not 100% correct English</td>
</tr>
<tr>
<td width="50%">Plugins</td>
<td width="50%">Sometime the CPU usage goes to 100% with no reason</td>
</tr>
<tr>
<td width="50%">Support for database backup</td>
<td width="50%">No support for stack backups/versioning &#8211; maybe in a future version?</td>
</tr>
<tr>
<td style="text-align:center" colspan="2">Final grade: <strong>9/10</strong></td>
</tr>
</tbody>
</table>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=e0hLfS_uwHQ:EveobHh_IVE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=e0hLfS_uwHQ:EveobHh_IVE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=e0hLfS_uwHQ:EveobHh_IVE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=e0hLfS_uwHQ:EveobHh_IVE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=e0hLfS_uwHQ:EveobHh_IVE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=e0hLfS_uwHQ:EveobHh_IVE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=e0hLfS_uwHQ:EveobHh_IVE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=e0hLfS_uwHQ:EveobHh_IVE:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=e0hLfS_uwHQ:EveobHh_IVE:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=e0hLfS_uwHQ:EveobHh_IVE:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=e0hLfS_uwHQ:EveobHh_IVE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=e0hLfS_uwHQ:EveobHh_IVE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=e0hLfS_uwHQ:EveobHh_IVE:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=TzevzKxY174" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://victorhurdugaci.com/handy-backup-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tip #7: VMWare Unity View</title>
		<link>http://victorhurdugaci.com/tip-7-vmware-unity-view/</link>
		<comments>http://victorhurdugaci.com/tip-7-vmware-unity-view/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 19:12:32 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Xp]]></category>

		<guid isPermaLink="false">http://victorhurdugaci.com/?p=1493</guid>
		<description><![CDATA[I just found a really cool feature in VMWare Workstation 6.5.3. It is called &#8220;Unity View&#8221; and basically allows windows from a virtual machine to appear as windows in the host machine.
In the example pictures you can see that I have a host running Windows 7, a unity windows from a Windows Xp guest and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I just found a really cool feature in VMWare Workstation 6.5.3. It is called &#8220;Unity View&#8221; and basically allows windows from a virtual machine to appear as windows in the host machine.</p>
<p style="text-align: justify;">In the example pictures you can see that I have a host running Windows 7, a unity windows from a Windows Xp guest and two windows from a Fedora guest (Picture 1). The best part is that you can actually see those windows in your taskbar and manipulate them as regular windows &#8211; you can use the Aero switch to switch between applications (Picture 2 &amp; 3). However I found a minor bug, the Aero Peek feature in Windows 7 is not working with the unity windows.</p>
<p style="text-align: justify;">Least but not last you get access to the start menu of the guests (Picture 4).</p>
<p style="text-align:center"><a href="http://victorhurdugaci.com/wp-content/uploads/2009/10/Unity01.jpg" rel="lightbox[1493]"><img class="alignnone size-thumbnail wp-image-1497" title="Unity01" src="http://victorhurdugaci.com/wp-content/uploads/2009/10/Unity01-150x93.jpg" alt="Unity01" width="150" height="93" /></a> <a href="http://victorhurdugaci.com/wp-content/uploads/2009/10/Unity02.jpg" rel="lightbox[1493]"><img class="alignnone size-thumbnail wp-image-1498" title="Unity02" src="http://victorhurdugaci.com/wp-content/uploads/2009/10/Unity02-150x93.jpg" alt="Unity02" width="150" height="93" /></a> <a href="http://victorhurdugaci.com/wp-content/uploads/2009/10/Unity03.jpg" rel="lightbox[1493]"><img class="alignnone size-thumbnail wp-image-1499" title="Unity03" src="http://victorhurdugaci.com/wp-content/uploads/2009/10/Unity03-150x93.jpg" alt="Unity03" width="150" height="93" /></a> <a href="http://victorhurdugaci.com/wp-content/uploads/2009/10/Unity04.jpg" rel="lightbox[1493]"><img class="alignnone size-thumbnail wp-image-1500" title="Unity04" src="http://victorhurdugaci.com/wp-content/uploads/2009/10/Unity04-150x93.jpg" alt="Unity04" width="150" height="93" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=RGhsi7uc6sg:KSiUma-I60Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=RGhsi7uc6sg:KSiUma-I60Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=RGhsi7uc6sg:KSiUma-I60Y:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=RGhsi7uc6sg:KSiUma-I60Y:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=RGhsi7uc6sg:KSiUma-I60Y:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=RGhsi7uc6sg:KSiUma-I60Y:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=RGhsi7uc6sg:KSiUma-I60Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=RGhsi7uc6sg:KSiUma-I60Y:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=RGhsi7uc6sg:KSiUma-I60Y:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=RGhsi7uc6sg:KSiUma-I60Y:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=RGhsi7uc6sg:KSiUma-I60Y:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=RGhsi7uc6sg:KSiUma-I60Y:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=RGhsi7uc6sg:KSiUma-I60Y:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=TzevzKxY174" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://victorhurdugaci.com/tip-7-vmware-unity-view/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Spell check MSDN fail</title>
		<link>http://victorhurdugaci.com/spell-check-msdn-fail/</link>
		<comments>http://victorhurdugaci.com/spell-check-msdn-fail/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 08:59:43 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Fail]]></category>
		<category><![CDATA[MSDN]]></category>
		<category><![CDATA[Spell Check]]></category>

		<guid isPermaLink="false">http://victorhurdugaci.com/?p=1484</guid>
		<description><![CDATA[Check out this fail:

Don&#8217;t worry if you can&#8217;t understand it. Is just that you are not geek enough. :)
]]></description>
			<content:encoded><![CDATA[<p>Check out this fail:</p>
<p style="text-align: center;"><a href="http://victorhurdugaci.com/wp-content/uploads/2009/10/MSDN_Fail.png" rel="lightbox[1484]"><img class="size-full wp-image-1485 aligncenter" title="MSDN_Fail" src="http://victorhurdugaci.com/wp-content/uploads/2009/10/MSDN_Fail.png" alt="MSDN_Fail" width="653" height="349" /></a></p>
<p>Don&#8217;t worry if you can&#8217;t understand it. Is just that you are not geek enough. :)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=TvjRBs0xPgA:x0eO0xoU95I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=TvjRBs0xPgA:x0eO0xoU95I:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=TvjRBs0xPgA:x0eO0xoU95I:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=TvjRBs0xPgA:x0eO0xoU95I:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=TvjRBs0xPgA:x0eO0xoU95I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=TvjRBs0xPgA:x0eO0xoU95I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=TvjRBs0xPgA:x0eO0xoU95I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=TvjRBs0xPgA:x0eO0xoU95I:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=TvjRBs0xPgA:x0eO0xoU95I:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=TvjRBs0xPgA:x0eO0xoU95I:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=TvjRBs0xPgA:x0eO0xoU95I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?i=TvjRBs0xPgA:x0eO0xoU95I:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?a=TvjRBs0xPgA:x0eO0xoU95I:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ExNihiloNihilFit?d=TzevzKxY174" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://victorhurdugaci.com/spell-check-msdn-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic page generated in 0.950 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-01-28 18:26:42 -->
