<?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>i-create &#124; therefore-i am &#187; Games</title>
	<atom:link href="http://i-create.org/tag/games/feed/" rel="self" type="application/rss+xml" />
	<link>http://i-create.org</link>
	<description>i-create &#124; therefore i-am &#124; a blog about opensource technology and rich internet applications</description>
	<lastBuildDate>Thu, 05 Aug 2010 04:19:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>CodeBreaker a Game of Deduction</title>
		<link>http://i-create.org/2010/04/04/codebreaker-a-game-of-deduction/</link>
		<comments>http://i-create.org/2010/04/04/codebreaker-a-game-of-deduction/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 20:01:45 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[Game Creation]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[i-create]]></category>
		<category><![CDATA[Experiment]]></category>
		<category><![CDATA[gameCreation]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[RayCasting]]></category>

		<guid isPermaLink="false">http://i-create.org/2010/04/04/codebreaker-a-game-of-deduction/</guid>
		<description><![CDATA[Let me first start of by simply telling you I have been reading Flash Game University by Gary Rosenzweig.  This is an excellent resource for anyone who wants to teach themselves how to create games.  The examples in the book are relatively simple but of course the logic that goes into creating them is not.  [...]]]></description>
			<content:encoded><![CDATA[<p>Let me first start of by simply telling you I have been reading <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hbWF6b24uY29tL0FjdGlvblNjcmlwdC0zLTAtR2FtZS1Qcm9ncmFtbWluZy1Vbml2ZXJzaXR5L2RwLzA3ODk3MzcwMjcvcmVmPXNyXzFfMT9pZT1VVEY4JiMwMzg7cz1ib29rcyYjMDM4O3FpZD0xMjcwNDA3NDM3JiMwMzg7c3I9OC0x" title=\"Flash Game University by Gary Rosenzweig\" target=\"_blank\">Flash Game University by Gary Rosenzweig</a>.  This is an excellent resource for anyone who wants to teach themselves how to create games.  The examples in the book are relatively simple but of course the logic that goes into creating them is not.  While reading and studying the examples I have decide to convert some of the examples over to JavaScript not because I think JavaScript is better etc. etc. Personally I hate reading articles where people flame Adobe and say flash is dead etc.. Most of the time the people who write these articles can&#8217;t do both I can so I like both!  Simply because I thought it would help me along in the thinking process.  Some people play Bridge, Chess, Sudoku, or Crossword Puzzles to stay sharp I write code and study code to stay sharp.  So in his book he has an example that is similar to the <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9NYXN0ZXJtaW5kXyUyOGJvYXJkX2dhbWUlMjk=" title=\"MasterMind board game\" target=\"_blank\">MasterMind board game</a>.  I decided to port over this game to JavaScript and have done this you can find the example by clicking <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=L0phdmFTY3JpcHQvY29kZUJyZWFrZXIvY29kZUJyZWFrZXIuaHRtbA==" target=\"_blank\" title=\"CodeBreaker a Game of Deduction\">here</a>. If you like this example please purchase his book it is an excellent book and this code was generated by studying his example so please pay him tribute and purchase the <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hbWF6b24uY29tL0FjdGlvblNjcmlwdC0zLTAtR2FtZS1Qcm9ncmFtbWluZy1Vbml2ZXJzaXR5L2RwLzA3ODk3MzcwMjcvcmVmPXNyXzFfMT9pZT1VVEY4JmFtcDtzPWJvb2tzJmFtcDtxaWQ9MTI3MDQwNzQzNyZhbXA7c3I9OC0x" title=\"Flash Game University by Gary Rosenzweig\" target=\"_blank\">book</a> like I have.  A little background about the game if it says you have a correct spot and the correct color. If it says you have the correct color you have the correct color but it is in the incorrect spot.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"> 		<span style="color: #006600; font-style: italic;">// constants</span>
        <span style="color: #003366; font-weight: bold;">const</span> numPegs <span style="color: #339933;">=</span> <span style="color: #CC0000;">5</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">const</span> numColors <span style="color: #339933;">=</span> <span style="color: #CC0000;">5</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">const</span> maxTries <span style="color: #339933;">=</span> <span style="color: #CC0000;">10</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">const</span> horizOffset <span style="color: #339933;">=</span> <span style="color: #CC0000;">30</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">const</span> vertOffset <span style="color: #339933;">=</span> <span style="color: #CC0000;">60</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">const</span> pegSpacing <span style="color: #339933;">=</span> <span style="color: #CC0000;">30</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">const</span> rowSpacing <span style="color: #339933;">=</span> <span style="color: #CC0000;">30</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #006600; font-style: italic;">// game play variables</span>
        <span style="color: #003366; font-weight: bold;">var</span> solution <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Array<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #003366; font-weight: bold;">var</span> solutionButtonArray<span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> turnNum<span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #006600; font-style: italic;">// references to display objects</span>
		<span style="color: #003366; font-weight: bold;">var</span> buttonImages <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Array<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;img/cbBlack.png&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;img/cbGreen.png&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;img/cbYellow.png&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;img/cbPurple.png&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;img/cbRed.png&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;img/cbBlue.png&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> currentRow <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Array<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> currentText<span style="color: #339933;">;</span>
		<span style="color: #003366; font-weight: bold;">var</span> currentButton<span style="color: #339933;">;</span>
	    <span style="color: #003366; font-weight: bold;">var</span> mainIds <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
		<span style="color: #003366; font-weight: bold;">var</span> myButton<span style="color: #339933;">;</span>
		<span style="color: #003366; font-weight: bold;">function</span> startGame<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #000066; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">var</span> i <span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>i<span style="color: #339933;">&lt;</span>numPegs<span style="color: #339933;">;</span>i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				<span style="color: #006600; font-style: italic;">// random, from 0 to 4</span>
				<span style="color: #003366; font-weight: bold;">var</span> r <span style="color: #339933;">=</span> Math.<span style="color: #660066;">floor</span><span style="color: #009900;">&#40;</span>Math.<span style="color: #660066;">random</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">*</span>numColors<span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #CC0000;">1</span><span style="color: #339933;">;</span>
				solution.<span style="color: #660066;">push</span><span style="color: #009900;">&#40;</span>r<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
			turnNum <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
			createPegRow<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
&nbsp;
	   <span style="color: #003366; font-weight: bold;">function</span> createPegRow<span style="color: #009900;">&#40;</span>start<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		   solutionButtonArray <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Array<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>start <span style="color: #339933;">==</span> undefined<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		   $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#cbMainGame'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">html</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #009900;">&#125;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> cbButton1 <span style="color: #339933;">=</span> <span style="color: #3366CC;">'&lt;div class=&quot;divCButton&quot; id=&quot;div'</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> cbButton2 <span style="color: #339933;">=</span> <span style="color: #3366CC;">'&quot; onclick=&quot;clickButton(this)&quot;&gt;&lt;img id=&quot;img'</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> cbButton3 <span style="color: #339933;">=</span> <span style="color: #3366CC;">'&quot; alt=&quot;0&quot; src=&quot;img/cbBlack.png&quot; /&gt;&lt;/div&gt;'</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> mainWrapper1 <span style="color: #339933;">=</span> <span style="color: #3366CC;">'&lt;div class=&quot;mainWrapper&quot;&gt;'</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> mainWrapper2 <span style="color: #339933;">=</span> <span style="color: #3366CC;">'&lt;/div&gt;'</span><span style="color: #339933;">;</span>
		   $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#cbMainGame'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span>mainWrapper1<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> btnFinished <span style="color: #339933;">=</span> <span style="color: #3366CC;">'&lt;div class=&quot;imgButton&quot; id=&quot;divButtonFinished'</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> btnFinished2<span style="color: #339933;">=</span> <span style="color: #3366CC;">'&quot;&gt;&lt;center&gt;&lt;div class=&quot;mainButton&quot; id=&quot;divButtonDone'</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> btnFinished3<span style="color: #339933;">=</span> <span style="color: #3366CC;">'&quot; onclick=&quot;executeGameQuery(this)&quot;&gt;&lt;span id=&quot;spnMainButton&quot;&gt;Done&lt;/span&gt;&lt;/div&gt;&lt;/center&gt;&lt;/div&gt;'</span><span style="color: #339933;">;</span>
	   	   currentRow <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Array<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #000066; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>i<span style="color: #339933;">&lt;</span>numPegs<span style="color: #339933;">;</span>i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#cbMainGame'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span>cbButton1<span style="color: #339933;">+</span>mainIds<span style="color: #339933;">+</span>cbButton2<span style="color: #339933;">+</span>mainIds<span style="color: #339933;">+</span>cbButton3<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				solutionButtonArray.<span style="color: #660066;">push</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;img&quot;</span><span style="color: #339933;">+</span>mainIds<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				mainIds<span style="color: #339933;">++;</span>
			<span style="color: #009900;">&#125;</span>
			$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#cbMainGame'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span>btnFinished<span style="color: #339933;">+</span>mainIds<span style="color: #339933;">+</span>btnFinished2<span style="color: #339933;">+</span>mainIds<span style="color: #339933;">+</span>btnFinished3<span style="color: #339933;">+</span>mainWrapper2<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	   <span style="color: #009900;">&#125;</span>
&nbsp;
	   <span style="color: #003366; font-weight: bold;">function</span> clickButton<span style="color: #009900;">&#40;</span>clicked<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> myButton <span style="color: #339933;">=</span> clicked<span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> img <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span>clicked<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'img'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> imageToChange <span style="color: #339933;">=</span> img<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">alt</span>.<span style="color: #660066;">toString</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>imageToChange <span style="color: #339933;">==</span> <span style="color: #CC0000;">6</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			imageToChange <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>   
		   <span style="color: #009900;">&#125;</span>
		   <span style="color: #006600; font-style: italic;">//console.log(imageToChange);</span>
		   $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#&quot;</span><span style="color: #339933;">+</span>img<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">id</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;src&quot;</span><span style="color: #339933;">,</span>buttonImages<span style="color: #009900;">&#91;</span>parseInt<span style="color: #009900;">&#40;</span>imageToChange<span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#&quot;</span><span style="color: #339933;">+</span>img<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">id</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;alt&quot;</span><span style="color: #339933;">,</span> parseInt<span style="color: #009900;">&#40;</span>imageToChange<span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	   <span style="color: #009900;">&#125;</span>
&nbsp;
	   <span style="color: #003366; font-weight: bold;">function</span> executeGameQuery<span style="color: #009900;">&#40;</span>mainButton<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> buttonClicked <span style="color: #339933;">=</span> mainButton<span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> changeThis <span style="color: #339933;">=</span> buttonClicked.<span style="color: #660066;">id</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> currentColorList <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Array<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> colorList <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Array<span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> soltionList <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Array<span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   changeThis <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#&quot;</span><span style="color: #339933;">+</span>changeThis<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #006600; font-style: italic;">//console.log(changeThis);</span>
		   <span style="color: #003366; font-weight: bold;">var</span> numberCorrect <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> numberColorsCorrect <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
		   turnNum<span style="color: #339933;">++;</span>
		   <span style="color: #000066; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span> i<span style="color: #339933;">&lt;</span>numPegs<span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			   currentColorList.<span style="color: #660066;">push</span><span style="color: #009900;">&#40;</span>$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#&quot;</span><span style="color: #339933;">+</span>solutionButtonArray<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;alt&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			   $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#&quot;</span><span style="color: #339933;">+</span>solutionButtonArray<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">removeAttr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;onclick&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #009900;">&#125;</span>
		   <span style="color: #000066; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span> i<span style="color: #339933;">&lt;</span>numPegs<span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			  <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>currentColorList<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> solution<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
				  numberCorrect<span style="color: #339933;">++;</span>
			  <span style="color: #009900;">&#125;</span><span style="color: #000066; font-weight: bold;">else</span><span style="color: #009900;">&#123;</span>
				  soltionList<span style="color: #009900;">&#91;</span>solution<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">++;</span>
				  colorList<span style="color: #009900;">&#91;</span>parseInt<span style="color: #009900;">&#40;</span>currentColorList<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">++;</span>
			  <span style="color: #009900;">&#125;</span>
		   <span style="color: #009900;">&#125;</span>
		   <span style="color: #000066; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span> i<span style="color: #339933;">&lt;</span>numColors<span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			   <span style="color: #003366; font-weight: bold;">var</span> test <span style="color: #339933;">=</span> Math.<span style="color: #660066;">min</span><span style="color: #009900;">&#40;</span>soltionList<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>colorList<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				numberColorsCorrect <span style="color: #339933;">=</span> numberColorsCorrect <span style="color: #339933;">+</span> Math.<span style="color: #660066;">min</span><span style="color: #009900;">&#40;</span>soltionList<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>colorList<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
		   $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#&quot;</span><span style="color: #339933;">+</span>buttonClicked.<span style="color: #660066;">id</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">remove</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>numberCorrect <span style="color: #339933;">==</span> numPegs<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		   $<span style="color: #009900;">&#40;</span>changeThis<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">html</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'You Got It!&lt;br/&gt;&lt;div class=&quot;imgButton&quot;&gt;&lt;center&gt;&lt;div onclick=&quot;startGame()&quot; id=&quot;divButtonDone5&quot; class=&quot;mainButton&quot;&gt;&lt;span id=&quot;spnMainButton&quot;&gt;Play Again&lt;/span&gt;&lt;/div&gt;&lt;/center&gt;&lt;/div&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #009900;">&#125;</span><span style="color: #000066; font-weight: bold;">else</span> <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>turnNum <span style="color: #339933;">==</span> maxTries<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			   $<span style="color: #009900;">&#40;</span>changeThis<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">html</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'I regret to infrom you just lost next time do it quicker! &lt;br/&gt;&lt;div class=&quot;imgButton&quot;&gt;&lt;center&gt;&lt;div onclick=&quot;startGame()&quot; id=&quot;divButtonDone5&quot; class=&quot;mainButton&quot;&gt;&lt;span id=&quot;spnMainButton&quot;&gt;Play Again&lt;/span&gt;&lt;/div&gt;&lt;/center&gt;&lt;/div&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		   <span style="color: #009900;">&#125;</span>
		   <span style="color: #000066; font-weight: bold;">else</span><span style="color: #009900;">&#123;</span>
		   $<span style="color: #009900;">&#40;</span>changeThis<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">html</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Correct Spot: &quot;</span><span style="color: #339933;">+</span>numberCorrect<span style="color: #339933;">+</span><span style="color: #3366CC;">&quot;, Correct Color: &quot;</span><span style="color: #339933;">+</span>numberColorsCorrect<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #003366; font-weight: bold;">var</span> start <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">;</span>
		   createPegRow<span style="color: #009900;">&#40;</span>start<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		   <span style="color: #009900;">&#125;</span>
	   <span style="color: #009900;">&#125;</span>
$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> 
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#cbMainGame'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span>startGameHTML<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>						   
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=L0phdmFTY3JpcHQvY29kZUJyZWFrZXIvY29kZUJyZWFrZXIuaHRtbA==" target=\"_blank\" title=\"CodeBreaker a Game of Deduction\">Launch Game</a> / <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=L0phdmFTY3JpcHQvY29kZUJyZWFrZXIuemlw">Download Code</a></p>
<p>I have also been spending some time playing around with <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2xhYnMuYWRvYmUuY29tL3RlY2hub2xvZ2llcy9hbGNoZW15Lw==" title=\"Alchemy\" target=\"_blank\">Alchemy</a> last post I displayed some examples of <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9SYXlfY2FzdGluZw==" title=\"What is a Ray Caster?\" target=\"_blank\">RayCasters</a> the old style 3d of Games like Wolfenstien and Doom.  In short most of the raycasters out their follow this <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5zdHVkZW50Lmt1bGV1dmVuLmJlL35tMDIxNjkyMi9DRy9yYXljYXN0aW5nLmh0bWw=" title=\"RayCaster Example\" target=\"_blank\">example</a>  this example is a c++ example and Adobe has a project in their labs   called Alchemy.  Alchemy allows you to port existing C/C++ to   ActionScript.  Which is really cool but also extremely difficult to do:)  Right now I need to rewrite a chunk of it that uses <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5saWJzZGwub3Jn" title=\"lib SDL\" target=\"_blank\">SDL lib</a> an old library that was used to create most video games years ago.  I searched to see if someone was doing something similar and sure enough   someone is  <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2JydWNlLWxhYi5ibG9nc3BvdC5jb20vMjAwOS8wOC9hZG9iZS1hbGNoZW15LXJheS1jYXN0ZXItcG9ydC5odG1s" title=\"RayCaster in Flash Via Alchemy\" target=\"_blank\">Bruce Jawn</a>.  He informed me that instead of using SDL I need to pass it to the screen buffer as a byte array.  So that is currently what I am trying to do he also mentioned posting his Make file under Google code in the near future.  Hopefully he does I have also noticed <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2xpYi5oYXhlLm9yZy9wL25tZQ==" title=\"haXe SDL Wrapper\" target=\"_blank\">haXe has an SDL wrapper</a>.  This might also be   useful to study <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5iYWRzZWN0b3JhY3VsYS5jb20vcGVwb25pL3JheWZhc3RlcjIv" title=\"RayFaster2\" target=\"_blank\">RayFaster2</a> this is a RayCaster built with haXe that is super fast.  Their are   numerous examples of RayCasters written in ActionScript but I am looking for speed.  I might think about also just writing one from scratch and implementing a JavaScript version of it as well.  I could have spent   this weekend working on my new portfolio but unfortunately I didn&#8217;t do that:(  I will have to extend it deadline beyond the 4 days time limit   once again:(</p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=785" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2010%2F04%2F04%2Fcodebreaker-a-game-of-deduction%2F&amp;linkname=CodeBreaker%20a%20Game%20of%20Deduction"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2010/04/04/codebreaker-a-game-of-deduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Internet == ice9 for Business</title>
		<link>http://i-create.org/2009/12/19/the-internet-is-equal-too-ice9-for-business/</link>
		<comments>http://i-create.org/2009/12/19/the-internet-is-equal-too-ice9-for-business/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 04:59:15 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[3d]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[i-create]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Alchemy]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Technology/Internet]]></category>

		<guid isPermaLink="false">http://i-create.org/?p=718</guid>
		<description><![CDATA[Ice-nine is a fictional material conceived by writer Kurt Vonnegut in his novel]]></description>
			<content:encoded><![CDATA[<p><b>Ice-nine</b> is a <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9GaWN0aW9uYWw=" target=\"_blank\" title=\"Fictional\">fictional</a> material conceived by writer <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9LdXJ0X1Zvbm5lZ3V0" target=\"_blank\" title=\"Kurt Vonnegut\">Kurt Vonnegut</a> in his novel <i><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9DYXQlMjdzX0NyYWRsZQ==" target=\"_blank\" title=\"Cat's Cradle\">Cat&#8217;s Cradle</a></i>. It is supposed to be a more stable <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9Qb2x5bW9ycGhpc21fJTI4bWF0ZXJpYWxzX3NjaWVuY2UlMjk=" target=\"_blank\" title=\"Polymorphism (materials science)\">polymorph</a> of water than common ice (<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9JY2VfSWg=" target=\"_blank\" title=\"Ice Ih\">Ice I<sub>h</sub></a>) which instead of melting at 0° <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9DZWxzaXVz" target=\"_blank\" title=\"Celsius\">Celsius</a> (32° <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9GYWhyZW5oZWl0" target=\"_blank\" title=\"Fahrenheit\">Fahrenheit</a>), melts at 45.8°C (114.4°F). When ice-nine comes into contact with liquid water below 45.8°C (which is thus effectively <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9TdXBlcmNvb2xpbmc=" target=\"_blank\" title=\"Supercooling\">supercooled</a>), it acts as a <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9TZWVkX2NyeXN0YWw=" target=\"_blank\" title=\"Seed crystal\">seed crystal</a>, and causes the <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9Tb2xpZGlmaWNhdGlvbg==" target=\"_blank\" title=\"Solidification\">solidification</a> of the entire body of water which quickly crystallizes as ice-nine. A global catastrophe involving freezing the Earth&#8217;s oceans by simple contact with ice-nine is used as a <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9QbG90X2RldmljZQ==" target=\"_blank\" title=\"Plot device\">plot device</a> in Vonnegut&#8217;s novel. &#8211; <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9JY2UtbmluZQ==" target=\"_blank\">http://en.wikipedia.org/wiki/Ice-nine</a> </p>
<p>As technology progresses we will see more and more people using thin-client systems again.&nbsp; They will store data in the cloud and mobile devices will proliferate and rapidly change the landscape of personal computing small is the new big.&nbsp; Our cell phones will morph into powerful desktop like devices(oh and this is predictable just study <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9Nb29yZSUyN3NfbGF3" target=\"_blank\" title=\"What is Moore's Law\">Moore&#8217;s_law</a>) only they fit in our hand and can go with us.&nbsp; Our input devices will all change we will have small projectors on our cellphones they will <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5lbmdhZGdldC5jb20vMjAwOS8xMi8wNi9sZ3MtcHJvamVjdG9yLWxhZGVuLWV4cG8tc21hcnRwaG9uZS1nZXRzLWRlbW9uc3RyYXRlZC1vbi12aWRlby8=" target=\"_blank\" title=\"projector on a cell phone\">project screens</a> and pusedo keyboards that we can place on any surface.&nbsp; Competition will drive new innovations and the consumer will win.&nbsp; It won&#8217;t be just Microsoft vs. Apple it will be all out war for Microsoft, Google, Apple, IBM, and Oracle all competing creating new products and new markets.&nbsp; Social Networks are the new email the way we think of email has already changed most people communicate on a variety of social networks email etc..&nbsp; Print is dead stick a fork in it already.&nbsp; Mobile books will only be improved and it wouldn&#8217;t surprise me one bit if Apple actually does come out with a <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL21vbmV5LmNubi5jb20vMjAwOS8xMS8xNi90ZWNobm9sb2d5L2FwcGxlX3RhYmxldC8=" title=\"Apple Tablet\">revolutionary tablet</a> in the next year and utilize iTunes to also sell subscriptions this will kill magazines, I don&#8217;t know about you but I think they take up too much space.&nbsp; I want one device clean smooth organized (my wife will like that too because my books/magazines take up more than one room).&nbsp; The world of broadcasting will drastically change when Youtube comes up with a subscription service your TV area all ready on their way to being big thin clients.&nbsp; Check out what adobe is working on with their <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5mbGFzaG1vYmlsZWJsb2cuY29tLzIwMDkvMDQvMjAvYW5ub3VuY2luZy1hZG9iZS1mbGFzaC1wbGF0Zm9ybS1mb3ItdGhlLWRpZ2l0YWwtaG9tZS8=" target=\"_blank\" title=\"Aodbe Digital TV\">Digital TV &#8211; Flash initiatives</a>.&nbsp; The mobile internet is the future people won&#8217;t need these stogy old big machines!&nbsp; Everyone has a cellphone think of the traffic that will generate on the web.&nbsp; Traffic on the web will go through the roof in the next few years.&nbsp; When you speed up communication you speed up innovation and the next few years will be exciting!&nbsp; If you think the internet has caused some disruptive changes for business models you haven&#8217;t seen anything yet.&nbsp; Our audience is not even born yet. </p>
<p>While were on the subject matter of making small the new big why not throw in old is the new new?&nbsp; Yes I too love oxymoron&#8217;s and non-sequitur&#8217;s. I would also like to point out a trend here the big players like Adobe, Microsoft, and Google are making it easier for developers to port existing code over to their run-time environments.&nbsp; Adobe has a project called <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2xhYnMuYWRvYmUuY29tL3RlY2hub2xvZ2llcy9hbGNoZW15Lw==" title=\"_blank\" target=\"_blank\">Alchemy</a> and if you haven&#8217;t played around with it I would recommend doing so.&nbsp; Alchemy will allow you to take existing C/C++ code and convert it to swc (compiled ActionScript libraries).&nbsp; It is wickedly powerful you will notice below I actually have a compiled version of Doom running in flash.&nbsp; This was made possible by Mike at <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5uZXdncm91bmRzLmNvbS9wb3J0YWwvdmlldy80NzA0NjA=" target=\"_blank\" title=\"New Grounds Doom\">New Grounds</a> he ported over the code and currently has it hosted on <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2dpdGh1Yi5jb20vSGVyc2NoZWwvZmxhc2gtZG9vbQ==" target=\"_blank\" title=\"Flash Doom on GIT HUB\">GitHub for download</a>.&nbsp; The only thing you have to do to build it is install and configure Alchemy!&nbsp; Ok well who cares your porting old stuff and placing it on the web, so what.&nbsp; That&#8217;s just it!&nbsp; Its on the web and running on a website where anyone anywhere with an internet connection can take advantage of it.&nbsp; If it is not blantely obvious let me point out the fact that in 10 years most people will not work on a desktop all of their applications will be cloud based and available to mobile devices the glue that holds everything together will be the internet, not the operating system. </p>
<p>BabbelFish for Code? I think the future fracturing of mobile devices and operating systems will lead to the need for more tools that allow developers to choose their language of choice and then simply export to the specific platform this makes more sense.&nbsp; Developers and Businesses will want one code base and they want they will want the ability to target whatever platform they want in the mobile area without having to hire tons of highly specialized people for one project.&nbsp; Developers will also like being able to port their projects to different platforms!&nbsp; I believe the compiler gurus will open things up for the rest of the developers.&nbsp; Check out projects like <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2hheGUub3JnLw==" target=\"_blank\" title=\"haXe\">haXe</a> and <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2pzYy5zb3VyY2Vmb3JnZS5uZXQv" title=\"JSC\" target=\"_blank\">jsc</a>.&nbsp; Their are other projects similar popping up all over on <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5jb2RlcnVuLmNvbS8=" title=\"Code Run\" target=\"_blank\">Code Run</a> you can convert C# to JavaScript.&nbsp; I also find it interesting that both <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2xhYnMuYWRvYmUuY29tL3RlY2hub2xvZ2llcy9mbGFzaGNzNS9hcHBzZm9yX2lwaG9uZS8=" target=\"_blank\" title=\"iPhone For Flash\">ActionScipt3</a> and <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL21vbm90b3VjaC5uZXQv" title=\"MonoTouch\" target=\"_blank\">C#</a> will be able to compile directly to the iPhone. </p>
<p>As things move forward we will do all our work in the cloud.&nbsp; If you scan the web you will start to see web <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9JbnRlZ3JhdGVkX2RldmVsb3BtZW50X2Vudmlyb25tZW50" title=\"What is an IDE?\" target=\"_blank\">IDE</a> being created here are a few ingesting projects <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5jb2RlcnVuLmNvbS8=" title=\"CodeRun\" target=\"_blank\" title=\"Code Run\">Code Run</a>, <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvbmRlcmZsLm5ldC8=" target=\"_blank\" title=\"wonderFL\">WonderFL</a>,<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5hcHBjZWxlcmF0b3IuY29tLw==" title=\"Appcelerator\" target=\"_blank\">Appcelerator</a>, and <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cHM6Ly9iZXNwaW4ubW96aWxsYS5jb20v" target=\"_blank\" title=\"Bespin\">Bespin</a>.&nbsp; I really like the idea of social coding it is definitely an idea that intrigues me.&nbsp; Just think if the IDE was in the cloud you wouldn&#8217;t need to download all those pesky code libraries they would all be there already.&nbsp; Projects would update at a much quicker rate than they currently do.&nbsp; </p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ktY3JlYXRlLm9yZy9hY3Rpb25zY3JpcHQvRG9vbS9kb29tLmh0bWw/S2VlcFRoaXM9dHJ1ZSZhbXA7P1RCX2lmcmFtZT10cnVlJmFtcDtoZWlnaHQ9MzMwJmFtcDt3aWR0aD01MzA=" title=\"Doom Compiled With Alchemy thanks To New Grounds\" class=\"thickbox\"><img width="325px" alt="Play Doom On-Line with Flash" src="http://i-create.org/actionscript/Doom/doom.jpg"/></a></p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ktY3JlYXRlLm9yZy9hY3Rpb25zY3JpcHQvRG9vbS9kb29tLmh0bWw/S2VlcFRoaXM9dHJ1ZSZhbXA7P1RCX2lmcmFtZT10cnVlJmFtcDtoZWlnaHQ9MzMwJmFtcDt3aWR0aD01MzA=" title=\"Doom Compiled With Alchemy thanks To New Grounds\" class=\"thickbox\">Click here to launch Doom in Flash!</a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=718" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2009%2F12%2F19%2Fthe-internet-is-equal-too-ice9-for-business%2F&amp;linkname=The%20Internet%20%3D%3D%20ice9%20for%20Business"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2009/12/19/the-internet-is-equal-too-ice9-for-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wii Update</title>
		<link>http://i-create.org/2006/09/14/wii_update/</link>
		<comments>http://i-create.org/2006/09/14/wii_update/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p><a href="http://wii.ign.com/articles/732/732745p1.html" target="_blank"><img src="wii-channel-breakdown-20060914031659760.jpg" width="300" height="176" border="0" /></a></p>
<p>Here is the skinny you will be able to purchase a Wii November 19 for only $250!  The Wii comes with a sleek interface that will supply channels the channels will allow you to interact with other nintendo fans, display photos, surf the web (with Opera that has flash enabled), create and avatar etc.. </p>
<p><a href="http://wii.nintendo.com/channel.html" target="_blank">Detail of Channels</a><br />
</p>
<p>Mii Channel</p>
<p> Fun 3-D caricatured portraits of users, or Miis, created in this channel can be used on characters across a variety of Wii software. In addition to storing Miis on the Wii, several Miis can be stored in a user&#8217;s Wii Remote and taken to a friend&#8217;s house to play on another Wii console. Each member of the family can have his or her Wii Remote personalized with their own Mii.</p>
<p>Photo Channel</p>
<p> This channel allows users to retrieve digital pictures from an SD memory card inserted into the Wii console and display them on their television screen. Users also can manipulate the photos in a variety of fun and creative ways, such as zooming into details or creating mosaics, puzzles or slide shows. Users can even add an MP3 tune from their SD memory card to their slide shows. It provides a fun and easy outlet for people to edit and show off their digital pictures.<br />
  Users can access free local weather forecasts after turning on the Wii console. When connected to the Internet, the WiiConnect24 service automatically updates local weather information.</p>
<p>News Channel</p>
<p> Users can access the most up-to-date breaking news from around the world, organized into a variety of topical categories. When connected to the Internet, the WiiConnect24 service automatically updates this free channel.</p>
<p>Wii Shop Channel</p>
<p> This is where users go to download video game content, including classic video games originally played on the NES, SNES, N64, Sega Genesis and NEC TurboGrafx platforms. Here the users may buy Wii Points with a credit card or redeem a Wii Points Card purchased at retail to add points to their account, then redeem points to download these Virtual Console games. Users also can use points to download the Opera browser used in the Internet Channel.</p>
<p>Virtual Console Channel</p>
<p> After users download Virtual Console games from the Wii Shop Channel, each game will appear in the Wii Channel Menu as its own Virtual Console Channel. To play the game, users simply select the game's channel.<br />
  Internet Channel</p>
<p> This channel dramatically changes the relationship between a user's home, the television and the Internet. Users download the Opera browser with Wii Points. Then they can surf the Internet right from the comfort of their couch. They can do quick research while watching a television program (&#34;What was that actor's name again?&#34;), or book travel plans and shop during commercials. The service is compatible with Macromedia Flash and also runs AJAX software.</p>
<p>Wii Message Board</p>
<p> Forget hand-scrawled notes tacked to the refrigerator door. Users can leave messages for other family members on a calendar-based message board. They also can use WiiConnect24 to send messages to people outside the home as well. Even better, people can trade photos and text messages with cell phone users. The service also allows for incoming messages targeted at software, such as a new map or weapon for a game. Games can constantly be updated, thereby extending their playability.</p>
<p>Disc Channel</p>
<p> This channel allows users to play either Wii game discs or any of the entire library of Nintendo GameCube discs.</p>
<p><a href="http://wii.ign.com/articles/709/709258p1.html" target="_blank">Wii also has an excellent lineup!</a></p>
<p>Just look @ this video from <a href="http://wii.ign.com/articles/721/721821p1.html" target="_blank">Marvel Universe Ultimate Alliance</a> just one of many titles to be released!</p>
<p><embed src="http://i-create.org/ice.swf" width="300" height="200">
</embed><p></p>
<p>There is still some unanswered questions for example what are all the details on Connect24 other than it will be free?  Nintendo has also left out the details of the Nintendo DS connectivity features!  So you still have a great deal of information you still do not yet know.</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dpaS5pZ24uY29tL2FydGljbGVzLzczMi83MzI3NDVwMS5odG1s" target=\"_blank\"><img src="wii-channel-breakdown-20060914031659760.jpg" width="300" height="176" border="0" /></a></p>
<p>Here is the skinny you will be able to purchase a Wii November 19 for only $250!  The Wii comes with a sleek interface that will supply channels the channels will allow you to interact with other nintendo fans, display photos, surf the web (with Opera that has flash enabled), create and avatar etc.. </p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dpaS5uaW50ZW5kby5jb20vY2hhbm5lbC5odG1s" target=\"_blank\">Detail of Channels</a>
</p>
<p>Mii Channel</p>
<p> Fun 3-D caricatured portraits of users, or Miis, created in this channel can be used on characters across a variety of Wii software. In addition to storing Miis on the Wii, several Miis can be stored in a user&rsquo;s Wii Remote and taken to a friend&rsquo;s house to play on another Wii console. Each member of the family can have his or her Wii Remote personalized with their own Mii.</p>
<p>Photo Channel</p>
<p> This channel allows users to retrieve digital pictures from an SD memory card inserted into the Wii console and display them on their television screen. Users also can manipulate the photos in a variety of fun and creative ways, such as zooming into details or creating mosaics, puzzles or slide shows. Users can even add an MP3 tune from their SD memory card to their slide shows. It provides a fun and easy outlet for people to edit and show off their digital pictures.<br />
  Users can access free local weather forecasts after turning on the Wii console. When connected to the Internet, the WiiConnect24 service automatically updates local weather information.</p>
<p>News Channel</p>
<p> Users can access the most up-to-date breaking news from around the world, organized into a variety of topical categories. When connected to the Internet, the WiiConnect24 service automatically updates this free channel.</p>
<p>Wii Shop Channel</p>
<p> This is where users go to download video game content, including classic video games originally played on the NES, SNES, N64, Sega Genesis and NEC TurboGrafx platforms. Here the users may buy Wii Points with a credit card or redeem a Wii Points Card purchased at retail to add points to their account, then redeem points to download these Virtual Console games. Users also can use points to download the Opera browser used in the Internet Channel.</p>
<p>Virtual Console Channel</p>
<p> After users download Virtual Console games from the Wii Shop Channel, each game will appear in the Wii Channel Menu as its own Virtual Console Channel. To play the game, users simply select the game&#8217;s channel.<br />
  Internet Channel</p>
<p> This channel dramatically changes the relationship between a user&#8217;s home, the television and the Internet. Users download the Opera browser with Wii Points. Then they can surf the Internet right from the comfort of their couch. They can do quick research while watching a television program (&quot;What was that actor&#8217;s name again?&quot;), or book travel plans and shop during commercials. The service is compatible with Macromedia Flash and also runs AJAX software.</p>
<p>Wii Message Board</p>
<p> Forget hand-scrawled notes tacked to the refrigerator door. Users can leave messages for other family members on a calendar-based message board. They also can use WiiConnect24 to send messages to people outside the home as well. Even better, people can trade photos and text messages with cell phone users. The service also allows for incoming messages targeted at software, such as a new map or weapon for a game. Games can constantly be updated, thereby extending their playability.</p>
<p>Disc Channel</p>
<p> This channel allows users to play either Wii game discs or any of the entire library of Nintendo GameCube discs.</p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dpaS5pZ24uY29tL2FydGljbGVzLzcwOS83MDkyNThwMS5odG1s" target=\"_blank\">Wii also has an excellent lineup!</a></p>
<p>Just look @ this video from <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dpaS5pZ24uY29tL2FydGljbGVzLzcyMS83MjE4MjFwMS5odG1s" target=\"_blank\">Marvel Universe Ultimate Alliance</a> just one of many titles to be released!</p>
<p><embed src="http://i-create.org/ice.swf" width="300" height="200"><br />
</embed>
</p>
<p>There is still some unanswered questions for example what are all the details on Connect24 other than it will be free?  Nintendo has also left out the details of the Nintendo DS connectivity features!  So you still have a great deal of information you still do not yet know.</p>
<p><!--break--></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=329" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2006%2F09%2F14%2Fwii_update%2F&amp;linkname=Wii%20Update"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2006/09/14/wii_update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indie Game Developer</title>
		<link>http://i-create.org/2006/06/29/indie_game_developer/</link>
		<comments>http://i-create.org/2006/06/29/indie_game_developer/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[3d]]></category>
		<category><![CDATA[Game Creation]]></category>
		<category><![CDATA[Modeling]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[My Rants]]></category>
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<img src="/engines_unity_game1.jpg" alt="" width="317" height="252" /><br />  <p>If you are into creating indie video games in your spare time either because you are bored or into suffering in general <a href="http://developer.apple.com/games/gameenginesonmac.html">OS X does have some great tools for 3d video game creation</a>! To start off with you donÃ¢â‚¬â„¢t have to start from scratch. Anyone who can probably needs to get out more.. You can use tools like <a href="http://unity3d.com" target="_blank">Unity</a> and <a href="http://www.garagegames.com/products/browse/tge/" target="_blank">Torque</a>. These tools are both professional quality and produce quality work on a low budget. You can also use the open source modeler <a href="http://blender3d.org" target="_blank">Blender</a> with either of these programs. Both engines allow you to create web multiplayer games to an extent so it might be worth a small investment to at least play around with them also keep in mind you can always download the quake engine or the unreal engines to use as well. So the developer/artiest does have decent tools that are readily available to suit your creative thoughts!</p>  <p>Useful Links:<br />    <a href="http://developer.apple.com/games/gameenginesonmac.html" target="_blank">OSX Game Engines </a><br />    <a href="http://www.garagegames.com/products/1#features" target="_blank">Torque Engine Specs</a><br />    <a href="http://www.garagegames.com/products/87" target="_blank">Torque Book</a><br />    <a href="http://unity3d.com/unity/index.html" target="_blank">Unity Specs</a><br />    <a href="http://blender3d.org" target="_blank">Blender</a></p>  ]]></description>
			<content:encoded><![CDATA[<p><img src="/engines_unity_game1.jpg" alt="" width="317" height="252" /><br /> 
<p>If you are into creating indie video games in your spare time either because you are bored or into suffering in general <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2RldmVsb3Blci5hcHBsZS5jb20vZ2FtZXMvZ2FtZWVuZ2luZXNvbm1hYy5odG1s">OS X does have some great tools for 3d video game creation</a>! To start off with you donâ€™t have to start from scratch. Anyone who can probably needs to get out more.. You can use tools like <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3VuaXR5M2QuY29t" target=\"_blank\">Unity</a> and <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5nYXJhZ2VnYW1lcy5jb20vcHJvZHVjdHMvYnJvd3NlL3RnZS8=" target=\"_blank\">Torque</a>. These tools are both professional quality and produce quality work on a low budget. You can also use the open source modeler <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2JsZW5kZXIzZC5vcmc=" target=\"_blank\">Blender</a> with either of these programs. Both engines allow you to create web multiplayer games to an extent so it might be worth a small investment to at least play around with them also keep in mind you can always download the quake engine or the unreal engines to use as well. So the developer/artiest does have decent tools that are readily available to suit your creative thoughts!</p>
<p>Useful Links:<br />    <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2RldmVsb3Blci5hcHBsZS5jb20vZ2FtZXMvZ2FtZWVuZ2luZXNvbm1hYy5odG1s" target=\"_blank\">OSX Game Engines </a><br />    <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5nYXJhZ2VnYW1lcy5jb20vcHJvZHVjdHMvMSNmZWF0dXJlcw==" target=\"_blank\">Torque Engine Specs</a><br />    <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5nYXJhZ2VnYW1lcy5jb20vcHJvZHVjdHMvODc=" target=\"_blank\">Torque Book</a><br />    <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3VuaXR5M2QuY29tL3VuaXR5L2luZGV4Lmh0bWw=" target=\"_blank\">Unity Specs</a><br />    <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2JsZW5kZXIzZC5vcmc=" target=\"_blank\">Blender</a></p>
<p>  <!--break--></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=302" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2006%2F06%2F29%2Findie_game_developer%2F&amp;linkname=Indie%20Game%20Developer"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2006/06/29/indie_game_developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Next Generation Game Console of Choice?</title>
		<link>http://i-create.org/2006/06/19/next_generation_game_console_of_choice?/</link>
		<comments>http://i-create.org/2006/06/19/next_generation_game_console_of_choice?/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[* PS3\n* Nintendo Wii\n* X-Box 360\n* \n* \n]]></description>
			<content:encoded><![CDATA[* PS3\n* Nintendo Wii\n* X-Box 360\n* \n* \n]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2006/06/19/next_generation_game_console_of_choice?/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Viva la Revolution</title>
		<link>http://i-create.org/2006/06/17/viva_la_revolution/</link>
		<comments>http://i-create.org/2006/06/17/viva_la_revolution/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p><img src="/nokia.jpeg" alt="" width="133" height="150" /></p> <p><a href="http://en.wikipedia.org/wiki/Moore&#39;s_law" target="_blank">Let me begin with Moore&#39;s Law &#34;is the empirical observation that the complexity of integrated circuits, with respect to minimum component cost, doubles every 24 months[1]. It is attributed to Gordon E. Moore[2], a co-founder of Intel.&#34;</a>  So what exactly does that mean?  Well let me relate it to my life personally; When I was between 8-9 I can specifically remember wondering through my great grand ma&#39;s cabin.  I ran across some extremely old Dick Tracy Comic books that were very, very, old.  I was immediately intrigued by the vision of the writers and contributing artist vision.  A cell phone watch and TV?  I received my first computer at the age of 13.  I can remember my Aunt Mary giving me my first BBS Yellow Page Book at the age of 14!  I can remember using the web well before Al Gore took credit for creating it. </p>]]></description>
			<content:encoded><![CDATA[<p><img src="/nokia.jpeg" alt="" width="133" height="150" /></p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9Nb29yZQ=="s_law\" target=\"_blank\">Let me begin with Moore&#8217;s Law &#8220;is the empirical observation that the complexity of integrated circuits, with respect to minimum component cost, doubles every 24 months[1]. It is attributed to Gordon E. Moore[2], a co-founder of Intel.&#8221;</a> So what exactly does that mean?  Well let me relate it to my life personally; When I was between 8-9 I can specifically remember wondering through my great grand ma&#8217;s cabin.  I ran across some extremely old Dick Tracy Comic books that were very, very, old.  I was immediately intrigued by the vision of the writers and contributing artist vision.  A cell phone watch and TV?  I received my first computer at the age of 13.  I can remember my Aunt Mary giving me my first BBS Yellow Page Book at the age of 14!  I can remember using the web well before Al Gore took credit for creating it.</p>
<p>So what is next in short it is what is mobile, agile, multi-faceted.  Generation X is X-tremly technologically savvy!  We can&#8217;t rope the range so we evidently needed to create our on version of the Wild Wild West hence &#8220;www.&#8221;.</p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5wY3dvcmxkLmNvbS9uZXdzL2FydGljbGUvMCxhaWQsMTI0OTY1LDAwLmFzcA==" target=\"_blank\">The next big thing is actually small just look around you samsung is already able to develop a cell phone with up to 8gb in it!</a> The point is not to long from now you will have a pentium 3 in a cell phone.  <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL25ld3MueWFob28uY29tL3MvYXAvMjAwNjA2MTQvYXBfb25faGlfdGUvaXRhbHlfY2VsbF9waG9uZV9maWxt" target=\"_blank\">You already have film makers making movies with cell phones.</a> When you combine all the features and place everything on the web you have a paradigm shift.  Look at the popularity of My-Space and keep in mind <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5pNHUuY29tL2FydGljbGU1NzY1Lmh0bWw=" target=\"_blank\">Nokia is out to install an Apache server on all cell phones.</a> I also like the fact that <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL25ld3MuY29tLmNvbS8yMTAwLTEwMzlfMy02MDgzODgzLmh0bWw/cGFydD1yc3MmYW1wO3RhZz02MDgzODgzJmFtcDtzdWJqPW5ld3M=" target=\"_blank\">major cell phone companies are converging on Linux!</a> So think different and work smart!  Just look around you and don&#8217;t ever be too complacent, because disruptive change is around the bend&#8230;</p>
<p>Useful Links:</p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5yYXpybW9kcy5jb20vcGFnZTEuaHRtbA==" target=\"_blank\">Mods</a><br />
<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5tb2JpbGVkaWEuY29tL3Bob25lcy9zaWRlLmh0bWw=" target=\"_blank\">Compare Cell Phones </a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=292" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2006%2F06%2F17%2Fviva_la_revolution%2F&amp;linkname=Viva%20la%20Revolution"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2006/06/17/viva_la_revolution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple+Nintendo=?</title>
		<link>http://i-create.org/2006/06/12/apple_nintendo/</link>
		<comments>http://i-create.org/2006/06/12/apple_nintendo/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Brendon Smith</dc:creator>
				<category><![CDATA[My Rants]]></category>
		<category><![CDATA[Nintendo]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p><a href="http://crave.cnet.co.uk/digitalmusic/0,39029432,49276362,00.htm" target="_blank"><img src="/mario_apple.jpg" border="0" alt="" width="300" height="347" /></a></p> <p><a href="http://crave.cnet.co.uk/digitalmusic/0,39029432,49276362,00.htm" target="_blank">Apple Nintendo rumors kind of cool and definitely worth discussing.  Kind of a cool combo.  I do think Apple could benefit after-all Sony is touting their Play Station 3 as an apple replacement if you can believe that.  Sony does have to go after Apple especially with their wild success with the iPOD.  Sony has to succeed with it&#39;s Play Station 3 if it fails it could seal Sony&#39;s fate and it can not afford a Beta Max Replay.  Their are of course many other things to consider.  Disney is signed on with Blue Ray and many other movie studios have as well.  But Steve Jobs is a media guru and with his ties to Disney and many other companies would of course come into his favor.  If Apple did purchase Nintendo it would be an interesting combination!  Apple I do believe by acquiring Nintendo could go head to head with the XBOX and Play Station.  I would see this as a move to sell more computers after all think about it the Mac Mini is a powerhouse imagine if you could combine that with Nintendo?  The Mac Mini retails for about $500 did I mention that is $100 cheaper than the Play-Station 3?  I think an apple and Nintendo team-up would benefit both companies but I really don&#39;t think it will happen.  It would help spread an apple dominated home media/entertainment system.  Well log in and let me know what you think??</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2NyYXZlLmNuZXQuY28udWsvZGlnaXRhbG11c2ljLzAsMzkwMjk0MzIsNDkyNzYzNjIsMDAuaHRt" target=\"_blank\"><img src="/mario_apple.jpg" border="0" alt="" width="300" height="347" /></a></p>
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2NyYXZlLmNuZXQuY28udWsvZGlnaXRhbG11c2ljLzAsMzkwMjk0MzIsNDkyNzYzNjIsMDAuaHRt" target=\"_blank\">Apple Nintendo rumors kind of cool and definitely worth discussing.  Kind of a cool combo.  I do think Apple could benefit after-all Sony is touting their Play Station 3 as an apple replacement if you can believe that.  Sony does have to go after Apple especially with their wild success with the iPOD.  Sony has to succeed with it&#8217;s Play Station 3 if it fails it could seal Sony&#8217;s fate and it can not afford a Beta Max Replay.  Their are of course many other things to consider.  Disney is signed on with Blue Ray and many other movie studios have as well.  But Steve Jobs is a media guru and with his ties to Disney and many other companies would of course come into his favor.  If Apple did purchase Nintendo it would be an interesting combination!  Apple I do believe by acquiring Nintendo could go head to head with the XBOX and Play Station.  I would see this as a move to sell more computers after all think about it the Mac Mini is a powerhouse imagine if you could combine that with Nintendo?  The Mac Mini retails for about $500 did I mention that is $100 cheaper than the Play-Station 3?  I think an apple and Nintendo team-up would benefit both companies but I really don&#8217;t think it will happen.  It would help spread an apple dominated home media/entertainment system.  Well log in and let me know what you think??</a></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=290" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2006%2F06%2F12%2Fapple_nintendo%2F&amp;linkname=Apple%2BNintendo%3D%3F"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2006/06/12/apple_nintendo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wii Will have Disruptive Change!</title>
		<link>http://i-create.org/2006/05/23/wii_will_have_disruptive_change!/</link>
		<comments>http://i-create.org/2006/05/23/wii_will_have_disruptive_change!/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<a href="http://wii.nintendo.com/" target="_blank"><img src="/wii.jpg" border="0" alt="" width="287" height="354" /></a><p>&#160;</p> <p>You have to love the under dog! I grew up with <a href="http://nintendo.com" target="_blank">Nintendo</a> and I have always been intrigued with the company! They have repeadily taken risks on dreams. They have always pushed Ã¢â‚¬Å“disruptive changeÃ¢â‚¬Â. <a href="http://wii.nintendo.com/" target="_blank">Children learn quickly they have always pitched to young minds. They have also abstained from cheap and classless behavior (i.e. Grand Theft Auto). You do have to harbor a special love for the company! </a>I have watched and studied all the news from <a href="http://www.e3insider.com/portal/" target="_blank">E3</a> and they were the only company that had a 4 Ã‚Â½ hour wait to play games! Their new controller is truly Revolutionary. I also love the fact that the <a href="http://www.nintendo.com/channel/ds" target="_blank">Nintendo DS</a> has <a href="http://www.1up.com/do/feature?pager.offset=0&#38;cId=3148983" target="_blank">out sold </a>the PSP three times over. So I agree <a href="http://wii.nintendo.com/" target="_blank">Wii</a> Will Innovate! It is about time someone created new game concepts after all didn&#39;t Wolfenstein 3d come out in 1992?? </p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dpaS5uaW50ZW5kby5jb20v" target=\"_blank\"><img src="/wii.jpg" border="0" alt="" width="287" height="354" /></a>
<p>&nbsp;</p>
<p>You have to love the under dog! I grew up with <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL25pbnRlbmRvLmNvbQ==" target=\"_blank\">Nintendo</a> and I have always been intrigued with the company! They have repeadily taken risks on dreams. They have always pushed â€œdisruptive changeâ€. <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dpaS5uaW50ZW5kby5jb20v" target=\"_blank\">Children learn quickly they have always pitched to young minds. They have also abstained from cheap and classless behavior (i.e. Grand Theft Auto). You do have to harbor a special love for the company! </a>I have watched and studied all the news from <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5lM2luc2lkZXIuY29tL3BvcnRhbC8=" target=\"_blank\">E3</a> and they were the only company that had a 4 Â½ hour wait to play games! Their new controller is truly Revolutionary. I also love the fact that the <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5uaW50ZW5kby5jb20vY2hhbm5lbC9kcw==" target=\"_blank\">Nintendo DS</a> has <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy4xdXAuY29tL2RvL2ZlYXR1cmU/cGFnZXIub2Zmc2V0PTAmYW1wO2NJZD0zMTQ4OTgz" target=\"_blank\">out sold </a>the PSP three times over. So I agree <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dpaS5uaW50ZW5kby5jb20v" target=\"_blank\">Wii</a> Will Innovate! It is about time someone created new game concepts after all didn&#39;t Wolfenstein 3d come out in 1992?? </p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=277" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2006%2F05%2F23%2Fwii_will_have_disruptive_change%21%2F&amp;linkname=Wii%20Will%20have%20Disruptive%20Change%21"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2006/05/23/wii_will_have_disruptive_change!/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opera on the DS</title>
		<link>http://i-create.org/2006/02/15/opera_on_the_ds/</link>
		<comments>http://i-create.org/2006/02/15/opera_on_the_ds/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[3d]]></category>
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<a href="http://www.opera.com/pressreleases/en/2006/02/15/" target="_blank"><img src="nintendo_ds.png" width="145" height="150"></a><br /><p><a href="http://www.opera.com/pressreleases/en/2006/02/15/">Well it is about time someone made a browser for the DS. What a novel idea it does come with built in wifi I will be looking forward to putting it to good use. I am also happy it is opera that is creating the browser. Opera is an excellent cross platform browser and I know they will make a browser that has a few more tricks up its sleeve. Opera 9 is going to have widget support. They have also been working on a bittorrent client for the browser! They also plan on having a built in keyboard, and stylus functionality. You can bet that Opera will take full advantage of all of the DS capabilities. I think this is a wonderful step in the right direction from Nintendo. The DS does have the ability to do more than just games. </a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5vcGVyYS5jb20vcHJlc3NyZWxlYXNlcy9lbi8yMDA2LzAyLzE1Lw==" target=\"_blank\"><img src="nintendo_ds.png" width="145" height="150"></a><br />
<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5vcGVyYS5jb20vcHJlc3NyZWxlYXNlcy9lbi8yMDA2LzAyLzE1Lw==">Well it is about time someone made a browser for the DS. What a novel idea it does come with built in wifi I will be looking forward to putting it to good use. I am also happy it is opera that is creating the browser. Opera is an excellent cross platform browser and I know they will make a browser that has a few more tricks up its sleeve. Opera 9 is going to have widget support. They have also been working on a bittorrent client for the browser! They also plan on having a built in keyboard, and stylus functionality. You can bet that Opera will take full advantage of all of the DS capabilities. I think this is a wonderful step in the right direction from Nintendo. The DS does have the ability to do more than just games. </a></p>
<p><!--break-->&#8220;</p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=231" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2006%2F02%2F15%2Fopera_on_the_ds%2F&amp;linkname=Opera%20on%20the%20DS"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2006/02/15/opera_on_the_ds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Revolt on the Nintendo Revolution</title>
		<link>http://i-create.org/2005/09/19/revolt_on_the_nintendo_revolution/</link>
		<comments>http://i-create.org/2005/09/19/revolt_on_the_nintendo_revolution/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[3d]]></category>
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<img src="http://www.j-fan.com/games/editimages/famicom.jpg" width="320" height="240" longdesc="http://amadeo.blog.com/repository/8408/33593.p.jpg"></p>
As you can see by the article below <a href="http://www.nintendo.com/" target="_blank">Nintendo</a> finally  announced what's the deal about the<a href="http://www.nintendo.com/" target="_blank"> Nintendo Revolution controller</a> at the <a href="http://tgs.cesa.or.jp/english/" target="_blank">Tokyo Game Show 2005. </a>I waited several months to find out what's the deal  with their new system since they had almost nothing to say at the big E3 conference. Turns out the new controller is shaped just like a remote control and works using motion detection much like the old <a href="http://www.gamer-talk.net/images/article/editorials/matt/powerglove.jpg" target="_blank">Power Glove.</a> Now when I first heard this I was like ...WHAT THE HECK!!!! A friggin <a href="http://www.pliniusaudio.com/secimages/photos/remote.jpg" target="_blank">remote control</a>? Nintendo's next big thing is a<a href="http://amadeo.blog.com/repository/8408/33593.p.jpg" target="_blank"> channel flipper</a>??? 

I guess the point is that they want to attract new users to the video game industry by having a device that's easy to use and familiar. Sounds good doesn't it? Well personally I thought Nintendo would have something better than a remote control up its sleeve. What's stopping another system from coming out with a better controller? You can already pick from a million different 1st and 3rd party controllers that cover every device from a <a href="http://www.sz-wholesale.com/uploadFiles/040908113346s.gif" target="_blank">fishing pole</a> to a <a href="http://images.amazon.com/images/P/B00005ARVA.02._SCLZZZZZZZ_.jpg" target="_blank">gun</a> all the way up to a full cockpit for a mech.</p>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.j-fan.com/games/editimages/famicom.jpg" width="320" height="240" longdesc="http://amadeo.blog.com/repository/8408/33593.p.jpg"></p>
<p>As you can see by the article below <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5uaW50ZW5kby5jb20v" target=\"_blank\">Nintendo</a> finally  announced what&#8217;s the deal about the<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5uaW50ZW5kby5jb20v" target=\"_blank\"> Nintendo Revolution controller</a> at the <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3Rncy5jZXNhLm9yLmpwL2VuZ2xpc2gv" target=\"_blank\">Tokyo Game Show 2005. </a>I waited several months to find out what&#8217;s the deal  with their new system since they had almost nothing to say at the big E3 conference. Turns out the new controller is shaped just like a remote control and works using motion detection much like the old <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5nYW1lci10YWxrLm5ldC9pbWFnZXMvYXJ0aWNsZS9lZGl0b3JpYWxzL21hdHQvcG93ZXJnbG92ZS5qcGc=" target=\"_blank\">Power Glove.</a> Now when I first heard this I was like &#8230;WHAT THE HECK!!!! A friggin <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5wbGluaXVzYXVkaW8uY29tL3NlY2ltYWdlcy9waG90b3MvcmVtb3RlLmpwZw==" target=\"_blank\">remote control</a>? Nintendo&#8217;s next big thing is a<a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2FtYWRlby5ibG9nLmNvbS9yZXBvc2l0b3J5Lzg0MDgvMzM1OTMucC5qcGc=" target=\"_blank\"> channel flipper</a>??? </p>
<p>I guess the point is that they want to attract new users to the video game industry by having a device that&#8217;s easy to use and familiar. Sounds good doesn&#8217;t it? Well personally I thought Nintendo would have something better than a remote control up its sleeve. What&#8217;s stopping another system from coming out with a better controller? You can already pick from a million different 1st and 3rd party controllers that cover every device from a <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5zei13aG9sZXNhbGUuY29tL3VwbG9hZEZpbGVzLzA0MDkwODExMzM0NnMuZ2lm" target=\"_blank\">fishing pole</a> to a <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ltYWdlcy5hbWF6b24uY29tL2ltYWdlcy9QL0IwMDAwNUFSVkEuMDIuX1NDTFpaWlpaWlpfLmpwZw==" target=\"_blank\">gun</a> all the way up to a full cockpit for a mech.</p>
<p>A friend of mine has a <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2FkdmVudHVyZXMubmdlbnJlcy5jb20vc2NyZWVucy8xNDYvZ2FtZWN1YmUuanBn" target=\"_blank\">GameCube</a>. Most of the games on the cube are for kids or remakes of an early Nintendo game like Metroid or Mario Bro&#8217;s. The next system sounds like its going to be even worse as far as games go.. In the Movie industry they generally only try to make flicks that are for everyone. As a result most movies end up a big suck fest full of ads. They offend no one and aren&#8217;t entertaining. </p>
<p> I don&#8217;t want to play games that are for everyone like some <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ltYWdlcy1ldS5hbWF6b24uY29tL2ltYWdlcy9QL0IwMDAwMjVGSEMuMDMuTFpaWlpaWlouanBn" target=\"_blank\">dumb summer movie</a>. I want to shoot someone&#8217;s head off and see their brains slowly ooze down the wall. I want to hear the crys of pain &#8216;n terror as innocent people get burnt to a crisp, when I use a my laser beam eyebrows to burn down their stupid hick town. I want games that are challenging. It&#8217;s totally lame when your <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3RvZGRsZXJzdG9kYXkuY29tL2dyYXBoaWNzL3RhbnRydW0uanBn" target=\"_blank\">5 year old nephew</a> can beat you at a game because the game consists of nothing more than <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2djLmFkdmFuY2VkbW4uY29tL2ltYWdlcy9jb250ZW50L3Jldmlld3MvZ2dtcDUuanBn" target=\"_blank\">button mashing</a>. <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5mbGsuYmUvcGljbGliL3Jlc3NvdXJjZXMvcGljXzAwMDAwMjI3MS5qcGc=" target=\"_blank\">Hardcore gamers</a> need a learning curve and Nintendo wants to take that away as much as possible for 90% of its games. Seeing  who can make their cute <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29zZWI3OS5mcmVlLmZyL2ltYWdlcy9TZXJpZSwlMjBjYXJ0b29uL1Bva2Vtb24lMjAwMS5qcGc=" target=\"_blank\">Pokemon</a> eat the cake first by pressing the A button  the fastest makes my stomach turn.  I&#8217;ll throw a fireball at that cute Pokemon fur ball.. (  half circle forward, high punch ) then follow that with a <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5jb25zb2xlbmV0d29yay5pdC9yZWNfcHJldi9nYmEvc3NmMnRyL3NzZjJ0cl81LmpwZw==" target=\"_blank\">dragon punch</a> .. (forward, half circle forward, high punch ) and see his blood and guts splatter all over the crowd of <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2ltZzMwLmV4cy5jeC9pbWczMC84MzQvMjAwNDA5MjJfcGFtZWxhMi5qcGc=" target=\"_blank\">large breasted females</a> who are cheering me on as I eat  his soul&#8230;.. Maybe its just me. <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL21haG9wYS5kZS9iaWxkZXIvZnVubnktZm9ydW0tcGljdHVyZXMvYmFkLW5ld2JpZS1iYWQuanBn" target=\"_blank\">Newbies</a> feel free to go get yourself a lil pansy Nintendo. I&#8217;m sure the new controller will be fun. <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3RvZGRsZXJzdG9kYXkuY29tL2dyYXBoaWNzL3RhbnRydW0uanBn" target=\"_blank\">Just don&#8217;t cry when I whoop your butt in a real game</a> full of violence n blood shed on a <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy51cy5wbGF5c3RhdGlvbi5jb20v" target=\"_blank\">better system</a>. Nintendo come back when you have games that I can control with my mind and better specs on your hardware. Until then I&#8217;m sure will see your  new controller in the same place my <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5vcnBoYW52aWRlb2dhbWVzLmNvbS9wb3dlcmdsb3ZlLmpwZw==" target=\"_blank\">Power Glove</a> ended up. That is at a garage sale!!!</p>
<p>ps &#8230;i&#8217;m sure Nintendo will sell millions of consoles&#8230;but Sony is sure to sell more&#8230;will see won&#8217;t we&#8230;</p>
<p>anyways nintendo makes some good games&#8230;..loved Resident Evil and Wario Ware stuff&#8230;</p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=193" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2005%2F09%2F19%2Frevolt_on_the_nintendo_revolution%2F&amp;linkname=Revolt%20on%20the%20Nintendo%20Revolution"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2005/09/19/revolt_on_the_nintendo_revolution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video Game Industry</title>
		<link>http://i-create.org/2005/09/18/video_game_industry/</link>
		<comments>http://i-create.org/2005/09/18/video_game_industry/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[3d]]></category>
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<a href="http://www.1up.com/do/newsStory?cId=3143782" target="_blank"><img src="http://i-create.org/files/media.jpg" width="297" height="233" border="0"></a><br />You know you like them.  You may not play them but you have to respect an industry with a growth rate like the video game industry.  It is exponential, they surpassed Hollywood this past year and they will only continue to grow.  Another thing you can ponder is the fact that every young person plays them, they will also conquer the home media arena.  Think about it Play Station 3 runs on Linux, with an old X-Box you can mod it and convert it into a media station (after all an x-box is a celeron 733 with 64 mb of ram and about a 20 gig hardrive, 2 usb ports 1 for a mouse and 1 for a  keyboard,easily capable of running Linux.). So with that being said you can look to that industry for innovation.  Three dimensional technology will take off and with a generation hooked on video games they will be able to grasp the graphical user interface.  I do have to say that I do have a particular like for the struggling underdog Nintendo.  They are the only company that keeps it clean and actually innovates.  <a href="http://www.1up.com/do/newsStory?cId=3143782" target="_blank">Check out the revolution specs</a>, they will also tie it into the <a href="http://ds.1up.com/" target="_blank">DS</a>.  I have to respect them for putting it on the line, taking a risk, and thinking of something new (after all with GTA 3, promoting dugs, sex and violence, you would have to hope there is something more).  <a href="http://www.idsoftware.com/business/techdownloads/" target="_blank">Anyway if you are a developer here is Quake 3 Arena Source.  Here is a challenge download it mod, mod it, make something beautiful, non-violent, imaginative, with it.  I challenge you.  You also can't go wrong with the multiuser functionality.  Make something new.</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy4xdXAuY29tL2RvL25ld3NTdG9yeT9jSWQ9MzE0Mzc4Mg==" target=\"_blank\"><img src="http://i-create.org/files/media.jpg" width="297" height="233" border="0"></a><br />You know you like them.  You may not play them but you have to respect an industry with a growth rate like the video game industry.  It is exponential, they surpassed Hollywood this past year and they will only continue to grow.  Another thing you can ponder is the fact that every young person plays them, they will also conquer the home media arena.  Think about it Play Station 3 runs on Linux, with an old X-Box you can mod it and convert it into a media station (after all an x-box is a celeron 733 with 64 mb of ram and about a 20 gig hardrive, 2 usb ports 1 for a mouse and 1 for a  keyboard,easily capable of running Linux.). So with that being said you can look to that industry for innovation.  Three dimensional technology will take off and with a generation hooked on video games they will be able to grasp the graphical user interface.  I do have to say that I do have a particular like for the struggling underdog Nintendo.  They are the only company that keeps it clean and actually innovates.  <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy4xdXAuY29tL2RvL25ld3NTdG9yeT9jSWQ9MzE0Mzc4Mg==" target=\"_blank\">Check out the revolution specs</a>, they will also tie it into the <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2RzLjF1cC5jb20v" target=\"_blank\">DS</a>.  I have to respect them for putting it on the line, taking a risk, and thinking of something new (after all with GTA 3, promoting dugs, sex and violence, you would have to hope there is something more).  <a href="http://i-create.org/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5pZHNvZnR3YXJlLmNvbS9idXNpbmVzcy90ZWNoZG93bmxvYWRzLw==" target=\"_blank\">Anyway if you are a developer here is Quake 3 Arena Source.  Here is a challenge download it mod, mod it, make something beautiful, non-violent, imaginative, with it.  I challenge you.  You also can&#8217;t go wrong with the multiuser functionality.  Make something new.</a><!--break--></p>
 <img src="http://i-create.org/wp-content/plugins/feed-statistics.php?view=1&post_id=192" width="1" height="1" style="display: none;" /><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fi-create.org%2F2005%2F09%2F18%2Fvideo_game_industry%2F&amp;linkname=Video%20Game%20Industry"><img src="http://i-create.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://i-create.org/2005/09/18/video_game_industry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
