<?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>Xeon Xai</title>
	<atom:link href="http://blog.xeonxai.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.xeonxai.com</link>
	<description>My rants on PHP, Objective-C, Cocoa Touch, and other random stuff.</description>
	<lastBuildDate>Sun, 02 Sep 2012 03:41:46 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Why Apple Needs to Improve the App Review Process Timeframe</title>
		<link>http://blog.xeonxai.com/2012/09/01/213/</link>
		<comments>http://blog.xeonxai.com/2012/09/01/213/#comments</comments>
		<pubDate>Sun, 02 Sep 2012 03:41:46 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[bug fixes]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[improvements.]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/2012/09/01/213/</guid>
		<description><![CDATA[When I first started submitting bug fixes back in December of 2011, the app review process timeframe was at 5 days from submission to approval, where it then ends up in the app store. Currently, it is at 11 days average, from submission to approval. For both new apps, and bug fixes. 11 days is [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>When I first started submitting bug fixes back in December of 2011, the app review process timeframe was at 5 days from submission to approval, where it then ends up in the app store. Currently, it is at 11 days average, from submission to approval. For both new apps, and bug fixes.</p>
<p>11 days is 8 days too long. If an app has a bug, or several bugs for that matter, every day of waiting means more negative reviews and bad attitudes from customers. Ultimately it affects not only the developers, but the app store as a whole. This sort of delay ends up lowering app star ratings and makes for crankier customers.</p>
<p>If this delayed process continues to grow longer and longer, in 9 more months, I assume the wait time will be at around 18 to 21 days from time of submission to approval. This is unacceptable in today&#8217;s market.</p>
<p>The review process needs to improve before too long, or it will begin to affect developers lives and peace of mind. 3 days time is the most it should ever be.</p>
<p>I have seen one app that recently released a new version, and a bug fix within 2 or 3 days. That app being Pinterest. Either Pinterest had 2 versions in the queue and set out to bug fix while one version was awaiting review, then submitted their bug fix a few days later, with 2 versions in the queue, or, they found the bugs after the first one went live, then submitted the fix and got near instant approval from Apple by bypassing all the other developers in the process.</p>
<p>If Pinterest can get bug fixes approved within 3 days, then Pinterest knows the solution to the elongated delays.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2012/09/01/213/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Xcode 4.2 and SVN Authentication Fix</title>
		<link>http://blog.xeonxai.com/2011/11/21/209/</link>
		<comments>http://blog.xeonxai.com/2011/11/21/209/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 03:12:26 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Xcode]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS developement]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=209</guid>
		<description><![CDATA[I was having issues with SVN for a long time after upgrading to Xcode 4+ from version 3.2+ when trying to commit file changes. No suggestion I found on the Internet solved them until I found a proper solution. After making my /etc/apache2/other/svn.conf file resemble this, I was finally able to get Xcode 4 to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I was having issues with SVN for a long time after upgrading to Xcode 4+ from version 3.2+ when trying to commit file changes. No suggestion I found on the Internet solved them until I found a proper solution. After making my /etc/apache2/other/svn.conf file resemble this, I was finally able to get Xcode 4 to change all the red lights to green. Looks like I won&#8217;t have to switch to git after all.</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="apache" style="font-family:monospace;">&nbsp;
&lt;<span style="color: #000000; font-weight:bold;">Location</span> /repos&gt;
     <span style="color: #00007f;">DAV</span> svn
     <span style="color: #00007f;">SVNParentPath</span> <span style="color: #7f007f;">&quot;/usr/local/svn/repos&quot;</span>
     <span style="color: #00007f;">Order</span> <span style="color: #00007f;">deny</span>,<span style="color: #00007f;">allow</span>
     <span style="color: #00007f;">Deny</span> from <span style="color: #0000ff;">all</span>
     <span style="color: #00007f;">Satisfy</span> any
&nbsp;
     <span style="color: #00007f;">AuthType</span> Basic
     <span style="color: #00007f;">AuthName</span> <span style="color: #7f007f;">&quot;SVN Repository Realm&quot;</span>
     <span style="color: #00007f;">AuthUserFile</span> /etc/apache2/svn-auth-file
&nbsp;
     <span style="color: #adadad; font-style: italic;">#read-only access</span>
     &lt;<span style="color: #000000; font-weight:bold;">Limit</span> GET PROPFIND <span style="color: #00007f;">OPTIONS</span> REPORT&gt;
        <span style="color: #00007f;">Require</span> valid-<span style="color: #00007f;">user</span>
        <span style="color: #00007f;">Allow</span> from localhost
        <span style="color: #adadad; font-style: italic;"># Allow from another-ip</span>
        <span style="color: #00007f;">Satisfy</span> any
     &lt;/<span style="color: #000000; font-weight:bold;">Limit</span>&gt;
     <span style="color: #adadad; font-style: italic;"># write access</span>
     &lt;<span style="color: #000000; font-weight:bold;">LimitExcept</span> GET PROPFIND <span style="color: #00007f;">OPTIONS</span> REPORT&gt;
       <span style="color: #00007f;">Require</span> valid-<span style="color: #00007f;">user</span>
     &lt;/<span style="color: #000000; font-weight:bold;">LimitExcept</span>&gt;
&lt;/<span style="color: #000000; font-weight:bold;">Location</span>&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2011/11/21/209/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mac OS X Lion and MySQL Startup</title>
		<link>http://blog.xeonxai.com/2011/08/11/198/</link>
		<comments>http://blog.xeonxai.com/2011/08/11/198/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 01:06:32 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[mac os x lion]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[startup]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=198</guid>
		<description><![CDATA[After installing Mac OS X Lion and updated my PHP extensions, as well as installing the newest MySQL, I found that when I tried to use MySQL, it wasn&#8217;t working. Seems that MySQL wouldn&#8217;t start up do to owner settings. MySQL was previously installed in Snow Leopard with file ownership set to mysql:wheel, which worked [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>After installing Mac OS X Lion and updated my PHP extensions, as well as installing the newest MySQL, I found that when I tried to use MySQL, it wasn&#8217;t working. Seems that MySQL wouldn&#8217;t start up do to owner settings.</p>
<p>MySQL was previously installed in Snow Leopard with file ownership set to mysql:wheel, which worked fine in Snow Leopard.  In Lion it failed to start.</p>
<p>In Terminal, run the following:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> mysql:mysql data</pre></td></tr></table></div>

<p>After running this, and starting up MySQL in the System Preferences panel, everything worked again.</p>
<p>Notice, that your &#8220;data&#8221; folder is the MySQL data folder where it stores the database files.  My is located at &#8220;/usr/local/mysql-data/data&#8221; so that I don&#8217;t have to worry about upgrades and moving the folder. Your location may vary.</p>
<p>Hope this helps anyone else.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2011/08/11/198/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X Lion Upgrade PHP Extensions Tutorial: ImageMagick and More.</title>
		<link>http://blog.xeonxai.com/2011/07/31/190/</link>
		<comments>http://blog.xeonxai.com/2011/07/31/190/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 21:22:25 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Extensions]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=190</guid>
		<description><![CDATA[After upgrading my Mac OS X Snow Leopard to Mac OS X Lion, I noticed that some of my PHP extensions that I had compiled to work with the Apple PHP 5.3.6 binary had been removed. Some, not all. Which I assume is due to them having been compiled 4-way binary compatible (PowerPC and i386/x86_64). [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>After upgrading my Mac OS X Snow Leopard to Mac OS X Lion, I noticed that some of my PHP extensions that I had compiled to work with the Apple PHP 5.3.6 binary had been removed. Some, not all. Which I assume is due to them having been compiled 4-way binary compatible (PowerPC and i386/x86_64). Since Lion no longer supports PowerPC, it seems that all the extension files that had PowerPC in them were removed.  Xdebug was still there, but all the rest were gone.  Below is the process I performed to get everything back.</p>
<p><strong>Step 1</strong>:<br />
Download and install <a href="https://distfiles.macports.org/MacPorts/MacPorts-2.0.0-10.7-Lion.dmg">MacPorts 2.0.0</a> for Mac OS X Lion.</p>
<p><strong>Step 2</strong>:<br />
In Terminal, run the following commands.  The first one may take a while to update the binaries as it compiles them.</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> port upgrade outdated
<span style="color: #c20cb9; font-weight: bold;">sudo</span> port uninstall inactive</pre></td></tr></table></div>

<p><strong>Step 3</strong>:<br />
Download and install <a href="http://www.mysql.com/downloads/mysql/">MySQL 5</a> (currently at mysql-5.5.15-osx10.6-x86_64 as of this writing) for Mac OS X.</p>
<p>You may not need to install MySQL, though I chose to do so as I wanted to update to the 64bit System Preferences panel, since I was running an earlier version of MySQL 5 previously.</p>
<p><strong>Step 4</strong>:<br />
I also noticed that my /etc/php.ini file was moved to /etc.php.applesaved and no longer called any of my PHP extensions I had set.</p>
<p>In Terminal, run the following:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>php.ini.applesaved <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>php.ini
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apachectl graceful</span></pre></td></tr></table></div>

<p><strong>Step 5</strong>:<br />
<a href="/2009/09/02/146/">Continue on to my PHP extensions tutorial for Snow Leopard and begin with Step 5 if you don&#8217;t have ImageMagick installed, Step 6 if you do.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2011/07/31/190/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>ReformatCode Project on GitHub</title>
		<link>http://blog.xeonxai.com/2010/11/10/182/</link>
		<comments>http://blog.xeonxai.com/2010/11/10/182/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 12:14:56 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[human readable]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[readable]]></category>
		<category><![CDATA[reformat]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=182</guid>
		<description><![CDATA[About: I have added an open source project to the GitHub.  The project, ReformatCode currently only supports reformatting JSON data to human readable format.  Though I hope in the future it can be extended to support CSS indentation structuring with intelligent parent &#8211; child relationship styles.   Formatting CSS can be a little complex if you [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>About:</strong></p>
<p>I have added an open source project to the GitHub.  The project, ReformatCode currently only supports reformatting JSON data to human readable format.  Though I hope in the future it can be extended to support CSS indentation structuring with intelligent parent &#8211; child relationship styles.   Formatting CSS can be a little complex if you want it to really show properly how the CSS works with other classes and what is a sub element or sub class of another.  So that would be a possible and welcome addition to the code base in the future if effort is put into it.</p>
<p><strong>Download:</strong></p>
<p><a title="ReformatCode Project via GitHub" href="http://github.com/xeokeri/ReformatCode" target="_blank">ReformatCode Project via GitHub</a></p>
<p><strong>Usage:</strong></p>
<p>Passing either a JSON object or string, will reformat the JSON to a human readable level.<br />
Second param (optional) is an object of settings to override defaults.</p>
<p><strong>Example:</strong></p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="javascript" style="font-family:monospace;">ReformatCode.<span style="color: #660066;">formatJSON</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;key&quot;</span><span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;sub_key&quot;</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;sub_value&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;indent&quot;</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;spaces&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;debug&quot;</span><span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;newline&quot;</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;<span style="color: #000099; font-weight: bold;">\r</span>&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p><strong>Input:</strong></p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="json" style="font-family:monospace;">{&quot;key&quot;: {&quot;sub_key&quot;: &quot;sub_value&quot;}</pre></td></tr></table></div>

<p><strong>Ouput:</strong></p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="json" style="font-family:monospace;">{
    &quot;key&quot;: {
        &quot;sub_key&quot;: &quot;sub_value&quot;
    }
}</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2010/11/10/182/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I bought an Apple iPad on Release Day!</title>
		<link>http://blog.xeonxai.com/2010/04/04/174/</link>
		<comments>http://blog.xeonxai.com/2010/04/04/174/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 17:04:22 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[32gb]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[apress]]></category>
		<category><![CDATA[best buy]]></category>
		<category><![CDATA[first day]]></category>
		<category><![CDATA[ibookstore]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[release day]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=174</guid>
		<description><![CDATA[I bought an Apple iPad on release day.  I love it, but I wish more of the iPhone apps that I use on a regular basis were updated to work natively on the iPad large screen without having to upscale the app size. I do love the ABC video player app, and the speed of [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I bought an Apple iPad on release day.  I love it, but I wish more of the iPhone apps that I use on a regular basis were updated to work natively on the iPad large screen without having to upscale the app size.</p>
<p>I do love the ABC video player app, and the speed of the system.  Very responsive.  Love it so much.  It is the WiFi model, but I do intend to get a WiFi + 3G model later.  One for development and one for regular daily use.</p>
<p>Just wish I could find the Apress books in the iBookstore.  Even though I have the printed edition and the eBook editions from Apress, I still would like to be able to have an iBookstore version I could read on the iPad without having to load the PDF file from the MacBook to it.</p>
<p>The model I purchased was the 32GB unit, as the Best Buy store I was at was already out of the 64GB units at the time I had arrived in the line.  Purchasing this iPad kept me from buying a Nintendo Wii for the time being.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2010/04/04/174/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finished Reading the Apress Beginning iPhone 3 Development Book.</title>
		<link>http://blog.xeonxai.com/2010/02/07/171/</link>
		<comments>http://blog.xeonxai.com/2010/02/07/171/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 04:01:36 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[apress]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone os]]></category>
		<category><![CDATA[iphone sdk]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[studying]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=171</guid>
		<description><![CDATA[Finished reading the 500+ page Apress book, Beginning iPhone 3 Development: Exploring the iPhone SDK.  As I have all other books released by Apress on developing for the iPhone, I&#8217;ll continue reading more of the books I have.  When I get an iPad, I&#8217;ll be sure to buy some of the books by Apress on [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Finished reading the 500+ page Apress book, Beginning iPhone 3 Development: Exploring the iPhone SDK.  As I have all other books released by Apress on developing for the iPhone, I&#8217;ll continue reading more of the books I have.  When I get an iPad, I&#8217;ll be sure to buy some of the books by Apress on the iPad.</p>
<p>I also have the More iPhone 3 Development book by Apress.  Which I will read after I finish some of the shorter 200+ page books that I&#8217;ve also ordered from Apress on Amazon.  No Kindle for me though.  I do have the eBooks in PDF form from Apress and the printed copies of all the books from the Amazon store.  Just wish the iPad would be released sooner, so I can begin reading the books on it while I&#8217;m developing apps for it at the same time.  I do plan to get 2 iPads.  One for development, and one for regular daily use.</p>
<p>If I get time, I&#8217;ll include more tutorials on Apple Snow Leopard PHP extensions, as I&#8217;ve been asked in the different comments.  Though I&#8217;ve been spending most of my time writing software ideas and studying for the iPhone OS.</p>
<p>3 books down, many more to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2010/02/07/171/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple iPad and the Need to Buy One</title>
		<link>http://blog.xeonxai.com/2010/01/31/166/</link>
		<comments>http://blog.xeonxai.com/2010/01/31/166/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 04:34:58 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[cocoa]]></category>
		<category><![CDATA[cocoa touch]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[imac]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[pre-order]]></category>
		<category><![CDATA[purchase]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=166</guid>
		<description><![CDATA[I will pre-order an Apple iPad the day they are available for pre-sale, or regular order on the day if they are immediately available for purchase.  I am thinking about getting the WiFi model first to use for development, and then later getting the WiFi + 3G model for everyday use. I&#8217;ve already begun switching [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I will pre-order an Apple iPad the day they are available for pre-sale, or regular order on the day if they are immediately available for purchase.  I am thinking about getting the WiFi model first to use for development, and then later getting the WiFi + 3G model for everyday use.</p>
<p>I&#8217;ve already begun switching over to the iPad beta SDK environment while I study all the Cocoa Touch and Objective-C 2.0 reading and testing.  Though it be nice to be able to test on the production device, as it would be more entertaining.</p>
<p>Need to upgrade/replace my MacBook 13&#8243; sometime soon too.  Would be nice to get a 27&#8243; iMac with a second 27&#8243; external display, or get a Mac Pro with 3 external monitors.  Need more screen space for programming and software development.  13&#8243; MacBook screen and external 19&#8243; screen doesn&#8217;t give enough space for development.  The iPad screen for the development simulator is too large to fit on the MacBook 13&#8243; screen at full resolution.</p>
<p>So, it looks like the iPad device will cause me to want to purchase 2 or 3 more additional Apple products.  Apple sure knows how to sell to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2010/01/31/166/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Tablet: You buying?</title>
		<link>http://blog.xeonxai.com/2010/01/18/163/</link>
		<comments>http://blog.xeonxai.com/2010/01/18/163/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 05:54:05 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=163</guid>
		<description><![CDATA[Been studying iPhone App Development over the past few months.  Reading all the books that I&#8217;ve been buying in the Apress series, so I don&#8217;t always find myself replying to all the comments or questions I get on this blog.  As I have about 1200 pages of iPhone books to read through as fast as [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Been studying iPhone App Development over the past few months.  Reading all the books that I&#8217;ve been buying in the Apress series, so I don&#8217;t always find myself replying to all the comments or questions I get on this blog.  As I have about 1200 pages of iPhone books to read through as fast as possible.  I&#8217;ve already pre-ordered all the Apress books yet to be published on the iPhone.  What I read on other blogs is that the Mac Tablet will possible be supporting the iPhone OS and at the very least, iPhone App software technology with Cocoa Touch interfaces.  So I need to beef up my iPhone studies if I want to produce a decent set of software for such a device.</p>
<p>So here is the real question.  Are you going to buy the Mac Tablet if it is released this year?  If so, how soon after it&#8217;s released?  If not, why not?  Pros, cons, etc&#8230; Let me know what your thoughts are.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2010/01/18/163/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Snow Leopard PHP and IMAP Support</title>
		<link>http://blog.xeonxai.com/2009/12/03/160/</link>
		<comments>http://blog.xeonxai.com/2009/12/03/160/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 02:45:41 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[Extensions]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[x86_64]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=160</guid>
		<description><![CDATA[Seeing as how the stock Apple Mac OS X 10.6 Snow Leopard PHP 5.3 doesn&#8217;t come with IMAP extension support, I realized it was time to add it in to build a tool to extract data from my gmail account emails. Here is the steps I took to get it installed and working. Step 1: [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Seeing as how the stock Apple Mac OS X 10.6 Snow Leopard PHP 5.3 doesn&#8217;t come with IMAP extension support, I realized it was time to add it in to build a tool to extract data from my gmail account emails.  Here is the steps I took to get it installed and working.</p>
<p><strong>Step 1</strong>:</p>
<p>Download IMAP <a href="ftp://ftp.cac.washington.edu/imap/imap-2007e.tar.gz" target="_blank">source code</a>. (2007e as of writing this). Without this, trying to compile the IMAP PHP extension will give you errors and will refuse to compile.</p>
<p>Unpack the imap-2007e.tar.gz file.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">sudo mv ~/Downloads/imap-2007e /usr/local/imap-2007
cd /usr/local/imap-2007
make osx
sudo cp c-client/c-client.a c-client/libc-client.a</pre></td></tr></table></div>

<p><strong>Step 2:</strong></p>
<p>Download <a href="http://us2.php.net/downloads.php">PHP 5.3.0 source code</a> for the php imap extension <a href="http://us2.php.net/get/php-5.3.0.tar.gz/from/a/mirror">here</a>.  I already had a copy from my previous extension tutorial, so I just used that copy.</p>
<p>Unpack the file php-5.3.0.tar.gz.  We will only need to use the code within the ext/imap directory.  No need to compile all of PHP for this.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">cd ~/Downloads/php-5.3.0/ext/imap
phpize
./configure --with-imap==/usr/local/imap-2007 --with-kerberos --with-imap-ssl
make
sudo cp modules/imap.so /usr/lib/php/extensions/no-debug-non-zts-20090626/</pre></td></tr></table></div>

<p><strong>Step 3</strong>:</p>
<p>Add in the extension location to the php.ini file.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">sudo pico /etc/php.ini</pre></td></tr></table></div>

<p>I placed the following after all the commented out lines for extensions:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">extension=/usr/lib/php/extensions/no-debug-non-zts-20090626/imap.so</pre></td></tr></table></div>

<p>After you have placed that line in there, press Control-X to exit and save.</p>
<p><strong>Step 4:</strong></p>
<p>Restart Apache.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">sudo apachectl graceful</pre></td></tr></table></div>

<p>Now you should be able to see the imap extension installed in your stock Apple PHP.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2009/12/03/160/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Open To Suggestions For Snow Leopard PHP Tutorials.</title>
		<link>http://blog.xeonxai.com/2009/09/14/157/</link>
		<comments>http://blog.xeonxai.com/2009/09/14/157/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 05:01:30 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[suggestions]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=157</guid>
		<description><![CDATA[I am open to suggestions for Snow Leopard PHP tutorials. Either installing more extension, or help with PHP in general. Let me know and I will help as best I can. I&#8217;m also able to help with JavaScript, jQuery, XML, JSON, and MySQL.]]></description>
				<content:encoded><![CDATA[<p>I am open to suggestions for Snow Leopard PHP tutorials.  Either installing more extension, or help with PHP in general.  Let me know and I will help as best I can.  I&#8217;m also able to help with JavaScript, jQuery, XML, JSON, and MySQL.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2009/09/14/157/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Snow Leopard PHP Extensions Installation Tutorial</title>
		<link>http://blog.xeonxai.com/2009/09/02/146/</link>
		<comments>http://blog.xeonxai.com/2009/09/02/146/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 05:12:47 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Extensions]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[imagick]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[magickwand]]></category>
		<category><![CDATA[mcrypt]]></category>
		<category><![CDATA[memcached]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[xdebug]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=146</guid>
		<description><![CDATA[This will help you to setup imagick, magicwand, xdebug, mcrypt and memcached for Snow Leopard&#8217;s bundled PHP 5.3.0. Please do expect the installation of ImageMagick to take a bit of time, as it requires a large number of packages. I&#8217;m doing it all my preferred way. If you have another way that is faster or [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This will help you to setup imagick, magicwand, xdebug, mcrypt and memcached for Snow Leopard&#8217;s bundled PHP 5.3.0.  Please do expect the installation of ImageMagick to take a bit of time, as it requires a large number of packages.  I&#8217;m doing it all my preferred way.   If you have another way that is faster or better, I&#8217;d be glad to take your suggestions and make this tutorial more streamlined.</p>
<p><strong>Step 1:</strong></p>
<p>Make sure you have XCode 3.2 for Snow Leopard installed, from the Snow Leopard install DVD.</p>
<p><strong>Step 2:</strong></p>
<p>Download <a href="http://www.macports.org">MacPorts</a> for Mac OS X 10.6 Snow Leopard <a href="http://distfiles.macports.org/MacPorts/MacPorts-1.8.0-10.6-SnowLeopard.dmg">here</a>.</p>
<p>If you have previously installed MacPorts and installed software with it in Mac OS X 10.5, run this first to remove it, as it won&#8217;t work in Snow Leopard anymore.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">sudo rm -rf /opt/local \
/Applications/MacPorts \
/Applications/DarwinPorts \
/Library/Tcl/macports1.0 \
/Library/Tcl/darwinports1.0 \
/Library/LaunchDaemons/org.macports.* \
/Library/StartupItems/DarwinPortsStartup \
/Library/Receipts/MacPorts*.pkg \
/Library/Receipts/DarwinPorts*.pkg \
~/.macports</pre></td></tr></table></div>

<p><strong>Step 3:</strong></p>
<p>Open the <a href="http://distfiles.macports.org/MacPorts/MacPorts-1.8.0-10.6-SnowLeopard.dmg">MacPorts-1.8.0-10.6-SnowLeopard.dmg</a> file, and install the MacPorts package file.</p>
<p><strong>Step 4:</strong></p>
<p>To hide the /opt folder from Finder view that is visible after installing MacPorts.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">sudo chflags hidden /opt</pre></td></tr></table></div>

<p><strong>Step 5:</strong></p>
<p>By default, MacPorts for Snow Leopard should use x86_64 arch instead of ppc/i386, so you shouldn&#8217;t have to worry much here.</p>
<p>This part most likely will take the longest of all things in the tutorial, as it requires a large group of individual packages.  You can cook dinner, eat it, and you might still be waiting for this to complete after you&#8217;ve finished eating.  It took about a half hour for it to complete on my MacBook.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">sudo port install imagemagick</pre></td></tr></table></div>

<p><strong>Step 6:</strong></p>
<p>Download <a href="http://pecl.php.net/package/imagick/2.3.0">imagick</a> <a href="http://pecl.php.net/get/imagick">here</a>.</p>
<p>Unpack the file imagick-2.3.0.tgz.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">cd ~/Downloads/imagick-2.3.0/imagick-2.3.0
phpize
./configure --with-imagick=/opt/local
make
cd modules
sudo cp imagick.so /usr/lib/php/extensions/no-debug-non-zts-20090626/</pre></td></tr></table></div>

<p><strong>Step 7:</strong></p>
<p>Download <a href="http://www.magickwand.org/download/php/">magickwand</a> <a href="http://www.magickwand.org/download/php/MagickWandForPHP-1.0.8.tar.gz">here</a>.</p>
<p>Unpack the file MagickWandForPHP-1.0.8.tar.gz.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">cd ~/Downloads/MagickWandForPHP-1.0.8/
phpize
./configure --with-magickwand=/opt/local
make
cd modules
sudo cp magickwand.so /usr/lib/php/extensions/no-debug-non-zts-20090626/</pre></td></tr></table></div>

<p><strong>Step 8:</strong></p>
<p>Download <a href="http://www.xdebug.org/download.php">xdebug</a> <a href="http://www.xdebug.org/files/xdebug-2.0.5.tgz">here</a>.</p>
<p>Unpack the file xdebug-2.0.5.tgz.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">cd ~/Downloads/xdebug-2.0.5/xdebug-2.0.5
phpize
./configure
make
cd modules
sudo cp xdebug.so /usr/lib/php/extensions/no-debug-non-zts-20090626/</pre></td></tr></table></div>

<p><strong>Step 9:</strong></p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">sudo port install libmemcached</pre></td></tr></table></div>

<p>When it completes, type this into Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">sudo launchctl load -w /Library/LaunchDaemons/org.macports.memcached.plist</pre></td></tr></table></div>

<p><strong>Step 10:</strong></p>
<p>Download <a href="http://pecl.php.net/package/memcached">memcached</a> <a href="http://pecl.php.net/get/memcached">here</a>.</p>
<p>Unpack the file memcached-1.0.0.tgz.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">cd ~/Downloads/memcached-1.0.0/memcached-1.0.0/
phpize
./configure --with-libmemcached-dir=/opt/local
make
cd modules
sudo cp memcached.so /usr/lib/php/extensions/no-debug-non-zts-20090626/</pre></td></tr></table></div>

<p><strong>Step 11:</strong></p>
<p>Download <a href="http://sourceforge.net/projects/mcrypt/files/Libmcrypt/">libmcrypt</a> <a href="http://sourceforge.net/projects/mcrypt/files/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.bz2/download">here</a>.</p>
<p>Unpack the file libmcrypt-2.5.8.tar.bz2.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">cd ~/Downloads/libmcrypt-2.5.8/
./configure --disable-posix-threads --enable-static
make
sudo make install</pre></td></tr></table></div>

<p><strong>Step 12:</strong></p>
<p>Download <a href="http://us2.php.net/downloads.php">PHP 5.3.0 source code</a> for the mcrypt extension <a href="http://us2.php.net/get/php-5.3.0.tar.gz/from/a/mirror">here</a>.</p>
<p>Unpack the file php-5.3.0.tar.gz.  We will only need to use the code within the ext/mcrypt directory.  No need to compile all of PHP for this.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">cd ~/Downloads/php-5.3.0/ext/mcrypt
phpize
./configure
make
cd modules
sudo cp mcrypt.so /usr/lib/php/extensions/no-debug-non-zts-20090626/</pre></td></tr></table></div>

<p><strong>Step 13:</strong></p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">cd /etc
sudo cp php.ini.default php.ini
sudo pico php.ini</pre></td></tr></table></div>

<p>Search for:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">display_errors</pre></td></tr></table></div>

<p>Set this to:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">display_errors = On</pre></td></tr></table></div>

<p>Search for:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">html_errors</pre></td></tr></table></div>

<p>Set this to:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">html_errors = On</pre></td></tr></table></div>

<p>I placed the following after all the commented out lines for extensions:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">;;;;;;
extension=/usr/lib/php/extensions/no-debug-non-zts-20090626/mcrypt.so
extension=/usr/lib/php/extensions/no-debug-non-zts-20090626/magickwand.so
extension=/usr/lib/php/extensions/no-debug-non-zts-20090626/imagick.so
extension=/usr/lib/php/extensions/no-debug-non-zts-20090626/memcached.so
zend_extension=/usr/lib/php/extensions/no-debug-non-zts-20090626/xdebug.so
xdebug.default_enable = On
xdebug.collect_params = 4
xdebug.trace_format = 1
xdebug.show_local_vars = On
xdebug.dump_globals = On
xdebug.show_exception_trace = On
xdebug.collect_assignments = 1
;;;;;;</pre></td></tr></table></div>

<p>Set your default timezone. I&#8217;ll show mine as an example.</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">date.timezone = America/New_York</pre></td></tr></table></div>

<p>Set your mysql default port.</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">mysql.default_port = 3306</pre></td></tr></table></div>

<p>Press Control-X to exit, it will ask if you want to save changes, so press Y for Yes, and press Enter save and exit completely.</p>
<p><strong>Step 14:</strong></p>
<p>Restart Apache.</p>
<p>In Terminal:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">sudo apachectl graceful</pre></td></tr></table></div>

<p>That should do it, as this is the exact steps I took to install all of these just now.  And everything worked for me just as typed.</p>
<p>Hope this helps you out.</p>
<p>Enjoy.<em></em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2009/09/02/146/feed/</wfw:commentRss>
		<slash:comments>72</slash:comments>
		</item>
		<item>
		<title>Mac OS X Snow Leopard, PHP, MySQL, SVN, Xcode, and Me&#8230;</title>
		<link>http://blog.xeonxai.com/2009/08/29/132/</link>
		<comments>http://blog.xeonxai.com/2009/08/29/132/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 04:59:01 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Extensions]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[changes]]></category>
		<category><![CDATA[iphone sdk]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=132</guid>
		<description><![CDATA[With minimal effort, I was able to get the PHP bundled with Snow Leopard to use the PHP extensions that I had compiled for xdebug, imagick, and magickwand to run in 64bit mode. Snow Leopard comes bundled with Apache 2.2.11, PHP 5.3.0, and SVN 1.6.2. I upgraded my MySQL install from 5.0.77 to 5.1.37 and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>With minimal effort, I was able to get the PHP bundled with Snow Leopard to use the PHP extensions that I had compiled for xdebug, imagick, and magickwand to run in 64bit mode.</p>
<p>Snow Leopard comes bundled with Apache 2.2.11, PHP 5.3.0, and SVN 1.6.2.</p>
<p>I upgraded my MySQL install from 5.0.77 to 5.1.37 and then moved my data folder to another location to help keep things sane using the /etc/my.cnf file.</p>
<p>I installed the Xcode from the Snow Leopard CD and downloaded the iPhone SDK 3.1 Beta 3 for Snow Leopard.  Slightly different interface, but I welcome the changes.</p>
<p>So now, instead of using external packages for SVN and PHP (Entropy), now I&#8217;m using the prepackaged bundled software.  I did have to reconfigure my svn connection in Apache as it got toasted in the upgrade to Snow Leopard.  It wasn&#8217;t a problem though as it was only a few lines.</p>
<p>Now I can sleep good, I hope.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2009/08/29/132/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iPhone Books, Amazon Kindle DX, and XCode, Oh My!</title>
		<link>http://blog.xeonxai.com/2009/06/04/131/</link>
		<comments>http://blog.xeonxai.com/2009/06/04/131/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 02:07:03 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[store]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/2009/06/04/131/</guid>
		<description><![CDATA[Still waiting on a few more books to ship from Amazon to study more iPhone application development. Considering getting a Kindle DX to put all my eBook versions of the printed books onto, so that I can read outside from the MacBook and the second monitor.&#160; Allowing those screens to be put to better use [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Still waiting on a few more books to ship from Amazon to study more iPhone application development. Considering getting a Kindle DX to put all my eBook versions of the printed books onto, so that I can read outside from the MacBook and the second monitor.&nbsp; Allowing those screens to be put to better use of iPhone app programming.</p>
<p>Plan to upgrade to the new iPhone when it&#8217;s released, so that I can use my first generation iPhone as the debugging/testing phone and the other for real day to day things.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2009/06/04/131/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking for a Great 2D/3D Artist.</title>
		<link>http://blog.xeonxai.com/2009/03/21/120/</link>
		<comments>http://blog.xeonxai.com/2009/03/21/120/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 01:06:06 +0000</pubDate>
		<dc:creator><![CDATA[Xeon Xai]]></dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[2D]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[cell shading]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://blog.xeonxai.com/?p=120</guid>
		<description><![CDATA[I&#8217;m looking for a good 2D/3D artist to help with artwork for a few game ideas on the iPhone. I do like the cell shading look, and that might be my ultimate style I go with.  If you have skills with designs in these aspects, I would love to hear from you.]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m looking for a good 2D/3D artist to help with artwork for a few game ideas on the iPhone.</p>
<p>I do like the cell shading look, and that might be my ultimate style I go with.  If you have skills with designs in these aspects, I would love to hear from you.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xeonxai.com/2009/03/21/120/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
