<?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"
	>

<channel>
	<title>crwld.org</title>
	<atom:link href="http://crwld.org/main/feed/" rel="self" type="application/rss+xml" />
	<link>http://crwld.org/main</link>
	<description>.my world @ another 'another blog'</description>
	<pubDate>Sat, 19 Jul 2008 23:47:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>2.6!</title>
		<link>http://crwld.org/main/2008/07/16/26/</link>
		<comments>http://crwld.org/main/2008/07/16/26/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 17:26:14 +0000</pubDate>
		<dc:creator>Buttpt</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://crwld.org/main/?p=56</guid>
		<description><![CDATA[
Wordpress updated to version 2.6!

]]></description>
			<content:encoded><![CDATA[<div class="">Note: There is a rating embedded within this post, please visit this post to rate it.
<p>Wordpress updated to version 2.6!</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://crwld.org/main/2008/07/16/26/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Code Jam 08 - Alien Numbers</title>
		<link>http://crwld.org/main/2008/07/11/google-code-jam-08-alien-numbers/</link>
		<comments>http://crwld.org/main/2008/07/11/google-code-jam-08-alien-numbers/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 11:59:36 +0000</pubDate>
		<dc:creator>Buttpt</dc:creator>
		
		<category><![CDATA[C\C++]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Problems/Solutions]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Source code]]></category>

		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://crwld.org/main/?p=55</guid>
		<description><![CDATA[
Hi there
Here is my solution for the first practice exercise of Google Code Jam 2008, called Alien Numbers.
I haven&#8217;t had much time to code recently, due to exams, but didn&#8217;t resist and took a look at the first exercise 
I did it in C.


#include &#60;stdio.h&#62;
#include &#60;stdlib.h&#62;
#include &#60;string.h&#62;

//Constants
#define min_size_number 1
#define min_size_input_lang 2
#define min_size_target_lang 2
#define max_size_number 4
#define [...]]]></description>
			<content:encoded><![CDATA[<div class="">Note: There is a rating embedded within this post, please visit this post to rate it.
<p>Hi there</p>
<p>Here is my solution for the first practice exercise of <a href="http://code.google.com/codejam" target="_blank">Google Code Jam 2008</a>, called <strong>Alien Numbers</strong>.<br />
I haven&#8217;t had much time to code recently, due to exams, but didn&#8217;t resist and took a look at the first exercise <img src='http://crwld.org/main/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /><br />
I did it in <strong>C</strong>.</p>
<p><span id="more-55"></span></p>
<pre class="syntax-highlight:c">
#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;string.h&gt;

//Constants
#define min_size_number 1
#define min_size_input_lang 2
#define min_size_target_lang 2
#define max_size_number 4
#define max_size_input_lang 10
#define max_size_target_lang 10

//Multiplies a number for itself e times
int exponent(int number, int e)
{
	int n=1;

	while (e&gt;0)
	{
		n = n * number;
		e--;
	}

	return n;
}

//Converts a number in a given base, to base 10
int fromXto10(char * number, char * base)
{
	//Variables
	int i, j, n, decNumber=0, e, baseNumber = strlen(base); //Int variables

	//Get maximum exponent in number (0-n)
	e = strlen(number)-1;

	//Go through the number
	for (i=0;i&lt;strlen(number);i++)
	{
		//Get the decimal number of the current symbol, using input base
		for (j=0;j&lt;strlen(base);j++)
		{
			if (number[i]==base[j])
			{
				n = j;
				break;
			}
		}
		//Get decimal number
		decNumber += n * exponent(baseNumber, e);
		e--;
	}

	//Return decimal number
	return decNumber;
}

char * from10toX(int number, char * base)
{
	//Variables
	int i, divRes, rest, baseNumber = strlen(base); //Int variables
	char * Xnumber; //String variables

	//Calculate space needed for X number
	i=0;
	divRes = number;
	while (divRes&gt;0)
	{
		divRes = divRes / baseNumber; //Divide
		i++;
	}

	//Allocate space for Xnumber (i=number of digits)
	Xnumber = (char*) malloc((sizeof(char)+1)*i);
	Xnumber[i] = &#039;\0&#039;;

	//Go through the number
	divRes = number;
	while (divRes&gt;0)
	{
		rest = divRes % baseNumber; //Get rest (last digit in target language)
		divRes = divRes / baseNumber; //Divide

		//Convert r to target digit, and put it in Xnumber (starts from the end)
		Xnumber[i-1] = base[rest];
		i--;
	}

	//Return X number
	return Xnumber;
}

int main()
{
	//Variables
	FILE * fin, * fout; //Input file
	int totalCases=0, i, dec; //Int variables
	char number[max_size_number], inputLang[max_size_input_lang], targetLang[max_size_target_lang], * targetNumber; //String variables

	//Open file for reading
	fin = fopen(&quot;A-small.in&quot;, &quot;r&quot;);
	fout = fopen(&quot;output.in&quot;, &quot;w&quot;);
	if (fin==NULL) return 0;

	//Get total numbers of cases
	fscanf(fin, &quot;%d&quot;, &amp;totalCases);

	//Go through all cases
	for (i=0;i&lt;totalCases;i++)
	{
		//Get case
		fscanf(fin, &quot;%s %s %s&quot;, number, inputLang, targetLang);
		//Convert from input to decimal
		dec = fromXto10(number, inputLang);
		//Convert from decimal to target and print
		targetNumber = from10toX(dec, targetLang);
		printf(&quot;Case #%d: %s\n&quot;, i+1, targetNumber);
		fprintf(fout, &quot;Case #%d: %s\n&quot;, i+1, targetNumber);
	}

	return 0;
}
</pre>
<p>Take care! <img src='http://crwld.org/main/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://crwld.org/main/2008/07/11/google-code-jam-08-alien-numbers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Call Of Duty 4 Multiplayer crash (CTD)!</title>
		<link>http://crwld.org/main/2008/07/04/call-of-duty-4-multiplayer-crash-ctd/</link>
		<comments>http://crwld.org/main/2008/07/04/call-of-duty-4-multiplayer-crash-ctd/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 19:47:23 +0000</pubDate>
		<dc:creator>Buttpt</dc:creator>
		
		<category><![CDATA[Games]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Problems/Solutions]]></category>

		<category><![CDATA[call of duty 4 multiplayer crash ctd]]></category>

		<guid isPermaLink="false">http://crwld.org/main/?p=54</guid>
		<description><![CDATA[
Please note: crwld.org is not responsible for any damage you may do to your computer by following the instructions bellow.
Hello there
This post is for those who are able to play Call Of Duty 4 in single player mode, but are experiencing multiplayer crashes (CTD&#8217;s).
Most of the times (not always) this is due to RealTek(TM) sound [...]]]></description>
			<content:encoded><![CDATA[<div class="">Note: There is a rating embedded within this post, please visit this post to rate it.
<p><strong><span style="color: #800000;"><em>Please note: crwld.org is not responsible for any damage you may do to your computer by following the instructions bellow.</em></span></strong></p>
<p>Hello there</p>
<p>This post is for those who are able to play Call Of Duty 4 in single player mode, but are experiencing multiplayer crashes (CTD&#8217;s).<br />
Most of the times (not always) this is due to RealTek(TM) sound drivers. If you have a RealTek(TM) on-board sound card then this is very likely the reason why you are having problems when running on multiplayer. Apparently there are also some problems with Sigmatel® on-board sound cards. The solution presented in this post however, is for RealTek(TM) sound cards only. For Sigmatel® owners you may want to try to update your audio drivers from <a href="http://www.dell.com/" target="_blank">dell.com</a>.</p>
<p>Below there are a few known fixes for this problem (only one is guaranteed though).</p>
<p><span style="color: #800000;"><strong>Not guaranteed solutions:</strong></span></p>
<p><span style="color: #333333;"><strong>Solution 1:</strong></span> Plug in a microphone/headphone into your microphone and headphone jacks.</p>
<p><span style="color: #333333;"><strong>Solution 2:</strong></span> Go to &#8216;Control Panel -&gt; (Hardware and Sound) -&gt; Sound&#8217; and one by one, select all the audio devices in the &#8216;Playback&#8217; tab list, go to &#8216;Properties&#8217;, select the &#8216;Advanced&#8217; tab and disable the &#8216;Give exclusive mode applications priority&#8217; option. Click &#8216;Apply&#8217; and &#8216;Ok&#8217;.<br />
Remember to do this to all the playback devices in the list.<br />
If this doesn&#8217;t work, try to do the same to the &#8216;Recording&#8217; tab devices in &#8216;Sound&#8217; properties also.</p>
<p><span style="color: #333333;"><strong>Solution 3:</strong></span> Go to &#8216;Control Panel -&gt; (Hardware and Sound) -&gt; Sound&#8217;, select the &#8216;Recording&#8217; tab, right click in the window and enable &#8216;Show Disabled Devices&#8217;. &#8216;Stereo Mix&#8217; should now be visible&#8230;right click it and &#8216;Enable&#8217; it. Press&#8217;Ok&#8217;.</p>
<p><span style="color: #333333;"><strong>Solution 4:</strong></span> Update your RealTek(TM) sound card drivers.</p>
<p><span style="color: #800000;"><strong>Guaranteed solutions:</strong></span></p>
<p>If you tried all the solutions above and you&#8217;re still experiencing problems when playing Call Of Duty 4 in multiplayer then you probably have to uninstall your sound card drivers to fix the problem.<br />
Before you proceed though, it is recommended for you to take note of the make and model of your sound card for later reinstallation.<br />
To remove your sound card, go to &#8216;Add/Remove Programs&#8217; search for your RealTek(TM) sound card drivers and uninstall them.<br />
If you can not find your drivers there, then go to the &#8216;Device Manager&#8217; in &#8216;Control Panel&#8217;, and look for your sound card (probably under &#8216;Sound, video and game controllers&#8217;). Right click it and select &#8216;Uninstall&#8217;. After that, reboot your pc.<br />
This should fix your problem.<br />
If you&#8217;re running Windows Vista, your sound card default drivers will be installed automatically and you should not witness any sound problem. If you&#8217;re not running Windows Vista and your sound card does not work then you may want to reinstall your sound card drivers.</p>
<p>Happy Gaming! <img src='http://crwld.org/main/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><em>This solutions where found at:<br />
<a href="http://www.gamingnewslink.com/2007/11/09/fixes-for-call-of-duty-4-errors-crash-and-bugs/" target="_blank">gamingnewslink.com</a><br />
<a href="http://en.kioskea.net/forum/affich-4341-call-of-duty-4-multiplayer-crash" target="_blank">kioskea.net</a></em></p>
<p><span style="color: #333333;"><strong>Note:</strong></span> This problem exists till Call Of Duty 4 version 1.7 at least. It is possible that future versions/patches of the game correct this problem.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://crwld.org/main/2008/07/04/call-of-duty-4-multiplayer-crash-ctd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Civilization IV technology quotes</title>
		<link>http://crwld.org/main/2008/06/29/civilization-iv-technology-quotes/</link>
		<comments>http://crwld.org/main/2008/06/29/civilization-iv-technology-quotes/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 23:47:09 +0000</pubDate>
		<dc:creator>Buttpt</dc:creator>
		
		<category><![CDATA[Games]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[Humour]]></category>

		<guid isPermaLink="false">http://crwld.org/main/?p=53</guid>
		<description><![CDATA[
Technology quotes from Civilization IV.

Hunting
Ancient Era
&#8220;If you chase two rabbits, you will lose them both.&#8221;
- Native American saying
Fishing
Ancient Era
&#8220;Give a man a fish and you feed him for a day. Teach a man how to fish and you feed him for a lifetime.&#8221;
- Lao Tzu
Agriculture
Ancient Era
&#8220;Oh farmers, pray that your summers be wet and your [...]]]></description>
			<content:encoded><![CDATA[<div class="">Note: There is a rating embedded within this post, please visit this post to rate it.
<p>Technology quotes from <strong>Civilization IV</strong>.</p>
<p><span id="more-53"></span></p>
<blockquote><p><strong>Hunting<br />
Ancient Era<br />
&#8220;If you chase two rabbits, you will lose them both.&#8221;<br />
- Native American saying</strong></p>
<p><strong>Fishing<br />
Ancient Era<br />
&#8220;Give a man a fish and you feed him for a day. Teach a man how to fish and you feed him for a lifetime.&#8221;<br />
- Lao Tzu</strong></p>
<p><strong>Agriculture<br />
Ancient Era<br />
&#8220;Oh farmers, pray that your summers be wet and your winters clear.&#8221;<br />
- Virgil</strong></p>
<p><strong>Mining<br />
Ancient Era<br />
&#8220;The man who moves a mountain begins by carrying away small stones.&#8221;<br />
- Confucius</strong></p>
<p><strong>The Wheel<br />
Ancient Era<br />
&#8220;Put your shoulder to the wheel.&#8221;<br />
- Aesop</strong></p>
<p><strong>Mysticism<br />
Ancient Era<br />
&#8220;Nature herself has imprinted on the minds of all the idea of God.&#8221;<br />
- Cicero</strong></p>
<p><strong>Pottery<br />
Ancient Era<br />
&#8220;Hath not the potter power over the clay, to make one vessel unto honor, and another unto dishonor?&#8221;<br />
- The Bible, Romans</strong></p>
<p><strong>Archery<br />
Ancient Era<br />
&#8220;Do not throw the arrow which will return against you.&#8221;<br />
- Kurdish Proverb</strong></p>
<p><strong>Masonry<br />
Ancient Era<br />
&#8220;It is from their foes, not their friends, that cities learn the lesson of building high walls.&#8221;<br />
- Aristophanes</strong></p>
<p><strong>Polytheism<br />
Ancient Era<br />
&#8220;Not at all similar are the race of the immortal gods and the race of men who walk upon the earth.&#8221;<br />
- Homer</strong></p>
<p><strong>Sailing<br />
Ancient Era<br />
&#8220;You can&#8217;t direct the wind, but you can adjust your sails.&#8221;<br />
- Unknown</strong></p>
<p><strong>Meditation<br />
Ancient Era<br />
&#8220;Meditation brings wisdom; lack of meditation leaves ignorance. Know well what leads you forward and what holds you back.&#8221;<br />
- The Buddha</strong></p>
<p><strong>Bronze Working<br />
Ancient Era<br />
&#8220;It is entirely seemly for a young man killed in battle to lie mangled by the bronze spear. In his death all things appear fair.&#8221;<br />
- Homer</strong></p>
<p><strong>Animal Husbandry<br />
Ancient Era<br />
&#8220;Blessed be the fruit of thy cattle, the increase of thy kine, and the flocks of thy sheep.&#8221;<br />
- The Bible, Deut. 28:4</strong></p>
<p><strong>Writing<br />
Ancient Era<br />
&#8220;True glory consists in doing what deserves to be written; in writing what deserves to be read.&#8221;<br />
- Pliny the Elder</strong></p>
<p><strong>Priesthood<br />
Ancient Era<br />
&#8220;The Lord bless you and keep you; the Lord make His face to shine upon you and be gracious to you; the Lord lift up His countenance upon you and give you peace.&#8221;<br />
- The Bible, Numbers</strong></p>
<p><strong>Horseback Riding<br />
Ancient Era<br />
&#8220;If you speak the truth, have a foot in the stirrup.&#8221;<br />
- Turkish Proverb</strong></p>
<p><strong>Monotheism<br />
Ancient Era<br />
&#8220;I am the Lord thy God. Thou shalt have no other gods before Me.&#8221;<br />
- The Bible, Exodus</strong></p>
<p><strong>Iron Working<br />
Classical Era<br />
&#8220;You should hammer your iron when it is glowing hot.&#8221;<br />
- Publius Syrus</strong></p>
<p><strong>Metal Casting<br />
Classical Era<br />
&#8220;And them that take the sword shall perish by the sword.&#8221;<br />
- The Bible, Matthew</strong></p>
<p><strong>Monarchy<br />
Classical Era<br />
&#8220;A multitude of rulers is not a good thing. Let there be one ruler, one king.&#8221;<br />
- Herodotus</strong></p>
<p><strong>Alphabet<br />
Classical Era<br />
&#8220;Words have the power to both destroy and heal. When words are both true and kind, they can change our world.&#8221;<br />
- The Buddha</strong></p>
<p><strong>Literature<br />
Classical Era<br />
&#8220;Some books are to be tasted, others to be swallowed, and some to be chewed and digested.&#8221;<br />
- Sir Francis Bacon</strong></p>
<p><strong>Drama<br />
Classical Era<br />
&#8220;All the world&#8217;s a stage, And all the men and women merely players. They have their exits and their entrances; And one man in his time plays many parts.&#8221;<br />
- William Shakespeare</strong></p>
<p><strong>Mathematics<br />
Classical Era<br />
&#8220;If in other sciences we should arrive at certainty without doubt and truth without error, it behooves us to place the foundations of knowledge in mathematics.&#8221;<br />
- Roger Bacon</strong></p>
<p><strong>Compass<br />
Classical Era<br />
&#8220;The wisest men follow their own direction.&#8221;<br />
- Euripides</strong></p>
<p><strong>Construction<br />
Classical Era<br />
&#8220;And on the pedestal these words appear: &#8216;My name is Ozymandias, king of kings: Look on my works, ye Mighty, and despair!&#8217; Nothing beside remains.&#8221;<br />
- Percy Bysshe Shelley</strong></p>
<p><strong>Code of Laws<br />
Classical Era<br />
&#8220;To bring about the rule of righteousness in the land, so that the strong should not harm the weak.&#8221;<br />
- Hammurabi&#8217;s Code; Prologue</strong></p>
<p><strong>Currency<br />
Classical Era<br />
&#8220;Everything is worth what its purchaser will pay for it.&#8221;<br />
- Publius Syrius</strong></p>
<p><strong>Calendar<br />
Classical Era<br />
&#8220;For everything there is a season and a time for every purpose under heaven.&#8221;<br />
- Ecclesiastes</strong></p>
<p><strong>Philosophy<br />
Medieval Era<br />
&#8220;I have gained this by philosophy: that I do without being commanded what others do only from fear of the law.&#8221;<br />
- Aristotle</strong></p>
<p><strong>Machinery<br />
Medieval Era<br />
&#8220;A God from the machine.&#8221;<br />
- Menander</strong></p>
<p><strong>Theology<br />
Medieval Era<br />
&#8220;Two cities have been formed by two loves: the earthly by the love of self; the heavenly by the love of God.&#8221;<br />
- St. Augustine</strong></p>
<p><strong>Feudalism<br />
Medieval Era<br />
&#8220;I will to my Lord be true and faithful, and love all which He loves and shun all which He shuns.&#8221;<br />
- Anglo Saxon oath of Fealty</strong></p>
<p><strong>Civil Service<br />
Medieval Era<br />
&#8220;The bureaucracy is expanding to meet the needs of the expanding bureaucracy.&#8221;<br />
- Unknown</strong></p>
<p><strong>Music<br />
Medieval Era<br />
&#8220;If music be the food of love, play on.&#8221;<br />
- William Shakespeare</strong></p>
<p><strong>Paper<br />
Medieval Era<br />
&#8220;I cannot live without books.&#8221;<br />
- Thomas Jefferson</strong></p>
<p><strong>Optics<br />
Medieval Era<br />
&#8220;One doesn&#8217;t discover new lands without losing sight of the shore.&#8221;<br />
- Andre Gide</strong></p>
<p><strong>Engineering<br />
Medieval Era<br />
&#8220;A designer knows he has achieved perfection not when there is nothing left to add, but when there is nothing left to take away.&#8221;<br />
- Antoine de Saint-Exupry</strong></p>
<p><strong>Divine Right<br />
Medieval Era<br />
&#8220;I am the state.&#8221;<br />
- Louis XIV</strong></p>
<p><strong>Guilds<br />
Medieval Era<br />
&#8220;People of the same trade seldom meet together, even for merriment and diversion, but the conversation ends in a conspiracy against the public.&#8221;<br />
- Adam Smith</strong></p>
<p><strong>Banking<br />
Medieval Era<br />
&#8220;Banking establishments are more dangerous than standing armies.&#8221;<br />
- Thomas Jefferson</strong></p>
<p><strong>Printing Press<br />
Renaissance Era<br />
&#8220;What gunpowder did for war, the printing press has done for the mind.&#8221;<br />
- Wendell Phillips</strong></p>
<p><strong>Education<br />
Renaissance Era<br />
&#8220;There is no wealth like knowledge, no poverty like ignorance.&#8221;<br />
- Ali ibn Abi-Talib</strong></p>
<p><strong>Gunpowder<br />
Renaissance Era<br />
&#8220;You can get more of what you want with a kind word and a gun than you can with just a kind word.&#8221;<br />
- Al Capone</strong></p>
<p><strong>Liberalism<br />
Renaissance Era<br />
&#8220;Any society that would give up a little liberty to gain a little security will deserve neither and lose both.&#8221;<br />
- Benjamin Franklin</strong></p>
<p><strong>Nationalism<br />
Renaissance Era<br />
&#8220;A man does not have himself killed for a half-pence a day or for a petty distinction. You must speak to the soul in order to electrify him.&#8221;<br />
- Napoleon Bonaparte</strong></p>
<p><strong>Military Tradition<br />
Renaissance Era<br />
&#8220;Victorious warriors win first and then go to war, while defeated warriors go to war first and then seek to win.&#8221;<br />
- Sun-Tzu</strong></p>
<p><strong>Astronomy<br />
Renaissance Era<br />
&#8220;Astronomy compels the soul to look upwards and leads us from this world to another.&#8221;<br />
- Plato</strong></p>
<p><strong>Constitution<br />
Renaissance Era<br />
&#8220;No freeman shall be taken, imprisoned, or in any other way destroyed, except by the lawful judgment of his peers.&#8221;<br />
- The Magna Carta</strong></p>
<p><strong>Democracy<br />
Renaissance Era<br />
&#8220;It has been said that democracy is the worst form of government except all the others that have been tried.&#8221;<br />
- Winston Churchill</strong></p>
<p><strong>Economics<br />
Renaissance Era<br />
&#8220;Compound interest is the most powerful force in the universe.&#8221;<br />
- Albert Einstein</strong></p>
<p><strong>Chemistry<br />
Renaissance Era<br />
&#8220;Chemistry means the difference between poverty and starvation and the abundant life.&#8221;<br />
- Robert Brent</strong></p>
<p><strong>Replaceable Parts<br />
Renaissance Era<br />
&#8220;The whole is more than the sum of its parts.&#8221;<br />
- Aristotle</strong></p>
<p><strong>Rifling<br />
Renaissance Era<br />
&#8220;Political power grows out of the barrel of a gun.&#8221;<br />
- Mao Zedong</strong></p>
<p><strong>Corporation<br />
Renaissance Era<br />
&#8220;Corporation, n. An ingenious device for obtaining individual profit without individual responsibility.&#8221;<br />
- Ambrose Bierce</strong></p>
<p><strong>Steel<br />
Industrial Era<br />
&#8220;Before that steam drill shall beat me down, I&#8217;ll die with my hammer in my hand.&#8221;<br />
- from &#8220;John Henry, the Steel-Driving Man&#8221;</strong></p>
<p><strong>Scientific Method<br />
Industrial Era<br />
&#8220;I do not feel obliged to believe that the same God who has endowed us with sense, reason, and intellect has intended us to forgo their use.&#8221;<br />
- Galileo Galilei</strong></p>
<p><strong>Communism<br />
Industrial Era<br />
&#8220;When I give food to the poor, they call me a saint. When I ask why the poor have no food, they call me a communist.&#8221;<br />
- Dom Helder Camara</strong></p>
<p><strong>Steam Power<br />
Industrial Era<br />
&#8220;You would make a ship sail against the winds and currents by lighting a bon-fire under her deck? I have no time for such nonsense.&#8221;<br />
- Napoleon, on Robert Fulton&#8217;s Steamship</strong></p>
<p><strong>Assembly Line<br />
Industrial Era<br />
&#8220;People can have the Model T in any color - so long as it&#8217;s black.&#8221;</strong></p>
<p><strong>- Henry Ford</strong></p>
<p><strong>Fascism<br />
Industrial Era<br />
&#8220;The great masses of the people&#8230; will more easily fall victims to a big lie than to a small one.&#8221;<br />
- Adolf Hitler</strong></p>
<p><strong>Physics<br />
Industrial Era<br />
&#8220;To every action there is always opposed an equal reaction.&#8221;<br />
- Isaac Newton</strong></p>
<p><strong>Artillery<br />
Industrial Era<br />
&#8220;Artillery adds dignity to what would otherwise be a vulgar brawl.&#8221;<br />
- Frederick the Great</strong></p>
<p><strong>Biology<br />
Industrial Era<br />
&#8220;It is not the strongest of the species that survive, but the one most responsive to change.&#8221;<br />
- Charles Darwin</strong></p>
<p><strong>Medicine<br />
Industrial Era<br />
&#8220;As to diseases make a habit of two things - to help, or at least, to do no harm.&#8221;<br />
- Hippocrates</strong></p>
<p><strong>Railroad<br />
Industrial Era<br />
&#8220;I fooled you, I fooled you, I got pig iron, I got pig iron, I got all pig iron.&#8221;<br />
- Lonnie Donegan, &#8220;Rock Island Line&#8221;</strong></p>
<p><strong>Combustion<br />
Industrial Era<br />
&#8220;Everything in life is somewhere else, and you get there in car.&#8221;<br />
- E.B. White</strong></p>
<p><strong>Electricity<br />
Industrial Era<br />
&#8220;We will make electricity so cheap that only the rich will burn candles.&#8221;<br />
- Thomas Edison</strong></p>
<p><strong>Fission<br />
Industrial Era<br />
&#8220;If the radiance of a thousand suns were to burst at once into the sky, that would be like the splendor of the Mighty One&#8230; I am become Death, the Shatterer of Worlds.&#8221;<br />
- J. Robert Oppenheimer, quoting &#8220;The Bhagavad Gita&#8221;</strong></p>
<p><strong>Industrialism<br />
Industrial Era<br />
&#8220;There is one rule for the industrialist and that is: Make the best quality of goods possible at the lowest cost possible, paying the highest wage possible.&#8221;<br />
- Henry Ford</strong></p>
<p><strong>Flight<br />
Modern Era<br />
&#8220;For once you have tasted flight you will walk the earth with your eyes turned skywards, for there you have been and there you will long to return.&#8221;<br />
- Leonardo Da Vinci</strong></p>
<p><strong>Refrigeration<br />
Modern Era<br />
&#8220;Tell me what you eat, and I will tell you what you are.&#8221;<br />
- Anthelme Brillat-Savarin</strong></p>
<p><strong>Radio<br />
Modern Era<br />
&#8220;Then one fine mornin&#8217; she puts on a New York station. You know her life was saved by Rock &#8216;n&#8217; Roll.&#8221;<br />
- The Velvet Underground, &#8220;Rock And Roll&#8221;</strong></p>
<p><strong>Mass Media<br />
Modern Era<br />
&#8220;The only thing worse than being talked about is not being talked about.&#8221;<br />
- Oscar Wilde</strong></p>
<p><strong>Rocketry<br />
Modern Era<br />
&#8220;The Earth is the cradle of the mind, but one cannot eternally live in a cradle.&#8221;<br />
- Konstantin E. Tsiolkovsky</strong></p>
<p><strong>Plastics<br />
Modern Era<br />
&#8220;I just want to say one word to you. Just one word: plastics.&#8221;<br />
- Calder Willingham, The Graduate</strong></p>
<p><strong>Ecology<br />
Modern Era<br />
&#8220;We do not inherit the earth from our ancestors, we borrow it from our children.&#8221;<br />
- Native American Song</strong></p>
<p><strong>Computers<br />
Modern Era<br />
&#8220;Never trust a computer you can&#8217;t throw out a window.&#8221;<br />
- Steve Wozniak</strong></p>
<p><strong>Genetics<br />
Modern Era<br />
&#8220;Soon it will be a sin for parents to have a child which carries the heavy burden of genetic disease.&#8221;<br />
- Bob Edwards</strong></p>
<p><strong>Satellites<br />
Modern Era<br />
&#8220;Beep&#8230; beep&#8230; beep&#8230; beep&#8230;&#8221;<br />
- Sputnik I</strong></p>
<p><strong>Composites<br />
Modern Era<br />
&#8220;The whole is greater than the sum of its parts.&#8221;<br />
- Aristotle</strong></p>
<p><strong>Robotics</p>
<p>Modern Era</strong></p>
<p><strong>&#8220;The real problem is not whether machines think, but whether men do.&#8221;<br />
- B.F. Skinner</strong></p>
<p><strong>Fiber Optics<br />
Modern Era<br />
&#8220;There is a single light of science and to brighten it anywhere is to brighten it everywhere.&#8221;<br />
- Isaac Asimov</strong></p>
<p><strong>Fusion<br />
Modern Era<br />
&#8220;Any sufficiently advanced technology is indistinguishable from magic.&#8221;<br />
- Arthur C. Clarke</strong></p>
<p><strong>Future Technology<br />
Modern Era<br />
&#8220;The future will be better tomorrow.&#8221;<br />
- Dan Quayle</strong></p></blockquote>
<p><em>Source: <a href="http://www.squidoo.com/civ4quotes" target="_blank">squidoo.com</a></em></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://crwld.org/main/2008/06/29/civilization-iv-technology-quotes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to: Making a Multitouch Pad</title>
		<link>http://crwld.org/main/2008/06/06/how-to-making-a-multitouch-pad/</link>
		<comments>http://crwld.org/main/2008/06/06/how-to-making-a-multitouch-pad/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 23:55:10 +0000</pubDate>
		<dc:creator>Buttpt</dc:creator>
		
		<category><![CDATA[Electronics]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[How to?]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://crwld.org/main/?p=52</guid>
		<description><![CDATA[
 
More info at:
nuigroup.com
Originally seen at:
Coding4Fun
Youtube@cerupcat

]]></description>
			<content:encoded><![CDATA[<div class=""><p style="text-align: left;">Note: There is a rating embedded within this post, please visit this post to rate it.</p>
<p style="text-align: center;"><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/4Y88n-MQJMA"></param> <embed src="http://www.youtube.com/v/4Y88n-MQJMA" type="application/x-shockwave-flash" width="425" height="350"></embed></object></p>
<p>More info at:<br />
<a href="http://nuigroup.com/forums/viewthread/1825/" target="_blank">nuigroup.com</a></p>
<p>Originally seen at:<br />
<a href="http://blogs.msdn.com/coding4fun/" target="_blank">Coding4Fun<br />
</a><a href="http://youtube.com/user/cerupcat" target="_blank">Youtube@cerupcat</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://crwld.org/main/2008/06/06/how-to-making-a-multitouch-pad/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Promoting: &#8220;Yael Naim &#038; David Donatien&#8221;</title>
		<link>http://crwld.org/main/2008/05/12/promoting-yael-naim-david-donatien/</link>
		<comments>http://crwld.org/main/2008/05/12/promoting-yael-naim-david-donatien/#comments</comments>
		<pubDate>Mon, 12 May 2008 00:05:47 +0000</pubDate>
		<dc:creator>Buttpt</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://crwld.org/main/?p=49</guid>
		<description><![CDATA[
Simply beautiful music!
I really enjoy listening to these two. It&#8217;s calm and nice, with excellent music quality. She (Yael Naim) also looks pretty cool and she is very beautiful, specially when she wears those fantastic dresses (I like them :P).
I wish them the best of luck!
About:
Yael Naïm is a French-Israeli singer and songwriter who rose [...]]]></description>
			<content:encoded><![CDATA[<div class="">Note: There is a rating embedded within this post, please visit this post to rate it.
<p style="text-align: center;"><img class="alignnone size-medium wp-image-50" title="yael-naim-photo2-medium_1204652012324" src="http://crwld.org/main/wp-content/uploads/2008/05/yael-naim-photo2-medium_1204652012324-300x273.jpg" alt="" width="300" height="273" /></p>
<p style="text-align: left;">Simply beautiful music!<br />
I really enjoy listening to these two. It&#8217;s calm and nice, with excellent music quality. She (Yael Naim) also looks pretty cool and she is very beautiful, specially when she wears those fantastic dresses (I like them :P).<br />
I wish them the best of luck!</p>
<p><strong>About:</strong></p>
<blockquote><p>Yael Naïm is a French-Israeli singer and songwriter who rose to fame in 2008, after her song &#8220;New Soul&#8221; was used by Apple in an advertising campaign for its MacBook Air. The success of this song made her the first Israeli solo artist to have a top ten hit in the United States. The song peaked at #7 on the Billboard Hot 100.</p>
<p><a href="http://wikipedia.org" target="_blank"><em>in wikipedia</em></a></p></blockquote>
<p><span class="maintxt"><span class="maintxt"><strong>Style</strong>:<br />
- Pop / Indie Rock / Folk / Acoustic</span></span></p>
<p><strong>Band Members:</strong><br />
- Yael Naïm<br />
- David Donatien</p>
<p><strong>Albums:</strong><br />
- Yael Naïm, 2007<br />
- In a Man&#8217;s Womb, 2001</p>
<p><strong>Awards:</strong><br />
- <a href="http://en.wikipedia.org/wiki/Victoires_de_la_Musique#World_music_album_of_the_year" target="_blank">(Yael Naïm) World music album of the year 2008 by Victoires de la Musique</a></p>
<p><strong>Site:</strong><br />
- <a href="http://www.yaelweb.com/" target="_blank">yaelweb.com<br />
</a>- <a href="http://www.yaelweb.com/" target="_blank"></a><a href="http://www.myspace.com/yaelnaim" target="_blank">YaelNaim@myspace.com</a></p>
<p style="text-align: center;"><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/YrTAz5wKt70"></param> <embed src="http://www.youtube.com/v/YrTAz5wKt70" type="application/x-shockwave-flash" width="425" height="350"></embed></object></object></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://crwld.org/main/2008/05/12/promoting-yael-naim-david-donatien/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Join the Revolution!</title>
		<link>http://crwld.org/main/2008/05/10/join-the-revolution/</link>
		<comments>http://crwld.org/main/2008/05/10/join-the-revolution/#comments</comments>
		<pubDate>Sat, 10 May 2008 02:42:44 +0000</pubDate>
		<dc:creator>Buttpt</dc:creator>
		
		<category><![CDATA[Games]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://crwld.org/main/?p=48</guid>
		<description><![CDATA[

That&#8217;s right, the revolution is coming&#8230;and it&#8217;s gonna be big!
Civilization Revolution is the new and most recent work of Sid Meier, developed by Firaxis for the new generation consoles: Xbox 360, PlayStation 3, and Nintendo DS.
Even though PC gamers (and Civ fans) won&#8217;t be able to play Revolution on their PC&#8217;s, this new Civilization game [...]]]></description>
			<content:encoded><![CDATA[<div class=""><p style="text-align: left;">Note: There is a rating embedded within this post, please visit this post to rate it.</p>
<p style="text-align: center;"><img src="http://crwld.org/main/wp-content/uploads/2008/05/join1280x960-300x225.jpg" alt="" title="join1280x960" width="300" height="225" class="aligncenter size-medium wp-image-51" /></p>
<p>That&#8217;s right, the revolution is coming&#8230;and it&#8217;s gonna be big!<br />
<em>Civilization Revolution</em> is the new and most recent work of Sid Meier, developed by Firaxis for the new generation consoles: Xbox 360, PlayStation 3, and Nintendo DS.</p>
<p>Even though PC gamers (and Civ fans) won&#8217;t be able to play <em>Revolution</em> on their PC&#8217;s, this new Civilization game by Sid Meier looks pretty amazing with tons of new features and abilities.<br />
Even Sid Meier is looking forward for the release having said &#8220;<em>This is the game I&#8217;ve always wanted to make.</em>&#8221;<br />
If <em>Civilization 4</em> was a success and for many the best strategy game of the year (rated &#8216;9.4 Editors&#8217; Choice&#8217; by <a href="http://gamespot.com" target="_blank">GameSpot</a>), then <em>Civilization Revolution</em> will blow you away.<br />
For those who don&#8217;t know, <em>Civilization</em> is a series of turn-based strategy games &#8216;created&#8217; by Sid Meier, since 1990 with the very first <em>Civilization</em>, followed by <em>Sid Meier&#8217;s Civilization II</em> (1996), <em>Sid Meier&#8217;s Civilization III</em> (2001), <em>Sid Meier&#8217;s Civlization IV</em> (2005), and now <em>Sid Meier&#8217;s Civilization Revolution</em> (2008).<br />
Civilization series have come a long way now and <em>Revolution</em> is better than ever.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://fp.scea.com/Content/newsmedia/editorials/53/article/sid_DETAIL.jpg" alt="sid" width="240" height="139" /><br />
<em> (Sid Meier)</em></p>
<p>In this new game you will find <strong>16 civilizations</strong> (USA - Abraham Lincoln, England - Queen Elizabeth I, China - Mao Zedong, Japan - Tokugawa Ieyasu, Aztecs - Montezuma, India - Mohandas Gandhi, Mongolia - Ghenghis Khan, Rome - Julius Caesar, Egypt - Cleopatra, France - Napoleon Bonaparte, Arabia - Saladin, Greece - Alexander, Spain - Isabella I, Germany - Otto von Bismark, Zulu Nation - Shaka Zulu, Russia - Catherine the Great), an <strong>invaluable Civilopedia</strong>, a streamlined time scale for <strong>quicker play</strong>, a fully featured <strong>online play mode up to 4 players</strong>, integrated videos and <strong>voice chatting</strong>, in-game <strong>achievements</strong>, and extra <strong>downloadable content</strong>. The game also has highly detailed characters, units, buildings, landscapes and visual effects, with an amazing integrated physics for ultra-realism. In-game interface has been improved as well and it now looks awesome&#8230;pretty simple and nice.<br />
The new <em>Civilization Revolution</em> intends to attract new gamers and to make the game more playable by all ages by trying to change the classic playing style of Civ. For example, game speed is now very different and you can end a game in only a few hours instead of previous Civ versions (which can be not cool for classic Civ fans, but cooler for first timers).</p>
<p><strong>Screenshots:<br />
</strong><a href="http://www.civilizationrevolution.com/images/screenshots/download/3dl.jpg" target="_blank">Screen1</a><br />
<a href="http://www.civilizationrevolution.com/images/screenshots/download/7dl.jpg" target="_blank">Screen2</a><br />
<a href="http://www.civilizationrevolution.com/images/screenshots/download/23dl.jpg" target="_blank">Screen3</a><br />
<a href="http://www.civilizationrevolution.com/images/screenshots/download/17dl.jpg" target="_blank">Screen4</a><br />
<a href="http://www.civilizationrevolution.com/images/screenshots/download/32dl.jpg" target="_blank">Screen5</a><br />
<a href="http://www.civilizationrevolution.com/images/screenshots/download/12dl.jpg" target="_blank">Screen6</a></p>
<p><strong>Preview:</strong></p>
<p style="text-align: center;"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/T9_TR4lmRns&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/T9_TR4lmRns&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>The game will be released on July 7 and so far it looks awesome.<br />
I&#8217;m really looking forward this since Civilization series are my favorite&#8230;it&#8217;s a shame that I don&#8217;t have a PS3 or an XBox360.</p>
<p>Goodbye and take care!</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://crwld.org/main/2008/05/10/join-the-revolution/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Just got my MXTabs.net T-Shirt!</title>
		<link>http://crwld.org/main/2008/05/08/just-got-my-t-shirt/</link>
		<comments>http://crwld.org/main/2008/05/08/just-got-my-t-shirt/#comments</comments>
		<pubDate>Thu, 08 May 2008 21:07:03 +0000</pubDate>
		<dc:creator>Buttpt</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Music]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://crwld.org/main/?p=47</guid>
		<description><![CDATA[
(Back Part)
Hi there.
I finally received my T-Shirt 2 or 3 days ago, but I&#8217;ve been very busy lately and didn&#8217;t have time to post about it before.
The T-Shirt is awesome, I really like it and may I say that it is the first &#8216;thing&#8217; I receive, directly imported, from the USA (Portugal here!). That&#8217;s cool! [...]]]></description>
			<content:encoded><![CDATA[<div class="">Note: There is a rating embedded within this post, please visit this post to rate it.
<p style="text-align: center;"><img class="alignnone size-medium wp-image-46 aligncenter" title="mxtshirt3" src="http://crwld.org/main/wp-content/uploads/2008/05/mxtshirt3-300x145.jpg" alt="" width="300" height="145" /></p>
<p style="text-align: center;">(Back Part)</p>
<p style="text-align: left;">Hi there.<br />
I finally received my T-Shirt 2 or 3 days ago, but I&#8217;ve been very busy lately and didn&#8217;t have time to post about it before.<br />
The T-Shirt is awesome, I really like it and may I say that it is the first &#8216;thing&#8217; I receive, directly imported, from the USA (Portugal here!). That&#8217;s cool! <img src='http://crwld.org/main/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
Anyway, here is a pic of the T-Shirt&#8230;</p>
<p style="text-align: left;"><a href="http://crwld.org/main/wp-content/uploads/2008/05/mxtshirt.jpg"></a></p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-44 aligncenter" title="mxtshirt" src="http://crwld.org/main/wp-content/uploads/2008/05/mxtshirt-300x280.jpg" alt="" width="300" height="280" /></p>
<p style="text-align: center;">(T-Shirt)</p>
<p style="text-align: center;">
<p style="text-align: center;"><img class="alignnone size-medium wp-image-45" title="mxtshirt2" src="http://crwld.org/main/wp-content/uploads/2008/05/mxtshirt2-300x225.jpg" alt="" width="300" height="225" /></p>
<p style="text-align: center;">(Front Part)</p>
<p style="text-align: left;">It&#8217;s very cool.<br />
I want to double thank Bill for the T-Shirt (thanks Bill <img src='http://crwld.org/main/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) not only for the T-Shirt itself but also because he had to pay to send it across the pacific ocean. Make it a triple thanks&#8230;for the gesture Bill <img src='http://crwld.org/main/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .<br />
Thanks a lot.</p>
<p style="text-align: left;">So don&#8217;t forget to visit <a href="http://mxtabs.net" target="_blank">MXTabs.net</a>. If you&#8217;re a musician you can find all kind of tabs at MXTabs, and the best part is that they are completely <a href="http://mxtabs.net" target="_blank"><strong>FREE</strong></a> and completely <a href="http://mxtabs.net" target="_blank"><strong>LEGAL</strong></a>. It is the only place on the web where you can find tabs with both these characteristics (besides, who knows if you won&#8217;t win a T-Shirt too&#8230;).</p>
<p style="text-align: left;">Take care&#8230;and &#8216;<a href="http://mxtabs.net" target="_blank"><strong>legalize it</strong></a>&#8216;! <img src='http://crwld.org/main/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://crwld.org/main/2008/05/08/just-got-my-t-shirt/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DirectX 10 for Windows XP?</title>
		<link>http://crwld.org/main/2008/05/02/directx-10-for-windows-xp/</link>
		<comments>http://crwld.org/main/2008/05/02/directx-10-for-windows-xp/#comments</comments>
		<pubDate>Fri, 02 May 2008 17:16:34 +0000</pubDate>
		<dc:creator>Buttpt</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://crwld.org/main/?p=42</guid>
		<description><![CDATA[
Apparently there is a DX10 version available for windows XP (which I did not know).
DX10 was supposed to work only with Vista but it seems that Cody Brocious, the Alky Project leader, has released a version of DX10 do XP.
However, this is not an official release from Microsoft and results are not guaranteed, and neither [...]]]></description>
			<content:encoded><![CDATA[<div class="">Note: There is a rating embedded within this post, please visit this post to rate it.
<p style="text-align: center;"><img class="alignnone size-medium wp-image-43 aligncenter" title="dx10logo" src="http://crwld.org/main/wp-content/uploads/2008/05/dx10logo.jpg" alt="" width="198" height="156" /></p>
<p>Apparently there is a DX10 version available for windows XP (which I did not know).<br />
DX10 was supposed to work only with Vista but it seems that Cody Brocious, the <a href="http://alkyproject.blogspot.com/" target="_blank">Alky Project</a> leader, has released a version of DX10 do XP.<br />
However, this is not an official release from Microsoft and results are not guaranteed, and neither the stability of your computer.<br />
Event though, if you wish to know more about this project or if you want to give it a try, you can visit the <a href="http://alkyproject.blogspot.com/" target="_blank">Alky Project</a> web site.</p>
<p>Take care!</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://crwld.org/main/2008/05/02/directx-10-for-windows-xp/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GTA IV Finally in Stores!</title>
		<link>http://crwld.org/main/2008/04/29/gta-iv-finally-in-stores/</link>
		<comments>http://crwld.org/main/2008/04/29/gta-iv-finally-in-stores/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 19:24:57 +0000</pubDate>
		<dc:creator>Buttpt</dc:creator>
		
		<category><![CDATA[Games]]></category>

		<category><![CDATA[General]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://crwld.org/main/?p=40</guid>
		<description><![CDATA[

Grand Theft Auto IV, probably the most anticipated game of the year, is finally on stores.
Developed by Rockstar North, GTA IV,  was released worldwide (except in Japan) on 29 April 2008 (today) for both PlayStation 3 and Xbox 360.
The action unfolds in Liberty City (based on New York City) where you play as Niko [...]]]></description>
			<content:encoded><![CDATA[<div class=""><p>Note: There is a rating embedded within this post, please visit this post to rate it.<a href="http://crwld.org/main/wp-content/uploads/2008/04/grand_theft_auto_logo.jpg"></a></p>
<p style="text-align: center;"><img class="alignnone size-medium wp-image-41" title="grand_theft_auto_logo" src="http://crwld.org/main/wp-content/uploads/2008/04/grand_theft_auto_logo-300x232.jpg" alt="" width="300" height="232" /></p>
<p>Grand Theft Auto IV, probably the most anticipated game of the year, is finally on stores.<br />
Developed by Rockstar North, GTA IV,  was released worldwide (except in Japan) on 29 April 2008 (today) for both PlayStation 3 and Xbox 360.<br />
The action unfolds in Liberty City (based on New York City) where you play as Niko Bellic, an Eastern European who comes to the USA searching for the famous &#8220;American Dream&#8221;. However, Niko comes to find that his cousin has lied about the wealth and luxury that would be awaiting him.<br />
The story features two possible endings depending on which choice the player makes at certain points in the game.<br />
The latest version of GTA is also the first one to include online multiplayer with 15 different modes.</p>
<p>The game received an handful of positive reviews (both for PS3 and 360 platforms):<br />
- GameSpot 	10/10<br />
- GameSpy 	5/5<br />
- IGN 	10/10<br />
- Eurogamer 	10/10<br />
- &#8230;</p>
<p>Conclusion: You should definitely buy this game!</p>
<p>Check this gameplay review by <strong><a href="http://www.ign.com/" target="_blank">IGN</a>:</strong></p>
<p style="text-align: center;"><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/RKWuFmHj_u4"></param> <embed src="http://www.youtube.com/v/RKWuFmHj_u4" type="application/x-shockwave-flash" width="425" height="350"></embed></object></p>
<p style="text-align: left;">Take care.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://crwld.org/main/2008/04/29/gta-iv-finally-in-stores/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
