<?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>Ex nihilo nihil fit &#187; Misc</title> <atom:link href="http://victorhurdugaci.com/category/misc/feed/" rel="self" type="application/rss+xml" /><link>http://victorhurdugaci.com</link> <description>Victor Hurdugaci&#039;s playground</description> <lastBuildDate>Tue, 29 Nov 2011 07:38:40 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=</generator> <item><title>Spam, UPS and coincidences</title><link>http://victorhurdugaci.com/spam-ups-and-coincidences/</link> <comments>http://victorhurdugaci.com/spam-ups-and-coincidences/#comments</comments> <pubDate>Wed, 17 Mar 2010 12:40:03 +0000</pubDate> <dc:creator>Victor</dc:creator> <category><![CDATA[Misc]]></category> <category><![CDATA[Coincidence]]></category> <category><![CDATA[Spam]]></category> <category><![CDATA[UPS]]></category> <guid
isPermaLink="false">http://victorhurdugaci.com/?p=1916</guid> <description><![CDATA[Yesterday I registered on UPS&#8217; website to send a package. Today I received an e-mail called &#8220;UPS Delivery Problem NR.1644339?&#8221; from an ups.com e-mail address (!) saying that the delivery failed because of inexact address. I was supposed to print the attached form and go to their office to pick my package. There are a [...]]]></description> <content:encoded><![CDATA[<p
style="text-align: justify;">Yesterday I registered on UPS&#8217; website to send a package. Today I received an e-mail called &#8220;UPS Delivery Problem NR.1644339?&#8221; from an ups.com e-mail address (!) saying that the delivery failed because of inexact address. I was supposed to print the attached form and go to their office to pick my package.</p><p
style="text-align: justify;">There are a lot of reasons why the e-mail is spam:</p><ul
style="text-align: justify;"><li>The e-mail got into the junk folder</li><li>I was unable to download the attachment because the webmail found a virus in it (good job Hotmail!)</li><li>The e-mail was saying something about my delivery from January</li><li>UPS don&#8217;t ask you to go their office to pick the package</li><li>The message was sent to &#8220;Victor Harris&#8221;</li></ul><p
style="text-align: justify;">The coincidence is that today the package should have arrived so, initially, I thought is a valid message. There might be a security breach in UPS&#8217; system that allows others to track packages. I never got such an e-mail before registering and sending.</p><p
style="text-align: justify;">What is even more interesting is that I registered with one e-mail address and I got the spam on another one. Coincidence or consequence?</p> ]]></content:encoded> <wfw:commentRss>http://victorhurdugaci.com/spam-ups-and-coincidences/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>The Game of Life</title><link>http://victorhurdugaci.com/the-game-of-life/</link> <comments>http://victorhurdugaci.com/the-game-of-life/#comments</comments> <pubDate>Sun, 14 Feb 2010 19:55:24 +0000</pubDate> <dc:creator>Victor</dc:creator> <category><![CDATA[Artificial Intelligence]]></category> <category><![CDATA[Misc]]></category> <category><![CDATA[Code]]></category> <category><![CDATA[Fun]]></category> <category><![CDATA[Game]]></category> <category><![CDATA[GameOfLive]]></category> <category><![CDATA[MFC]]></category> <guid
isPermaLink="false">http://victorhurdugaci.com/?p=1746</guid> <description><![CDATA[A few days ago I was getting bored and decided to to something fun. Yes, you can get bored at TUDelft&#8230; Well, actually you don&#8217;t get bored, you get sick of all the work you have to do (apologies to anyone offended by this). So in a quest of something fun but still productive I [...]]]></description> <content:encoded><![CDATA[<p
style="text-align: justify;">A few days ago I was getting bored and decided to to something fun. Yes, you can get bored at TUDelft&#8230; Well, actually you don&#8217;t get bored, you get sick of all the work you have to do (apologies to anyone offended by this). So in a quest of something fun but still productive I found Conway&#8217;s Game of Life.</p><h2>Game Of Life</h2><p
style="text-align: justify;"><img
class="alignright size-full wp-image-1747" title="GameOfLifeWorld" src="http://victorhurdugaci.com/wp-content/uploads/2010/02/GameOfLifeWorld.png" alt="" width="207" height="205" />The Game of Life is not really a game because no one plays it. It is a cellular automaton, a zero player game in which the only human interaction is the initial setup. Then the game evolves by itself under the constraint of some rules, until it gets to a stable state.</p><p
style="text-align: justify;">The game&#8217;s world is a 2D grid in which each node is a place that can hold one individual. Each individual can be dead or alive. Basically you can see the world as a black, white grid in which black represents living individuals and white dead ones (the figure on right).</p><p
style="text-align: justify;">Each grid represents a single generation. In order to get a new generation the current one must evolve. This process implies that every individual (dead or alive) node will be evaluated and, based on the result, will survive, die or resurrect. The evaluation function takes in consideration the number of alive neighbors a node has (a node can have up to 8 neighbors):</p><ol
style="text-align: justify;"><li>If one individual has less than two neighbors alive, it will be dead in the next generation because of underpopulation.</li><li>If one individual has more than three neighbors alive, it will be dead in the next generation because of overcrowding.</li><li>If one individual is alive and has two or three neighbors alive, it will survive in the next generation.</li><li>If one individual is dead and has three neighbors alive, it will resurrect (be alive) in the next generation.</li></ol><p
style="text-align: justify;"><img
class="alignright" title="Stable population" src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Game_of_life_block_with_border.svg/66px-Game_of_life_block_with_border.svg.png" alt="" width="66" height="66" />That&#8217;s all. Based on this transition, each individual gets from one state to another, from generation to generation. There are two situations in which no more changes will be made between generations:</p><ol
style="text-align: justify;"><li>All individuals are dead.</li><li>All individuals are in a stable state from which they cannot die. The square on right is a stable population that cannot change because all alive individuals have two or three neighbors and all dead individuals have at most two neighbors alive so they cannot resurrect.</li></ol><p
style="text-align: justify;">The fun part was to implement this myself. I created a small MFC application that is able to load files with predefined configuration or to generate random populations up to 10.000 individuals. If you download the sample be aware it will crash if you load invalid files and do strange things &#8211; it is just a prototype.</p><p><span
id="more-1746"></span></p><h2>Demo</h2><div
style="text-align: center"> <object
width="425" height="344" type="application/x-shockwave-flash" data="http://www.youtube.com/v/aJTKfby8qfE"><param
name="movie" value="http://www.youtube.com/v/aJTKfby8qfE" /></object></div><h2>Code and download</h2><p
style="text-align: justify;">If you want just to &#8216;play&#8217; then you can download the binary file <a
href="http://victorhurdugaci.com/download/GameOfLife_Binary.zip"><img
src="http://victorhurdugaci.com/img/download-icon.jpg" alt="Download Icon" width="24" height="24" />GameOfLife Binary (67.06 KB)</a> (the archive also includes some great samples).</p><p
style="text-align: justify;">For those who love programming, the source code is also available. Technical details:</p><ul
style="text-align: justify;"><li>In order to prevent flickering the drawing is double buffered.</li><li>There is a small memory leak (4K every few seconds) but I am too tired to look now for it &#8211; will check it sometime later or if you find it, let me know.</li><li>The &#8216;gol&#8217; files, that describe a predefined world, contain on the first line the width of the world, on the second the height and on the next lines the world where each node can be 0 or 1.</li><li>The solution is for Visual Studio 2010.</li></ul><p
style="text-align: justify;">The archive containing source code: <a
href="http://victorhurdugaci.com/download/GameOfLife_Code.zip"><img
src="http://victorhurdugaci.com/img/download-icon.jpg" alt="Download Icon" width="24" height="24" />GameOfLife Code (132.88 KB)</a>.</p><p
style="text-align: justify;">Have fun and please provide feedback!</p><h2 style="text-align: justify;">More info and references</h2><ul><li><a
href="http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life" target="_blank">More information about Game of Life</a></li><li><a
href="http://en.wikipedia.org/wiki/Cellular_automaton" target="_blank">More information about cellular automatons</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://victorhurdugaci.com/the-game-of-life/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Software That You Should Install</title><link>http://victorhurdugaci.com/software-that-you-should-install/</link> <comments>http://victorhurdugaci.com/software-that-you-should-install/#comments</comments> <pubDate>Tue, 26 May 2009 19:34:45 +0000</pubDate> <dc:creator>Victor</dc:creator> <category><![CDATA[Misc]]></category> <category><![CDATA[News]]></category> <category><![CDATA[Live Writer]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Office Mobile]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[TweetDeck]]></category> <category><![CDATA[Visual Studio]]></category> <guid
isPermaLink="false">http://victorhurdugaci.com/?p=1012</guid> <description><![CDATA[Here is a list of what I recently installed or I plan to install. It is a list of software (updates) that you might consider useful: Windows Vista/2008 Service Pack 2 It was released a few hours ago for general audience and it brings some important fixes. I think is a must-have. It is a [...]]]></description> <content:encoded><![CDATA[<p>Here is a list of what I recently installed or I plan to install. It is a list of software (updates) that you might consider useful:</p><h3>Windows Vista/2008 Service Pack 2</h3><p>It was released a few hours ago for general audience and it brings some important fixes. <span
style="text-decoration: line-through;">I think is a must-have.</span> It is a must have and now can be downloaded through Windows Update.</p><p>I have just installed it through Windows Update. It took about 30 minutes to complete (download + install).</p><ul><li><a
href="http://www.microsoft.com/downloads/details.aspx?FamilyID=a4dd31d5-f907-4406-9012-a5c3199ea2b3&amp;DisplayLang=en" target="_blank">x86-based systems download link</a></li><li><a
href="http://www.microsoft.com/downloads/details.aspx?FamilyID=656c9d4a-55ec-4972-a0d7-b1a6fedf51a7&amp;DisplayLang=en" target="_blank">x64-based systems download link.</a></li></ul><p
style="text-align: center;"><a
href="http://victorhurdugaci.com/wp-content/uploads/2009/05/vistasp2.jpg" target="_blank"></a><a
href="http://victorhurdugaci.com/wp-content/uploads/2009/05/vistasp2.jpg" target="_blank"><img
class="size-full wp-image-1023 aligncenter" title="vistasp2" src="http://victorhurdugaci.com/wp-content/uploads/2009/05/vistasp2.jpg" alt="vistasp2" width="635" height="500" /></a></p><h3>Visual Studio 2010 Beta</h3><p>The lastest version of the well known IDE brings a lot of new features: editor completely written in WPF, a more eye candy user interface, .NET Framework 4 (dynamic types for C#, named parameters, implicit values, etc.). It is available for free and you can download either Professional or the Team Suite edition (I recommend the last one).</p><ul><li><a
href="http://www.microsoft.com/visualstudio/en-us/products/2010/default.mspx" target="_blank">Download link.</a></li></ul><p><a
href="http://victorhurdugaci.com/wp-content/uploads/2009/05/vs2010beta.jpg" target="_blank"><img
style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="VS2010Beta" src="http://victorhurdugaci.com/wp-content/uploads/2009/05/vs2010beta-thumb.jpg" border="0" alt="VS2010Beta" width="644" height="439" /></a></p><h3>Office Mobile 6.1 Upgrade</h3><p><span
id="more-1012"></span><br
/> If you have a Windows Mobile (5, 6 or 6.1) phone that came with Office Mobile you should consider this upgrade (it is free!). After installing the update Word, Excel and PowerPoint mobile will be able to open OpenXML files (*.docx, *.xslx and *.pptx).</p><p>The update is about 3 MB and even if Office in installed in phone’s ROM you can choose to update it and use the storage card for the new files.</p><ul><li><a
href="http://www.microsoft.com/windowsmobile/en-us/downloads/microsoft/office-mobile-upgrade.mspx?productid=830" target="_blank">Download link.</a></li></ul><h3><strong></strong></h3><h3>TweetDeck</h3><p>Using Twitter? Then you should install this software to manage your twits. It allows you to view, send, reply, retweet, do whatever you want. It runs on the local machine and it is based on Adobe AIR.</p><ul><li><a
href="http://www.tweetdeck.com" target="_blank">Download link.</a></li></ul><p><a
href="http://victorhurdugaci.com/wp-content/uploads/2009/05/tweetdeck.jpg" target="_blank"><img
style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="TweetDeck" src="http://victorhurdugaci.com/wp-content/uploads/2009/05/tweetdeck-thumb.jpg" border="0" alt="TweetDeck" width="614" height="484" /></a></p><h3><strong></strong></h3><h3>Live Writer</h3><p>It is annoying to go every time on the administration page on your blog to write something new. Using Live Writer you can write posts directly from your desktop in a editor. The cool thing is that it makes a preview of your post just like it will appear on the blog.</p><p>With it you can manage multiple blogs, you can save/open posts/drafts for editing, you can insert media and you have many formatting options.</p><p>It is included in the “Live Essentials” package.</p><ul><li><a
href="http://get.live.com" target="_blank">Download link.</a></li></ul><p><a
href="http://victorhurdugaci.com/wp-content/uploads/2009/05/livewriter.jpg" target="_blank"><img
style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="LiveWriter" src="http://victorhurdugaci.com/wp-content/uploads/2009/05/livewriter-thumb.jpg" border="0" alt="LiveWriter" width="644" height="462" /></a></p> ]]></content:encoded> <wfw:commentRss>http://victorhurdugaci.com/software-that-you-should-install/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>GeekMeet Brasov #3</title><link>http://victorhurdugaci.com/geekmeet-brasov-3/</link> <comments>http://victorhurdugaci.com/geekmeet-brasov-3/#comments</comments> <pubDate>Thu, 14 May 2009 12:31:45 +0000</pubDate> <dc:creator>Victor</dc:creator> <category><![CDATA[Misc]]></category> <category><![CDATA[News]]></category> <guid
isPermaLink="false">http://victorhurdugaci.com/?p=917</guid> <description><![CDATA[We are happy to announce the third GeekMeet meeting in Brasov, Romania. We learned a lot from the previous two events and we made some significant changes: Sending e-mails in order to join was not a good idea because e-mails are hard to synchronize amongst the organizing team. Now there is a form that must [...]]]></description> <content:encoded><![CDATA[<p
style="text-align: justify;"><img
class="alignright size-full wp-image-920" title="gm-logo" src="http://victorhurdugaci.com/wp-content/uploads/2009/05/gm-logo.jpg" alt="gm-logo" width="136" height="73" />We are happy to announce the third GeekMeet meeting in Brasov, Romania.</p><p
style="text-align: justify;">We learned a lot from the previous two events and we made some significant changes:</p><ul
style="text-align: justify;"><li>Sending e-mails in order to join was not a good idea because e-mails are hard to synchronize amongst the organizing team. Now there is a form that must be filled in order to join the event.</li><li>We are collecting some data in order to improve future events. We want to know what attendees want to see on GeekMeet.</li><li>We are trying to bring important speakers from major companies like Adobe or Apple.</li></ul><p
style="text-align: justify;">Up to now we have three confirmed speakers: Laura Bularca who will talk about &#8220;Game Dev&#8221;, Mihai Dragan who will talk about &#8220;Research si creativitate&#8221; (Research and creativity) and Cornel Creanga from Adobe who will talk about &#8220;Rich Internet Applications&#8221;.</p><p
style="text-align: justify;">The event will take place on Saturday, May 30 in Okian library, Brasov.</p><p
style="text-align: justify;">For more details check the <a
href="http://geekmeet.ro/brasov/2009/05/12/geekmeet-brasov-3/" target="_blank">official announcement</a>.<br
/> To register to the event <a
href="http://spreadsheets.google.com/viewform?hl=en&amp;formkey=cnFVLVlUM3hoeDhQNXNPd0ozU1V5WVE6MA.." target="_blank">fill this form</a>.<br
/> You can also <a
href="http://twitter.com/GeekMeetRo" target="_blank">follow us on Twitter</a>.</p> ]]></content:encoded> <wfw:commentRss>http://victorhurdugaci.com/geekmeet-brasov-3/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Free C# book</title><link>http://victorhurdugaci.com/free-csharp-book/</link> <comments>http://victorhurdugaci.com/free-csharp-book/#comments</comments> <pubDate>Wed, 08 Apr 2009 14:59:09 +0000</pubDate> <dc:creator>Victor</dc:creator> <category><![CDATA[C#]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Misc]]></category> <category><![CDATA[eBook]]></category> <category><![CDATA[Free]]></category> <guid
isPermaLink="false">http://victorhurdugaci.com/?p=737</guid> <description><![CDATA[RedGate is offering for free download the ebook &#8220;Illustrated C# 2008&#8243;. This book is interesting for beginners because it has a lot of drawings and diagrams that explain better the concepts described by text. It could be used by persons migrating from C++ or VB to C# or it could even be the support material [...]]]></description> <content:encoded><![CDATA[<p
style="text-align: justify;"><img
class="alignleft size-full wp-image-738" title="illustratedcsharp" src="http://victorhurdugaci.com/wp-content/uploads/2009/04/illustratedcsharp.gif" alt="illustratedcsharp" width="110" height="144" />RedGate is offering for free download the ebook &#8220;Illustrated C# 2008&#8243;.</p><p
style="text-align: justify;">This book is interesting for beginners because it has a lot of drawings and diagrams that explain better the concepts described by text. It could be used by persons migrating from C++ or VB to C# or it could even be the support material for a course.</p><p
style="text-align: justify;">In 730 pages the author, Daniel Solis offers a very visual approach – with lots of figures, diagrams and code samples – that will help you get to work with C# fast.</p><p
style="text-align: justify;">Go <a
href="http://www.red-gate.com/products/ants_profiler/boost_app_performance_ebook5.htm?utm_source=infoq&amp;utm_medium=textad&amp;utm_term=1506&amp;utm_content=boostappperf-ebook2&amp;utm_campaign=antsprofiler">here</a> to download your copy.</p> ]]></content:encoded> <wfw:commentRss>http://victorhurdugaci.com/free-csharp-book/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>GeekMeet Brasov #1 &#8211; Cloud Computing</title><link>http://victorhurdugaci.com/geekmeet-brasov-1-cloud-computing/</link> <comments>http://victorhurdugaci.com/geekmeet-brasov-1-cloud-computing/#comments</comments> <pubDate>Sun, 29 Mar 2009 13:11:30 +0000</pubDate> <dc:creator>Victor</dc:creator> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Misc]]></category> <category><![CDATA[News]]></category> <category><![CDATA[Brasov]]></category> <category><![CDATA[GeekMeet]]></category> <category><![CDATA[Presentation]]></category> <category><![CDATA[Windows Azure]]></category> <guid
isPermaLink="false">http://victorhurdugaci.com/?p=622</guid> <description><![CDATA[DISCLAIMER: This post contains Romanian words &#8211; sorry for those who do not understand them. Yesterday I attended the first GeekMeet presentation from Brasov, Romania. It was pretty exciting because I was one of the speakers. My general impression about this event was good. The organizers did their job well, with little mistakes &#8211; mistakes [...]]]></description> <content:encoded><![CDATA[<p
style="text-align: justify;"><em>DISCLAIMER: This post contains Romanian words &#8211; sorry for those who do not understand them.</em></p><p
style="text-align: justify;">Yesterday I attended the first <a
href="http://geekmeet.ro/brasov/2009/02/10/geekmeet-brasov-1/" target="_blank">GeekMeet presentation from Brasov</a>, Romania. It was pretty exciting because I was one of the speakers.</p><p
style="text-align: justify;">My general impression about this event was good. The organizers did their job well, with little mistakes &#8211; mistakes are inevitable for the first event :). The presentations were nice too; there were six:</p><ol
style="text-align: justify;"><li><a
href="http://mihaigheza.wordpress.com/2009/03/29/seo-kung-fu/" target="_blank">Mihai Gheza</a> &#8211; &#8220;SEO Kung Fu&#8221;<img
class="alignright size-full wp-image-623" title="geekmeet_logo" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/geekmeet_logo.png" alt="geekmeet_logo" width="162" height="86" /><br
/> He told us about SEO and what can we do to improve it.</li><li><a
href="http://victorhurdugaci.com" target="_self">Victor Hurdugaci</a> &#8211; &#8220;Cloud Computing &#8211; Lumea din nor&#8221;<br
/> My presentation.</li><li><a
href="http://www.openagile.ro/" target="_blank">Maria Diaconu</a> &#8211; Agile, Scrum, XP<br
/> A 30 minutes workshop about the basic idea behind Agile methodologies.</li><li><a
href="http://claudiu.gamulescu.ro/">Claudiu Gamulescu</a> &#8211; &#8220;eCommerce &#8211; Analiza de Criza&#8221;<br
/> A presentation about the effects of crysis on electronic commerce</li><li><a
href="http://www.vladgeorgescu.com/">Vlad Georgescu</a> &#8211; &#8220;Design Related&#8221;<br
/> Some general design related topics. Actually this presenation started an intresting debate about speculation and employment.</li><li><a
href="http://www.bobbyvoicu.ro/" target="_blank">Bobby Voicu</a><br
/> Bobby&#8217;s presentation did not have a name. I will copy what Mihai said, Bobby&#8217;s presentation was a &#8220;friendly preaching&#8221;.</li></ol><p
style="text-align: justify;">Mihai already uploaded his presentation. When the others will follow him I will update their links.</p><p
style="text-align: justify;">My presentation can be downloaded by click the following link: <a
href="http://victorhurdugaci.com/wp-content/uploads/2009/03/cloud-computing-geekmeet-2009-03-28.pptx">cloud-computing-geekmeet-2009-03-28</a>. It is about cloud computing, mainly focused on Microsoft Windows Azure. Because there were no feedback form &#8211; unfortunately  &#8211; I want to ask my visitors who attended the presentation to give some feedback (as a comment or by e-mail at contact [at] victorhurdugaci [dot] com).</p><p
style="text-align: justify;">I am still waiting for pictures. When some will be available I will upload them here.</p><p
style="text-align: justify;">See you on GeekMeet Brasov 2 (April 25 &#8211; same place, same hour).</p> ]]></content:encoded> <wfw:commentRss>http://victorhurdugaci.com/geekmeet-brasov-1-cloud-computing/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>My Spore Creature</title><link>http://victorhurdugaci.com/my-spore-creature/</link> <comments>http://victorhurdugaci.com/my-spore-creature/#comments</comments> <pubDate>Sun, 22 Mar 2009 14:52:11 +0000</pubDate> <dc:creator>Victor</dc:creator> <category><![CDATA[Misc]]></category> <category><![CDATA[Creature]]></category> <category><![CDATA[Evil]]></category> <category><![CDATA[Game]]></category> <category><![CDATA[Spore]]></category> <guid
isPermaLink="false">http://victorhurdugaci.com/?p=585</guid> <description><![CDATA[[Wikipedia] Spore is a multi-genre massive single-player online metaverse video game developed by Maxis and designed by Will Wright. It allows a player to control the development of a species from its beginnings as a unicellular organism, through development as an intelligent and social creature, to interstellar exploration as a spacefaring culture. It has drawn [...]]]></description> <content:encoded><![CDATA[<blockquote
style="text-align: justify;"><p><em><strong>[Wikipedia] Spore</strong> is a multi-genre massive single-player online metaverse video game developed by Maxis and designed by Will Wright. It allows a player to control the development of a species from its beginnings as a <span
class="mw-redirect">unicellular organism</span>, through development as an intelligent and social creature, to <span
class="mw-redirect">interstellar</span> exploration as a spacefaring culture. It has drawn wide attention for its massive scope, and its use of <span
class="mw-redirect">open-ended gameplay</span> and procedural generation.</em></p></blockquote><p
style="text-align: justify;">That&#8217;s what I am playing :D</p><p
style="text-align: justify;">See below some pictures of my evil (aggressive, carnivore) creature just before the Tribal Age:</p> <a
href='http://victorhurdugaci.com/my-spore-creature/cre_bfg001-07f062a2_ful/' title='cre_bfg001-07f062a2_ful'><img
width="150" height="93" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cre_bfg001-07f062a2_ful-150x93.png" class="attachment-thumbnail" alt="cre_bfg001-07f062a2_ful" title="cre_bfg001-07f062a2_ful" /></a> <a
href='http://victorhurdugaci.com/my-spore-creature/cre_bfg001-07f062a3_ful/' title='cre_bfg001-07f062a3_ful'><img
width="150" height="93" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cre_bfg001-07f062a3_ful-150x93.png" class="attachment-thumbnail" alt="cre_bfg001-07f062a3_ful" title="cre_bfg001-07f062a3_ful" /></a> <a
href='http://victorhurdugaci.com/my-spore-creature/cre_bfg001-07f062a4_ful/' title='cre_bfg001-07f062a4_ful'><img
width="150" height="93" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cre_bfg001-07f062a4_ful-150x93.png" class="attachment-thumbnail" alt="cre_bfg001-07f062a4_ful" title="cre_bfg001-07f062a4_ful" /></a> <a
href='http://victorhurdugaci.com/my-spore-creature/cre_bfg001-07f062a5_ful/' title='cre_bfg001-07f062a5_ful'><img
width="150" height="93" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cre_bfg001-07f062a5_ful-150x93.png" class="attachment-thumbnail" alt="cre_bfg001-07f062a5_ful" title="cre_bfg001-07f062a5_ful" /></a> <a
href='http://victorhurdugaci.com/my-spore-creature/cre_bfg001-07f062a8_ful-2/' title='cre_bfg001-07f062a8_ful'><img
width="150" height="93" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cre_bfg001-07f062a8_ful-150x93.png" class="attachment-thumbnail" alt="cre_bfg001-07f062a8_ful" title="cre_bfg001-07f062a8_ful" /></a> <a
href='http://victorhurdugaci.com/my-spore-creature/cre_bfg001-07f0629a_ful/' title='cre_bfg001-07f0629a_ful'><img
width="150" height="93" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cre_bfg001-07f0629a_ful-150x93.png" class="attachment-thumbnail" alt="cre_bfg001-07f0629a_ful" title="cre_bfg001-07f0629a_ful" /></a> <a
href='http://victorhurdugaci.com/my-spore-creature/cre_bfg001-07f0629b_ful/' title='cre_bfg001-07f0629b_ful'><img
width="150" height="93" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cre_bfg001-07f0629b_ful-150x93.png" class="attachment-thumbnail" alt="cre_bfg001-07f0629b_ful" title="cre_bfg001-07f0629b_ful" /></a> <a
href='http://victorhurdugaci.com/my-spore-creature/cre_bfg001-07f0629d_ful/' title='cre_bfg001-07f0629d_ful'><img
width="150" height="93" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cre_bfg001-07f0629d_ful-150x93.png" class="attachment-thumbnail" alt="cre_bfg001-07f0629d_ful" title="cre_bfg001-07f0629d_ful" /></a> <a
href='http://victorhurdugaci.com/my-spore-creature/cre_bfg001-07f0629e_ful/' title='cre_bfg001-07f0629e_ful'><img
width="150" height="93" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cre_bfg001-07f0629e_ful-150x93.png" class="attachment-thumbnail" alt="cre_bfg001-07f0629e_ful" title="cre_bfg001-07f0629e_ful" /></a> <a
href='http://victorhurdugaci.com/my-spore-creature/cre_bfg001-07f0629f_ful/' title='cre_bfg001-07f0629f_ful'><img
width="150" height="93" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cre_bfg001-07f0629f_ful-150x93.png" class="attachment-thumbnail" alt="cre_bfg001-07f0629f_ful" title="cre_bfg001-07f0629f_ful" /></a> <a
href='http://victorhurdugaci.com/my-spore-creature/cre_bfg001-07f06296_ful/' title='cre_bfg001-07f06296_ful'><img
width="150" height="93" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cre_bfg001-07f06296_ful-150x93.png" class="attachment-thumbnail" alt="cre_bfg001-07f06296_ful" title="cre_bfg001-07f06296_ful" /></a> <a
href='http://victorhurdugaci.com/my-spore-creature/cre_bfg001-07f06298_ful/' title='cre_bfg001-07f06298_ful'><img
width="150" height="93" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cre_bfg001-07f06298_ful-150x93.png" class="attachment-thumbnail" alt="cre_bfg001-07f06298_ful" title="cre_bfg001-07f06298_ful" /></a> ]]></content:encoded> <wfw:commentRss>http://victorhurdugaci.com/my-spore-creature/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Half an Hour Puzzle Solved</title><link>http://victorhurdugaci.com/half-an-hour-puzzle-solved/</link> <comments>http://victorhurdugaci.com/half-an-hour-puzzle-solved/#comments</comments> <pubDate>Mon, 16 Mar 2009 17:21:23 +0000</pubDate> <dc:creator>Victor</dc:creator> <category><![CDATA[Misc]]></category> <category><![CDATA[Half an Hour]]></category> <category><![CDATA[Wood Puzzle]]></category> <guid
isPermaLink="false">http://victorhurdugaci.com/?p=559</guid> <description><![CDATA[Here I promissed that I will post a picture of the Half an Hour Puzzle solved. Sorry but I forgot to do that. Better late than never: The solution is not here because it might ruin the fun of solving the puzzle. If you need it try to obtain it from the picture :-D (or [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://victorhurdugaci.com/half-an-hour-dayweek-puzzle/">Here</a> I promissed that I will post a picture of the Half an Hour Puzzle solved. Sorry but I forgot to do that.</p><p>Better late than never:</p><p
style="text-align: center;"><a
href="http://victorhurdugaci.com/wp-content/uploads/2009/03/cube.jpg"><img
class="aligncenter size-large wp-image-565" title="cube" src="http://victorhurdugaci.com/wp-content/uploads/2009/03/cube-1024x767.jpg" alt="cube" width="717" height="537" /></a></p><p><span
id="more-559"></span><br
/> The solution is not here because it might ruin the fun of solving the puzzle. If you need it try to obtain it from the picture :-D (or just leave a comment here with a valid e-mail and I will send it to you).</p> ]]></content:encoded> <wfw:commentRss>http://victorhurdugaci.com/half-an-hour-puzzle-solved/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>New Features in Office Live</title><link>http://victorhurdugaci.com/new-features-in-office-live/</link> <comments>http://victorhurdugaci.com/new-features-in-office-live/#comments</comments> <pubDate>Thu, 26 Feb 2009 18:06:00 +0000</pubDate> <dc:creator>Victor</dc:creator> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Misc]]></category> <category><![CDATA[New Features]]></category> <category><![CDATA[Office Live]]></category> <guid
isPermaLink="false">http://victorhurdugaci.com/?p=534</guid> <description><![CDATA[Microsoft introduced a new set of features in Office Live.  For those who don&#8217;t know what Office Live is: Office Live is like a lite cloud version of Share Point. It enables users to store, organize and share documents. There are four new big features: Support for folders. Now the workspaces can contain folders in [...]]]></description> <content:encoded><![CDATA[<p>Microsoft introduced a new set of features in Office Live. <a
href="http://victorhurdugaci.com/wp-content/uploads/2009/02/newfeatures.jpg"><img
class="alignright size-medium wp-image-535" title="newfeatures" src="http://victorhurdugaci.com/wp-content/uploads/2009/02/newfeatures-300x183.jpg" alt="newfeatures" width="300" height="183" /></a></p><p>For those who don&#8217;t know what Office Live is: Office Live is like a lite cloud version of Share Point. It enables users to store, organize and share documents.</p><p>There are four new big features:</p><ul><li><strong>Support for folders</strong>. Now the workspaces can contain folders in order to help us organize documents. I am really excited about this feature because I have also requested in through the feedback form. I am using Office Live a lot and I needed folders and subfolders.</li><li><strong>Cut/Copy/Paste</strong>. Now Office Live provides support for cutting/copying documents and pasting them in another folder/workspace.</li><li><strong>Increased storage space</strong>. The storage space increased to 5GB. That&#8217;s a looot. If you don&#8217;t think so just try to see how many word documents can you store in 5GB :)</li><li><strong>Eight new languages</strong>. The new languages also include Romanian (personally I prefer English but there are other who prefer their native language. The new languages are: Hungarian, Romanian, Lithuanian, Serbian Latin, Ukrainian, Slovak, Latvian and Slovenian.</li></ul> ]]></content:encoded> <wfw:commentRss>http://victorhurdugaci.com/new-features-in-office-live/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Best hosting?</title><link>http://victorhurdugaci.com/best-hosting/</link> <comments>http://victorhurdugaci.com/best-hosting/#comments</comments> <pubDate>Sat, 21 Feb 2009 17:19:30 +0000</pubDate> <dc:creator>Victor</dc:creator> <category><![CDATA[Misc]]></category> <category><![CDATA[News]]></category> <category><![CDATA[Best offer]]></category> <category><![CDATA[Hosting]]></category> <category><![CDATA[Lunar Pages]]></category> <guid
isPermaLink="false">http://victorhurdugaci.com/?p=505</guid> <description><![CDATA[Many people asked me about hosting and where should they host websites. When I created this blog I&#8217;ve spent a few days searching the Internet for the best offer. What I found (and bought) was the Basic Plan from Lunar Pages. For just $4.95/month they offer: Set Up* FREE! Free Domain Name* Included Storage Unlimited [...]]]></description> <content:encoded><![CDATA[<p>Many people asked me about hosting and where should they host websites.</p><p>When I created this blog I&#8217;ve spent a few days searching the Internet for the best offer. What I found (and bought) was the Basic Plan from Lunar Pages.</p><p>For just $4.95/month they offer:</p><table
width="100%" border="1"><tbody><tr><td>Set Up*</td><td>FREE!</td></tr><tr><td>Free Domain Name*</td><td>Included</td></tr><tr><td>Storage</td><td>Unlimited</td></tr><tr><td>Bandwidth per Month</td><td>Unlimited</td></tr><tr><td>30-day money back guarantee</td><td>Included</td></tr><tr><td>Online Control Panel</td><td>Included</td></tr><tr><td>$775 Free Bonus</td><td>Included</td></tr><tr><td>MySQL Databases</td><td>Unlimited</td></tr><tr><td>Microsoft® FrontPage® Extensions</td><td>Included</td></tr><tr><td>Dreamweaver Compatible</td><td>Included</td></tr><tr><td>Add-on Domains</td><td>Unlimited</td></tr><tr><td>Sub Domains</td><td>Unlimited</td></tr><tr><td>Parked Domains</td><td>Unlimited</td></tr><tr><td>CGI-BIN</td><td>Included</td></tr><tr><td>FTP Accounts</td><td>Unlimited</td></tr><tr><td>Online User Statistics</td><td>Included</td></tr><tr><td>Apache 2</td><td>Available</td></tr><tr><td>Shell Access</td><td>Available &#8211; $2 per month</td></tr><tr><td>Ruby on Rails Support</td><td>Included</td></tr><tr><td>PHP Support</td><td>Included</td></tr><tr><td>PERL Support</td><td>Included</td></tr><tr><td>PYTHON Support</td><td>Included</td></tr><tr><td>SSI &#8211; Server Side Includes</td><td>Included</td></tr><tr><td>Customizable Error Pages</td><td>Included</td></tr><tr><td>Customer Account Page</td><td>Included</td></tr><tr><td>24/7/365 Award Winning Support</td><td>Included</td></tr></tbody></table><p>If you want to access Lunar Pages in order to see their offers and/or buy hosting follow <a
href="http://www.lunarpages.com/id/victorhurdugacicom" target="_blank">this link</a>.</p> ]]></content:encoded> <wfw:commentRss>http://victorhurdugaci.com/best-hosting/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
