<?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>James Collins</title>
	<atom:link href="http://jamesc.id.au/feed/" rel="self" type="application/rss+xml" />
	<link>http://jamesc.id.au</link>
	<description>Web Development, WordPress, PHP, Cloud Computing and more</description>
	<lastBuildDate>Fri, 24 May 2013 04:01:14 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6-beta3-24330</generator>
		<item>
		<title>How to Get Involved in the WordPress Project</title>
		<link>http://jamesc.id.au/2013/05/get-involved-in-wordpress/</link>
		<comments>http://jamesc.id.au/2013/05/get-involved-in-wordpress/#comments</comments>
		<pubDate>Thu, 23 May 2013 23:30:09 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[core]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[GPL]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://jamesc.id.au/?p=923</guid>
		<description><![CDATA[<p>Recently at WordCamp Melbourne, Ryan McCue said the following to all attendees: If everyone simply contributed just one thing to the WordPress project, then WordPress would be infinitely better. Ryan McCue Please pause, and think about that for a second. Going back a few years, there seemed to be a heavy focus on core code being the primary [&#8230;]</p><p>The post <a href="http://jamesc.id.au/2013/05/get-involved-in-wordpress/">How to Get Involved in the WordPress Project</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Recently at WordCamp Melbourne, <a href="https://twitter.com/rmccue">Ryan McCue</a> said the following to all attendees:</p>
<blockquote><p>If everyone simply contributed just <em>one</em> thing to the WordPress project, then WordPress would be infinitely better.<br />
<small><a href="https://twitter.com/rmccue">Ryan McCue</a></small></p></blockquote>
<p>Please pause, and think about that for a second.</p>
<p>Going back a few years, there seemed to be a heavy focus on core code being the primary way to contribute to the <a href="http://wordpress.org/">WordPress open source project</a>.</p>
<p>However in recent times, I&#8217;ve noticed a lot of effort has been put into helping the community contribute to the project in other ways (such as documentation, events, or support).</p>
<p>The WordPress Foundation has <a href="http://wordpressfoundation.org/2013/make-wordpress/">recently posted a great summary on how you can get involved in the WordPress project</a>.</p>
<p>Regardless of whether you&#8217;re using WordPress for business or personal reasons, I strongly suggest you have a read of <a href="http://wordpressfoundation.org/2013/make-wordpress/">the article</a>, which lists these teams/areas that you can get involved in:</p>
<ul>
<li>Accessibility</li>
<li>Community</li>
<li>Core (testing, bug reporting, code wrangling)</li>
<li>Documentation</li>
<li>Events (WordCamps, meetups, etc)</li>
<li>Meta (wordpress.org)</li>
<li>Mobile ((iOS, Android, Windows Phone, and BlackBerry apps)</li>
<li>Polygots (translations)</li>
<li>Plugins</li>
<li>Support</li>
<li>Themes</li>
<li>UI (user interface design &amp; development)</li>
<li>Updates (news / blog posts)</li>
</ul>
<p>In my case, so far I have helped out with WordPress core (bug reporting &amp; fixing), documentation, events, plugins, suport and updates. </p>
<p>However I haven&#8217;t been contributing as much as I would like to. I&#8217;ve only used six of the thirteen ways that I could be contributing, so there&#8217;s definitely still room for improvement!</p>
<p>How are you planning on contributing to the <a href="http://wordpress.org/">WordPress project</a>?</p>
<p>The post <a href="http://jamesc.id.au/2013/05/get-involved-in-wordpress/">How to Get Involved in the WordPress Project</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesc.id.au/2013/05/get-involved-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy your ssh public key to a server from a machine that doesn&#8217;t have ssh-copy-id</title>
		<link>http://jamesc.id.au/2013/05/copy-your-ssh-public-key-to-a-server-from-a-machine-that-doesnt-have-ssh-copy-id/</link>
		<comments>http://jamesc.id.au/2013/05/copy-your-ssh-public-key-to-a-server-from-a-machine-that-doesnt-have-ssh-copy-id/#comments</comments>
		<pubDate>Tue, 21 May 2013 01:36:37 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[authorized_keys]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://jamesc.id.au/?p=911</guid>
		<description><![CDATA[<p>A very simple (one command) way of copying your SSH public key to a remote server. cat ~/.ssh/id_rsa.pub &#124; ssh user@machine "cat >> ~/.ssh/authorized_keys" or im my case: cat ~/.ssh/id_dsa.pub &#124; ssh user@machine "cat >> ~/.ssh/authorized_keys" (replace user@machine with your SSH username and server hostname) I&#8217;ve previously tried to do this using a manual copy-and-paste [&#8230;]</p><p>The post <a href="http://jamesc.id.au/2013/05/copy-your-ssh-public-key-to-a-server-from-a-machine-that-doesnt-have-ssh-copy-id/">Copy your ssh public key to a server from a machine that doesn&#8217;t have ssh-copy-id</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>A very simple (one command) way of copying your SSH public key to a remote server.</p>
<p><code>cat ~/.ssh/id_rsa.pub | ssh user@machine "cat >> ~/.ssh/authorized_keys"</code></p>
<p>or im my case:</p>
<p><code>cat ~/.ssh/id_dsa.pub | ssh user@machine "cat >> ~/.ssh/authorized_keys"</code></p>
<p>(replace user@machine with your SSH username and server hostname)</p>
<p>I&#8217;ve previously tried to do this using a manual copy-and-paste method, but it is error prone because the key quite often gets split over multiple lines.</p>
<p>Using this method helps ensure that your SSH key gets copied over completely.</p>
<p>Thanks to <a href="http://www.commandlinefu.com/commands/view/188/copy-your-ssh-public-key-to-a-server-from-a-machine-that-doesnt-have-ssh-copy-id">commandlinefu.com</a> for this idea.</p>
<p>The post <a href="http://jamesc.id.au/2013/05/copy-your-ssh-public-key-to-a-server-from-a-machine-that-doesnt-have-ssh-copy-id/">Copy your ssh public key to a server from a machine that doesn&#8217;t have ssh-copy-id</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesc.id.au/2013/05/copy-your-ssh-public-key-to-a-server-from-a-machine-that-doesnt-have-ssh-copy-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP/WordPress on Google&#8217;s App Engine</title>
		<link>http://jamesc.id.au/2013/05/wordpress-php-google-app-engine/</link>
		<comments>http://jamesc.id.au/2013/05/wordpress-php-google-app-engine/#comments</comments>
		<pubDate>Mon, 20 May 2013 00:14:43 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Google App Engine]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://jamesc.id.au/?p=892</guid>
		<description><![CDATA[<p>A good summary of Google&#8217;s recent announcement to support PHP (and thus WordPress) in their Google App Engine product. PHP/WordPress on Google&#8217;s App Engine</p><p>The post <a href="http://jamesc.id.au/2013/05/wordpress-php-google-app-engine/">PHP/WordPress on Google&#8217;s App Engine</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>A good summary of Google&#8217;s recent announcement to support PHP (and thus WordPress) in their Google App Engine product.</p>
<div class="post-format-content">
<p><a href="http://arstechnica.com/information-technology/2013/05/google-wants-your-wordpress-blog-and-everything-else-in-its-cloud/">PHP/WordPress on Google&#8217;s App Engine</a></div>
<p>The post <a href="http://jamesc.id.au/2013/05/wordpress-php-google-app-engine/">PHP/WordPress on Google&#8217;s App Engine</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesc.id.au/2013/05/wordpress-php-google-app-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New in WordPress 3.6: the attachment_url_to_postid() Function</title>
		<link>http://jamesc.id.au/2013/05/wordpress-3-6-attachment_url_to_postid/</link>
		<comments>http://jamesc.id.au/2013/05/wordpress-3-6-attachment_url_to_postid/#comments</comments>
		<pubDate>Fri, 17 May 2013 21:21:27 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[3.6]]></category>
		<category><![CDATA[attachment]]></category>
		<category><![CDATA[attachment_url_to_postid()]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[media]]></category>

		<guid isPermaLink="false">http://jamesc.id.au/?p=881</guid>
		<description><![CDATA[<p>If you&#8217;re writing a WordPress plugin, you may have a scenario where you have an attachment (file) URL, and you&#8217;d like to obtain the associated post (attachment) ID. Luckily, this is very easy to do in WordPress 3.6 because of the new attachment_url_to_postid() function. The function&#8217;s syntax is simple &#8211; you pass it a string [&#8230;]</p><p>The post <a href="http://jamesc.id.au/2013/05/wordpress-3-6-attachment_url_to_postid/">New in WordPress 3.6: the attachment_url_to_postid() Function</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;re writing a WordPress plugin, you may have a scenario where you have an attachment (file) URL, and you&#8217;d like to obtain the associated post (attachment) ID.</p>
<p>Luckily, this is very easy to do in WordPress 3.6 because of the new <a href="http://codex.wordpress.org/Function_Reference/attachment_url_to_postid"><code>attachment_url_to_postid()</code></a> function.</p>
<p>The function&#8217;s syntax is simple &#8211; you pass it a string (the file URL), and it returns an integer (the associated post id), or zero on failure.</p>
<p>Here&#8217;s a simple example:</p>
<script src="https://gist.github.com/5602011.js"></script><noscript><p>View the code on <a href="https://gist.github.com/5602011">Gist</a>.</p></noscript>
<p>As mentioned above, this function is available in WordPress 3.6 &#8211; it will cause a fatal error if you try to use it in any earlier versions such as WordPress 3.5.x.</p>
<p>Thanks to <a href="https://twitter.com/tollmanz/status/335473585546199040">Zack Tollman</a> for the heads up about this handy new function.</p>
<p>The post <a href="http://jamesc.id.au/2013/05/wordpress-3-6-attachment_url_to_postid/">New in WordPress 3.6: the attachment_url_to_postid() Function</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesc.id.au/2013/05/wordpress-3-6-attachment_url_to_postid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better Mobile Detection with WordPress&#8217; wp_is_mobile() Function</title>
		<link>http://jamesc.id.au/2013/05/mobile-detection-wordpress-wp_is_mobile/</link>
		<comments>http://jamesc.id.au/2013/05/mobile-detection-wordpress-wp_is_mobile/#comments</comments>
		<pubDate>Fri, 17 May 2013 11:13:42 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[responsive]]></category>
		<category><![CDATA[User agent]]></category>
		<category><![CDATA[wp_is_mobile()]]></category>

		<guid isPermaLink="false">http://jamesc.id.au/?p=871</guid>
		<description><![CDATA[<p>Although WordPress themes typically use Responsive Web Design to tailor website for mobile devices, there is sometimes a need to use PHP (backend code) to detect whether the visitor&#8217;s web browser is running on a mobile device. For example, there may be scenarios where you may want to output certain HTML markup (such as a [&#8230;]</p><p>The post <a href="http://jamesc.id.au/2013/05/mobile-detection-wordpress-wp_is_mobile/">Better Mobile Detection with WordPress&#8217; wp_is_mobile() Function</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Although WordPress themes typically use <a href="http://en.wikipedia.org/wiki/Responsive_web_design">Responsive Web Design</a> to tailor website for mobile devices, there is sometimes a need to use PHP (backend code) to detect whether the visitor&#8217;s web browser is running on a mobile device.</p>
<p>For example, there may be scenarios where you may want to output certain HTML markup (such as a mobile navigation menu) on mobile devices.</p>
<p>Alternatively, you may only want to output a slider containing large images on desktop and not mobile devices. Doing this via PHP (instead of CSS) means that the visitor&#8217;s mobile browser won&#8217;t have to download all of the slider images even though the slider is never displayed.</p>
<p>WordPress&#8217; <a href="http://codex.wordpress.org/Function_Reference/wp_is_mobile"<code>wp_is_mobile()</code></a> function to the rescue!</p>
<p><code>wp_is_mobile()</code> is a litte-known function built into WordPress that detects whether the visitor is using a mobile devices such as iPhone, iPad, Android, Silk, Kindle, BlackBerry, Opera Mini, and Opera Mobi.</p>
<p>The function was introduced in WordPress 3.4, and it can be used in a WordPress plugin or theme.</p>
<p>It's a simple function that accepts no parameters, and returns a simple boolean (true/false) value. </p>
<p>Here's a simple example:</p>
<script src="https://gist.github.com/5598395.js"></script><noscript><p>View the code on <a href="https://gist.github.com/5598395">Gist</a>.</p></noscript>
<p>Interestingly, WordPress core currently uses this function in a few different places:</p>
<ul>
<li>To completely disable the Visual Editor for Opera Mini.</li>
<li>To enable <a href="http://touchpunch.furf.com/">jQuery UI Touch Punch</a> in the WordPress dashboard for mobile devices.</li>
<li>To detect whether the current device can upload files.</li>
<li>To disable the "shake" effect on the WordPress login page when an incorrect username or password is entered using a mobile device.</li>
</ul>
<p>Are you currently using the <code>wp_is_mobile()</code> function in your plugin or theme? If so, I'd love to hear what your use-case is.</p>
<p>The post <a href="http://jamesc.id.au/2013/05/mobile-detection-wordpress-wp_is_mobile/">Better Mobile Detection with WordPress&#8217; wp_is_mobile() Function</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesc.id.au/2013/05/mobile-detection-wordpress-wp_is_mobile/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Revamped Photoblog</title>
		<link>http://jamesc.id.au/2013/03/revamped-photoblog/</link>
		<comments>http://jamesc.id.au/2013/03/revamped-photoblog/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 22:27:30 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[photoblog]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://jamesc.id.au/?p=859</guid>
		<description><![CDATA[<p>I&#8217;ve recently revamped my photoblog, and I&#8217;ve been updating it regularly with new photos. If you&#8217;re interested in photos or photography, be sure to check it out.</p><p>The post <a href="http://jamesc.id.au/2013/03/revamped-photoblog/">Revamped Photoblog</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve recently revamped <a href="http://photos.jamesc.id.au/">my photoblog</a>, and I&#8217;ve been updating it regularly with new photos.</p>
<p>If you&#8217;re interested in photos or photography, <a href="http://photos.jamesc.id.au/">be sure to check it out</a>.</p>
<p><a href="http://photos.jamesc.id.au/"><img src="http://files.jamesc.id.au/wp-content/uploads/2013/03/215A2453_4-HDR-300x198.jpg" alt="215A2453_4-HDR" width="300" height="198" class="aligncenter size-medium wp-image-861" /></a></p>
<p>The post <a href="http://jamesc.id.au/2013/03/revamped-photoblog/">Revamped Photoblog</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesc.id.au/2013/03/revamped-photoblog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp Melbourne 2013</title>
		<link>http://jamesc.id.au/2013/02/wordcamp-melbourne-2013/</link>
		<comments>http://jamesc.id.au/2013/02/wordcamp-melbourne-2013/#comments</comments>
		<pubDate>Sun, 24 Feb 2013 23:09:19 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[Melbourne]]></category>
		<category><![CDATA[wcmelb]]></category>
		<category><![CDATA[WordCamp]]></category>

		<guid isPermaLink="false">http://jamesc.id.au/?p=837</guid>
		<description><![CDATA[<p>It&#8217;s been two years since I helped organise WordCamp Melbourne 2011. Time flies! The good news is that WordCamp Melbourne 2013 has been scheduled for April 27-28 2013. WordCamp is a conference for WordPress enthusiasts, designers, developers, or anyone who is using WordPress for business or pleasure. This year&#8217;s conference is being organised by a [&#8230;]</p><p>The post <a href="http://jamesc.id.au/2013/02/wordcamp-melbourne-2013/">WordCamp Melbourne 2013</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s been two years since I helped organise WordCamp Melbourne 2011. Time flies!</p>
<p>The good news is that <a href="http://2013.melbourne.wordcamp.org/">WordCamp Melbourne 2013</a> has been scheduled for April 27-28 2013.</p>
<blockquote><p>WordCamp is a conference for WordPress enthusiasts, designers, developers, or anyone who is using WordPress for business or pleasure.</p></blockquote>
<p>This year&#8217;s conference is being organised by a <a href="http://2013.melbourne.wordcamp.org/the-organizers/">fantastic group of people</a>, and they&#8217;re going to be putting on a fantastic WordCamp.</p>
<p>The speaker list and schedule is jam-packed, and the venue is in the CBD so it&#8217;s easy to get to.</p>
<p>So if you&#8217;re in (or near) Melbourne, I&#8217;d definitely recommend coming along. </p>
<p>Best of all, tickets are only $50 for two full days of WordPress goodness!</p>
<p><a href="http://2013.melbourne.wordcamp.org" title="I'm Attending WordCamp Melbourne 2013"><img alt="I'm Attending WordCamp Melbourne 2013" src="http://2013.melbourne.wordcamp.org/files/2013/02/WCMelb-Badge_260x200-Attending.png" class="aligncenter" /></a></p>
<p>The post <a href="http://jamesc.id.au/2013/02/wordcamp-melbourne-2013/">WordCamp Melbourne 2013</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesc.id.au/2013/02/wordcamp-melbourne-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon Web Services now in Australia (Sydney)</title>
		<link>http://jamesc.id.au/2012/11/amazon-web-services-now-in-australia-sydney/</link>
		<comments>http://jamesc.id.au/2012/11/amazon-web-services-now-in-australia-sydney/#comments</comments>
		<pubDate>Mon, 12 Nov 2012 20:57:32 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Amazon Web Services]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Rackspace]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[CloudFront]]></category>
		<category><![CDATA[EC2]]></category>
		<category><![CDATA[Sydney]]></category>

		<guid isPermaLink="false">http://jamesc.id.au/?p=825</guid>
		<description><![CDATA[<p>Big news this morning: Amazon Web Services has just launched an AWS region in Sydney, Australia! The new Asia Pacific (Sydney) region supports almost all of AWS&#8217; services including EC2, RDS, S3 and many more. After launching an Australian Edge Location in June 2012 for Route 53 and CloudFront, I (along with many other Australian [&#8230;]</p><p>The post <a href="http://jamesc.id.au/2012/11/amazon-web-services-now-in-australia-sydney/">Amazon Web Services now in Australia (Sydney)</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Big news this morning:</p>
<p>Amazon Web Services <a href="http://aws.typepad.com/aws/2012/11/asia-pacific-sydney-region-open.html">has just launched an AWS region in Sydney, Australia</a>!</p>
<p>The new Asia Pacific (Sydney) region supports almost all of AWS&#8217; services including EC2, RDS, S3 and many more.</p>
<p>After <a href="http://jamesc.id.au/2012/06/aws-sydney-australia/">launching an Australian Edge Location in June 2012</a> for Route 53 and CloudFront, I (along with many other Australian developers) have been waiting for AWS to launch a fully-fledged Australian region.</p>
<p>Whilst there are already some Australian-specific Cloud Computing offerings, this is a big day for us now that the AWS juggernaut has launched here.</p>
<p>Rackspace (another large cloud computing provider) has <a href="http://jamesc.id.au/2012/08/rackspace-sydney-datacentre-2012/">previously committed to launching a Syndey-based datacentre in 2012</a>, however we are yet to see that launch.</p>
<p>Overall, I think that more competition in the Australian cloud industry can only be a good thing for us. It&#8217;s likely to help drive down the high costs of Australia&#8217;s high bandwidth/data.</p>
<p>Onwards and upwards!</p>
<p>The post <a href="http://jamesc.id.au/2012/11/amazon-web-services-now-in-australia-sydney/">Amazon Web Services now in Australia (Sydney)</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesc.id.au/2012/11/amazon-web-services-now-in-australia-sydney/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress User Groups in Australia &#8211; Some Statistics</title>
		<link>http://jamesc.id.au/2012/10/wordpress-user-groups-australia/</link>
		<comments>http://jamesc.id.au/2012/10/wordpress-user-groups-australia/#comments</comments>
		<pubDate>Wed, 10 Oct 2012 02:56:51 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Meetups]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Adelaide]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[Bendigo]]></category>
		<category><![CDATA[Brisbane]]></category>
		<category><![CDATA[Canberra]]></category>
		<category><![CDATA[Hobart]]></category>
		<category><![CDATA[meetup]]></category>
		<category><![CDATA[Perth]]></category>
		<category><![CDATA[Sydney]]></category>
		<category><![CDATA[Wollongong]]></category>

		<guid isPermaLink="false">http://jamesc.id.au/?p=791</guid>
		<description><![CDATA[<p>Below are some statistics that demonstrate how popular the WordPress user groups are in Australia: Location Population Number ofGroup Members % of Populationin Meetup Group Hobart 216,276 93 0.0430% Bendigo 89,666 23 0.0257% Brisbane 2,146,577 342 0.0159% Sydney 4,605,992 661 0.0144% Melbourne 4,169,103 516 0.0124% Canberra 367,752 42 0.0114% Adelaide 1,262,940 81 0.0064% Perth 1,832,114 [&#8230;]</p><p>The post <a href="http://jamesc.id.au/2012/10/wordpress-user-groups-australia/">WordPress User Groups in Australia &#8211; Some Statistics</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Below are some statistics that demonstrate how popular the WordPress user groups are in Australia:</p>
<table class="stats">
<tr>
<th>Location</th>
<th>Population</th>
<th style="text-align: center">Number of<br />Group Members</th>
<th style="text-align: center">% of Population<br />in Meetup Group</th>
</tr>
<tr>
<td><a href="http://www.wptas.org/">Hobart</a></td>
<td>216,276</td>
<td>93</td>
<td>0.0430%</td>
</tr>
<tr>
<td><a href="http://www.meetup.com/WordPress-Bendigo-User-Group/">Bendigo</a></td>
<td>89,666</td>
<td>23</td>
<td>0.0257%</td>
</tr>
<tr>
<td><a href="http://www.wpbrisbane.com.au/">Brisbane</a></td>
<td>2,146,577</td>
<td>342</td>
<td>0.0159%</td>
</tr>
<tr>
<td><a href="http://www.wpsydney.com.au/">Sydney</a></td>
<td>4,605,992</td>
<td>661</td>
<td>0.0144%</td>
</tr>
<tr>
<td><a href="http://www.wpmelb.org/">Melbourne</a></td>
<td>4,169,103</td>
<td>516</td>
<td>0.0124%</td>
</tr>
<tr>
<td><a href="http://www.meetup.com/WordPress-Canberra">Canberra</a></td>
<td>367,752</td>
<td>42</td>
<td>0.0114%</td>
</tr>
<tr>
<td><a href="http://www.meetup.com/WordPress-Adelaide/">Adelaide</a></td>
<td>1,262,940</td>
<td>81</td>
<td>0.0064%</td>
</tr>
<tr>
<td><a href="http://www.meetup.com/wordpress-perth/">Perth</a></td>
<td>1,832,114</td>
<td>66</td>
<td>0.0036%</td>
</tr>
<tr>
<td><a href="http://www.meetup.com/WordPress-Wollongong/">Wollongong</a></td>
<td>288,101</td>
<td>9</td>
<td>0.0031%</td>
</tr>
</table>
<p>As you can see, <a href="http://www.wptas.org/">Hobart</a> has the highest percentage of their population being a member of their user group. Well done <a href="http://japh.com.au/">Japh</a>!</p>
<p>Here in <a href="http://www.wpmelb.org/">Melbourne</a>, it looks like we have some work to do.</p>
<p><small>Population Figures are sourced from <a href="http://en.wikipedia.org/wiki/List_of_cities_in_Australia_by_population">Wikipedia</a> as of 10 October 2012.</small></p>
<p><small>Number of Group Members Figures were sourced from each meetup.com group page as of 10 October 2012.</small></p>
<p>The post <a href="http://jamesc.id.au/2012/10/wordpress-user-groups-australia/">WordPress User Groups in Australia &#8211; Some Statistics</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesc.id.au/2012/10/wordpress-user-groups-australia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rackspace to Launch Sydney Datacentre in 2012</title>
		<link>http://jamesc.id.au/2012/08/rackspace-sydney-datacentre-2012/</link>
		<comments>http://jamesc.id.au/2012/08/rackspace-sydney-datacentre-2012/#comments</comments>
		<pubDate>Tue, 21 Aug 2012 23:24:50 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Rackspace]]></category>
		<category><![CDATA[Australa]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[Sydney]]></category>

		<guid isPermaLink="false">http://jamesc.id.au/?p=755</guid>
		<description><![CDATA[<p>Rackspace have just announced a Sydney-based datacentre, to be live by the end of 2012: Today we launched the 9th global data centre to the media in Sydney, Australia #RackspaceAusDC &#8212; Rackspace Asia (@RackspaceAsia) August 21, 2012 New Rackspace DC in Erskine Park in Sydney and PUE of 1.3 using air cooling first customers live [&#8230;]</p><p>The post <a href="http://jamesc.id.au/2012/08/rackspace-sydney-datacentre-2012/">Rackspace to Launch Sydney Datacentre in 2012</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://rackspace.com.au">Rackspace</a> have just announced a Sydney-based datacentre, to be live by the end of 2012:</p>
<blockquote class="twitter-tweet" width="550"><p>Today we launched the 9th global data centre to the media in Sydney, Australia <a href="https://twitter.com/search/%23RackspaceAusDC">#RackspaceAusDC</a></p>
<p>&mdash; Rackspace Asia (@RackspaceAsia) <a href="https://twitter.com/RackspaceAsia/status/238048131793711107">August 21, 2012</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<blockquote class="twitter-tweet" width="550"><p>New Rackspace DC in Erskine Park in Sydney and PUE of 1.3 using air cooling first customers live by year&#8217;s end <a href="https://twitter.com/search/%23rackspaceausdc">#rackspaceausdc</a></p>
<p>&mdash; Rodney Gedda (@rodneygedda) <a href="https://twitter.com/rodneygedda/status/238044206805950464">August 21, 2012</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<p>I&#8217;m looking forward to seeing increased competition in the Australian Cloud Hosting arena. Your turn now, <a href="http://aws.amazon.com">AWS</a>? <img src='http://files.jamesc.id.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Update 22/8/2012 3:10pm:</strong> Rackspace have published <a href="http://datacentre.rackspace.com.au/outlook.html">details on the Sydney datacentre here</a>.</p>
<p>The post <a href="http://jamesc.id.au/2012/08/rackspace-sydney-datacentre-2012/">Rackspace to Launch Sydney Datacentre in 2012</a> appeared first on <a href="http://jamesc.id.au">James Collins</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jamesc.id.au/2012/08/rackspace-sydney-datacentre-2012/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.543 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-24 14:01:31 -->

<!-- Compression = gzip -->