<?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/"
	>

<channel>
	<title>Dominux Consulting Blog</title>
	<atom:link href="http://www.dominux.co.uk/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dominux.co.uk</link>
	<description>Domino, Linux and Open Source</description>
	<pubDate>Tue, 18 Nov 2008 09:59:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7-beta3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wierd Lotusscript ACL handles</title>
		<link>http://www.dominux.co.uk/index.php/2008/11/18/wierd-lotusscript-acl-handles/</link>
		<comments>http://www.dominux.co.uk/index.php/2008/11/18/wierd-lotusscript-acl-handles/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 09:39:14 +0000</pubDate>
		<dc:creator>Alan Bell</dc:creator>
		
		<guid isPermaLink="false">http://www.dominux.co.uk/index.php/2008/11/18/wierd-lotusscript-acl-handles/</guid>
		<description><![CDATA[Have a look at this little puzzle, the code below simply prints the names of all the entries in the ACL of a database, but it doesn&#8217;t work unless you uncomment the commented lines

Sub Initialize
	Dim db As New NotesDatabase("", "acltest1.nsf")
'	Dim acl As NotesACL
	Dim entry As NotesACLEntry
'	Set acl = db.ACL
	Set entry = db.acl.GetFirstEntry
	While Not entry Is [...]]]></description>
			<content:encoded><![CDATA[<p>Have a look at this little puzzle, the code below simply prints the names of all the entries in the ACL of a database, but it doesn&#8217;t work unless you uncomment the commented lines</p>
<pre>
Sub Initialize
	Dim db As New NotesDatabase("", "acltest1.nsf")
<font color=green>'	Dim acl As NotesACL</font>
	Dim entry As NotesACLEntry
<font color=green>'	Set acl = db.ACL</font>
	Set entry = db.acl.GetFirstEntry
	While Not entry Is Nothing
		Print entry.Name
		Set entry=db.acl.GetNextEntry(entry)
	Wend
End Sub
</pre>
<p>So accessing the ACL through db.acl.GetFirstEntry returns nothing, unless you have stored a handle to the ACL. The odd thing is you don&#8217;t have to access it via the stored handle, db.acl.GetFirstEntry magically starts working. Has anyone got a rational explaination for this?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dominux.co.uk/index.php/2008/11/18/wierd-lotusscript-acl-handles/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What I have been up to</title>
		<link>http://www.dominux.co.uk/index.php/2008/07/24/what-i-have-been-up-to/</link>
		<comments>http://www.dominux.co.uk/index.php/2008/07/24/what-i-have-been-up-to/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 21:44:55 +0000</pubDate>
		<dc:creator>Alan Bell</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dominux.co.uk/index.php/2008/07/24/what-i-have-been-up-to/</guid>
		<description><![CDATA[I have been deathly quiet on the Domino front recently, but don&#8217;t worry, I have been keeping myself occupied.
Some big news in the UK is that right now a major high street retailer is selling mini laptops, but not just any old mini laptop, this is the new webbook from Elonex (who you may remember [...]]]></description>
			<content:encoded><![CDATA[<p>I have been deathly quiet on the Domino front recently, but don&#8217;t worry, I have been keeping myself occupied.</p>
<p>Some big news in the UK is that right now a major high street retailer is selling mini laptops, but not just any old mini laptop, this is the new webbook from <a href="http://www.elonex.co.uk">Elonex</a> (who you may remember I have <a href="http://www.olpcnews.com/sales_talk/competition/elonex_one_laptop_review.html">met before</a>). If you were to go right now to the home page of <a href="http://www.carphonewarehouse.co.uk">The Carphone Warehouse</a> you will see a webbook. &#8220;nice, but unremarkable&#8221; I hear you say. Well that is just the start of the story. Right now on the web they are selling the Windows XP version, however in stores they are selling the much more exciting Ubuntu Linux version, yes you heard correctly <strong>Ubuntu Linux pre-installed.</strong> The pricing is pretty attractive too. They are giving them away free with a free mobile broadband dongle, but you pay a monthly contract price for bandwidth (the exact pricing will vary so I won&#8217;t quote figures here, go to your local store and ask them)</p>
<p>Now all this is really great news and well worth blogging about just as an exciting development in the mainstream adoption of Free and Open Source Software, but I haven&#8217;t yet told you what I have been up to. Well I took off my yellow hat for a bit and put on my red mortarboard of <a href="http://www.theopenlearningcentre.com">The Open Learning Centre</a> and <a href="http://www.theopensourcerer.com">Alan Lord</a>, myself, and some very clever chaps at <a href="http://www.canonical.com">Canonical</a> and <a href="http://www.warp.es">Warp</a> have been working together to build all the software that goes on the webbook, including really great support for mobile broadband dongles.</p>
<p>There is quite a lot to say about the webbook, it is a lovely little computer, so much so that I have started a new blog dedicated to the webbook at <a href="http://webbookblog.com">webbookblog.com</a> where I will be revealing tricks and hints to get the most out of the webbook.</p>
<p>If you ever considered getting a mobile broadband connection then this is a fantastic deal, get the dongle you want, use it on whatever laptop you have and get a free webbook (which also works with the dongle of course)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dominux.co.uk/index.php/2008/07/24/what-i-have-been-up-to/feed/</wfw:commentRss>
		</item>
		<item>
		<title>And another workspace . . .</title>
		<link>http://www.dominux.co.uk/index.php/2008/04/08/and-another-workspace/</link>
		<comments>http://www.dominux.co.uk/index.php/2008/04/08/and-another-workspace/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 21:23:04 +0000</pubDate>
		<dc:creator>Alan Bell</dc:creator>
		
		<category><![CDATA[CouchDB]]></category>

		<guid isPermaLink="false">http://www.dominux.co.uk/index.php/2008/04/08/and-another-workspace/</guid>
		<description><![CDATA[I have been messing about with CouchDB for a while. Back in 2006 I put together a couple of LotusScript wrapper classes for it using LS2J to do the communications and presenting a friendly API for putting Notes like data in and out of the CouchDB database. Now I have been mucking about with Python [...]]]></description>
			<content:encoded><![CDATA[<p>I have been messing about with CouchDB for a while. Back in 2006 I put together a couple of LotusScript wrapper classes for it using LS2J to do the communications and presenting a friendly API for putting Notes like data in and out of the CouchDB database. Now I have been mucking about with Python and PyGTK trying to build something of a GUI to link with CouchDB. Here are a couple of screenshots to give you a feel of the progress so far. Firstly the workspace, because every client worth having must have a workspace. This one is based on a gtkiconview widget. It really is getting the list of database names directly out of the CouchDB server. The icons are pulled from the filesystem at the moment but I want them to come from each database when I figure out how to work with attachments. They are .png files, I think .svg would work too, along with most other formats you could mention.</p>
<p><img src="http://www.dominux.co.uk/wp-content/uploads/2008/04/workspace-20.png" width="831" height="680" /></p>
<p>This next screenshot shows a form. The form is designed using Glade, a user interface designer which saves UI definitions as XML. The client code reads the XML and inserts the form into a new tab in it&#8217;s own user interface. At the moment the form XML is being read from the filesystem, but that too can come from a document in couchDB.</p>
<p><img src="http://www.dominux.co.uk/wp-content/uploads/2008/04/form.png" /></p>
<p>This will probably run on Windows as well as Linux. I don&#8217;t think GTK (or the Twisted/Python/GTK collection) runs on Mac at the moment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dominux.co.uk/index.php/2008/04/08/and-another-workspace/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Document Freedom day</title>
		<link>http://www.dominux.co.uk/index.php/2008/03/26/document-freedom-day/</link>
		<comments>http://www.dominux.co.uk/index.php/2008/03/26/document-freedom-day/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 12:24:52 +0000</pubDate>
		<dc:creator>Alan Bell</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dominux.co.uk/index.php/2008/03/26/document-freedom-day/</guid>
		<description><![CDATA[Happy Document Freedom day!
Today would be a great day to install OpenOffice.org or Lotus Symphony if you haven&#8217;t already. If you already use these great tools then today would be a great day to show them to someone else.
The Open Document Format is a well designed modern format which any system creating documents for use [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dominux.co.uk/wp-content/uploads/2008/03/dfd08_banner_160x300.png" align="left" height="300" width="160" />Happy <a href="http://www.documentfreedom.org" target="_blank">Document Freedom</a> day!</p>
<p>Today would be a great day to install OpenOffice.org or Lotus Symphony if you haven&#8217;t already. If you already use these great tools then today would be a great day to show them to someone else.</p>
<p>The Open Document Format is a well designed modern format which any system creating documents for use in a wordprocessor, spreadsheet or presentation tool can use. Over the last decade or so the free market in office suites has basically been destroyed by the Microsoft monopoly. This happened not because Microsoft were producing better software, the users of Smartsuite, Wordperfect etc. were really quite happy with their software. It happened because Microsoft got themselves into a position where the format of choice for exchanging documents was .doc and .xls and .ppt. It became the defacto standard. The other products reverse engineered this binary format so they could support this defacto standard, but people discovered that the best way to reliably interchange the Microsoft owned format was to use Microsoft software. Not much of a surprise there really. Microsoft won a lot of business by ensuring a lack of a level playing field.</p>
<p>Open Document Format or ODF is an XML based file format which is designed not to just be the format used by one application but by all of them. Microsoft could support ODF as a native file format for Microsoft Office if they wanted to. It is not a software engineering challenge that they can&#8217;t rise to. They don&#8217;t want to because it would end their convenient distorted marketplace. Moving to ODF as the normal way of interchanging documents between businesses in future will level the playing field and re-enable a free market and free choice of software applications.</p>
<p>The Microsoft binary formats are at the end of their life. Now is the time to choose which direction to go forward. Microsoft want us to use their OOXML format. They desperately want to protect their position and revenue stream, which is understandable,but not my problem.</p>
<p>Document Freedom is in your interest, tell someone about it today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dominux.co.uk/index.php/2008/03/26/document-freedom-day/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Almost a workspace</title>
		<link>http://www.dominux.co.uk/index.php/2008/03/09/almost-a-workspace/</link>
		<comments>http://www.dominux.co.uk/index.php/2008/03/09/almost-a-workspace/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 21:04:12 +0000</pubDate>
		<dc:creator>Alan Bell</dc:creator>
		
		<category><![CDATA[Little Laptops]]></category>

		<category><![CDATA[Lotus]]></category>

		<guid isPermaLink="false">http://www.dominux.co.uk/index.php/2008/03/09/almost-a-workspace/</guid>
		<description><![CDATA[As many of you know, I have been playing with various small Linux based laptops which are going to change the world.  One thing I have noticed on some of them is a familiar user interface. This is the Elonex One, it was launched last week in the UK and I was there to [...]]]></description>
			<content:encoded><![CDATA[<p>As many of you know, I have been playing with various small Linux based laptops which are going to change the world.  One thing I have noticed on some of them is a familiar user interface. This is the Elonex One, it was launched last week in the UK and I was there to play with it, <a href="http://www.olpcnews.com/sales_talk/competition/elonex_one_laptop_review.html" target="_blank">I even did a review</a>. Here is the home screen of the One in tablet mode:</p>
<p><img src="http://www.dis29500.org/wp-content/uploads/2008/03/elonexone.jpg" title="Elonex One" alt="Elonex One" height="452" width="600" /></p>
<p>Now lets look at another small Linux laptop, this is the Asus EeePC which in the UK RM are calling the <a href="http://www.rm.com/Company/Generic.asp?cref=GP1035368&amp;SrcURL=/rmcomhome" target="_blank">RM Minibook</a>:</p>
<p><img src="http://www.dis29500.org/wp-content/uploads/2008/03/eeehome.jpg" title="EeePC" alt="EeePC" height="641" width="600" /></p>
<p>Does that remind you of anything? Let me give you a clue <img src='http://www.dominux.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><img src="http://www.dis29500.org/wp-content/uploads/2008/03/eeenotes.jpg" title="Notes on EeePC" alt="Notes on EeePC" height="651" width="600" /></p>
<p>I couldn&#8217;t get Notes standard for Linux running on it (mainly because of the odd way IBM packaged the install I think) but this is Notes 8 basic for Windows running under Wine.</p>
<p>Of course no article about world changing Linux laptops would be complete without a picture of the One Laptop Per Child XO laptop so here it is:</p>
<p><img src="http://www.dis29500.org/wp-content/uploads/2008/03/xocouch.jpg" height="702" width="600" /></p>
<p>No workspace on that one, but it is running CouchDB (yes, that URL does start with localhost)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dominux.co.uk/index.php/2008/03/09/almost-a-workspace/feed/</wfw:commentRss>
		</item>
		<item>
		<title>dis29500.org has gone a bit Dojo</title>
		<link>http://www.dominux.co.uk/index.php/2008/02/05/dis29500org-has-gone-a-bit-dojo/</link>
		<comments>http://www.dominux.co.uk/index.php/2008/02/05/dis29500org-has-gone-a-bit-dojo/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 22:59:46 +0000</pubDate>
		<dc:creator>Alan Bell</dc:creator>
		
		<category><![CDATA[OOXML]]></category>

		<guid isPermaLink="false">http://www.dominux.co.uk/index.php/2008/02/05/dis29500org-has-gone-a-bit-dojo/</guid>
		<description><![CDATA[I have been updating dis29500.org importing lots of new data in the form of the leaked dispositions and adding a new system for tagging and some Dojo prettyness. Have a play and let me know if anything breaks. Feel free to blog about it too, there will be a bit of a relaunch in the [...]]]></description>
			<content:encoded><![CDATA[<p>I have been updating <a href="http://www.dis29500.org" target="_blank">dis29500.org</a> importing lots of new data in the form of the leaked dispositions and adding a new system for tagging and some Dojo prettyness. Have a play and let me know if anything breaks. Feel free to blog about it too, there will be a bit of a relaunch in the next few days, but it would be nice if the lotus blogosphere got the scoop on it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dominux.co.uk/index.php/2008/02/05/dis29500org-has-gone-a-bit-dojo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The OLPC XO, 30,000 teachers and me</title>
		<link>http://www.dominux.co.uk/index.php/2008/01/22/the-olpc-xo-30000-teachers-and-me/</link>
		<comments>http://www.dominux.co.uk/index.php/2008/01/22/the-olpc-xo-30000-teachers-and-me/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 22:39:02 +0000</pubDate>
		<dc:creator>Alan Bell</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dominux.co.uk/index.php/2008/01/22/the-olpc-xo-30000-teachers-and-me/</guid>
		<description><![CDATA[My followup article on the visit to BETT has now been posted on the OLPC news website I know it is somewhat off topic for my regular Dominux readers, but the BETT show was pretty amazing. You might be at Lotusphere right now with an estimated 8 kilogeeks, but BETT draws in 30 kiloteachers from [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dominux.co.uk/wp-content/uploads/2008/01/beards.jpg" align="right" height="301" width="400" />My followup article on the visit to BETT has now been <a href="http://www.olpcnews.com/use_cases/education/bett_guest_post_happy_ending.html" target="_blank">posted on the OLPC news website</a> I know it is somewhat off topic for my regular Dominux readers, but the BETT show was pretty amazing. You might be at Lotusphere right now with an estimated 8 kilogeeks, but BETT draws in 30 <a href="http://www.google.co.uk/search?q=kiloteachers&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=com.ubuntu:en-GB:official&amp;client=firefox-a" target="_blank">kiloteachers</a> from all over the world. In the picture on the right I am the one who would need some glue and cotton wool if I was wearing a santa suit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dominux.co.uk/index.php/2008/01/22/the-olpc-xo-30000-teachers-and-me/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Day 1 of not being at Lotusphere</title>
		<link>http://www.dominux.co.uk/index.php/2008/01/21/day-1-of-not-being-at-lotusphere/</link>
		<comments>http://www.dominux.co.uk/index.php/2008/01/21/day-1-of-not-being-at-lotusphere/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 12:53:42 +0000</pubDate>
		<dc:creator>Alan Bell</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dominux.co.uk/index.php/2008/01/21/day-1-of-not-being-at-lotusphere/</guid>
		<description><![CDATA[Well day 3 or so if you count all the days I would have been there if I was. Today is the Opening General Session which I am following live as the expected announcements flood in. So why am I here and not there? Basically when the call for abstracts went out I figured I [...]]]></description>
			<content:encoded><![CDATA[<p>Well day 3 or so if you count all the days I would have been there if I was. Today is the Opening General Session which I am <a href="http://www.lotuspherelive.com/lsllinks.nsf/root/macviewer2.htm?opendocument&amp;placeId=OpeningSession" target="_blank">following live</a> as the expected announcements flood in. So why am I here and not there? Basically when the call for abstracts went out I figured I had nothing much to say this year. Last year was great showing OpenOffice.org integrating with Notes. This year the Productivity Editors AKA Symphony is more of a reality, but I am not that interested in them. I am focusing more and more on work under <a href="http://www.theopenlearningcentre.com" target="_blank">The Open Learning Centre</a> brand rather than Dominux and I couldn&#8217;t really justify the cost. So this year I will spend a week in January wishing I was elsewhere, but on the other hand I will eat in February.</p>
<p><a href="http://www.dominux.co.uk/wp-content/uploads/2008/01/ogs.jpg" target="_blank"><img src="http://www.dominux.co.uk/wp-content/uploads/2008/01/ogs.jpg" title="ogs.jpg" alt="ogs.jpg" height="128" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dominux.co.uk/index.php/2008/01/21/day-1-of-not-being-at-lotusphere/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Well I have had an amazing day today!</title>
		<link>http://www.dominux.co.uk/index.php/2008/01/10/well-i-have-had-an-amazing-day-today/</link>
		<comments>http://www.dominux.co.uk/index.php/2008/01/10/well-i-have-had-an-amazing-day-today/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 23:29:58 +0000</pubDate>
		<dc:creator>Alan Bell</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dominux.co.uk/index.php/2008/01/10/well-i-have-had-an-amazing-day-today/</guid>
		<description><![CDATA[Back in December The Open Learning Centre (which is myself and Alan Lord - The Open Sourcerer ) was invited to meet up with The Open Forum Europe to discuss ways we could work together. They invited us to go to the BETT show and help out on their stand talking about Open Source software. [...]]]></description>
			<content:encoded><![CDATA[<p>Back in December <a href="http://www.theopenlearningcentre.com" target="_blank">The Open Learning Centre</a> (which is myself and Alan Lord - <a href="http://www.theopensourcerer.com" target="_blank">The Open Sourcerer</a> ) was invited to meet up with <a href="http://www.theopenforumeurope.com" target="_blank">The Open Forum Europe</a> to discuss ways we could work together. They invited us to go to the <a href="http://www.bettshow.com">BETT show</a> and help out on their stand talking about Open Source software. I said I would bring along my OLPC laptop as an example of Open Source in education.<a href="http://www.theopensourcerer.com/wp-content/uploads/2008/01/bett-1.png" target="_blank"><img src="http://www.theopensourcerer.com/wp-content/uploads/2008/01/bett-1.thumbnail.png" align="right" border="0" height="104" width="128" /></a></p>
<p>Come last week, my laptop had not arrived. We had nothing to show, not much to say. HELP!! We needed a new plan. I borrowed a bit of space on the <a href="http://www.olpcnews.com/use_cases/education/mesh_networking_bett_london.html#comments" target="_blank">olpcnews.com</a> website to appeal for anyone with an OLPC to let us borrow it for BETT. A couple of days later we got a call from <a href="http://tomidavies.blogspot.com/">Tomi Davis</a>, the chief executive of OLPC Nigeria who lives in North London offering some laptops. Yesterday we went to see him and he lent us three of the most excellent OLPC XO laptops. We had a good play with them whilst munching meatballs in the IKEA restaurant then we were ready. Today was manic. The OLPC laptop was on BBC breakfast news this morning. We had loads of people come up and tell us they had just seen the laptop on the TV. One teacher told us that just seeing the laptop made his vist to BETT worth the effort. Tomi joined us for the afternoon and we were interviewed on camera by the show TV crew. We made loads of interesting contacts in the UK and abroad, everyone wants these laptops and they want Open Source software in their schools. Today BECTA (nice bunch of folk, they liked the laptops too) released a report on <a href="http://news.becta.org.uk/display.cfm?cfid=1943053&amp;cftoken=dfb63b2fe4e2aa10-60AE7EE6-D18B-168A-734FB4F648A41B15&amp;resID=35287&amp;page=1658&amp;catID=1633" target="_blank">Microsoft Vista and Office 2007</a> I think their conclusions are just as appropriate for business as for schools.</p>
<p>So today we have been demoing someone else&#8217;s laptops on someone else&#8217;s stand which we got at the last minute through an appeal on someone else&#8217;s website and they are all really really happy that we did it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dominux.co.uk/index.php/2008/01/10/well-i-have-had-an-amazing-day-today/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Charts with Formula language</title>
		<link>http://www.dominux.co.uk/index.php/2007/12/07/google-charts-with-formula-language/</link>
		<comments>http://www.dominux.co.uk/index.php/2007/12/07/google-charts-with-formula-language/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 21:24:35 +0000</pubDate>
		<dc:creator>Alan Bell</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dominux.co.uk/index.php/2007/12/07/google-charts-with-formula-language/</guid>
		<description><![CDATA[Google just released a new toy for us to play with, the Google Charts API. It really is very simple, just construct a URL in a particular way and it gives you a png file.
Lets say for example you have 12 months of sales figures in millions of pounds as below (these are not the [...]]]></description>
			<content:encoded><![CDATA[<p>Google just released a new toy for us to play with, the Google Charts API. It really is very simple, just construct a URL in a particular way and it gives you a png file.</p>
<p>Lets say for example you have 12 months of sales figures in millions of pounds as below (these are not the actual Dominux sales figures)</p>
<p><code>sales:=12:15:16:18:25:30:28:42:32:35:36;</code></p>
<p>then you need to encode this by replacing the numbers with letters where A=0, B=1 etc.</p>
<p><code> valuecodes:="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";<br />
coded:=@Implode(@Transform(sales;"v";@Middle(valuecodes;v;1));"");</code></p>
<p>and now generate a url and put it in an img tag<br />
<code>"&lt;img src=\"http://chart.apis.google.com/chart?cht=lc&amp;chs=200x125&amp;chd=s:"+coded+"\"&gt;"</code></p>
<p>so shove all that into some computed text and make it passthru html to get</p>
<p><img src="http://chart.apis.google.com/chart?cht=lc&amp;chs=200x125&amp;chd=s:MPQSZecqgjk" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dominux.co.uk/index.php/2007/12/07/google-charts-with-formula-language/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
