<?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>gratiartis.org - Chez Stephen Masters</title>
	<atom:link href="http://www.gratiartis.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gratiartis.org</link>
	<description>The odd bit of news about what I&#039;m up to...</description>
	<lastBuildDate>Fri, 13 May 2011 12:57:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Playing around with Apache Camel</title>
		<link>http://www.gratiartis.org/2011/05/playing-around-with-apache-camel/</link>
		<comments>http://www.gratiartis.org/2011/05/playing-around-with-apache-camel/#comments</comments>
		<pubDate>Thu, 12 May 2011 14:36:35 +0000</pubDate>
		<dc:creator>Stevie</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.gratiartis.org/?p=110</guid>
		<description><![CDATA[I have been playing around with Apache Camel for a couple of projects recently, and so far I&#8217;m very impressed. Camel is one of a number of frameworks that seem to have sprung up over the past few years in response to the book Enterprise Integration Patterns by Gregor Hohpe and Bobby Woolf. It attempts [...]]]></description>
			<content:encoded><![CDATA[<p>I have been playing around with Apache Camel for a couple of projects recently, and so far I&#8217;m very impressed. Camel is one of a number of frameworks that seem to have sprung up over the past few years in response to the book <a href="http://www.amazon.co.uk/Enterprise-Integration-Patterns-Designing-Deploying/dp/0321200683/ref=sr_1_3?ie=UTF8&amp;qid=1305198740&amp;sr=8-3">Enterprise Integration Patterns by Gregor Hohpe and Bobby Woolf</a>. It attempts to provide mechanisms to support all the patterns described in the book. And it does so very well, from what I have experienced so far. So I thought I would mention a couple of things I have done with it.</p>
<h4>A simple content-based router</h4>
<p>The problem I was trying to solve was that a legacy application was designed to listen to a WebSphere MQ queue, which would contain requests for a variety of operations. A new application had been developed to handle a subset of these operations. I couldn&#8217;t have both applications listening to the same queue, so I needed to divert particular operation request messages to a separate new queue.</p>
<p><span id="more-110"></span></p>
<p>I needed to put together a simple content-based router that would inspect the header of each incoming message and route the message to a different destination depending on the operation name. I was able to implement this by defining a route which used <a href="http://camel.apache.org/xpath.html">XPath to select an endpoint based on XML attributes</a>. This could be done in the Camel context XML file and the project contained no code outside this file.</p>
<p><code><br />
&lt;camelContext xmlns="http://camel.apache.org/schema/spring"&gt;<br />
&lt;route&gt;<br />
&lt;from uri="webspheremq:ANY.OPERATION.REQUEST" /&gt;<br />
&lt;choice&gt;<br />
&lt;when&gt;<br />
&lt;xpath&gt;/REQUEST/HEADER[@OperationName='Old.Request']&lt;/xpath&gt;<br />
&lt;to uri="activemq:OLD.REQUEST"/&gt;<br />
&lt;/when&gt;<br />
&lt;when&gt;<br />
&lt;xpath&gt;/REQUEST/HEADER[@OperationName='New.Request']&lt;/xpath&gt;<br />
&lt;to uri="activemq:NEW.REQUEST"/&gt;<br />
&lt;/when&gt;<br />
&lt;otherwise&gt;<br />
&lt;to uri="activemq:DEAD.LETTER.QUEUE"/&gt;<br />
&lt;/otherwise&gt;<br />
&lt;/choice&gt;<br />
&lt;/route&gt;<br />
&lt;/camelContext&gt;<br />
</code></p>
<h4>A CSV to XML transform</h4>
<p>Here, I was dealing with integrating two off the shelf applications, the aim being to facilitating exporting a document and meta data from one system and importing it into the other. When exporting a document from the first application, a CSV would be generated in a directory on the filesystem. The other application provided an import adapter, which required an XML trigger file. I needed a small application to follow the following steps:</p>
<ol>
<li>Listen for CSV files being dropped in a directory on the filesystem.</li>
<li>Split the CSV up into separate requests for each document being exported.</li>
<li>Generate an XML trigger file for each request.</li>
<li>Drop the XML trigger file into a directory ready for import by the downstream system.</li>
</ol>
<p>As well as providing middleware messaging adapters, Camel also supports defining endpoints that are directories on the filesystem, so it can automatically create a listener for a directory. To deal with the first two steps, I made use of opencsv to parse the CSV, but as I soon discovered, Camel also provided CSV unmarshallers.</p>
<p>I extended the Camel RouteBuilder and using the fluent DSL for Java, defined my routes and created a <a href="http://camel.apache.org/splitter.html">Splitter</a> class that would take the unmarshalled CSV and output a list of messages (<code>List&lt;List&lt;List&lt;String&gt;&gt;&gt;</code>) to an internal queue., this looked a bit like the following:</p>
<p><code>from("C:/router/export/csv/")<br />
.unmarshal().csv()<br />
.split().method("org.gratiartis.router.Splitter", "split")<br />
.to("jms:DOCUMENT.METADATA.QUEUE");</code></p>
<p>I then defined a route to pick the individual metadata messages off the internal queue and use a <a href="http://camel.apache.org/processor.html">Processor</a> to generate XML in the required format.</p>
<p><code>from("jms:DOCUMENT.METADATA.QUEUE")<br />
.processRef("org.gratiartis.router.Processor")<br />
.to("C:/router/out/xml/");</code></p>
<h4>Further reading</h4>
<p>Camel is very comprehensive and is also one of the best documented projects out there. I keep trying to implement something myself and then finding that there’s already something that will do the job for me.</p>
<p>These are probably the best starting points for info on any particular integration pattern:</p>
<p><a href="http://camel.apache.org/enterprise-integration-patterns.html">http://camel.apache.org/enterprise-integration-patterns.html</a><br />
<a href="http://camel.apache.org/architecture.html">http://camel.apache.org/architecture.html</a></p>
<p>And this was one of the better tutorial introductions to it:</p>
<p><a href="http://architects.dzone.com/articles/apache-camel-integration">http://architects.dzone.com/articles/apache-camel-integration</a></p>
<p>If Camel sounds good, you should also take a look at Spring Integration. It’s another framework based on the patterns in the Enterprise Integration Patterns book, but has that Spring tendency towards implementation through bean annotations. But you don&#8217;t have to pick one or the other; the Camel project has developed the camel-spring-integration library to provide a bridge from Camel components to Spring Integration endpoints: <a href="http://camel.apache.org/springintegration.html">http://camel.apache.org/springintegration.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gratiartis.org/2011/05/playing-around-with-apache-camel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Relocating to The Rock</title>
		<link>http://www.gratiartis.org/2011/05/relocating-to-the-rock/</link>
		<comments>http://www.gratiartis.org/2011/05/relocating-to-the-rock/#comments</comments>
		<pubDate>Wed, 04 May 2011 13:10:11 +0000</pubDate>
		<dc:creator>Stevie</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.gratiartis.org/?p=108</guid>
		<description><![CDATA[After a little over 10 years working in banking in London, I have been offered a job in Gibraltar in the world of online gaming. Or iGaming, as the industry likes to call itself. It’s a booming industry in Gibraltar, which I think means that quite a few folks will be making similar moves in [...]]]></description>
			<content:encoded><![CDATA[<p>After a little over 10 years working in banking in London, I have been offered a job in Gibraltar in the world of online gaming. Or iGaming, as the industry likes to call itself. It’s a booming industry in Gibraltar, which I think means that quite a few folks will be making similar moves in the near future.</p>
<p>As far as I an tell, there is very little first hand information available online for anyone thinking of moving out there. I&#8217;m thinking I might try to relate some of my experiences of the process of becoming an ex-pat, in the hope that others might find my mistakes and successes educational or just plain amusing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gratiartis.org/2011/05/relocating-to-the-rock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At last, a decent Flickr gallery plugin for WordPress</title>
		<link>http://www.gratiartis.org/2011/01/at-last-a-decent-flickr-gallery-plugin-for-wordpress/</link>
		<comments>http://www.gratiartis.org/2011/01/at-last-a-decent-flickr-gallery-plugin-for-wordpress/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 20:19:45 +0000</pubDate>
		<dc:creator>Stevie</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.gratiartis.org/?p=95</guid>
		<description><![CDATA[For some time now, I have been frustrated by the gallery plugins that I have been using. For one thing they don&#8217;t seem to have worked very well, but more than that I have found it frustrating duplicating photos across multiple sites. I have this blog here, where I like to show what I have [...]]]></description>
			<content:encoded><![CDATA[<p>For some time now, I have been frustrated by the gallery plugins that I have been using. For one thing they don&#8217;t seem to have worked very well, but more than that I have found it frustrating duplicating photos across multiple sites. I have this blog here, where I like to show what I have been up to, but I also have a Flickr account and a Facebook account. I feel like I shouldn&#8217;t have to upload the same photos to all three. So what I have been looking for is a WordPress gallery plugin that could link to photo sets on Flickr. And at last it seems that a few options are available.</p>
<p>I have been playing with a few today, and I think I have found one that works just how I want it to. My personal winner is the <a href="http://wordpress.org/extend/plugins/flickr-gallery/">Flickr Gallery plugin for WordPress</a>. You can also check out the <a href="http://co.deme.me/2010/07/flickr-gallery-1-4-0/trackback/">Flickr Gallery project web site</a> for more detail.</p>
<p><span id="more-95"></span></p>
<p>All you need to do is install it, <a href="http://www.flickr.com/services/api/misc.api_keys.html">request a Flickr API key</a> (these cost nothing for personal or small business use) and put it in your configuration. Then whenever you want a post to show a Flickr photo set as a gallery, you just put in a tag like this:<br />
<code>[flickr-gallery mode="photoset" photoset="72157625782372674"]</code><br />
&#8230; to see this:<br />
				<div id="gallery-36589687" class="flickr-gallery photoset">
													<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338946334"><img class="photo" title="Sharks at Blue Corner, Palau" src="http://farm6.static.flickr.com/5008/5338946334_4a63006c88_s.jpg" alt="Sharks at Blue Corner, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338949402"><img class="photo" title="Turtle, Palau" src="http://farm6.static.flickr.com/5006/5338949402_a15868bc25_s.jpg" alt="Turtle, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338340155"><img class="photo" title="Starfish, Palau" src="http://farm6.static.flickr.com/5088/5338340155_206897c92e_s.jpg" alt="Starfish, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338340489"><img class="photo" title="Divers by huge school of fish, German Channel, Palau" src="http://farm6.static.flickr.com/5042/5338340489_107f3f9e19_s.jpg" alt="Divers by huge school of fish, German Channel, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338340781"><img class="photo" title="Lionfish, Palau" src="http://farm6.static.flickr.com/5246/5338340781_5d8502186c_s.jpg" alt="Lionfish, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338341011"><img class="photo" title="Manta ray in German Channel, Palau" src="http://farm6.static.flickr.com/5045/5338341011_ed3d30a13e_s.jpg" alt="Manta ray in German Channel, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338951084"><img class="photo" title="Leanne in jellyfish lake, Palau" src="http://farm6.static.flickr.com/5207/5338951084_b6b815488e_s.jpg" alt="Leanne in jellyfish lake, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338951486"><img class="photo" title="Turtle, Palau" src="http://farm6.static.flickr.com/5130/5338951486_581a39c0e3_s.jpg" alt="Turtle, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338342149"><img class="photo" title="Looking under the coral, Palau" src="http://farm6.static.flickr.com/5245/5338342149_c07059ba75_s.jpg" alt="Looking under the coral, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338952146"><img class="photo" title="Manta ray in German Channel, Palau" src="http://farm6.static.flickr.com/5287/5338952146_ca201b93ee_s.jpg" alt="Manta ray in German Channel, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338342739"><img class="photo" title="Palau" src="http://farm6.static.flickr.com/5048/5338342739_a2be5e2b95_s.jpg" alt="Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338952812"><img class="photo" title="Close-up of Jellyfish in jellyfish lake, Palau" src="http://farm6.static.flickr.com/5282/5338952812_4c6d69329a_s.jpg" alt="Close-up of Jellyfish in jellyfish lake, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338953260"><img class="photo" title="Maybe a starfish? Palau" src="http://farm6.static.flickr.com/5207/5338953260_fb620a846a_s.jpg" alt="Maybe a starfish? Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338953582"><img class="photo" title="Sea cucumber, Palau" src="http://farm6.static.flickr.com/5009/5338953582_d1049f2865_s.jpg" alt="Sea cucumber, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338344083"><img class="photo" title="Shark near Blue Corner, Palau" src="http://farm6.static.flickr.com/5282/5338344083_e37f8cfb1f_s.jpg" alt="Shark near Blue Corner, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338954204"><img class="photo" title="Turtle, Palau" src="http://farm6.static.flickr.com/5124/5338954204_04681aa95a_s.jpg" alt="Turtle, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338954440"><img class="photo" title="Nautilus, Palau" src="http://farm6.static.flickr.com/5121/5338954440_68cd072b78_s.jpg" alt="Nautilus, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338954740"><img class="photo" title="Plantation Resort, Palau" src="http://farm6.static.flickr.com/5130/5338954740_2346ff1b61_s.jpg" alt="Plantation Resort, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338345305"><img class="photo" title="Large clam, Palau" src="http://farm6.static.flickr.com/5004/5338345305_011caec63d_s.jpg" alt="Large clam, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338955300"><img class="photo" title="Manta ray at German Channel, Palau" src="http://farm6.static.flickr.com/5170/5338955300_892fd87059_s.jpg" alt="Manta ray at German Channel, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338955606"><img class="photo" title="Turtle swimming by, Palau" src="http://farm6.static.flickr.com/5243/5338955606_ac6f5b5e5e_s.jpg" alt="Turtle swimming by, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338346165"><img class="photo" title="Wreck diving, Palau" src="http://farm6.static.flickr.com/5043/5338346165_8e5b97e0ab_s.jpg" alt="Wreck diving, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338346355"><img class="photo" title="Anemone feeding on jellyfish in jellyfish lake, Palau" src="http://farm6.static.flickr.com/5203/5338346355_39ee155e0d_s.jpg" alt="Anemone feeding on jellyfish in jellyfish lake, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338956366"><img class="photo" title="Me swimming down amongst the Jellyfish, Palau" src="http://farm6.static.flickr.com/5287/5338956366_bbda514900_s.jpg" alt="Me swimming down amongst the Jellyfish, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338346835"><img class="photo" title="Turtle close-up, Palau" src="http://farm6.static.flickr.com/5281/5338346835_98e997f9d8_s.jpg" alt="Turtle close-up, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338956904"><img class="photo" title="Leanne with the jellyfish, Palau" src="http://farm6.static.flickr.com/5007/5338956904_cd407d3f1c_s.jpg" alt="Leanne with the jellyfish, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338347391"><img class="photo" title="Cricket on an iris, Palau" src="http://farm6.static.flickr.com/5165/5338347391_e82b8b75a5_s.jpg" alt="Cricket on an iris, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338957528"><img class="photo" title="Coral, Palau" src="http://farm6.static.flickr.com/5167/5338957528_0e7c9219e2_s.jpg" alt="Coral, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338957864"><img class="photo" title="Me with the jellyfish, Palau" src="http://farm6.static.flickr.com/5047/5338957864_fd9d8ebae6_s.jpg" alt="Me with the jellyfish, Palau" /></a>
								</div>
												<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-36589687 .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			</p>
<p>It&#8217;s not limited to photo sets. You can show specific photos, your photostream, galleries based on tags and more.</p>
<p>And in case you were wondering, I have no connection to the developer of this plugin. I just feel that such a handy plugin merits any publicity I can give it.</p>
<p>Coincidentally, I also upgraded to Aperture 3 this morning, which enables me to upload a group of photos to a Flickr set in about 2 clicks. Managing photos and publishing them online is starting to feel frictionless.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gratiartis.org/2011/01/at-last-a-decent-flickr-gallery-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Holiday Rentals Adviser</title>
		<link>http://www.gratiartis.org/2011/01/the-holiday-rentals-adviser/</link>
		<comments>http://www.gratiartis.org/2011/01/the-holiday-rentals-adviser/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 13:24:16 +0000</pubDate>
		<dc:creator>Stevie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.gratiartis.org/?p=76</guid>
		<description><![CDATA[As the Rental Retreats holiday property management business has grown, my brother Antony has gained all sorts of experience in how to manage your own buy to let holiday property. So he has started holiday rentals property management blog where he will be discussing topics such as the earning potential of your holiday property, how [...]]]></description>
			<content:encoded><![CDATA[<p>As the <a href="http://www.rental-retreats.co.uk/">Rental Retreats</a> holiday property management business has grown, my brother Antony has gained all sorts of experience in how to manage your own buy to let holiday property. So he has started <a href="http://www.holiday-rentals-adviser.co.uk/">holiday rentals property management blog</a> where he will be discussing topics such as the <a href="http://www.holiday-rentals-adviser.com/2011/01/top-tips-how-to-work-out-what-your-holiday-home-could-earn-you-in-income-per-year/" title="Top Tips: What could your holiday home could earn you in income per year?">earning potential of your holiday property</a>, how to make sure that customers <a href="http://www.holiday-rentals-adviser.com/2011/01/top-tips-what-makes-guests-choose-your-holiday-rental-over-the-competition/" title="Top Tips: What makes guests choose your holiday rental over the competition?">choose your holiday property over the competition</a>, and how to <a href="http://www.holiday-rentals-adviser.com/2011/01/top-tips-how-to-market-your-holiday-home-without-an-estate-agent/" title="Top Tips: How to market your holiday home without an estate agent.">market your property yourself</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gratiartis.org/2011/01/the-holiday-rentals-adviser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flashpacking Tibbster</title>
		<link>http://www.gratiartis.org/2010/03/the-flashpacking-tibbster-is-blogging-away/</link>
		<comments>http://www.gratiartis.org/2010/03/the-flashpacking-tibbster-is-blogging-away/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 11:33:05 +0000</pubDate>
		<dc:creator>Stevie</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.gratiartis.org/?p=64</guid>
		<description><![CDATA[The Flashpacking Tibbster is blogging his way around South America. Pete Tibbitts used to work with me when our Halifax Treasury team was very small. I think it was just Pete, Glenn and myself working as developers at the time. Pete was a young-un, so obviously he moved on after a while and took up [...]]]></description>
			<content:encoded><![CDATA[<p>The Flashpacking Tibbster is blogging his way around South America.</p>
<p>Pete Tibbitts used to work with me when our Halifax Treasury team was very small. I think it was just Pete, Glenn and myself working as developers at the time. Pete was a young-un, so obviously he moved on after a while and took up a career as an IBM consultant. That mostly seemed to involve developing apps for the DVLA in Swansea. Well, he decided that it would be nice to take a break from the rat race, so he blagged himself a career break from IBM and has headed off to spend a year traveling around South America. He&#8217;s currently <a href="http://tibbster.blogspot.com/">in Columbia, blogging about the people he meets and learning Spanish</a>. I must admit I&#8217;m a bit envious!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gratiartis.org/2010/03/the-flashpacking-tibbster-is-blogging-away/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Rental Retreats goes live</title>
		<link>http://www.gratiartis.org/2010/03/self-catering-apartments-in-portugal/</link>
		<comments>http://www.gratiartis.org/2010/03/self-catering-apartments-in-portugal/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 11:05:59 +0000</pubDate>
		<dc:creator>Stevie</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.gratiartis.org/?p=58</guid>
		<description><![CDATA[My brother (Ant/Antony/Spike) bought himself a few properties in Portugal a year or two back. There are self catering apartments such as the Nina apartment in Sao Martinho do Porto, which is a very nice little seaside town, and Clementine apartment in Nazare nearby, among others. He has also started managing flats for other folks [...]]]></description>
			<content:encoded><![CDATA[<p>My brother (Ant/Antony/Spike) bought himself a few properties in Portugal a year or two back. There are self catering apartments such as the <a href="http://www.rental-retreats.co.uk/properties-in-sao-martinho-do-porto/nina">Nina apartment in Sao Martinho do Porto</a>, which is a very nice little seaside town, and <a href="http://www.rental-retreats.co.uk/properties-in-nazare/clementine">Clementine apartment in Nazare</a> nearby, among others. He has also started managing flats for other folks who buy out that way. As the portfolio of his own and managed properties grew, it seemed like a good idea to set up a web site. So I did.</p>
<p>If you&#8217;re thinking of heading out in the direction of Portugal (particularly the Silver Coast), please take a look at the web site. Hopefully you can find a nice place to stay. If you&#8217;re thinking of buying your own property in the area, why not drop him a note? He knows the area well and is friendly with a few estate agents, so he might be able to provide some useful guidance.</p>
<p>Now I just need to get myself out there and find out for myself whether Sao Martinho do Porto is as nice as everyone says it is!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gratiartis.org/2010/03/self-catering-apartments-in-portugal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Micronesia 2009 &#8211; Truk Lagoon (Chuuk)</title>
		<link>http://www.gratiartis.org/2009/04/micronesia-2009-truk-lagoon-chuuk/</link>
		<comments>http://www.gratiartis.org/2009/04/micronesia-2009-truk-lagoon-chuuk/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 23:19:42 +0000</pubDate>
		<dc:creator>Stevie</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Sport]]></category>
		<category><![CDATA[Chuuk]]></category>
		<category><![CDATA[diving]]></category>
		<category><![CDATA[shark]]></category>
		<category><![CDATA[shipwreck]]></category>
		<category><![CDATA[Truk Lagoon]]></category>
		<category><![CDATA[wreck]]></category>

		<guid isPermaLink="false">http://gratiartis.org/?p=42</guid>
		<description><![CDATA[In January 2009 Leanne and I made our way to the South Pacific. Our first stop was just over a week in Chuuk where we were diving the wrecks of Truk Lagoon. This is where the Americans sank about 50 Japanese ships during World War II. Most of these ships are at safe sport diving [...]]]></description>
			<content:encoded><![CDATA[<p>In January 2009 Leanne and I made our way to the South Pacific. Our first stop was just over a week in Chuuk where we were diving the wrecks of Truk Lagoon. This is where the Americans sank about 50 Japanese ships during World War II. Most of these ships are at safe sport diving depths, and now they have become a fascinating tourist attraction for divers from all over the world. The best feature of these wrecks is that somehow they still have most of the artifacts that sank with them. This includes tanks, tools, guns, ammunition, ceramics, bottles and just about anything else you could imagine people needing on a ship. Finding all of these items on the ships gives a real feel of what it might have been like to be on them,  and sometimes the horror of the attack that caused them to sink.</p>
<p>Rio de Janeiro Maru<br />
				<div id="gallery-fdcd892b" class="flickr-gallery photoset">
													<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4768864721"><img class="photo" title="Rio de Janeiro Maru - Ceramics, Chuuk 2009" src="http://farm5.static.flickr.com/4139/4768864721_d67410bf9c_s.jpg" alt="Rio de Janeiro Maru - Ceramics, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769503846"><img class="photo" title="Rio de Janeiro Maru - Ceramics, Chuuk 2009" src="http://farm5.static.flickr.com/4116/4769503846_747b1abcd6_s.jpg" alt="Rio de Janeiro Maru - Ceramics, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769504094"><img class="photo" title="Rio de Janeiro Maru - Bottles, Chuuk 2009" src="http://farm5.static.flickr.com/4098/4769504094_554d92d62d_s.jpg" alt="Rio de Janeiro Maru - Bottles, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769504246"><img class="photo" title="Rio de Janeiro Maru - Ship's gun, Chuuk 2009" src="http://farm5.static.flickr.com/4102/4769504246_71c6e0559a_s.jpg" alt="Rio de Janeiro Maru - Ship's gun, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4768865679"><img class="photo" title="Rio de Janeiro Maru" src="http://farm5.static.flickr.com/4077/4768865679_68662374f7_s.jpg" alt="Rio de Janeiro Maru" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4768865959"><img class="photo" title="Rio de Janeiro Maru - Fish, Chuuk 2009" src="http://farm5.static.flickr.com/4138/4768865959_857c45ff67_s.jpg" alt="Rio de Janeiro Maru - Fish, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769505126"><img class="photo" title="Rio de Janeiro Maru - Coral, Chuuk 2009" src="http://farm5.static.flickr.com/4134/4769505126_b125691249_s.jpg" alt="Rio de Janeiro Maru - Coral, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4768866449"><img class="photo" title="Rio de Janeiro Maru - Chuuk 2009" src="http://farm5.static.flickr.com/4120/4768866449_37eaab7e44_s.jpg" alt="Rio de Janeiro Maru - Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769505518"><img class="photo" title="Rio de Janeiro Maru - Cod, Chuuk 2009" src="http://farm5.static.flickr.com/4115/4769505518_7d6b6cda01_s.jpg" alt="Rio de Janeiro Maru - Cod, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769505774"><img class="photo" title="Rio de Janeiro Maru - Diver, Chuuk 2009" src="http://farm5.static.flickr.com/4098/4769505774_64a84b14cc_s.jpg" alt="Rio de Janeiro Maru - Diver, Chuuk 2009" /></a>
								</div>
												<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-fdcd892b .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			</p>
<p>Nippo Maru<br />
				<div id="gallery-ba180f0c" class="flickr-gallery photoset">
													<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4768863561"><img class="photo" title="Nippo Maru - Gas mask, Chuuk 2009" src="http://farm5.static.flickr.com/4117/4768863561_8844f6f20f_s.jpg" alt="Nippo Maru - Gas mask, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769502640"><img class="photo" title="Nippo Maru - Mini-tank, Chuuk 2009" src="http://farm5.static.flickr.com/4076/4769502640_8d0552b274_s.jpg" alt="Nippo Maru - Mini-tank, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4768863877"><img class="photo" title="Nippo Maru - Mini-tank, Chuuk 2009" src="http://farm5.static.flickr.com/4082/4768863877_fe96d01dcf_s.jpg" alt="Nippo Maru - Mini-tank, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769503100"><img class="photo" title="Nippo Maru - Mini-tank, Chuuk 2009" src="http://farm5.static.flickr.com/4075/4769503100_761fece19b_s.jpg" alt="Nippo Maru - Mini-tank, Chuuk 2009" /></a>
								</div>
												<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-ba180f0c .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			</p>
<p><span id="more-42"></span></p>
<p>Sankisan Maru<br />
				<div id="gallery-4f300d62" class="flickr-gallery photoset">
													<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4768861771"><img class="photo" title="Sankisan Maru - Jellyfish, Chuuk 2009" src="http://farm5.static.flickr.com/4075/4768861771_32503fb650_s.jpg" alt="Sankisan Maru - Jellyfish, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4768862075"><img class="photo" title="Sankisan Maru - Bullets, Chuuk 2009" src="http://farm5.static.flickr.com/4140/4768862075_a395013629_s.jpg" alt="Sankisan Maru - Bullets, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769501410"><img class="photo" title="Sankisan Maru - Rifles, Chuuk 2009" src="http://farm5.static.flickr.com/4115/4769501410_6a778253ab_s.jpg" alt="Sankisan Maru - Rifles, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769501662"><img class="photo" title="Sankisan Maru - Bullets and rifles, Chuuk 2009" src="http://farm5.static.flickr.com/4137/4769501662_b2ed7dedf9_s.jpg" alt="Sankisan Maru - Bullets and rifles, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769501854"><img class="photo" title="Sankisan Maru - Gun in hold, Chuuk 2009" src="http://farm5.static.flickr.com/4076/4769501854_a48a7aa055_s.jpg" alt="Sankisan Maru - Gun in hold, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769502038"><img class="photo" title="Sankisan Maru - Gun in hold, Chuuk 2009" src="http://farm5.static.flickr.com/4118/4769502038_44afc7c9f7_s.jpg" alt="Sankisan Maru - Gun in hold, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769502280"><img class="photo" title="Sankisan Maru - Corals, Chuuk 2009" src="http://farm5.static.flickr.com/4141/4769502280_4eec275816_s.jpg" alt="Sankisan Maru - Corals, Chuuk 2009" /></a>
								</div>
												<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-4f300d62 .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			</p>
<p>Kensho Maru<br />
				<div id="gallery-61aca225" class="flickr-gallery photoset">
													<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4768860453"><img class="photo" title="Kensho Maru - Latrines, Chuuk 2009" src="http://farm5.static.flickr.com/4100/4768860453_614e5d1265_s.jpg" alt="Kensho Maru - Latrines, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4768860815"><img class="photo" title="Kensho Maru - Oven, Chuuk 2009" src="http://farm5.static.flickr.com/4121/4768860815_4121042fc8_s.jpg" alt="Kensho Maru - Oven, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4769499988"><img class="photo" title="Kensho Maru - Anemone and clownfish, Chuuk 2009" src="http://farm5.static.flickr.com/4118/4769499988_8289716cc4_s.jpg" alt="Kensho Maru - Anemone and clownfish, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4768861373"><img class="photo" title="Kensho Maru - Anemone, Chuuk 2009" src="http://farm5.static.flickr.com/4139/4768861373_6e19636859_s.jpg" alt="Kensho Maru - Anemone, Chuuk 2009" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4768861645"><img class="photo" title="Kensho Maru - Corals, Chuuk 2009" src="http://farm5.static.flickr.com/4076/4768861645_b1ce9feac4_s.jpg" alt="Kensho Maru - Corals, Chuuk 2009" /></a>
								</div>
												<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-61aca225 .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			</p>
<p>Yamagiri Maru<br />
				<div id="gallery-66af08dd" class="flickr-gallery photoset">
										<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-66af08dd .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			</p>
<p>Submarine I-169 &#8220;Shinohara&#8221;<br />
				<div id="gallery-c3296874" class="flickr-gallery photoset">
										<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-c3296874 .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			</p>
<p>Heian Maru<br />
				<div id="gallery-a85ee500" class="flickr-gallery photoset">
										<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-a85ee500 .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			</p>
<p>Kiyosumi Maru<br />
				<div id="gallery-4e3ce7d3" class="flickr-gallery photoset">
										<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-4e3ce7d3 .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			</p>
<p>Fujikawa Maru<br />
				<div id="gallery-c7372232" class="flickr-gallery photoset">
										<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-c7372232 .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gratiartis.org/2009/04/micronesia-2009-truk-lagoon-chuuk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Micronesia 2009 &#8211; Palau</title>
		<link>http://www.gratiartis.org/2009/02/micronesia-truk-lagoon-chuuk-and-palau-2009/</link>
		<comments>http://www.gratiartis.org/2009/02/micronesia-truk-lagoon-chuuk-and-palau-2009/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 23:58:36 +0000</pubDate>
		<dc:creator>Stevie</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Sport]]></category>
		<category><![CDATA[Chuuk]]></category>
		<category><![CDATA[diving]]></category>
		<category><![CDATA[manta ray]]></category>
		<category><![CDATA[Palau]]></category>
		<category><![CDATA[shark]]></category>
		<category><![CDATA[shipwreck]]></category>
		<category><![CDATA[Truk Lagoon]]></category>
		<category><![CDATA[turtle]]></category>
		<category><![CDATA[wreck]]></category>

		<guid isPermaLink="false">http://gratiartis.org/?p=36</guid>
		<description><![CDATA[In January 2009 Leanne and I headed to the South Pacific for a bit of a diving holiday. After just over a week diving the wrecks of Truk Lagoon we moved on to Palau, where we were able to see all sorts of big life: turtles, sharks, mantas and napoleon wrasse.]]></description>
			<content:encoded><![CDATA[<p>In January 2009 Leanne and I headed to the South Pacific for a bit of a diving holiday. After just over a week diving the wrecks of Truk Lagoon we moved on to Palau, where we were able to see all sorts of big life: turtles, sharks, mantas and napoleon wrasse.</p>
				<div id="gallery-1c47495f" class="flickr-gallery photoset">
													<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338946334"><img class="photo" title="Sharks at Blue Corner, Palau" src="http://farm6.static.flickr.com/5008/5338946334_4a63006c88_s.jpg" alt="Sharks at Blue Corner, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338949402"><img class="photo" title="Turtle, Palau" src="http://farm6.static.flickr.com/5006/5338949402_a15868bc25_s.jpg" alt="Turtle, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338340155"><img class="photo" title="Starfish, Palau" src="http://farm6.static.flickr.com/5088/5338340155_206897c92e_s.jpg" alt="Starfish, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338340489"><img class="photo" title="Divers by huge school of fish, German Channel, Palau" src="http://farm6.static.flickr.com/5042/5338340489_107f3f9e19_s.jpg" alt="Divers by huge school of fish, German Channel, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338340781"><img class="photo" title="Lionfish, Palau" src="http://farm6.static.flickr.com/5246/5338340781_5d8502186c_s.jpg" alt="Lionfish, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338341011"><img class="photo" title="Manta ray in German Channel, Palau" src="http://farm6.static.flickr.com/5045/5338341011_ed3d30a13e_s.jpg" alt="Manta ray in German Channel, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338951084"><img class="photo" title="Leanne in jellyfish lake, Palau" src="http://farm6.static.flickr.com/5207/5338951084_b6b815488e_s.jpg" alt="Leanne in jellyfish lake, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338951486"><img class="photo" title="Turtle, Palau" src="http://farm6.static.flickr.com/5130/5338951486_581a39c0e3_s.jpg" alt="Turtle, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338342149"><img class="photo" title="Looking under the coral, Palau" src="http://farm6.static.flickr.com/5245/5338342149_c07059ba75_s.jpg" alt="Looking under the coral, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338952146"><img class="photo" title="Manta ray in German Channel, Palau" src="http://farm6.static.flickr.com/5287/5338952146_ca201b93ee_s.jpg" alt="Manta ray in German Channel, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338342739"><img class="photo" title="Palau" src="http://farm6.static.flickr.com/5048/5338342739_a2be5e2b95_s.jpg" alt="Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338952812"><img class="photo" title="Close-up of Jellyfish in jellyfish lake, Palau" src="http://farm6.static.flickr.com/5282/5338952812_4c6d69329a_s.jpg" alt="Close-up of Jellyfish in jellyfish lake, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338953260"><img class="photo" title="Maybe a starfish? Palau" src="http://farm6.static.flickr.com/5207/5338953260_fb620a846a_s.jpg" alt="Maybe a starfish? Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338953582"><img class="photo" title="Sea cucumber, Palau" src="http://farm6.static.flickr.com/5009/5338953582_d1049f2865_s.jpg" alt="Sea cucumber, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338344083"><img class="photo" title="Shark near Blue Corner, Palau" src="http://farm6.static.flickr.com/5282/5338344083_e37f8cfb1f_s.jpg" alt="Shark near Blue Corner, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338954204"><img class="photo" title="Turtle, Palau" src="http://farm6.static.flickr.com/5124/5338954204_04681aa95a_s.jpg" alt="Turtle, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338954440"><img class="photo" title="Nautilus, Palau" src="http://farm6.static.flickr.com/5121/5338954440_68cd072b78_s.jpg" alt="Nautilus, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338954740"><img class="photo" title="Plantation Resort, Palau" src="http://farm6.static.flickr.com/5130/5338954740_2346ff1b61_s.jpg" alt="Plantation Resort, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338345305"><img class="photo" title="Large clam, Palau" src="http://farm6.static.flickr.com/5004/5338345305_011caec63d_s.jpg" alt="Large clam, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338955300"><img class="photo" title="Manta ray at German Channel, Palau" src="http://farm6.static.flickr.com/5170/5338955300_892fd87059_s.jpg" alt="Manta ray at German Channel, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338955606"><img class="photo" title="Turtle swimming by, Palau" src="http://farm6.static.flickr.com/5243/5338955606_ac6f5b5e5e_s.jpg" alt="Turtle swimming by, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338346165"><img class="photo" title="Wreck diving, Palau" src="http://farm6.static.flickr.com/5043/5338346165_8e5b97e0ab_s.jpg" alt="Wreck diving, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338346355"><img class="photo" title="Anemone feeding on jellyfish in jellyfish lake, Palau" src="http://farm6.static.flickr.com/5203/5338346355_39ee155e0d_s.jpg" alt="Anemone feeding on jellyfish in jellyfish lake, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338956366"><img class="photo" title="Me swimming down amongst the Jellyfish, Palau" src="http://farm6.static.flickr.com/5287/5338956366_bbda514900_s.jpg" alt="Me swimming down amongst the Jellyfish, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338346835"><img class="photo" title="Turtle close-up, Palau" src="http://farm6.static.flickr.com/5281/5338346835_98e997f9d8_s.jpg" alt="Turtle close-up, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338956904"><img class="photo" title="Leanne with the jellyfish, Palau" src="http://farm6.static.flickr.com/5007/5338956904_cd407d3f1c_s.jpg" alt="Leanne with the jellyfish, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338347391"><img class="photo" title="Cricket on an iris, Palau" src="http://farm6.static.flickr.com/5165/5338347391_e82b8b75a5_s.jpg" alt="Cricket on an iris, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338957528"><img class="photo" title="Coral, Palau" src="http://farm6.static.flickr.com/5167/5338957528_0e7c9219e2_s.jpg" alt="Coral, Palau" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=5338957864"><img class="photo" title="Me with the jellyfish, Palau" src="http://farm6.static.flickr.com/5047/5338957864_fd9d8ebae6_s.jpg" alt="Me with the jellyfish, Palau" /></a>
								</div>
												<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-1c47495f .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			
]]></content:encoded>
			<wfw:commentRss>http://www.gratiartis.org/2009/02/micronesia-truk-lagoon-chuuk-and-palau-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thusha and Katherine&#8217;s Wedding</title>
		<link>http://www.gratiartis.org/2008/05/thusha-and-katherines-wedding/</link>
		<comments>http://www.gratiartis.org/2008/05/thusha-and-katherines-wedding/#comments</comments>
		<pubDate>Sun, 04 May 2008 14:40:25 +0000</pubDate>
		<dc:creator>Stevie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gratiartis.org/?p=34</guid>
		<description><![CDATA[On the 12th April 2008, my old school chum Thusha and his girlfriend Katherine got themselves married at Dynamic Earth in Edinburgh. I didn&#8217;t manage to get any photos of the ceremony, but there are a few snaps taken during the ceilidh in the evening that seem to have come out reasonably well.]]></description>
			<content:encoded><![CDATA[<p>On the 12th April 2008, my old school chum Thusha and his girlfriend Katherine got themselves married at Dynamic Earth in Edinburgh. I didn&#8217;t manage to get any photos of the ceremony, but there are a few snaps taken during the ceilidh in the evening that seem to have come out reasonably well.</p>
				<div id="gallery-0a81bc04" class="flickr-gallery photoset">
										<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-0a81bc04 .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			
]]></content:encoded>
			<wfw:commentRss>http://www.gratiartis.org/2008/05/thusha-and-katherines-wedding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Development Tools</title>
		<link>http://www.gratiartis.org/2008/04/development-tools/</link>
		<comments>http://www.gratiartis.org/2008/04/development-tools/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 07:52:56 +0000</pubDate>
		<dc:creator>Stevie</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WebLogic]]></category>

		<guid isPermaLink="false">http://gratiartis.org/?p=33</guid>
		<description><![CDATA[When at work, I&#8217;m generally in the worlds of Windows and Solaris. But these days I&#8217;m doing my home development work on a MacBook Pro. But I&#8217;m keen to make sure that I can do everything that I do at work so that I can experiment in my own time. So here&#8217;s a list of [...]]]></description>
			<content:encoded><![CDATA[<p>When at work, I&#8217;m generally in the worlds of Windows and Solaris. But these days I&#8217;m doing my home development work on a MacBook Pro. But I&#8217;m keen to make sure that I can do everything  that I do at work so that I can experiment in my own time. So here&#8217;s a list of the software I use to develop on the Mac and where to get it.</p>
<p><span id="more-33"></span></p>
<h3>Java Development</h3>
<h4>Eclipse (<a href="http://www.eclipse.org/" title="Eclipse">http://www.eclipse.org/</a>)</h4>
<p>Still my favourite IDE for Java development with a whole host of useful plug-ins.</p>
<h4>NetBeans (<a href="http://www.netbeans.org/" title="NetBeans">http://www.netbeans.org/</a>)</h4>
<p>A decent IDE for Java development, but not up there with Eclipse yet. Version 6 is good though if you&#8217;re happy to pick up the development builds. Once that&#8217;s complete t will be a real challenger.</p>
<h4>Maven (<a href="http://maven.apache.org/" title="Maven">http://maven.apache.org/</a>)</h4>
<p>You want to make sure your builds work no matter what platform you&#8217;re on?  This is a very good way of making sure that happens.</p>
<h4>BEA WebLogic</h4>
<p>I&#8217;m generally a Java EE developer, and the platform that I target at work is WebLogic. Take a look at my <a href="http://gratiartis.org/?p=27" title="BEA WebLogic on Mac OS X">WebLogic on Mac OS X</a> page for more information about how to get the server running on OS X.</p>
<h3>TeX Development</h3>
<p>I do quite a bit of writing using LaTeX for my typesetting. You&#8217;ll find a few examples on this site where I have used it to generate PDFs. In the past I have worked on Windows with TeXnicCenter which made working with a large project easy and I used the MikTeX distribution which contains the useful utilities that allowed me to script generating the work products. But what do I do now that I&#8217;m trying to do everything on the Mac? As you might expect with something as well established as LaTeX, there is plenty of software that can be used on all sorts of platforms.</p>
<h4>MacTex (<a href="http://www.tug.org/mactex/" title="MacTex - TeX Users Group">http://www.tug.org/mactex/</a>)</h4>
<p>MacTeX is a collection of front-ends, documentation and utilities for TeX development. I should warn you that it&#8217;s over 700MB, so it will take some time to download!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gratiartis.org/2008/04/development-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

