<?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>Internet Marketing - Bobby Jason</title>
	<atom:link href="http://bobbyjason.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://bobbyjason.co.uk/blog</link>
	<description>Internet Marketing From a Web Developer</description>
	<lastBuildDate>Thu, 05 Jan 2012 22:30:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress jQuery Carousel</title>
		<link>http://bobbyjason.co.uk/blog/149/wordpress-jquery-carousel/</link>
		<comments>http://bobbyjason.co.uk/blog/149/wordpress-jquery-carousel/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 22:30:10 +0000</pubDate>
		<dc:creator>BobbyJason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bobbyjason.co.uk/blog/?p=149</guid>
		<description><![CDATA[
I insisted that I would blog today, or &#8216;Blog Thursday&#8217; as I now need to remember! It&#8217;s been far too long since I last posted!


I&#8217;ve just got back from PHP London at the Doggetts pub, where Jakub Zalas (http://twitter.com/@jakub_zalas) gave a talk on Symfony2; it certainly looks like a nice framework but I&#8217;m already heading [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div>
<p>I insisted that I would blog today, or &#8216;Blog Thursday&#8217; as I now need to remember! It&#8217;s been far too long since I last posted!</p>
</div>
<div id="_mcePaste">
<p>I&#8217;ve just got back from PHP London at the Doggetts pub, where Jakub Zalas (http://twitter.com/@jakub_zalas) gave a talk on Symfony2; it certainly looks like a nice framework but I&#8217;m already heading down the Zend route as that&#8217;s what we use at work! I would recommend checking it out though, if you haven&#8217;t already.</p>
</div>
<div id="_mcePaste">
<p>When searching for ideas on what I should blog about; I figured I&#8217;d consult ye olde Twitter! Thankfully, a couple of people asked questions; and even better that the questions are on the same topic of WordPress; something I&#8217;ve used quite a lot in my personal time as well as work.</p>
</div>
<div id="_mcePaste">Question 1:</div>
<div id="_mcePaste">
<p>The first question comes from @asforasafarina (thank you darling sister :p), &#8220;I would like to know how to put a jquery carrousel on my wordpress blog please! <img src='http://bobbyjason.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8221;.</p>
</div>
<div id="_mcePaste">
<p>The reason Asfora has asked this, is because I was showing her the new website we have for work (http://www.webgains.com). As you can see, it has a nice pretty carousel and she was shocked when I told her the website uses Wordpress; this resulted in her wanted me to explain how she can put such an item on her own site.</p>
</div>
<div id="_mcePaste">To get you started, it&#8217;s probably easier to point you in the direction of fredhq.com; where you can download the &#8217;roundabout&#8217; jQuery plugin:</div>
<div id="_mcePaste">
<p>http://fredhq.com/projects/roundabout/</p>
</div>
<div id="_mcePaste">The download link is here:</div>
<div id="_mcePaste">
<p>https://github.com/fredhq/roundabout/zipball/master</p>
</div>
<div id="_mcePaste">
<p>So, how do you put it into your Wordpress blog? All you need to do is open up your theme editor, edit the HTML of where you want the carousel to go and put this HTML:</p>
</div>
<blockquote>
<div id="_mcePaste">&lt;!&#8211; assuming you places the jquery.roundaabout.js in the root of your website. &#8211;&gt;</div>
<div id="_mcePaste">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;/jquery.roundabout.js&#8221;&gt;&lt;/script&gt;</div>
<div id="_mcePaste">&lt;ul id=&#8221;carousel&#8221;&gt;</div>
<div id="_mcePaste">&lt;li&gt;&lt;span&gt;Block 1&lt;/span&gt;&lt;/li&gt;</div>
<div id="_mcePaste">&lt;li&gt;&lt;span&gt;Block 2&lt;/span&gt;&lt;/li&gt;</div>
<div id="_mcePaste">&lt;li&gt;&lt;span&gt;Block 3&lt;/span&gt;&lt;/li&gt;</div>
<div id="_mcePaste">&lt;li&gt;&lt;span&gt;Block 4&lt;/span&gt;&lt;/li&gt;</div>
<div id="_mcePaste">&lt;li&gt;&lt;span&gt;Block 5&lt;/span&gt;&lt;/li&gt;</div>
<div id="_mcePaste">&lt;/ul&gt;</div>
</blockquote>
<div id="_mcePaste">In all honesty, that&#8217;s it! Simple as! You will of course want some styling and the below should help you out:</div>
<blockquote>
<div id="_mcePaste">&lt;style&gt;</div>
<div id="_mcePaste">ul {</div>
<div id="_mcePaste">list-style: none;</div>
<div id="_mcePaste">padding: 0;</div>
<div id="_mcePaste">margin: 0 auto;</div>
<div id="_mcePaste">width: 42em;</div>
<div id="_mcePaste">height: 24em;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">li {</div>
<div id="_mcePaste">height: 20em;</div>
<div id="_mcePaste">width: 30em;</div>
<div id="_mcePaste">background-color: #ccc;</div>
<div id="_mcePaste">text-align: center;</div>
<div id="_mcePaste">cursor: pointer;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">li.roundabout-in-focus {</div>
<div id="_mcePaste">cursor: default;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">span {</div>
<div id="_mcePaste">display: block;</div>
<div id="_mcePaste">padding-top: 6em;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">&lt;/style&gt;</div>
</blockquote>
<div id="_mcePaste">To see it in action you can visit:</div>
<div id="_mcePaste">http://fredhq.com/projects/roundabout/demos/standard</p>
</div>
<div id="_mcePaste">Obviously, you will need to put in a lot more work to style it to suit your site; but once you have the carousel in you are in a great position to customise it.</p>
</div>
<div id="_mcePaste">Anyway &#8211; that will have to be all as it&#8217;s quite late already and I can&#8217;t be bothered to type any more!</div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?&amp;linkurl=http%3A%2F%2Fbobbyjason.co.uk%2Fblog%2F149%2Fwordpress-jquery-carousel%2F&amp;linkname=Wordpress%20jQuery%20Carousel"><img src="http://bobbyjason.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://bobbyjason.co.uk/blog/149/wordpress-jquery-carousel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Building a Data Feed Driven Website (with @WebgainsUK Feeds)</title>
		<link>http://bobbyjason.co.uk/blog/137/building-a-data-feed-driven-website-with-webgainsuk-feeds/</link>
		<comments>http://bobbyjason.co.uk/blog/137/building-a-data-feed-driven-website-with-webgainsuk-feeds/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 00:07:15 +0000</pubDate>
		<dc:creator>BobbyJason</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[data feeds]]></category>
		<category><![CDATA[webgains]]></category>

		<guid isPermaLink="false">http://bobbyjason.co.uk/blog/?p=137</guid>
		<description><![CDATA[Part 1: Webgains Data feed Introduction
Where  I work (@WebgainsUK), we often have a lot of affiliates contact us that  want help with regard to data feeds. Whilst a lot of these queries tend  to be technical questions relating to an issue with the feed, or  reporting a problem with a merchant&#8217;s [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><strong>Part 1: Webgains Data feed Introduction</strong></p>
<p>Where  I work (<a href="http://twitter.com/WebgainsUK" target="_blank">@WebgainsUK</a>), we often have a lot of affiliates contact us that  want help with regard to data feeds. Whilst a lot of these queries tend  to be technical questions relating to an issue with the feed, or  reporting a problem with a merchant&#8217;s feed; some of these requests  are as technical as asking how to build a site using the data feeds, how  to import feeds into the database, or asking how to build a price  comparison site. Sadly, as much as Webgains try to help with these sorts  of questions wherever possible, it&#8217;s simply not possible to offer the  in-depth time-consuming answer required due to the nature of the task in  hand.</p>
<p>Thankfully, there are tools out there such as <a href="http://www.easycontentunits.com" target="_blank">Easy Content  Units</a>, which allows affiliates to insert content units into their site  without requiring any knowledge of data feeds. A plus point of being a  Webgains affiliate is that Webgains is partnered with Easy Content Units  and as such get the service for free. However, having 3&#215;3, 4&#215;4 or other  size grids of products powered by someone else&#8217;s website isn&#8217;t always  what an affiliate wants &#8211; some folks want to do their own thing, and  know how it works. Also, having products powered by Easy Content Units  doesn&#8217;t do much for your SEO; you can&#8217;t index each individual product,  you can&#8217;t have an in-built search, you can&#8217;t categorise your products,  and you&#8217;re also relying on their server be up 100% of the time. Throw in  a few other excuses for not wanting to use it, and you have a  compelling reason why affiliates are asking how to build their own data  driven website.</p>
<p>So with that in mind, I figured I&#8217;d have a go at  providing a solution in the format of a guide, &#8220;Building a Data Feed  Driven Website&#8221;. This guide will come in several parts, I have no idea  how many parts it will be, and I have no idea if I will ever finish it.  First things first though, let&#8217;s set out the objective.</p>
<p>Objective</p>
<p>To build a website that:<br />
&gt; is able to download data feeds from Webgains on a regular basis, so that the prices are always correct.<br />
&gt; can display 1 product per page for SEO reasons.<br />
&gt; has SEO friendly URLs<br />
&gt; can categorise products.<br />
&gt; has a neat search facility.<br />
&gt; has a voucher facility to accompany the products.<br />
&gt; can list the latest offers and promotions from merchants.</p>
<p>For  now, that can be the &#8217;simplistic&#8217; objective &#8211; we can always add to it  later if we desire. Notice how the requirement mentions &#8216;data feeds from  Webgains&#8217;; the reason for this is that as a Webgains employee, I feel I  have a duty to not help you promote other networks. If by reading my  guide, you feel technically inclined to mash the code to allow you to  download feeds from other networks then feel free, but don&#8217;t ask me how  <img src='http://bobbyjason.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><strong>Tools/Resources/Knowledge Required</strong></p>
<p>Basic understanding  of affiliate marketing is a given; you should know what products you  want to promote, you should know what a data feed is, you should know why  you are reading this, and you should know what it is you want to  achieve. It&#8217;s probably worth noting that you won&#8217;t get very far without a  Webgains affiliate account. <a href="http://www.webgains.com/signup.html" target="_blank">Signup to Webgains here</a>.</p>
<p>Ultimately,  you are going to need access to a server capable of running PHP5 &amp;  MySQL5. In terms of getting a server up and running with PHP5 and  MySQL5, I&#8217;m afraid it is beyond the realm of this guide. However, if you  have a spare computer laying around; may I suggest that you install  Ubuntu. If you need help with that, Google this: &#8220;ubuntu LAMP server&#8221;.  Failing that, you could always try a webhost like Fasthosts.</p>
<p>In  addtion, you will need a decent text editor (Notepad++, or EditPlus[I  use this]) and a willingness to learn. As this guide is meant to be a  resource to those who already have a basic understanding of PHP &amp;  MySQL, you will have to &#8216;catch up&#8217; where necessary. If possible, I&#8217;ll  try to give, &#8216;beginners guide tips&#8217; &#8211; but the ultimate goal is for you  to reach the objective, so maybe a twitter account will be required so  you can ask me questions: <a href="http://twitter.com/bobbyjason" target="_blank">@bobbyjason</a>.</p>
<p><strong>Notes</strong></p>
<p>Due to the  nature of complexities of this project (it&#8217;s not such a small project  after all), I&#8217;m going to code the site in sections of how to do each  bit. I can&#8217;t promise that the final project will involve all the final  bits being put together, as each section is meant to be a mini-guide in  it&#8217;s own right. Again, throw any questions my way: @bobbyjason.</p>
<p><strong>Getting Started</strong></p>
<p>The  most obvious place to start, is at the heart of the problem; data feeds.  If you knew how to work with data feeds, and you knew how to load them  into a database &#8211; you probably wouldn&#8217;t be reading this guide, so it is  for that reason I have decided to start here. For the sake of brevity,  I&#8217;m not going to explain in detail the difference between downloading a  datafeed directly, and downloading a feed via a URL. In short, for our  objective we want to download the feed via a URL as this will allow our  website to be automated.</p>
<p>So, head over to the &#8220;Data feed url  generator&#8221; and select the &#8220;xml&#8221; option, rather than &#8220;csv&#8221;. XML is a much  more structured approach, and it makes life much easier where trying to  find a problem when things go wrong &#8211; plus, I prefer working with XML  and its MY guide! Select the &#8220;.gz&#8221; option &#8211; this is the only option that  allows you to download a compressed feed immediatly. &#8220;.zip&#8221;, and  &#8220;.tar.gz&#8221; required you to hang around a little &#8211; not so good. Select ONE  of the programs, not all &#8211; but ONE. You can then select &#8216;All&#8217; at the categories  option, and select the &#8216;exended&#8217; fields option. Finally, enter your  username and password, and grab the URL &#8211; you should something that  looks similar to this:</p>
<p>http://content.webgains.com/affiliates/datafeed.html?action=download&amp;campaign=<strong>12345</strong>&amp;username=<strong>username@website.com</strong>&amp;password=<strong>password</strong>&amp;format=xml&amp;zipformat=gzip_notar&amp;fields=extended&amp;programs=<strong>1234</strong>&amp;categories=all</p>
<p>If  you have a URL like the one above (with the correct username and  password), you should be able paste it into your browser and download a  .gz compressed feed of the program you selected. Notice how you can  replace the &#8220;programs&#8221; parameter with any other program ID to download a  feed for a different program. Straight away you should be able to see  the logic required here; we need to create a PHP script that can loop  through each of the programs&#8217; feeds that we wish to download, and enter  the correct program ID. In psuedo form, here it is:</p>
<p>foreach program<br />
&#8230;.download feed for this program<br />
end foreach</p>
<p>Of  course, in reality we don&#8217;t want to just download the feed, we also  want to take the data out of it and populate our database, but I figured  baby steps would be best as not every one will understand that just  yet. So let&#8217;s get sizzling. Glancing at the clock I can see that it is  18/10/2010 22:17 &#8211; this means that I am missing the last episode of The  Inbetweeners which is rather upsetting. Thankfully we have 4OD in this  modern world, so I&#8217;ll create this script and then head off to bed!</p>
<pre style="font-size: 12px;">&lt;?php /* lesson1.php */

error_reporting(E_ALL|E_STRICT);
ini_set('display_errors', true);

// Create an array of the programs that we want to download
$programs = array(4084, 116);

print "Starting...\n";

// PHP foreach loop.
foreach ($programs as $program_id)
{
 // Use the "sprintf" function to pass the correct values to the string.
 // Also, splitting up the string to avoid long lines of code.
 $feed_url = sprintf('http://content.webgains.com/affiliates/datafeed.html?'.
 'action=download&amp;campaign=%s&amp;username=%s&amp;password=%s'.
 '&amp;format=xml&amp;zipformat=gzip_notar&amp;fields=extended'.
 '&amp;programs=%d&amp;categories=all',
12345, 'USERNAME', 'PASSWORD',$program_id);

 // Set the path of where you would like to save the file.
 $file = '/home/chops/xml/guide/feeds/'.$program_id.'.xml';
 $compressed = $file.'.gz';

 // Download the file (requires function, 'curl_get_file_contents'
 $data = curl_get_file_contents($feed_url);

 // Open the file for writing, write, and close the file.
 $fp = fopen($compressed, 'w+');
 fwrite($fp, $data);
 fclose($fp);

 // Call the a UNIX command to unzip the file, and move it to our desired location.
 shell_exec("gunzip -c $compressed &gt; $file");

}

print "Done.\n";

// Function to download a file.
function curl_get_file_contents($url)
{
 // Output something so we know it's working.
 print "Downloading '".$url."'\n";
 flush();

 $c = curl_init();
 curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($c, CURLOPT_URL, $url);
 curl_setopt($c, CURLOPT_CONNECTTIMEOUT, 5000);
 curl_setopt($c, CURLOPT_TIMEOUT, 10000);
 $contents = curl_exec($c);
 curl_close($c);

 return $contents;
}
?&gt;</pre>
<p>You  can copy that code into a text document, save it as &#8216;lesson1.php&#8217; (be  sure to replace username, password and campaignid with your values!).  You can call the script directly in a browser if you wish, personally I  shall use the terminal. The files will be downloaded to the specified location. Note: If there are any PHP Gurus out there, you  will notice that this code may not be the most complex, but I&#8217;m trying  to keep it simple for those that may not be so familiar with PHP.</p>
<p>All the script does is:<br />
&gt; loop through our selected programs.<br />
&gt; downloads the compressed feed.<br />
&gt; extracts the compressed file with the name of {program_id}.xml</p>
<p>For now that will have to do, because I want to publish this blog post and go to bed. I hope it&#8217;s useful to somebody!</p>
<p>Coming up: How to parse the XML files and insert the products into a database.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?&amp;linkurl=http%3A%2F%2Fbobbyjason.co.uk%2Fblog%2F137%2Fbuilding-a-data-feed-driven-website-with-webgainsuk-feeds%2F&amp;linkname=Building%20a%20Data%20Feed%20Driven%20Website%20%28with%20%40WebgainsUK%20Feeds%29"><img src="http://bobbyjason.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://bobbyjason.co.uk/blog/137/building-a-data-feed-driven-website-with-webgainsuk-feeds/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Apple or Android / Apple or Microsoft</title>
		<link>http://bobbyjason.co.uk/blog/132/apple-or-android-apple-or-microsoft/</link>
		<comments>http://bobbyjason.co.uk/blog/132/apple-or-android-apple-or-microsoft/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 19:20:01 +0000</pubDate>
		<dc:creator>BobbyJason</dc:creator>
				<category><![CDATA[Advice / Tips]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[nexus]]></category>

		<guid isPermaLink="false">http://bobbyjason.co.uk/blog/?p=132</guid>
		<description><![CDATA[With it being over 6 months since my last blog post, I figured I&#8217;d stick another post in. This time I&#8217;m looking for your opinion on whether I should stick with my current setup (below) or move to a new setup!
My Current Setup (Got a problem with Dell? Well it&#8217;s never failed for me!)
Desktop: Dell [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>With it being over 6 months since my last blog post, I figured I&#8217;d stick another post in. This time I&#8217;m looking for your opinion on whether I should stick with my current setup (below) or move to a new setup!</p>
<p>My Current Setup (Got a problem with Dell? Well it&#8217;s never failed for me!)</p>
<p>Desktop: Dell Dimension 9200 Tower w/19&#8243; Widescreen (Windows 7 Ultimate)<br />
Laptop: Dell Inspiron 1545 w/15.6&#8243; Widescreen (Windows 7 Ultimate)<br />
Phone: Google Nexus One (Froyo AKA Anroid2.2)</p>
<p>I&#8217;ll start with my Dekstop: I bought it in June 2007 as I needed a &#8220;super-fast&#8221; computer for working with .NET and the Silverlight Framework in my new job &#8211; as it happens I decided to focus my &#8216;career&#8217; down the PHP route, so I&#8217;ve never really utilsed the power. Naturally though, this meant that it was always meant to be a Windows-based PC, and it came with Vista (which I have since upgraded to Windows 7). I&#8217;ve played with Ubuntu before, and I like it &#8211; but I have too many applications that I cannot get to work correctly within it (Photoshop, Fireworks, Flash etc). So, I&#8217;m using Windows 7 &#8211; and it&#8217;s great (no, seriously, it is!)</p>
<p>It&#8217;s pretty much the same story with my laptop.</p>
<p>Roll forward to April 2009, and I bought my shiny Apple iPhone 3G &#8211; I gave my iPod Nano away, and loaded all my music onto the phone. The iPhone was Awesome, but that didn&#8217;t stop me buying a Google Nexus One (January 2010). Why? Because I love Google! After using both, I can definately say that the Android device offers much more than the iPhone 3G, and that I know I made the right decision.</p>
<p>I now use Dropbox to syncronise my Desktop with my Laptop, and also have the Dropbox App on my phone. So everything is perfect, it&#8217;s all good &#8211; but I want something new and shiny to play with, like an iPhone 4, and an MacBook Pro&#8230;</p>
<p>Can someone convince me that I&#8217;m being stupid, or persuade me enough to go out and buy one&#8230;?!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?&amp;linkurl=http%3A%2F%2Fbobbyjason.co.uk%2Fblog%2F132%2Fapple-or-android-apple-or-microsoft%2F&amp;linkname=Apple%20or%20Android%20%2F%20Apple%20or%20Microsoft"><img src="http://bobbyjason.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://bobbyjason.co.uk/blog/132/apple-or-android-apple-or-microsoft/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Testing Wordpress Plugin</title>
		<link>http://bobbyjason.co.uk/blog/127/testing-wordpress-plugin/</link>
		<comments>http://bobbyjason.co.uk/blog/127/testing-wordpress-plugin/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 15:38:04 +0000</pubDate>
		<dc:creator>BobbyJason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bobbyjason.co.uk/blog/?p=127</guid>
		<description><![CDATA[var hide_awf_Form = true;

Subscribe to my Email Newsletter.


No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript">var hide_awf_Form = true;</script><br />
<script type="text/javascript" src="http://forms.aweber.com/form/01/1284642301.js"></script><br />
<a href="#" onclick="awf_Form_.showForm(); return false;">Subscribe to my Email Newsletter.</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?&amp;linkurl=http%3A%2F%2Fbobbyjason.co.uk%2Fblog%2F127%2Ftesting-wordpress-plugin%2F&amp;linkname=Testing%20Wordpress%20Plugin"><img src="http://bobbyjason.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://bobbyjason.co.uk/blog/127/testing-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Box &#8211; Nexus One Dock</title>
		<link>http://bobbyjason.co.uk/blog/108/apple-box-nexus-one-dock/</link>
		<comments>http://bobbyjason.co.uk/blog/108/apple-box-nexus-one-dock/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 17:44:31 +0000</pubDate>
		<dc:creator>BobbyJason</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[nexus]]></category>
		<category><![CDATA[nexus one dock]]></category>

		<guid isPermaLink="false">http://bobbyjason.co.uk/blog/?p=108</guid>
		<description><![CDATA[What better way to make a Nexus One dock than ro recycle?
After selling my iPhone, I still had the box. It seemed silly to bin the box so I used to help make a dock for my Nexus One!
So there you have it&#8230;
&#8230;if you have a spare iPhone case laying around now you know what [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>What better way to make a Nexus One dock than ro recycle?</p>
<p>After selling my iPhone, I still had the box. It seemed silly to bin the box so I used to help make a dock for my Nexus One!</p>
<div id="attachment_109" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-109" title="apple-dock-1" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/apple-dock-1.jpg" alt="The two boxes" width="500" height="375" /><p class="wp-caption-text">The two boxes</p></div>
<div id="attachment_112" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-112" title="apple-dock-4" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/apple-dock-4.jpg" alt="Nexus Fitting" width="500" height="667" /><p class="wp-caption-text">Nexus Fitting</p></div>
<div id="attachment_115" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-115" title="apple-dock-7" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/apple-dock-7.jpg" alt="Cut a hole for the power cable" width="500" height="667" /><p class="wp-caption-text">Cut a hole for the power cable</p></div>
<div id="attachment_117" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-117" title="apple-dock-9" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/apple-dock-9.jpg" alt="Stick it down!" width="500" height="667" /><p class="wp-caption-text">Stick it down!</p></div>
<div id="attachment_118" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-118" title="apple-dock-10" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/apple-dock-10.jpg" alt="Cable attached - notice the angle of the nexus box- excellent!" width="500" height="667" /><p class="wp-caption-text">Cable attached - notice the angle of the nexus box- excellent!</p></div>
<div id="attachment_119" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-119" title="apple-dock-11" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/apple-dock-11.jpg" alt="Hack away at the iPhone box..." width="500" height="667" /><p class="wp-caption-text">Hack away at the iPhone box...</p></div>
<div id="attachment_120" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-120" title="apple-dock-12" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/apple-dock-12.jpg" alt="Stick the nexus card to the inner iPhone sleeve" width="500" height="667" /><p class="wp-caption-text">Stick the nexus card to the inner iPhone sleeve</p></div>
<div id="attachment_121" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-121" title="apple-dock-13" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/apple-dock-13.jpg" alt="Shoved it into the outer iPhone sleeve" width="500" height="667" /><p class="wp-caption-text">Shoved it into the outer iPhone sleeve</p></div>
<div id="attachment_122" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-122" title="apple-dock-14" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/apple-dock-14.jpg" alt="Pop the Nexus One into the DOCK!" width="500" height="375" /><p class="wp-caption-text">Pop the Nexus One into the DOCK!</p></div>
<div id="attachment_123" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-123" title="apple-dock-15" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/apple-dock-15.jpg" alt="Beautiful, just... beautiful. Sorry for the smudge marks.." width="500" height="667" /><p class="wp-caption-text">Beautiful, just... beautiful. Sorry for the smudge marks..</p></div>
<div id="attachment_124" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-124" title="apple-dock-16" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/apple-dock-16.jpg" alt="I love it..!" width="500" height="688" /><p class="wp-caption-text">I love it..!</p></div>
<p>So there you have it&#8230;</p>
<p>&#8230;if you have a spare iPhone case laying around now you know what to do with it. <img src='http://bobbyjason.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Hope you love my craft skillz. as you can see; it&#8217;s probably better that I stick to my Affiliate Marketing &amp; Programming &#8211; but I still refuse to pay shipping TWICE to have TWO Google Nexus Docks shipped to the UK !!</p>
<p>o_O</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?&amp;linkurl=http%3A%2F%2Fbobbyjason.co.uk%2Fblog%2F108%2Fapple-box-nexus-one-dock%2F&amp;linkname=Apple%20Box%20%26%238211%3B%20Nexus%20One%20Dock"><img src="http://bobbyjason.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://bobbyjason.co.uk/blog/108/apple-box-nexus-one-dock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Green Android Desk Stand</title>
		<link>http://bobbyjason.co.uk/blog/101/green-android-desk-stand/</link>
		<comments>http://bobbyjason.co.uk/blog/101/green-android-desk-stand/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 20:47:41 +0000</pubDate>
		<dc:creator>BobbyJason</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[nexus one]]></category>

		<guid isPermaLink="false">http://bobbyjason.co.uk/blog/?p=101</guid>
		<description><![CDATA[Well, in an earlier post &#8211; I showed you how to make a budget Nexus One Andrex Dock
I thought I&#8217;d get creative &#8211; so I had a look how to make play dough:
http://becomingdomestic.co.uk/2006/10/28/how-to-make-playdough-no-cook-recipe/
And then Proceeded:
Right now, the thing is in the oven.
Apparently you are not meant to put play doh in the oven. So it [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Well, in an earlier post &#8211; I showed you how to make a budget <a href="http://bobbyjason.co.uk/blog/2010/02/nexus-one-andrex-dock/" target="_blank">Nexus One Andrex Dock</a></p>
<p>I thought I&#8217;d get creative &#8211; so I had a look how to make play dough:</p>
<p><a href="http://becomingdomestic.co.uk/2006/10/28/how-to-make-playdough-no-cook-recipe/" target="_blank">http://becomingdomestic.co.uk/2006/10/28/how-to-make-playdough-no-cook-recipe/</a></p>
<p>And then Proceeded:</p>
<div id="attachment_96" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-96" title="android-stand-1" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/android-stand-1.jpg" alt="Ingredients in the bowl..." width="500" height="375" /><p class="wp-caption-text">Ingredients in the bowl...</p></div>
<div id="attachment_97" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-97" title="android-stand-2" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/android-stand-2.jpg" alt="We NEED green!" width="500" height="375" /><p class="wp-caption-text">We NEED green!</p></div>
<div id="attachment_98" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-98" title="android-stand-3" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/android-stand-3.jpg" alt="Mix it up..." width="500" height="375" /><p class="wp-caption-text">Mix it up...</p></div>
<div id="attachment_99" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-99" title="android-stand-4" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/android-stand-4.jpg" alt="Aaah, lovely loaf..." width="500" height="375" /><p class="wp-caption-text">Aaah, lovely loaf...</p></div>
<div id="attachment_100" class="wp-caption alignnone" style="width: 385px"><img class="size-full wp-image-100" title="android-stand-5" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/android-stand-5.jpg" alt="Into shape..." width="375" height="500" /><p class="wp-caption-text">Into shape...</p></div>
<p>Right now, the thing is in the oven.</p>
<p>Apparently you are not meant to put play doh in the oven. So it may just be a big PHAT PHAIL!</p>
<p>I&#8217;ll update once it&#8217;s out the oven!!</p>
<p><strong>UPDATE: ITS OUT THE OVEN</strong></p>
<div id="attachment_105" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-105" title="It burnt..." src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/android-stand-6.jpg" alt="It burnt..." width="500" height="375" /><p class="wp-caption-text">It burnt...</p></div>
<p><img class="alignnone size-full wp-image-106" title="android-stand-7" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/android-stand-7.jpg" alt="android-stand-7" width="500" height="375" /></p>
<p>so yeah, damn good reason to stop being a tight ass and pay for the shipping from the US for the Google Nexus One Desktop Dock!!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?&amp;linkurl=http%3A%2F%2Fbobbyjason.co.uk%2Fblog%2F101%2Fgreen-android-desk-stand%2F&amp;linkname=Green%20Android%20Desk%20Stand"><img src="http://bobbyjason.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://bobbyjason.co.uk/blog/101/green-android-desk-stand/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nexus One Andrex Dock</title>
		<link>http://bobbyjason.co.uk/blog/93/nexus-one-andrex-dock/</link>
		<comments>http://bobbyjason.co.uk/blog/93/nexus-one-andrex-dock/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 17:30:35 +0000</pubDate>
		<dc:creator>BobbyJason</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cheap nexus dock]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[nexus one]]></category>
		<category><![CDATA[nexus one dock]]></category>

		<guid isPermaLink="false">http://bobbyjason.co.uk/blog/?p=93</guid>
		<description><![CDATA[So, 26th January I ordered my Nexus One from Google.com and had to pay the $29 dollars for shipping to the UK.. quite reasonable price to be honest!
However, on 27th January Google Announced the Desktop Dock was now available &#8211; this was rather frustrating as I had already placed my order &#8211; so if I [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>So, 26th January I ordered my Nexus One from Google.com and had to pay the $29 dollars for shipping to the UK.. quite reasonable price to be honest!</p>
<p>However, on 27th January Google Announced the Desktop Dock was now available &#8211; this was rather frustrating as I had already placed my order &#8211; so if I want one I will have to pay the $29 shipping fee again. However, I want 2! You can&#8217;t buy 2 though&#8230;.If I want to purchase 2 then I have to place 2 seperate orders, meaning I will have to pay shipping to the UK twice, again &#8211; I&#8217;ve already paid once!</p>
<p>So, I figured I would make my own. This one cost 50 pence &#8211; (around 1 dollar to you US folks!)</p>
<div id="attachment_85" class="wp-caption alignnone" style="width: 545px"><img class="size-full wp-image-85" title="The Toilet Roll" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/step1-toilet-roll.jpg" alt="Toilet Roll" width="535" height="693" /><p class="wp-caption-text">Toilet Roll</p></div>
<div id="attachment_86" class="wp-caption alignnone" style="width: 545px"><img class="size-full wp-image-86" title="Top View" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/step2-toilet-roll.jpg" alt="Wow, it looks like a big polo.." width="535" height="693" /><p class="wp-caption-text">Wow, it looks like a big polo..</p></div>
<div id="attachment_87" class="wp-caption alignnone" style="width: 545px"><img class="size-full wp-image-87" title="USB Cable" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/step3-usb-cablel.jpg" alt="USB Cable" width="535" height="693" /><p class="wp-caption-text">USB Cable</p></div>
<div id="attachment_88" class="wp-caption alignnone" style="width: 545px"><img class="size-full wp-image-88" title="Cutting a Gap" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/step4-usb-cut-gap.jpg" alt="Cutting a Gap" width="535" height="693" /><p class="wp-caption-text">Cutting a Gap</p></div>
<div id="attachment_89" class="wp-caption alignnone" style="width: 545px"><img class="size-full wp-image-89" title="Placing the Cable" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/step5-place-cable.jpg" alt="Placing the Cable" width="535" height="693" /><p class="wp-caption-text">Placing the Cable</p></div>
<div id="attachment_90" class="wp-caption alignnone" style="width: 545px"><img class="size-full wp-image-90" title="Flatten the toilet roll" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/step6-flatten-toilet-roll.jpg" alt="Flatten the toilet roll" width="535" height="693" /><p class="wp-caption-text">Flatten the toilet roll</p></div>
<div id="attachment_91" class="wp-caption alignnone" style="width: 545px"><img class="size-full wp-image-91" title="Nexus One in the Bog Roll" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/step7-sit-nexus-one.jpg" alt="Nexus One in the Bog Roll" width="535" height="693" /><p class="wp-caption-text">Nexus One in the Bog Roll</p></div>
<div id="attachment_92" class="wp-caption alignnone" style="width: 545px"><img class="size-full wp-image-92" title="Nexus One in the Bog Roll from a different angle" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/step8-desk.jpg" alt="Nexus One in the Bog Roll from a different angle" width="535" height="693" /><p class="wp-caption-text">Nexus One in the Bog Roll from a different angle</p></div>
<p>There you have it!</p>
<p>This is perfect; I can create as many as I want. If you wanted to get creative you could colour yours in paint; or maybe cover it with papier mache?</p>
<p>$1 per dock &#8211; admitedly it doesn&#8217;t have Bluetooth like the Google one; but it&#8217;s a lot cheaper!</p>
<p>I almost forgot&#8230; A photo with the headphone Jack in:</p>
<p><img class="alignnone size-full wp-image-94" title="With Audio Jack" src="http://bobbyjason.co.uk/blog/wp-content/uploads/2010/02/step9-audio-jack.jpg" alt="With Audio Jack" width="535" height="693" /></p>
<p>Sorry about the quality of the photos&#8230; my digital camera is rubbish &#8211; it&#8217;s okay though as I now have a great camera in the Nexus One <img src='http://bobbyjason.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Hope you like it.</p>
<p>p.s. Yes, I know it shit; but that&#8217;s what do you expect from a bit of shit roll? =))</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?&amp;linkurl=http%3A%2F%2Fbobbyjason.co.uk%2Fblog%2F93%2Fnexus-one-andrex-dock%2F&amp;linkname=Nexus%20One%20Andrex%20Dock"><img src="http://bobbyjason.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://bobbyjason.co.uk/blog/93/nexus-one-andrex-dock/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>iPhone SDK on a Mac G4 without a intel based CPU.</title>
		<link>http://bobbyjason.co.uk/blog/81/iphone-sdk-on-a-mac-g4-without-a-intel-based-cpu/</link>
		<comments>http://bobbyjason.co.uk/blog/81/iphone-sdk-on-a-mac-g4-without-a-intel-based-cpu/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 15:00:11 +0000</pubDate>
		<dc:creator>BobbyJason</dc:creator>
				<category><![CDATA[Advice / Tips]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone app]]></category>
		<category><![CDATA[iphone sdk]]></category>
		<category><![CDATA[leopard]]></category>

		<guid isPermaLink="false">http://bobbyjason.co.uk/blog/?p=81</guid>
		<description><![CDATA[So,
last weekend i spent about 2 hours watching the &#8220;getting started&#8221; videos on how to use the apple iPhone SDK. I proceeded to try to download the iPhone SDK but to my disappointment this is only possible if you have Mac OS X. I currently use a Core 2 DUO with 2 GB RAM running [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>So,</p>
<p>last weekend i spent about 2 hours watching the &#8220;getting started&#8221; videos on how to use the apple iPhone SDK. I proceeded to try to download the iPhone SDK but to my disappointment this is only possible if you have Mac OS X. I currently use a Core 2 DUO with 2 GB RAM running Windows 7; whereas my laptop is a Core2duo with 3GB RAM running Vista. I didn&#8217;t fancy dual booting with a dodgy copy and hacked version of Mac OS X</p>
<p>The idea was to create an application for the company I work for; so during the week my boss found me a spare Mac Mini PowerPC G4. It&#8217;s been laying around on a desk collecting dust for god knows how long. So last night I fetched it home&#8230;(my first mac, EVER!)</p>
<p>After upgrading from Panther to Leopard 10.5; I upgraded to 10.5.8 and downloaded the 2GB iPhone SDK (bundled with the latest verison of xcode) from the Apple site. I proceeded to open the installation only to discover that whilst I can install xcode the iPhone SDK option is only available if you have an Intel-based Mac. This was rather infuriating! Anyway; long story short &#8211; I Googled until I was highly delighted with finding the following site:</p>
<p><a href="http://www.diskordia.ch/blog/?p=79" target="_blank">How to run iPhone SDK on a non intel based Mac (G4, G5 etc)</a></p>
<p>At the above URL. there are instructions on how to get xcode to let you build an iPhone app on a non-intel based Mac. Just in case the link doesnt work , I have pasted the post here:</p>
<blockquote><p>Officially the iPhone SDK requires an Intel Mac with OSX 10.5. Since I have a four year old dual G5, which is still running like a young dear, I don’t want to buy a new Mac just for writing iPhone Applications.</p>
<p>After some research, I found out, that it’s possible to make it work on PPC since the iPhone SDK are universal binaries.</p>
<p>To share my knowledge, I write a small tutorial. <strong><span>Note, that I don’t take responsibility, for any defects cause somebody used my code!</span></strong></p>
<p><strong><span>How to get the iPhone SDK to work on PPC Macs</span></strong><strong></strong></p>
<p><strong></strong></p>
<p>Most of the tutorials I found in the Web are not up to date, because there where no “Aspen” packages anymore. With the iPhone SDK for IPhone OS 2.1 (build 9M2517) you can follow these steps:<br />
1. Download the official iPhone SDK <a href="http://developer.apple.com/iphone/index.action">here</a>.</p>
<p>2. Mount the .dmg image and install the iPhone SDK (the iPhone SDK will be grayed out!).</p>
<p>3. After rebooting the Mac, mount the image again and go to the folder Package. Install all packages which have <em>iphone</em> in the name (e.g. Simulator, SDK, Documentation).</p>
<p>4. Go to the folder <em>/Platforms</em> on the local HD and copy the<em> iPhone.platform</em> and the<em>iPhoneSimulator.platform</em> folders to <em>/Developer/Platform</em>.<br />
<span>Don’t copy the whole platforms folder, Xcode will not run correctly anymore<strong>!</strong></span></p>
<p>5. Now we come to the interesting part. Xcode has now access to the iPhone SDK, you can already create iPhone projects, but Xcode still wants to compile the sources for the Intel architecture. To change that, open the folder <em>/Developer/Platforms/iPhoneSimulator.platform/Developer/<br />
Library/Xcode/Specifications/</em> .<br />
In this folder you will find the file iPhone Simulator <em>Architectures.xcspec</em>. Make a backup and open it in any text editor. The content should look something like this:</p>
<pre>(
// 32-Bit
{ Type = Architecture;
Identifier = Standard;
Name = "Standard (iPhone Simulator: i386)";
Description = "32-bit iPhone Simulator architectures";
ListInEnum = YES;
SortNumber = 1;
RealArchitectures = ( i386);
ArchitectureSetting = "ARCHS_STANDARD_32_BIT";
},

// Old-style Debug
{ Type = Architecture;
Identifier = Native;
Name = "Native Architecture of Build Machine";
Description = "32-bit for build machine";
ListInEnum = YES;
SortNumber = 101;
ArchitectureSetting = "NATIVE_ARCH";
},

// Intel
{ Type = Architecture;
Identifier = i386;
Name = "Intel";
Description = "32-bit Intel";
PerArchBuildSettingName = "Intel";
ByteOrder = little;
ListInEnum = NO;
SortNumber = 105;
},
)</pre>
<p>6. Change the line “<em>RealArchitectures = ( i386);</em>” to “<em>RealArchitectures = ( i386, </em><strong>ppc</strong><em>);</em>“.</p>
<p>7. Add the architecture configuration for G3, G4 an G5, the edited file should now look like this.</p>
<pre>(
// 32-Bit
{ Type = Architecture;
Identifier = Standard;
Name = "Standard (iPhone Simulator: i386, <strong>ppc</strong>)";
Description = "32-bit iPhone Simulator architectures";
ListInEnum = YES;
SortNumber = 1;
RealArchitectures = ( i386, ppc7400 );
ArchitectureSetting = "ARCHS_STANDARD_32_BIT";
},

// Old-style Debug
{ Type = Architecture;
Identifier = Native;
Name = "Native Architecture of Build Machine";
Description = "32-bit for build machine";
ListInEnum = YES;
SortNumber = 101;
ArchitectureSetting = "NATIVE_ARCH";
},

<strong>// G3
{ Type = Architecture;
Identifier = ppc;
Name = "Minimal (32-bit PowerPC only)";
Description = "32-bit PowerPC ";
PerArchBuildSettingName = "PowerPC";
ByteOrder = big;
ListInEnum = No;
SortNumber = 201;
},

// G4
{ Type = Architecture;
Identifier = ppc7400;
Name = "PowerPC G4";
Description = "32-bit PowerPC for G4 processor";
ByteOrder = big;
ListInEnum = NO;
SortNumber = 202;
},

// G5 32-bit
{ Type = Architecture;
Identifier = ppc970;
Name = "PowerPC G5 32-bit";
Description = "32-bit PowerPC for G5 processor";
ByteOrder = big;
ListInEnum = NO;
SortNumber = 203;
},</strong>

// Intel
{ Type = Architecture;
Identifier = i386;
Name = "Intel";
Description = "32-bit Intel";
PerArchBuildSettingName = "Intel";
ByteOrder = little;
ListInEnum = NO;
SortNumber = 105;
},
)</pre>
<p>Now you should be able to compile the iPhone project and run the app in the iPhoneSimulator. I never tried to put an App into the AppStore, but I think it should work.</p></blockquote>
<p>So &#8211; if you follow those instructions (like I did) then you should be able to open xcode and build an iPhone app!</p>
<p>Worked a treat for me!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?&amp;linkurl=http%3A%2F%2Fbobbyjason.co.uk%2Fblog%2F81%2Fiphone-sdk-on-a-mac-g4-without-a-intel-based-cpu%2F&amp;linkname=iPhone%20SDK%20on%20a%20Mac%20G4%20without%20a%20intel%20based%20CPU."><img src="http://bobbyjason.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://bobbyjason.co.uk/blog/81/iphone-sdk-on-a-mac-g4-without-a-intel-based-cpu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jenson Button To Set New Record?!</title>
		<link>http://bobbyjason.co.uk/blog/79/jenson-button-to-set-new-record/</link>
		<comments>http://bobbyjason.co.uk/blog/79/jenson-button-to-set-new-record/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 08:54:21 +0000</pubDate>
		<dc:creator>BobbyJason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bobbyjason.co.uk/blog/?p=79</guid>
		<description><![CDATA[6 out of 7 wins for Button; 4 in a row.
He&#8217;s won 85% of the Grand Prix so far this season.
With 10 remaining races remaining. If he manages around the same percentage; he will win another 8 grand prix.
This would give him the most wins in a season (14, over MS&#8217;s 13 wins in 2004). [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>6 out of 7 wins for Button; 4 in a row.</p>
<p>He&#8217;s won 85% of the Grand Prix so far this season.</p>
<p>With 10 remaining races remaining. If he manages around the same percentage; he will win another 8 grand prix.</p>
<p>This would give him the most wins in a season (14, over MS&#8217;s 13 wins in 2004). It would also give him the highest percentage of wins in a season (~82% over Ascari&#8217;s 75% in 1952).</p>
<p>He would also have a good stab at beating the consecutive wins record of 7, set by Ascari &amp; MS.</p>
<p>http://en.wikipedia.org/wiki/List_of_Formula_One_driver_records#Most_wins_in_a_season</p>
<p>I&#8217;d say it&#8217;s early days to tell, but we&#8217;re already a good way through the season to know what cars are strong and what cars are not.</p>
<p>Is he going to do it?!</p>
<p> <img src='http://bobbyjason.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?&amp;linkurl=http%3A%2F%2Fbobbyjason.co.uk%2Fblog%2F79%2Fjenson-button-to-set-new-record%2F&amp;linkname=Jenson%20Button%20To%20Set%20New%20Record%3F%21"><img src="http://bobbyjason.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://bobbyjason.co.uk/blog/79/jenson-button-to-set-new-record/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Far too quiet, far too busy; Gadgets anyone?!</title>
		<link>http://bobbyjason.co.uk/blog/76/far-too-quiet-far-too-busy-gadgets-anyone/</link>
		<comments>http://bobbyjason.co.uk/blog/76/far-too-quiet-far-too-busy-gadgets-anyone/#comments</comments>
		<pubDate>Mon, 25 May 2009 22:12:50 +0000</pubDate>
		<dc:creator>BobbyJason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bobbyjason.co.uk/blog/?p=76</guid>
		<description><![CDATA[Sorry for the lack of updates; I&#8217;ve been busy recently. Last Monday I took up boxing at my local gym; followed by a football match which was very tiring on Tuesday! Along came Wednesday and I was happy to have the break, but it was short lived as I then went boxing on Thursday, too. [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Sorry for the lack of updates; I&#8217;ve been busy recently. Last Monday I took up boxing at my local gym; followed by a football match which was very tiring on Tuesday! Along came Wednesday and I was happy to have the break, but it was short lived as I then went boxing on Thursday, too. Friday follows Thursday, and we all know it was a glorious bank holiday weekend; so yes I&#8217;ve been rather quiet.</p>
<p>I FINALLY found a few hours to get some more time in to show you again how quick it is to set up a new domain &amp; shop. @15:17 BST I registered the domain name: <a href="http://thegadgetdirectory.co.uk">The Gadget Directory</a>. This is now a finely tuned wordpress blog, loaded with over 2,400 affiliate products. I shall be posting new gadgets on there every now and again so that you can get a feel for what products are available.</p>
<p>It just goes to show that if you have just 2 hours spare, you can get another site up and running with the potential to pull in a large audience. I don&#8217;t expect to see a great deal of traffic immediately but I shall for sure keep you updated. If you want to follow my alter-ego &#8220;<a href="http://twitter.com/gadgetman85">Gadget Man</a>&#8221; on twitter, then feel free.</p>
<p>As always if you want any tips on getting started in the affiliate marketing world, just give me a shout! Easiest way is to follow me on twitter and mention me @bobbyjason and you shall soon get a reply!</p>
<p>Night time folks, see ya!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?&amp;linkurl=http%3A%2F%2Fbobbyjason.co.uk%2Fblog%2F76%2Ffar-too-quiet-far-too-busy-gadgets-anyone%2F&amp;linkname=Far%20too%20quiet%2C%20far%20too%20busy%3B%20Gadgets%20anyone%3F%21"><img src="http://bobbyjason.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://bobbyjason.co.uk/blog/76/far-too-quiet-far-too-busy-gadgets-anyone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.457 seconds -->

