<?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>Foul Writer's World</title>
	<atom:link href="http://www.foulwritersworld.net/blog/index.php?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.foulwritersworld.net/blog</link>
	<description>A Technical Communication and Technology blog</description>
	<lastBuildDate>Wed, 12 May 2010 11:20:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Building a multi-lingual help system</title>
		<link>http://www.foulwritersworld.net/blog/?p=225</link>
		<comments>http://www.foulwritersworld.net/blog/?p=225#comments</comments>
		<pubDate>Fri, 23 Apr 2010 22:06:48 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Localization]]></category>
		<category><![CDATA[Technical Communication]]></category>
		<category><![CDATA[Translation]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[Joom!Fish]]></category>
		<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Questionmark]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=225</guid>
		<description><![CDATA[So I have been busy lately. Hence the lack of posts. But I thought I would write a short post on a project I am currently working on. It is the deployment of an online multi-lingual help system. The company I work for, Questionmark, are moving towards a Software As A Service methodology. We have [...]]]></description>
			<content:encoded><![CDATA[<p>So I have been busy lately. Hence the lack of posts.</p>
<p>But I thought I would write a short post on a project I am currently working on. It is the deployment of an online multi-lingual help system. The company I work for, <a href="http://www.questionmark.com">Questionmark</a>, are moving towards a Software As A Service methodology. We have several applications out, or in the pipeline, that are designed to be multi-lingual. <a href="https://live.questionmark.com">Questionmark Live</a>, is a perfect example. It allows Subject Matter Experts to easily create questions using a web based interface that can then be uploaded to Questionmark Perception for delivery to students in an exam or assessment.</p>
<p>The current help system employed by Questionmark Live is basic, so I have been looking at ways we could improve this. Essentially I needed a system that could be:</p>
<ul>
<li>Used to create help pages</li>
<li>Able to display images</li>
<li>Translatable</li>
<li>Language aware</li>
<li>Able to provide direct links to pages in an easily identifiable manner</li>
</ul>
<p>I checked all our existing systems and tools (Madcap Flare, RoboHelp, WikiSpaces, Contribute) but none really did what I needed them to do. I then started checking out other specific Help and Knowledge Base system and I came to the conclusion that they were either really good at organising and displaying information or being multi-lingual aware, but finding a system that could do both really well was impossible.</p>
<p>I decided to start looking outside the box and came across <a href="http://www.joomla.org/">Joomla!</a>. Joomla! is an open source Content Management System, in the same vain as Drupal. However, Joomla on its own isn&#8217;t language aware but there a are a multitude of add-ons and extensions that make pretty much anything possible.</p>
<p>My current line of thought for the new help system includes a deployment of Joomla!, with an extension called<a href="http://www.joomfish.net/"> Joom!Fish</a>. Joom!Fish provides Joomla with a whole translation workflow and makes the software language aware. Also the way that Joomla indexes pages makes it easy for our developers to call specific pages stored on the Joomla system in the language needed quickly and easily.</p>
<p>Each piece of content stored in Joomla is tagged with an ID. Any translations of the content is stored with the same ID so translations are actually part of the same piece of content rather than a seperate piece of content written in a different language. Perfect!</p>
<p>For example to call the help I would need to pass something similar to the following URL (simplified for the sake of this blog post):</p>
<p>index.php?contentid=38Lang=en</p>
<p>If I wanted to call a different page the URL would simply change to:</p>
<p>index.php?contentid=41Lang=en</p>
<p>If I then wanted to present a translated version of the above page I would just need to change the identified Lang parameter, like so:</p>
<p>index.php?contentid=41Lang=es &lt;- To display a Spanish translation of the page</p>
<p>Now this is all pretty easy for our developers to arrange. Each Help button would be associated with a contentid and depending on the language version of the software the user was using the Lang parameter would also be passed to open the appropriate page in the required language. The Joomla and Joom!Fish combination is also clever enough to understand that if a translation of the selected page isn&#8217;t available it will show the predetermined base (original) language, which in most cases will actually be English. It can also be configured to work with language cultures like en-US and en-UK.</p>
<p>Another really cool thing that I like about the Joomla system is that I can change the look and feel of the page being called by simply modifying the URL slightly. For example calling the following URL would open the page with the full template and menu system:</p>
<p>index.php?contentid=38Lang=en</p>
<p>But calling the following URL would open the content without any distractions, no template, headers or menu, and display just the article:</p>
<p>index2.php?contentid=38Lang=en</p>
<p>This makes it perfect to open help pages directly from the application, while still giving me the control to allow users to open the help as a help centre with full navigation and searching capabilities. I&#8217;m hoping to finish off my proposal for the system in the next few days and get buy-in from various stake holders. So far all the developers I have shown it to love the solution. It makes life easier for them and everyone has agreed that it will make the content more meaningful, relevant and easier to maintain.</p>
<p>I&#8217;ll keep you all posted as the project progresses. If anyone else has any thoughts or comments feel free to let me know in the comments section.</p>
<p><strong><span style="text-decoration: line-through;">Update</span></strong></p>
<p><span style="text-decoration: line-through;"> </span></p>
<p><span style="text-decoration: line-through;">I thought I&#8217;d include some links to a demo system I have setup.</span></p>
<p><span style="text-decoration: line-through;"> </span></p>
<p><span style="text-decoration: line-through;">Here is a link to a sample help page:</span></p>
<p><span style="text-decoration: line-through;"> </span></p>
<p><a href="http://www.foulwritersworld.net/joomla/index.php?option=com_content&amp;view=article&amp;id=46&amp;&amp;lang=en"><span style="text-decoration: line-through;">www.foulwritersworld.net/joomla/index.php?option=com_content&amp;view=article&amp;id=46&amp;&amp;lang=en</span></a></p>
<p><span style="text-decoration: line-through;"> </span></p>
<p><span style="text-decoration: line-through;">The same page in Spanish:</span></p>
<p><span style="text-decoration: line-through;"> </span></p>
<p><a href="http://www.foulwritersworld.net/joomla/index.php?option=com_content&amp;view=article&amp;id=46&amp;&amp;lang=es"><span style="text-decoration: line-through;">www.foulwritersworld.net/joomla/index.php?option=com_content&amp;view=article&amp;id=46&amp;&amp;lang=es</span></a></p>
<p><span style="text-decoration: line-through;"> </span></p>
<p><span style="text-decoration: line-through;">With the menu and navigation turned off:</span></p>
<p><span style="text-decoration: line-through;"> </span></p>
<p><a href="http://www.foulwritersworld.net/joomla/index2.php?option=com_content&amp;view=article&amp;id=46&amp;&amp;lang=en"><span style="text-decoration: line-through;">www.foulwritersworld.net/joomla/index2.php?option=com_content&amp;view=article&amp;id=46&amp;&amp;lang=en</span></a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=225</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC</title>
		<link>http://www.foulwritersworld.net/blog/?p=223</link>
		<comments>http://www.foulwritersworld.net/blog/?p=223#comments</comments>
		<pubDate>Fri, 23 Apr 2010 21:15:07 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Desire]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=223</guid>
		<description><![CDATA[This is a test post from my Android phone. As you can probably guess I&#8217;ve finally managed to get rid of my iPhone 3GS and get a propper geek phone in the HTC Desire. So far I am loving it. It&#8217;s fast, efficient and oh so cool. Shame the battery life isn&#8217;t great, but the [...]]]></description>
			<content:encoded><![CDATA[<p>This is a test post from my Android phone. As you can probably guess I&#8217;ve finally managed to get rid of my iPhone 3GS and get a propper geek phone in the HTC Desire.</p>
<p>So far I am loving it. It&#8217;s fast, efficient and oh so cool. Shame the battery life isn&#8217;t great, but the iPhone wasn&#8217;t much better.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=223</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 launch</title>
		<link>http://www.foulwritersworld.net/blog/?p=217</link>
		<comments>http://www.foulwritersworld.net/blog/?p=217#comments</comments>
		<pubDate>Sun, 25 Oct 2009 12:09:32 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=217</guid>
		<description><![CDATA[So Microsoft have finally released Windows 7. First counts have shown that the demand for Windows 7 is high. Many have put of upgrading to Vista and skipped straight to WIndows 7 from XP. While others have been deperate to get rid of VIsta and move on to something that works. So far it looks [...]]]></description>
			<content:encoded><![CDATA[<p>So Microsoft have finally released Windows 7. First counts have shown that the demand for Windows 7 is high. Many have put of upgrading to Vista and skipped straight to WIndows 7 from XP. While others have been deperate to get rid of VIsta and move on to something that works.</p>
<p>So far it looks like WIndows 7 is a big hit. I haven&#8217;t seen any over negative blogs about. Howver, the proof of the pudding will come from how quickly corporate users upgrade.</p>
<p>The truth is I have been using Windows 7 (64-bit) ever since its MSDN release and I have been pleasantly surprised. I like:</p>
<ul>
The snap to screen (however, annoyingly it doesn&#8217;t support multi-monitor displays properly)
</ul>
<ul>
The battery management options
</ul>
<ul>
The improved load times and system messaging
</ul>
<ul>
After some getting used to, the new task bar is intuitive and easy to use</ul>
<ul>Overall look and feel</ul>
<ul>UAC improvements</ul>
<p>What do others think/like about Windows 7?</p>
<p>I am not looking forward to having to update all my installer docs with the new OS. But, I suppose it needs to be done. <img src='http://www.foulwritersworld.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=217</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Analytics</title>
		<link>http://www.foulwritersworld.net/blog/?p=215</link>
		<comments>http://www.foulwritersworld.net/blog/?p=215#comments</comments>
		<pubDate>Thu, 10 Sep 2009 23:46:01 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Technical Communication]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Star Trek]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=215</guid>
		<description><![CDATA[Ever wondered why Web Analytics was important. Or hand a hard time understanding they work. Take a look at: Analytics According to Captain Kirk by Matt Bailey He makes it sound so simple yet fun. Well, maybe only if you are a Star Trek fan.]]></description>
			<content:encoded><![CDATA[<p>Ever wondered why Web Analytics was important. Or hand a hard time understanding they work. Take a look at:</p>
<p><a href="http://www.lyrishq.com/index.php/Web-Analytics/Analytics-According-to-Captain-Kirk.html">Analytics According to Captain Kirk </a>by Matt Bailey</p>
<p>He makes it sound so simple yet fun. Well, maybe only if you are a Star Trek fan.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=215</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opara 10 now available</title>
		<link>http://www.foulwritersworld.net/blog/?p=206</link>
		<comments>http://www.foulwritersworld.net/blog/?p=206#comments</comments>
		<pubDate>Tue, 01 Sep 2009 12:50:00 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Opera]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=206</guid>
		<description><![CDATA[My favorite browser has been upgraded. If you want to see what other browsers should be doing you can go a download a copy of Opera 10 from: www.opera.com The new &#8220;Turbo&#8221; feature really does seem to speed things up. It looks like Google Gears finally has some competition.]]></description>
			<content:encoded><![CDATA[<p>My favorite browser has been upgraded. If you want to see what other browsers should be doing you can go a download a copy of Opera 10 from:</p>
<p><a href="http://www.opera.com" target="_self">www.opera.com</a></p>
<p>The new &#8220;Turbo&#8221; feature really does seem to speed things up. It looks like Google Gears finally has some competition.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=206</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AWOL</title>
		<link>http://www.foulwritersworld.net/blog/?p=204</link>
		<comments>http://www.foulwritersworld.net/blog/?p=204#comments</comments>
		<pubDate>Thu, 20 Aug 2009 20:40:30 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[LH]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=204</guid>
		<description><![CDATA[Sorry all. I&#8217;ve been really busy lately and I haven&#8217;t had time to post much. However, I&#8217;m hoping to get back up to speed with some new posts soon. In the meantime here is my pick of interesting news:  Windows 7 is shaping up well I&#8217;ve been testing recently and I have had very few [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry all. I&#8217;ve been really busy lately and I haven&#8217;t had time to post much. However, I&#8217;m hoping to get back up to speed with some new posts soon.</p>
<p>In the meantime here is my pick of interesting news:</p>
<ul>
<li> Windows 7 is shaping up well I&#8217;ve been testing recently and I have had very few problems. There is an interesting post by Scott Fulton about why <a href="http://www.betanews.com/article/Windows-7-is-coming-You-should-upgrade/1250795932">you should upgrade</a>.</li>
<li>I&#8217;m considering getting my very own <a href="http://www.v3.co.uk/v3/news/2248221/lg-watchphone-lands-orange">James Bond watch</a></li>
<li>Can&#8217;t believe what they named a <a href="http://www.guardian.co.uk/world/2009/aug/18/david-attenborough-animals-plants">rat eating plant</a>.</li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=204</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book release</title>
		<link>http://www.foulwritersworld.net/blog/?p=200</link>
		<comments>http://www.foulwritersworld.net/blog/?p=200#comments</comments>
		<pubDate>Wed, 01 Jul 2009 17:20:38 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Technical Communication]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[Uganda]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=200</guid>
		<description><![CDATA[Dan over at Flip Side Coin has just released his book. The book details the the year he and his wife spent out in Uganda as part of VSO service. Dan is a Tech. Writer with amazing talent and from following his antics through his blog i&#8217;m sure that the book will be a great read. [...]]]></description>
			<content:encoded><![CDATA[<p>Dan over at <a href="http://www.flipsidecoin.co.uk/?p=594">Flip Side Coin has just released his book</a>. The book details the the year he and his wife spent out in Uganda as part of VSO service.</p>
<p>Dan is a Tech. Writer with amazing talent and from following his antics through his blog i&#8217;m sure that the book will be a great read. Can&#8217;t wait to get hold of my copy.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=200</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress upgrade</title>
		<link>http://www.foulwritersworld.net/blog/?p=199</link>
		<comments>http://www.foulwritersworld.net/blog/?p=199#comments</comments>
		<pubDate>Sun, 14 Jun 2009 11:24:37 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=199</guid>
		<description><![CDATA[Well WordPress 2.7.1 didn&#8217;t last long for me. I&#8217;ve now upgraded to the latest release. I&#8217;m really liking the automatic upgrade feature. Makes life so mush easier.]]></description>
			<content:encoded><![CDATA[<p>Well WordPress 2.7.1 didn&#8217;t last long for me. I&#8217;ve now upgraded to the latest release.</p>
<p>I&#8217;m really liking the automatic upgrade feature. Makes life so mush easier.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=199</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>News in Brief: W/E 14th June 2009</title>
		<link>http://www.foulwritersworld.net/blog/?p=196</link>
		<comments>http://www.foulwritersworld.net/blog/?p=196#comments</comments>
		<pubDate>Sun, 14 Jun 2009 11:18:21 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Technical Communication]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Flare]]></category>
		<category><![CDATA[FORMULA 1]]></category>
		<category><![CDATA[Madcap]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=196</guid>
		<description><![CDATA[News from this week. Microsoft removes IE 8 from Windows 7 shipping in EU. EU still hungry for Microsoft cash and decide to go to court anyway The end of Twitter and the world was avoided this week, when twitpocalypse came to nothing except if your a Apple user. Live Search rebranded as Bing.com to [...]]]></description>
			<content:encoded><![CDATA[<p>News from this week.</p>
<ul>
<li>Microsoft<a href="http://arstechnica.com/microsoft/news/2009/06/windows-7-to-be-shipped-in-europe-sans-internet-explorer.ars"> removes IE 8 from Windows 7 </a>shipping in EU.</li>
<li><a href="http://arstechnica.com/microsoft/news/2009/06/eu-to-pursue-antitrust-case-despite-windows-7-e.ars">EU still hungry for Microsoft cash</a> and decide to go to court anyway</li>
<li>The end of Twitter and the world was avoided this week, when twitpocalypse came to nothing <a href="http://www.macworld.com/article/141146/2009/06/twitpocalypse_twitter.html">except if your a Apple user</a>.</li>
<li>Live Search rebranded as <a href="http://blogs.zdnet.com/BTL/?p=19492">Bing.com to take on Google</a></li>
<li>Hopes of many are dashed in <a href="http://www.reuters.com/article/latestCrisis/idUSDAH419900">Iranian elections and cause widspread discontent</a></li>
<li>MadCap release <a href="http://www.reuters.com/article/latestCrisis/idUSDAH419900">Flare v5</a>. I&#8217;ll be doing a review of the changes once I&#8217;ve spent more time with it</li>
<li><a href="http://en.f1-live.com/f1/en/headlines/news/detail/090612205814.shtml">FIA / FOTA war of 2009 </a>is intensifying as the FIA continually push car manufacturers further and further away from Formula 1 (The FIA should just get rid of Mad Max Mosley, it would solve so many problems)</li>
<li>Is Twitter&#8217;s dominance at microblogging is under <a href="http://www.reuters.com/article/paidmediaAtoms/idUS307973911320090614">threat from Google?</a></li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=196</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>API docs</title>
		<link>http://www.foulwritersworld.net/blog/?p=189</link>
		<comments>http://www.foulwritersworld.net/blog/?p=189#comments</comments>
		<pubDate>Thu, 28 May 2009 20:07:01 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Technical Communication]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[wiki]]></category>
		<category><![CDATA[API]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=189</guid>
		<description><![CDATA[Finally some movement on the documenting API stuff on a wiki. We have decided the approach, the process and how it is going to work. We have also narrowed down the possible wikis to: Confluence MindTouch Deki Both offer good web based editing and have the optional extras we need. Now, I just need to [...]]]></description>
			<content:encoded><![CDATA[<p>Finally some movement on the documenting API stuff on a wiki. We have decided the approach, the process and how it is going to work. We have also narrowed down the possible wikis to:</p>
<ul>
<li><a href="http://www.atlassian.com/software/confluence/" target="_blank">Confluence</a></li>
<li><a href="http://www.mindtouch.com/" target="_blank">MindTouch Deki</a></li>
</ul>
<p>Both offer good web based editing and have the optional extras we need. Now, I just need to come up with a format for the older content that everyone is happy with.</p>
<p>I’ve been thinking of something like this:</p>
<table border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td width="400" valign="top">API NAME</p>
<p>Description</p>
<p>Version history</p>
<p>Input parameters</p>
<blockquote><p>XML code</p></blockquote>
<p>Output</p>
<blockquote><p>XML code</p></blockquote>
</td>
</tr>
</tbody>
</table>
<p>For example:</p>
<p><a href="http://www.foulwritersworld.net/blog/wp-content/uploads/2009/05/api.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="API" src="http://www.foulwritersworld.net/blog/wp-content/uploads/2009/05/api-thumb.jpg" border="0" alt="API" width="195" height="244" /></a></p>
<p>Anyone got any other suggestions?</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=189</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Cats</title>
		<link>http://www.foulwritersworld.net/blog/?p=186</link>
		<comments>http://www.foulwritersworld.net/blog/?p=186#comments</comments>
		<pubDate>Thu, 28 May 2009 19:50:54 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=186</guid>
		<description><![CDATA[I have 2 house cats or as I prefer to refer to them &#34;rats&#34;. They are a ~3 year old male monster, who is big for his age and breed and a ~2.5 year old female who is so petite that she is almost half the others size. They go by the name Kiri for [...]]]></description>
			<content:encoded><![CDATA[<p>I have 2 house cats or as I prefer to refer to them &quot;rats&quot;. They are a ~3 year old male monster, who is big for his age and breed and a ~2.5 year old female who is so petite that she is almost half the others size. They go by the name Kiri for the male and Whiskey for the female.</p>
<p align="center"><a title="DSC00259" href="http://www.flickr.com/photos/28997597@N04/2771925262/"><img border="0" alt="DSC00259" src="http://static.flickr.com/3233/2771925262_c775cc7001.jpg" width="133" height="177" /></a>&#160;<a title="DSC00260" href="http://www.flickr.com/photos/28997597@N04/2771925786/"><img border="0" alt="DSC00260" src="http://static.flickr.com/3169/2771925786_4aae9e2c22.jpg" width="237" height="178" /></a></p>
<p>Like most cats they spend approximately 20 hours of the day asleep. Hence the rather drowsy looking pictures above. With the remaining 8 hours of the day eating or fighting. Both have amazingly different personalities. Kiri, loves to be the center of attention, but is rather timid to try new things. Whiskey however, hates to be around people and only comes to people for comfort when she is tired and wants some love. Whiskey is certainly the more adventurous of the 2 and many times have we found her sneaking a peak in the neighbours apartment by putting her head through an open window. </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=186</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress upgrade</title>
		<link>http://www.foulwritersworld.net/blog/?p=182</link>
		<comments>http://www.foulwritersworld.net/blog/?p=182#comments</comments>
		<pubDate>Tue, 26 May 2009 23:34:39 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Technical Communication]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=182</guid>
		<description><![CDATA[I&#8217;ve finally taken the time to upgrade to the latest WordPress release and I&#8217;m liking it so far. Much better backend UI and I find it loads slightly faster. To celebrate the upgrade, i&#8217;ve applied a new theme. I&#8217;m just trying out for now. What do you think?]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally taken the time to upgrade to the latest WordPress release and I&#8217;m liking it so far. Much better backend UI and I find it loads slightly faster.</p>
<p>To celebrate the upgrade, i&#8217;ve applied a new theme. I&#8217;m just trying out for now.</p>
<p>What do you think?</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=182</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do you use Twitter?</title>
		<link>http://www.foulwritersworld.net/blog/?p=181</link>
		<comments>http://www.foulwritersworld.net/blog/?p=181#comments</comments>
		<pubDate>Sun, 17 May 2009 14:00:07 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Technical Communication]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=181</guid>
		<description><![CDATA[Given how the media has gone mad over Twitter and especially how celebs are using it to talk to fans I was wondering, how do you use Twitter? I tend to use it primarily as a: way for keeping up with friends, colleagues and other interesting parties way of asking direct questions to a person [...]]]></description>
			<content:encoded><![CDATA[<p>Given how the media has gone mad over Twitter and especially how celebs are using it to talk to fans I was wondering, how do you use Twitter?</p>
<p>I tend to use it primarily as a:</p>
<ul>
<li>way for keeping up with friends, colleagues and other interesting parties</li>
<li>way of asking direct questions to a person or group of people</li>
<li>way to follow and create Live Blogs relating to an event</li>
<li>method  to crack one liner gags at my friends <img src='http://www.foulwritersworld.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
<p>What I don’t tend to use Twitter for is:</p>
<ul>
<li>Holding conversations with others (I prefer MSN or Skype for that)</li>
<li>To market myself, products or organizations</li>
<li>Microblogging (I did once, but it’s not easy to express yourself in less than a 140 characters)</li>
</ul>
<p>How do others use Twitter?</p>
<p>I’ve seen some interesting ideas from the likes of Greg Pope and Sean Farrell at the <a href="http://blog.questionmark.com/twitter-a-job-analysis-tool" target="_blank">Questionmark Blog</a> about using Twitter to collect</p>
<blockquote><p>job task information</p></blockquote>
<p>An interesting idea, but why use Twitter? I tend to keep that sort of information up to date using <a href="http://www.evernote.com/" target="_blank">Evernote</a> on my PCs and Smartphones. However, I like the idea of someone thinking about Twitter outside the realm of a social tool. About giving Twitter a purpose other that simple social communication.</p>
<p><strong>So how do you use Twitter? Please discuss.</strong></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=181</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Noise Cancelling Headphones: A writers best friend</title>
		<link>http://www.foulwritersworld.net/blog/?p=177</link>
		<comments>http://www.foulwritersworld.net/blog/?p=177#comments</comments>
		<pubDate>Fri, 24 Apr 2009 22:03:10 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Technical Communication]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[bose]]></category>
		<category><![CDATA[headphones]]></category>
		<category><![CDATA[noise cancelling]]></category>
		<category><![CDATA[panasonic]]></category>
		<category><![CDATA[Sony]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=177</guid>
		<description><![CDATA[I sit in an office that can get pretty noisy sometimes. Either it’s the whirr of the computer fans working overtime, the hum drum of the air conditioning. Or, the Dev. and QA departments mingling. So to combat this and get some piece and quiet I went and got some noise cancelling headphones. I know [...]]]></description>
			<content:encoded><![CDATA[<p>I sit in an office that can get pretty noisy sometimes. Either it’s the whirr of the computer fans working overtime, the hum drum of the air conditioning. Or, the Dev. and QA departments mingling. So to combat this and get some piece and quiet I went and got some noise cancelling headphones. I know you think headphones + music not the best writing environment. But I got noise cancelling headphones to block out the rest of the world. So i don’t necessarily listen to music through them, but I often just wear them to be able to hear myself think. I have a few pairs now, I’ve become addicted to them over time, the feeling of isolation you get while sitting in the middle of a busy office is surreal.</p>
<p>Well I have 4 pairs of noise cancelling headphones. These are:</p>
<ul>
<li>Sony MDR-NC6</li>
</ul>
<blockquote><p><img src="http://s3.gadgetreview.com/wp-content/uploads/2008/06/sony-mdr-nc6-noise-cancelling-headphones.jpg" alt="" width="132" height="132" /></p></blockquote>
<ul>
<li>Panasonic RP-HC500</li>
</ul>
<blockquote><p><img src="http://www.productwiki.com/upload/images/panasonic_rp_hc500-200-200.jpg" alt="" width="124" height="124" /></p></blockquote>
<ul>
<li>Bose Quiet Comfort 2</li>
</ul>
<blockquote><p>  <img src="http://img141.imageshack.us/img141/6321/boseqc2mk4.jpg" alt="" width="146" height="97" /></p></blockquote>
<ul>
<li>Sony MDR-NC500</li>
</ul>
<blockquote><p><img src="http://image01.shopzilla-images.com/resize?sq=140&amp;uid=940773383" alt="" /></p></blockquote>
<p>The headphones go up in the range of noise cancelling from the lowest with the NC6 all the way to the top of the range with the NC500s.</p>
<p>Below I&#8217;ve rated each on various aspects from effectiveness to price:</p>
<table border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td width="80" valign="top"> </td>
<td width="80" valign="top"><strong>MDR-NC6</strong></td>
<td width="80" valign="top"><strong>RP-HC500</strong></td>
<td width="80" valign="top"><strong>QC2</strong></td>
<td width="80" valign="top"><strong>MDR-NC500</strong></td>
</tr>
<tr>
<td width="80" valign="top">Comfort</td>
<td width="80" valign="top">6</td>
<td width="80" valign="top">7</td>
<td width="80" valign="top">8</td>
<td width="80" valign="top">9</td>
</tr>
<tr>
<td width="80" valign="top">High end sound</td>
<td width="80" valign="top">5</td>
<td width="80" valign="top">8</td>
<td width="80" valign="top">7</td>
<td width="80" valign="top">9</td>
</tr>
<tr>
<td width="80" valign="top">Low end sound (Bass)</td>
<td width="80" valign="top">4</td>
<td width="80" valign="top">8</td>
<td width="80" valign="top">8</td>
<td width="80" valign="top">7</td>
</tr>
<tr>
<td width="80" valign="top">Battery life</td>
<td width="80" valign="top">8</td>
<td width="80" valign="top">7</td>
<td width="80" valign="top">7</td>
<td width="80" valign="top">4</td>
</tr>
<tr>
<td width="80" valign="top">Design</td>
<td width="80" valign="top">4</td>
<td width="80" valign="top">7</td>
<td width="80" valign="top">7</td>
<td width="80" valign="top">8</td>
</tr>
<tr>
<td width="80" valign="top">Accessories</td>
<td width="80" valign="top">4</td>
<td width="80" valign="top">6</td>
<td width="80" valign="top">7</td>
<td width="80" valign="top">7</td>
</tr>
<tr>
<td width="80" valign="top">Practicality</td>
<td width="80" valign="top">7</td>
<td width="80" valign="top">6</td>
<td width="80" valign="top">7</td>
<td width="80" valign="top">6</td>
</tr>
<tr>
<td width="80" valign="top">Noise cancelling</td>
<td width="80" valign="top">5</td>
<td width="80" valign="top">7</td>
<td width="80" valign="top">7</td>
<td width="80" valign="top">9</td>
</tr>
<tr>
<td width="80" valign="top">Final Score</td>
<td width="80" valign="top"><strong>5.4</strong></td>
<td width="80" valign="top"><strong>7</strong></td>
<td width="80" valign="top"><strong>7.3</strong></td>
<td width="80" valign="top"><strong>7.4</strong></td>
</tr>
</tbody>
</table>
<p>As you can see the difference between the high-end headphones isn’t great, but the main focus of these headphones is noise cancelling and with that the ratting for each is:</p>
<ul>
<li>MDR-NC500 : 99%</li>
<li>Bose QC2: 90%</li>
<li>RP-HC500 : 92%</li>
<li>MDR-NC6 : 70%</li>
</ul>
<p>The cost difference between each is great. The MDR-NC500 set me back about £250, while the QC2 were not that far behind. The RP-HC500 came in at a more reasonable £130. While the MDR-NC6 the cheapest of the bunch is worth about £50.</p>
<p>The QC2, HC500 and NC500 all feel pretty much the same when wearing. As all use the around ear configuration rather than the on-ear like the NC6. However, the NC500 are my favourite, you can really forget your even wearing them.</p>
<p>The noise cancelling on each differ. The NC500 win hands down, it is really difficult to hear anything once on thanks to its digital noise cancelling. While the RC500 and QC2 are not far behind, but the difference is notable. The NC6 being on-ear are far behind the other three.</p>
<p>Music from each is good, particularly the HC500. The QC2 are slightly bass heavy and the NC500 are very weak with and low low bass beats. However, the clarity when listening higher up the sound range more than makes up. For the rest, they are all pretty similar in mid to high frequency range.</p>
<p>Basically I use the NC6 when out and about, with no particular destination in mind. Because these are the cheap and cheerful pair. However, the other three are used daily by myself and the misses. She uses the RC500s, while I use the NC500 at work because of their superior noise cancelling and the QC2s at home.</p>
<p>So for anyone working in a noisy environment and needs to block a bit of sound to concentrate i deffinately recommend getting a pair of noise cancelling headphones. And I hope my quick review has given you some idea of which one might suite you.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=177</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wiki based API documentation</title>
		<link>http://www.foulwritersworld.net/blog/?p=174</link>
		<comments>http://www.foulwritersworld.net/blog/?p=174#comments</comments>
		<pubDate>Fri, 24 Apr 2009 14:29:01 +0000</pubDate>
		<dc:creator>noel</dc:creator>
				<category><![CDATA[Technical Communication]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[wiki]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://www.foulwritersworld.net/blog/?p=174</guid>
		<description><![CDATA[I’ve been busy recently trying to develop and create API documentation for Questionmark. We have a set of brilliant Web services as part of our application that is seriously under used for a number of reasons, including: Documentation is difficult to get to Cumbersome format Difficult to maintain On top of this there is no [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve been busy recently trying to develop and create API documentation for Questionmark. We have a set of brilliant Web services as part of our application that is seriously under used for a number of reasons, including:</p>
<ul>
<li>Documentation is difficult to get to</li>
<li>Cumbersome format</li>
<li>Difficult to maintain</li>
</ul>
<p>On top of this there is no way for users/developers to add comments or suggestions to the document.</p>
<p>I’ve always thought the way to build a set of useful APIs is not to only get them to do the t</p>
<p>asks needed and well. But, get users of the API to contribute towards their fellow developers education. This has a sort of snow ball effect that as more users provide tips, tricks or advice the more engaged others will become by referring to examples, suggestions and deployment options. So that’s the plan. But to do this I first need to get the API documentation out of their existing format (RoboHelp 5 projects with over 450 pages) and in to something more conducive to collaboration. So from all the options available, I think a Wiki is the best option. Why? Because a wiki allows me to:</p>
<ul>
<li>Break out of the confines of the RoboHelp style we currently use</li>
<li>Is easier to maintain minor updates than the RoboHelp project</li>
<li>Allows consumers to add comments</li>
<li>Allows consumers to add examples in the community section</li>
<li>Allows consumers to communicate with other like minded people</li>
<li>Easier searching</li>
</ul>
<p>So now with the decision to move it to a WIKI made, the next step is determining what WIKI would be most capable. We currently use Wikispaces for one of our other customer based WIKIs, but I’m not a fan of this platform. I’m thinking more down the line of Confluence or pbwiki. But I&#8217;ll see which one will be easier to get approval for.</p>
<p>After the wiki is confirmed, I’ll have to start looking at different styles of API documentation. And trust me there are many. A personal favourite so far is the <a href="http://apiwiki.twitter.com/">Twitter API wiki</a>. It is clean and simple in presentation and the style they have chosen to document to APIs is non cluttered and easy to understand.</p>
<p><a href="http://www.foulwritersworld.net/blog/wp-content/uploads/2009/04/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.foulwritersworld.net/blog/wp-content/uploads/2009/04/image-thumb.png" border="0" alt="image" width="353" height="199" /></a></p>
<p>Keep posted for updates</p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2d7db611-4502-4890-b5f5-ac5c3ad85d62" class="wlWriterEditableSmartContent" style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px">Tags: <a rel="tag" href="http://www.example.com/API">API</a>, <a rel="tag" href="http://www.example.com/Wiki">Wiki</a>, <a rel="tag" href="http://www.example.com/documentation">documentation</a></div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.foulwritersworld.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.foulwritersworld.net/blog/?feed=rss2&amp;p=174</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
