<?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>JavaScript Patterns &amp; Titanium Mobile</title>
		<link>http://boydlee.com/blog/javascript-patterns-titanium-mobile.html</link>
		<description><![CDATA[ <p>Understanding good JavaScript pattern and practice is essential to ensuring that you write good Titanium Mobile apps. One of the best all round books I have read that goes a long way to explaining good JavaScript practices is <a href="http://www.amazon.co.uk/gp/product/0596806752/ref=as_li_tf_tl?ie=UTF8&tag=boydleecom07-21&linkCode=as2&camp=1634&creative=6738&creativeASIN=0596806752">JavaScript Patterns <img src="http://www.assoc-amazon.co.uk/e/ir?t=boydleecom07-21&l=as2&o=2&a=0596806752" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> by Stoyan Stefanov</a>. It's a moderately light read, weighing in at only around 200 pages, but there is no fluff here. It's straight to the point, there's tonnes of examples, and this will make you a better JS coder and a better Titanium Developer - period.</p>
<p>
<a href="http://www.amazon.co.uk/gp/product/0596806752/ref=as_li_tf_tl?ie=UTF8&tag=boydleecom07-21&linkCode=as2&camp=1634&creative=6738&creativeASIN=0596806752">Go and buy JavaScript Patterns now - you won't regret it. <img src="http://www.assoc-amazon.co.uk/e/ir?t=boydleecom07-21&l=as2&o=2&a=0596806752" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></a></p>
<p>As suggested below, another must have JavaScript book is Douglas Crockford's <a href="http://www.amazon.co.uk/gp/product/0596517742/ref=as_li_tf_tl?ie=UTF8&tag=boydleecom07-21&linkCode=as2&camp=1634&creative=6738&creativeASIN=0596517742">JavaScript: The Good Parts</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=boydleecom07-21&l=as2&o=2&a=0596517742" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />. I don't have this one personally (yet) but it's on my list and comes highly recommended.</p> ]]></description>
		<pubDate>Thu, 08 Mar 2012 12:33:08 -0600</pubDate>
		<guid isPermaLink="false">http://boydlee.com/blog/javascript-patterns-titanium-mobile.html</guid>
</item><item>
		<title>Appcelerator + Cocoafish - First Impressions</title>
		<link>http://boydlee.com/appcelerator-titanium/appcelerator-cocoafish-first-impressions.html</link>
		<description><![CDATA[ <p>In case you hadn't heard, <a href="http://www.cocoafish.com">Cocoafish</a> is an application "backend service" in the Cloud, and allows you to build your apps against their API's instead of having to go through the process of buildling your own and hosting them. It's a great idea, and one that has been done before by StackMob and others, but of course for a Titanium developer the most interesting aspect of Cocoafish is that <a href="http://developer.appcelerator.com/blog/2012/02/appcelerator-acquires-cocoafish.html">it was recently bought by Appcelerator</a>, who intends to build its API's smack-bang into the Titanium framework.</p>
<p>As someone who got an early invite and has built a client application on this framework already, I thought I'd give everyone a brief heads up of what to expect when Appcelerator rolls it out as "Ti.Cloud" sometime in March or April.</p>
<p>&nbsp;</p>
<p><strong>The Pros:</strong></p>
<ol>
<li><span style="color: #333333;">It's quick. That's quick to get setup, quick to build against, and quick to both query and return data. I'd estimate it's saved me about 10-15% of development time so far, and once the API's are built into Titanium directly and I'm more used to building against Cocoafish's "types", it could legitimately save me even more time.</span></li>
<li><span style="color: #333333;">It's nice and standardised... I have obviously used JavaScript to hook into it from Titanium mobile, but I've also written some PHP classes to interact and perform some routine tasks against my CF objects via CRON scripts. Writing the PHP API was a breeze.</span></li>
<li><span style="color: #333333;">I like the way all requests generally bring back the attached user object in question as well. For example, querying photos will always return the basic user information&nbsp;associated with those photos.</span></li>
<li><span style="color: #333333;">It's stable - even in Beta I have had zero problems with uptime or stability. Everything has worked. Nothing to complain about here.</span></li>
<li><span style="color: #333333;">There's no need to worry about hosting uptime, bandwidth, storage permissions, etc. For anyone who has ever managed a large web service system, that's a good thing.</span></li>
<li><span style="color: #333333;">No f**king around with photos. You upload them, they thumbnail, crop and store them in a variety of sizes.</span></li>
<li><span style="color: #333333;">I can imagine all the checkin and place data is very very useful, though I have personally had no need to use it yet.</span></li>
</ol>
<p>&nbsp;</p>
<p><strong>The Cons:</strong></p>
<ol>
<li><span style="color: #333333;">The backend data entry interface needs work. Specifically, I'm creating a lot of objects in my database to seed it, but each time you add an object entry you have to do it from scratch - if there was some kind of template mechanism or "duplicate" entry thing that'd be great. I have heard that this backend will be updated in the coming months anyway.</span></li>
<li><span style="color: #333333;">There needs to be an overall "administration" account login, whereby I can access CF via the API's and update ANY photo, ANY user account, etc. I have a need to update a custom data field for each of my users every day, based on some outside factors (we'll call the field "rank"). I currently can't do this against the user accounts via my scripts, it requires another object to be set in key-value pairs or custom objects.&nbsp;</span></li>
<li><span style="color: #333333;">Limiting of page sets. I realise this probably has more to do with the platform performance than anything, but I'd really rather not be limited to 100 records. By all means, default to a 100 max unless otherwise specified, but I have objects in CF that I want to update via some scripts on an Ad-Hoc basis and having to do that with paging is just a bit of a pain more than anything.</span></li>
<li><span style="font-style: normal; color: #333333;">No real "randomization" ordering. I'd like to be able to set an order parameter of "random", which can't really be done yet. The CF guys were helpful and pointed out a way I could kind of do it by assign a random number to an object and then doing <strong>$GTE</strong> where clause based on a random input, but that's not really random. It would be good to see a random order set for all API calls implemented.</span></li>
<li><span style="color: #333333;">Cross-object joins. Probably not something everyone would want, but if I have 2 custom objects I would like to fetch at the same time then a cross-object join API call would be great. For example let's say we have a user record, and that user has a role_id attached to it as a custom field. If I want to then fetch a set of custom objects called "role_permissions" and another called "role_details" (both of which have a role_id field) I would have to now make two separate calls and pull back the objects separately. It'd be great if you could do a request for multiple objects that join on the same custom field.</span></li>
</ol>
<p>&nbsp;</p>
<p>Have you used Cocoafish yet? I'd be interested in your opinions of it so far!</p> ]]></description>
		<pubDate>Mon, 05 Mar 2012 04:42:08 -0600</pubDate>
		<guid isPermaLink="false">http://boydlee.com/appcelerator-titanium/appcelerator-cocoafish-first-impressions.html</guid>
</item><item>
		<title>Survey on the future of Titanium Desktop</title>
		<link>http://boydlee.com/blog/survey-on-the-future-of-titanium-desktop.html</link>
		<description><![CDATA[ <p>Hi All,
Please take the following survey if you are interested in the future of Titanium Desktop. Doesn't matter if you're just a user or you wish to contribute, all opinions are welcome.
<br /><br />
The survey will be closing on the 1st of March, 2012.
<br /><br />
<a href="http://www.surveymonkey.com/s/X76TXG7">http://www.surveymonkey.com/s/X76TXG7</a>
<br /><br />
Thanks,<br />
Boydlee</p> ]]></description>
		<pubDate>Tue, 28 Feb 2012 03:25:03 -0600</pubDate>
		<guid isPermaLink="false">http://boydlee.com/blog/survey-on-the-future-of-titanium-desktop.html</guid>
</item><item>
		<title>NEW for Titanium SDK 1.8.1+  --- addRoute() Support in Android for Titanium</title>
		<link>http://boydlee.com/appcelerator-titanium/new-for-titanium-sdk-1.8.1-addroute-support-in-android-for-titanium.html</link>
		<description><![CDATA[ <p><strong>Update!</strong> Armindo has rebuilt this for SDK 1.8.2 for everyone. Again Armindo, we salute you! ;)</p>

<p>Since I first uploaded this back in September last year there have been lots and lots of people using the updated SDK and extending it for other platforms and to do other things.</p>
<p>Armindo recently made so great updates to the SDK and has taken it even further now and made some vast performance increases, so you can now use the addroute() stuff for Android in an updated 1.8.1 SDK branch and it'll be even quicker than before. Download details are below, as is an example implementation.</p>
<p><a href="http://c299242.r42.cf1.rackcdn.com/mobilesdk-1.8.1-osx-v2.zip">Download the Pre-Compiled 1.8.1 SDK for Mac OSX</a></p>
<p><a href="http://c299242.r42.cf1.rackcdn.com/mobilesdk-1.8.2-osx.zip">Download the Pre-Compiled 1.8.2 SDK for Mac OSX</a></p>
<p><a href="http://c299242.r42.cf1.rackcdn.com/map-v2.zip">Download the Java Source</a></p>
<p>Armindo has also kindly provided a full implementation example:</p><script type="text/javascript" src="http://snipt.net/embed/42803aa5fef55c4bb107ac14a494514c"></script>
<p>&nbsp;</p>
<p>Everyone needs to thank Armindo for his hard work and effort in making this even better!</p> ]]></description>
		<pubDate>Sun, 26 Feb 2012 08:05:49 -0600</pubDate>
		<guid isPermaLink="false">http://boydlee.com/appcelerator-titanium/new-for-titanium-sdk-1.8.1-addroute-support-in-android-for-titanium.html</guid>
</item><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>	</channel>
</rss>
