<?xml version="1.0" encoding="UTF-8" ?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
			<title>RSS Feed</title>
			<link>http://boydlee.com/feed.html</link>
			<description></description>
			<language>en</language>
			<copyright>Learn iOS, Cocos2D and Appcelerator Titanium || boydlee.com 2006</copyright>
			<ttl>120</ttl><item>
		<title>Experiments with Arduino, PHP &amp; Appcelerator Titanium</title>
		<link>http://boydlee.com/appcelerator-titanium/experiments-with-arduino-php-appcelerator-titanium.html</link>
		<description><![CDATA[ <p>Here is a short couple of videos showing some experiments I made using simple Arduino circuits, which read in data over serial/usb via PHP (running MAMP locally). The PHP is executed via a Titanium app running on an iPod touch.</p>
<iframe src="http://player.vimeo.com/video/35841568?title=0&amp;byline=0&amp;portrait=0" width="500" height="350" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><p><a href="http://vimeo.com/35841568">Controlling A Basic Arduino Circuit Using An iPod & Titanium Mobile</a> from <a href="http://vimeo.com/user10213112">Boydlee Pollentine</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>This second video is the same concept but using a piezo element to play some basic music...it's pretty straight forward basic beginner stuff but if anyone wants the source code I'm happy to post it.</p>
<iframe src="http://player.vimeo.com/video/35850410?title=0&amp;byline=0&amp;portrait=0" width="500" height="350" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><p><a href="http://vimeo.com/35850410">Appcelerator Titanium Keyboard & Arduino w/ Piezo Element</a> from <a href="http://vimeo.com/user10213112">Boydlee Pollentine</a> on <a href="http://vimeo.com">Vimeo</a>.</p> ]]></description>
		<pubDate>Mon, 30 Jan 2012 03:16:06 -0600</pubDate>
		<guid isPermaLink="false">http://boydlee.com/appcelerator-titanium/experiments-with-arduino-php-appcelerator-titanium.html</guid>
</item><item>
		<title>Appcelerator Titanium - Understanding the Namespace Pattern</title>
		<link>http://boydlee.com/appcelerator-titanium/appcelerator-titanium-understanding-the-namespace-pattern.html</link>
		<description><![CDATA[ <p>A couple of people have asked me to write an explanation on the namespace pattern in Titanium - otherwise known as "Tweetanium" - however for the purposes of this example I'm going to continue to call it the "Namespace" pattern as that is its proper name in Javascript. Appcelerator is also currently pushing the CommonJS pattern which is fine, however I find the namespace pattern simpler to understand and if you can implement this properly in your apps you'll go a long way to acheiving better performance, stability and memory management.</p>
<p>There are three main reasons for using this kind of pattern;</p>
<ol>
<li><span style="color: #333333;">It stops you polluting the global scope. It does this by creating one (ideally) global object that all the functionality for your app is added to,&nbsp;</span></li>
<li><span style="color: #333333;">It helps you avoid naming collisions or excessive variable prefixing (ie creating stacks of vars that look like item1, item1_1, __item1, etc),</span></li>
<li><span style="color: #333333;">Memory management - by putting everything into the same global object namespace, you avoid multiple Ti.include() statements, which are essentially including files over and over again unnecessarily. This is particularly prevelant when you start opening multiple window objects and have all your Ti.include() calls at the top; this rapidly leads to memory starvation and your app crashing.</span></li>
</ol>
<p>Let's create a basic example application that reads in a couple of RSS feeds and shows them on two separate views, which have 2 separate JS files, and use the same context.</p>
<p>Create a new project in Ti Studio, call it whatever you want (I've called mine <strong>NamespaceMethod</strong>). Delete the pre-set code out of the app.js file, and then create two new files called <strong>feed1.js</strong> and <strong>feed2.js</strong> respectively, and add these to your <strong>Resources</strong> folder.</p>
<script type="text/javascript" src="http://snipt.net/embed/a4ca29503b96756c940b612149a2f7ab"></script>
<br>
<p>Now let's create the TableView for feed1.js...</p>
<script type="text/javascript" src="http://snipt.net/embed/9da5f6bf1e342efa65e0c0a0de8a7155"></script>
<br>
<p>...and feed2.js and save both of those files:</p>
<script type="text/javascript" src="http://snipt.net/embed/75a37d849cda60456e685e76c6aeb529"></script>
<br/>
<p>Run your app in the simulator now and you'll (hopefully) see a screen that looks like this: <br/><img src="http://i.imgur.com/zXoXl.png"></p>

<br />
<p>Now let's fill those two TableViews with some data from 2 separate remote RSS feeds. We're going to define the feed URL's in <b>app.js</b>, then create a new javascript module file called <b>api.js</b> which is going to handle calling and returning our JSON data. Note here that you will probably want to structure your app a bit differently to this, but this example is more about showing you how to keep everything in that single namespace context.</p>

<p>Edit your <b>app.js</b> file by adding the following couple of lines to it, right after the <b>RSSAPP</b> declaration at the top. Note that I've used YQL to automatically do the XML Feed -> JSON conversion for us.</p>
<script type="text/javascript" src="http://snipt.net/embed/282dc5d32236b4ba2f20fe8ad6947c5e"></script>

<br/>
<p>Now create the <b>api.js</b> file and save it to your <b>Resources</b> directory. Type or paste in the following code. This simple module just accepts a URL and creates a HTTPRequest and passes back the JSON-formatted response data via the 'success' function, or throws any errors back via the 'error' function.</p>
<script type="text/javascript" src="http://snipt.net/embed/b144e0aa3628a7f97bf26fc53a317c2b"></script>

<br />
<p>Now we can call our "grabFeed" method from within the <strong>api.js</strong> file from anywhere in our app that utilizes the RSSAPP namespace. Let's populate the table1 object first - open up <b>feed1.js</b> and enter in the following code, just before the final line where you are adding the table1 object to the window. It should look like this:</p>
<script type="text/javascript" src="http://snipt.net/embed/0a881ddab94755b2ddff31d5977b28fb"></script>

<br/>
<p>Run your app in the simulator again and you should see that the first tableView (top of screen) is populated with RSS data from http://boydlee.com/feed.html. <br /><img src="http://i.imgur.com/csuyY.png"><br/> As we're on mobile devices and we want to avoid using too much bandwidth (not to mention HTTPRequest collisions) we're going to populate the second table only when the first table has finished its data request/population. Add the following function call to <b>feed1.js</b> directly after the line "<i>RSSAPP.table1.setData(rows);</i>"</p>
<script type="text/javascript" src="http://snipt.net/embed/e6791be07e5b579399c66049d672fe51"></script>

<br />
<p>And now let's update <b>feed2.js</b> so it looks like the following:</p>
<script type="text/javascript" src="http://snipt.net/embed/47a96971d4a245e52133ac9c9eb3fece"></script>

<br />
<p>Finally, run the app in your simulator. You should see <b>table1</b> populated by data from http://boydlee.com/feed.html, via YQL, and when it has finished you'll see the data from the Appcelerator Developer Blog feed populate <b>table2</b>. <br /><img src="http://i.imgur.com/XAmkA.png"></p>

<p>So what have we learnt from this sample? Firstly, you can see we no longer need to import the same file a hundred times - both the <b>feed1.js</b> and <b>feed2.js</b> files can access the webservice functions from <b>api.js</b> without multiple inclusions. This means less redundant code and less memory usage.<br /><br>You also now have a convenient global structure - properties and objects added to the RSSAPP namespace can be accessed from within any part of your app at any time. <br><Br>App-wide data can be instantiated once, and used over and over again. You can see this happening from the properties we created to hold the feed URL's - these were defined in the namespace from within app.js, and then accessed and passed around throughout our files. <br><br>Functions can now be defined as belonging to our namespace, meaning they can be executed from anywhere. You can see this happening when we call the <b>loadFeed2Data</b> function - it is declared within <b>feed2.js</b> but we're calling it directly from <b>feed1.js</b>, essentially removing the need for firing off multiple events or doing unnecessary Ti.include()'s.<br><br>Because all your windows and views exist in the same namespace they can be immediately instantiated - giving you faster app performance.</p>

<p>You can <a href="http://boydlee.com/cookbook/NamespaceMethod.zip">download the sample project here</a>, and please comment if there's any mistakes in it (I wrote this fairly quickly!).</p> 
 ]]></description>
		<pubDate>Thu, 22 Dec 2011 05:51:20 -0600</pubDate>
		<guid isPermaLink="false">http://boydlee.com/appcelerator-titanium/appcelerator-titanium-understanding-the-namespace-pattern.html</guid>
</item><item>
		<title>Appcelerator Titanium Cookbook - eBook Giveaway!</title>
		<link>http://boydlee.com/blog/appcelerator-titanium-cookbook-ebook-giveaway.html</link>
		<description><![CDATA[ <p>Enter the competition to win a free eBook copy of my "<a href="http://www.packtpub.com/appcelerator-titanium-mobile-applications-development-for-smartphone-iphone-android-cookbook/book">Appcelerator Titanium Cookbook</a>" from<a href="http://www.packtpub.com"> Packt Publishing</a>. Simply tell me, in 100 words or less, why Titanium is your favourite mobile platform. I will choose the winner who I consider has given the best answer and announce it on the blog on the 29th of December.</p>
<p>Entries will close on the 28th of December, 2011 at <strong>Midnight CST</strong> (6am on 29th December GMT if you live in the UK, Ireland or Western Europe).</p> ]]></description>
		<pubDate>Wed, 21 Dec 2011 06:22:10 -0600</pubDate>
		<guid isPermaLink="false">http://boydlee.com/blog/appcelerator-titanium-cookbook-ebook-giveaway.html</guid>
</item><item>
		<title>Appcelerator Titanium Cookbook - Errata &amp; Explanations</title>
		<link>http://boydlee.com/appcelerator-titanium/appcelerator-titanium-cookbook-errata-explanations.html</link>
		<description><![CDATA[ <p>Whilst every attempt was made to ensure the code and content of the book was 100% accurate, we all know this can never be the case (particularly with how rapidly Titanium and mobile development in general changes!). So if you've found a mistake or would like something explained in more detail in relation to my <a href="http://www.packtpub.com/appcelerator-titanium-mobile-applications-development-for-smartphone-iphone-android-cookbook/book">Appcelerator Titanium Cookbook</a>, please post a message here and I'll endevour to respond and fix any errors.</p>
<p>Note that I am pretty busy so I can't always respond straight away but I will try to get back to everyone as quickly as I can.</p> ]]></description>
		<pubDate>Tue, 20 Dec 2011 06:16:52 -0600</pubDate>
		<guid isPermaLink="false">http://boydlee.com/appcelerator-titanium/appcelerator-titanium-cookbook-errata-explanations.html</guid>
</item><item>
		<title>Appcelerator Titanium Mobile for iOS and Android Cookbook  - available for order now</title>
		<link>http://boydlee.com/blog/appcelerator-titanium-mobile-for-ios-and-android-cookbook-available-for-order-now.html</link>
		<description><![CDATA[ <p class="p1">Well it took almost a year, but my book has finally been finished and released to the wild.&nbsp;It is now available for order from Packt Publishing&nbsp;as both a printed paperback and in e-book format at&nbsp;<a href="http://www.packtpub.com/appcelerator-titanium-mobile-applications-development-for-smartphone-iphone-android-cookbook/book"><span class="s1">http://www.packtpub.com/appcelerator-titanium-mobile-applications-development-for-smartphone-iphone-android-cookbook/book</span></a>, and will be available from all other retailers in the next couple of weeks. &nbsp;It&rsquo;s ready for release at&nbsp;<a href="http://www.amazon.co.uk/Appcelerator-Titanium-Smartphone-Development-Cookbook/dp/1849513961/ref=sr_1_2?s=books&amp;tag=manxforum-20&amp;ie=UTF8&amp;qid=1324043902&amp;sr=1-2">Amazon</a>&nbsp;on the 31st December 2011 &ndash; pick up your copy today!</p>
<p class="p2">&nbsp;</p>
<p class="p1">Here's a bit of a blurb:</p>
<p class="p3"><em>Appcelerator Titanium Mobile allows developers to realize their potential to develop full native iPhone and Android applications by using free Titanium Studio tools without the need to know Objective-C or Java. This practical hands-on cookbook shows you exactly how to leverage the Titanium API to its full advantage and become confident in developing mobile applications in no time at all.</em></p>
<p class="p3"><em>Appcelerator Titanium Smartphone App Development Cookbook offers a set of practical and clear recipes with a step-by-step approach for building native applications for both the iPhone and Android platforms using your existing knowledge of JavaScript.</em></p>
<p class="p3"><em>This cookbook takes a pragmatic approach to using your JavaScript knowledge to create applications for the iPhone and Android platforms, from putting together basic UIs to handling events and implementation of third party services such Twitter, Facebook and Push notifications. This book shows you how to utilize both remote and local datasources using XML, JSON and the SQLite database system. The topics covered will guide you to use popular Titanium Studio tools effectively and help you leverage all the advanced mobile features such as Geolocation, Accelerometer, animation and more. Finally, you&rsquo;ll learn how to register developer accounts and how to publish your very own apps to the Android and Apple marketplaces.</em></p>
<p class="p3"><em><br /></em></p>
<p class="p1">If you prefer to buy from a regular retailer, such as Amazon, here's those links below:</p>
<p class="p4"><span class="s2">Amazon UK:&nbsp;<a href="http://www.amazon.co.uk/Appcelerator-Titanium-Smartphone-Development-Cookbook/dp/1849513961"><span class="s1">http://www.amazon.co.uk/Appcelerator-Titanium-Smartphone-Development-Cookbook/dp/1849513961</span></a></span></p>
<p class="p4"><span class="s2">Amazon US:&nbsp;<a href="http://www.amazon.com/Appcelerator-Titanium-Smartphone-Development-Cookbook/dp/1849513961"><span class="s1">http://www.amazon.com/Appcelerator-Titanium-Smartphone-Development-Cookbook/dp/1849513961</span></a></span></p>
<p class="p4"><span class="s2">Waterstones:&nbsp;<a href="http://www.waterstones.com/waterstonesweb/products/boydlee+pollentine/appcelerator+titanium+smartphone+app+development+cookbook/8847564/"><span class="s1">http://www.waterstones.com/waterstonesweb/products/boydlee+pollentine/appcelerator+titanium+smartphone+app+development+cookbook/8847564/</span></a></span></p>
<p class="p4"><span class="s2">Book Repository:&nbsp;<a href="http://www.bookdepository.co.uk/Appcelerator-Titanium-Smartphone-App-Development-Cookbook/9781849513968?gbase=true&amp;utm_medium=Google&amp;utm_campaign=Base&amp;utm_source=UK&amp;utm_content=Appcelerator-Titanium-Smartphone-App-Development-Cookbook"><span class="s1">http://www.bookdepository.co.uk/Appcelerator-Titanium-Smartphone-App-Development-Cookbook/9781849513968?gbase=true&amp;utm_medium=Google&amp;utm_campaign=Base&amp;utm_source=UK&amp;utm_content=Appcelerator-Titanium-Smartphone-App-Development-Cookbook</span></a></span></p>
<p class="p4"><span class="s2">Sprint:&nbsp;<a href="http://www.sprintbooks.co.uk/scripts/browse.asp?ref=250657"><span class="s1">http://www.sprintbooks.co.uk/scripts/browse.asp?ref=250657</span></a></span></p>
<p class="p2">&nbsp;</p>
<p class="p1">I will be putting up a page on my website where you can list any omissions, questions or mistakes (there's always a couple!), and I'll do my best to answer your questions and provide updates and revisions.</p>
<p class="p2">&nbsp;</p>
<p class="p2">Thanks everyone for your support,</p>
<p class="p1">Boydlee</p> ]]></description>
		<pubDate>Sat, 17 Dec 2011 08:48:41 -0600</pubDate>
		<guid isPermaLink="false">http://boydlee.com/blog/appcelerator-titanium-mobile-for-ios-and-android-cookbook-available-for-order-now.html</guid>
</item><item>
		<title>Extending the size of your VirtualBox Hard Drive</title>
		<link>http://boydlee.com/blog/extending-the-size-of-your-virtualbox-hard-drive.html</link>
		<description><![CDATA[ <p>Took me awhile to find this but I thought I'd post it here for anyone who is also looking about for the same thing.</p>
<p>I needed to extend the size of a VirtualBox Hard Disk (VDI file) in order to install some new software on it - being a tightwad I'd only given the drive 25GB initially and needed at least another 10gb.</p>
<p>To do it, open Terminal on your Mac and navigate to wherever the VDI file for your VirtualBox machine is located, and then type in the following and hit enter:</p>
<p><strong>VBoxManage modifyhd NAME_OF_YOUR_HARD_DISK.vdi --resize NEW_SIZE</strong></p>
<p>Where the name of your hard drive and new size are valid values, such as the example below. Note the size parameter is in MB, so 40,000MB = 40 gigabytes (approx). Make sure you also escape any filenames with spaces in them - even easier is to start typing the first word of the filename in terminal and press "Tab" - this will fill out the rest of the filename for you.</p>
<p><strong>VBoxManage modifyhd Windows\ XP\ Hard\ Disk.vdi --resize 40960</strong></p>
<p>&nbsp;</p>
<p>Once you have done that, start your VirtualBox machine and once it loads, go into Control Panel -&gt; System &amp; Security -&gt; Administrative Tools -&gt; Create and Format Hard Disk Partitions. You will see a section called "Unformatted Disk Space" usually next to Disk 0 (which would be your C:\). You can then right-click on the C:\ and extend the partition size utilizing the new, extra drive space you just created.</p>
<p><strong><br /></strong></p> ]]></description>
		<pubDate>Fri, 16 Dec 2011 04:55:22 -0600</pubDate>
		<guid isPermaLink="false">http://boydlee.com/blog/extending-the-size-of-your-virtualbox-hard-drive.html</guid>
</item><item>
		<title>Build a Custom Image Uploader &amp; Progress Bar in Titanium</title>
		<link>http://boydlee.com/appcelerator-titanium/build-a-custom-image-uploader-progress-bar-in-titanium.html</link>
		<description><![CDATA[ <p>Check out my new article on the Tuts+ network, where I demonstrate how to build a custom progress bar by creating an image uploader with Titanium Mobile.</p>
<p><a title="Titanium Mobile: Build an Image Uploader" href="http://bit.ly/vV7OUW">Titanium Mobile: Build an Image Uploader</a></p>
<p>This is a fairly straight forward, single page article and I hope you enjoy it.</p>
<p>&nbsp;</p>
<p><a href="http://mobile.tutsplus.com/tutorials/appcelerator/titanium-mobile-build-an-image-uploader/"><img src="http://d339vfjsz5zott.cloudfront.net/titanium-mobile_image-uploader/titaniummobile.png" alt="" width="200" height="200" /></a></p> ]]></description>
		<pubDate>Thu, 08 Dec 2011 12:04:07 -0600</pubDate>
		<guid isPermaLink="false">http://boydlee.com/appcelerator-titanium/build-a-custom-image-uploader-progress-bar-in-titanium.html</guid>
</item><item>
		<title>Preparing for the TCAD Certification (Titanium Certified Apps Developer)</title>
		<link>http://boydlee.com/appcelerator-titanium/preparing-for-the-tcad-certification-titanium-certified-apps-developer.html</link>
		<description><![CDATA[ <p>I passed the online TCAD Exam (as an Appcelerator Titan, I don't believe this is open to the general public just yet) and thought I would share what I can remember about the exam and what you should be studying for those who intend to take it sometime soon.</p>
<p>I'm not going to give away the actual questions here (nor can I remember them anyway), but the following list should provide you with a good starting point for what topics to study. It goes without saying that you should understand Javascript properly before even attempting the exam.</p>
<ol>
<li><span style="color: #333333;">Basic UI, Layout and Objects&nbsp;</span>
<ul>
<li>&bull; you should understand the basics of creating controls and their proper namespaces (e.g. how do you create a Ti.UI.createImageView and add an image to it?)</li>
<li>&bull; you should understand the basics of JSS</li>
<li>&bull; you should know how event handlers work properly and how to attach listeners to your controls</li>
<li>&bull; you should know how to layout your apps using absolute positions and vertical/flow positioning</li>
<li>&bull; make sure you understand device orientations (portrait, landscape and the events fired when orientating)</li>
</ul>
</li>
<li><span style="color: #333333;">Code structure and modularity</span>
<ul>
<li>&bull; you should know how to create modularized code and how to attach event handlers to your modules</li>
<li>&bull; know how and when to use Application Properties and when not to</li>
<li>&bull; you should know how to do device checks using Ti.Platform</li>
<li>&bull; from what I saw on the exam there wasn't a great deal about particular framework patterns such as Tweetanium or CommonJS - though that may change in the future as these patterns increasingly become the recommended way of developing your apps</li>
</ul>
<ul>
<li>&bull; understand your tiapp.xml files inside-out</li>
<li>&bull; know how to at least include a pre-built module into your app and how to use it</li>
</ul>
</li>
<li><span style="color: #333333;">SQlite and local database and filesystem calls</span>
<ul>
<li>&bull; you should know how to save and read in files using the Filesystem</li>
<li>&bull; know how to create a Sqlite database and how to attach an existing one</li>
<li>&bull; you should know basic SQL syntax as there will be questions that involving performing database queries</li>
<li>&bull; you should definitely know how to perform a SQL 'select' query and parse the results</li>
</ul>
</li>
<li><span style="color: #333333;">XML HTTP Requests &amp; JSON</span>
<ul>
<li>&bull; you should most certainly know how to make a HTTPRequest (XMLHTTPRequest) and parse the response contents</li>
<li>&bull; you should most certainly understand how to read, parse and iterate over JSON objects</li>
<li>&bull; you should most certainly understand how to read, parse and iterate over XML objects</li>
<li>&bull; know how to upload a file to a server and understand content types</li>
</ul>
</li>
<li><span style="color: #333333;">Camera, Photos, Audio, Video and other media<br /></span>
<ul>
<li>&bull; you should know how to call the camera and parse the resulting media contents</li>
<li>&bull; you should know how to call the photo gallery and parse the resulting media contents, and understand media types</li>
<li>&bull; you should know how to do implement video, audio and sound player objects</li>
</ul>
</li>
<li><span style="color: #333333;">Maps and Location services<br /></span>
<ul>
<li>&bull; you should most certainly know how to create a Mapview, understand how to set regions, add annotations, etc&nbsp;</li>
<li>&bull; know and understand geo-encoding - both reverse and forward geo-encoding</li>
<li>&bull; understand the differences in creating mapviews between iOS and Android</li>
</ul>
</li>
<li><span style="color: #333333;">WebViews<br /></span>
<ul>
<li>this is the section I remember doing worst in, because it happens to be the section I do the least work on day to day, so...</li>
<li>&bull; understand webviews, including setting remote and local HTML content</li>
<li>&bull; understand passing around events between your webviews and your app</li>
<li>&bull; have a rudimentary understanding of the canvas object</li>
</ul>
</li>
<li><span style="color: #333333;">Social API's and Contacts</span>
<ul>
<li>&bull; you should most certainly know how to integrate Facebook and make Graph API calls using the Titanium FB objects</li>
<li>&bull; you should know how to read in from the local contacts storage on your device</li>
<li>&bull; have a decent understanding of oAuth</li>
</ul>
</li>
<li><span style="color: #333333;">Titanium Studio and device packaging and distribution</span>
<ul>
<li>&bull; you should most certainly understand Ti Studio - how to create a project, how to run on device, any limitations of the simulator, etc...</li>
<li>&bull; wouldn't hurt to properly understand provisioning profiles and certificates and how to build your app directly from XCode</li>
</ul>
</li>
</ol>
<p>&nbsp;</p>
<p>That's all I can think of for now, I think if you can understand all of the points listed above you should be totally fine with the exam. Good luck!</p> ]]></description>
		<pubDate>Sat, 19 Nov 2011 05:13:38 -0600</pubDate>
		<guid isPermaLink="false">http://boydlee.com/appcelerator-titanium/preparing-for-the-tcad-certification-titanium-certified-apps-developer.html</guid>
</item><item>
		<title>Mentioned this week in the Titanium Development Australia blog.</title>
		<link>http://boydlee.com/blog/mentioned-this-week-in-the-titanium-development-australia-blog.html</link>
		<description><![CDATA[ <p>For more information and to read up on this week's Titanium news, check it out at:</p>
<p><a href="http://www.titaniumdevelopment.com.au/blog/2011/10/19/this-week-in-titanium-mobile-development-17-oct-2011/" target="_blank">http://www.titaniumdevelopment.com.au/blog/2011/10/19/this-week-in-titanium-mobile-development-17-oct-2011/</a></p> ]]></description>
		<pubDate>Wed, 19 Oct 2011 03:21:09 -0500</pubDate>
		<guid isPermaLink="false">http://boydlee.com/blog/mentioned-this-week-in-the-titanium-development-australia-blog.html</guid>
</item><item>
		<title>Featured Dev Interview for October 2011</title>
		<link>http://boydlee.com/blog/featured-dev-interview-for-october-2011.html</link>
		<description><![CDATA[ <p><strong><em>&ldquo;.. many companies see Titanium as a solution to getting a prototype up and running quicker than if they had chosen the native development route.&rdquo; - <a href="http://bit.ly/boydlee">bit.ly/boydlee</a></em></strong></p>
<hr />
<p>&nbsp;</p>
<p>I have recently given an interview with Learning Titanium about Titanium Mobile development and my upcoming book.</p>
<p>You can read the full interview between myself and Sharry from <a href="http://www.learningtitanium.com" target="_blank">LearningTitanium.com</a> here:&nbsp;<a href="http://www.learningtitanium.com/featured-apps-and-developers/boydlee-pollentine.html">http://www.learningtitanium.com/featured-apps-and-developers/boydlee-pollentine.html</a></p> ]]></description>
		<pubDate>Wed, 12 Oct 2011 07:07:40 -0500</pubDate>
		<guid isPermaLink="false">http://boydlee.com/blog/featured-dev-interview-for-october-2011.html</guid>
</item>	</channel>
</rss>
