<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Domi-No-Yes-Maybe</title><link>http://dominoyesmaybe.blogspot.com/</link><description></description><language>en</language><managingEditor>noreply@blogger.com (Steve McDonagh)</managingEditor><lastBuildDate>Tue, 14 Jul 2009 07:59:29 PDT</lastBuildDate><generator>Blogger</generator><atom:id xmlns:atom="http://www.w3.org/2005/Atom">tag:blogger.com,1999:blog-1527573980897631948</atom:id><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/">485</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/">25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/dominoyesmaybe" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><title>More Flexy loveliness = Categorized with Summaries</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/ySjHSZ_feWw/more-flexy-loveliness-categorized-with.html</link><category>Flex For Thick Gits</category><category>Flex</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Tue, 14 Jul 2009 05:54:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-1630696984551018781</guid><description>In the last post I popped up an example of categorized views and in this we will add the additional functionality of Summaries.&lt;br /&gt;&lt;br /&gt;To recap the last post&lt;br /&gt;&lt;br /&gt;01. Create a GroupCollection object&lt;br /&gt;&lt;br /&gt;02. Assign a source property of the Group Collection object to the AdvancedDataGrid's dataProvider&lt;br /&gt;&lt;br /&gt;03. Create a New Grouping Object&lt;br /&gt;&lt;br /&gt;04. Create a new GroupingField Object or Objects that specify the field(s) on which to group&lt;br /&gt;&lt;br /&gt;05. Assign the Grouping property of the GroupingCollection to the Grouping Object&lt;br /&gt;&lt;br /&gt;06. Refresh the Grouping Collection&lt;br /&gt;&lt;br /&gt;07. Assign the GroupingCollection to the Dataprovider or the AdvancedDataGrid.&lt;br /&gt;&lt;br /&gt;But what if you want to have some summarised .. well that is relatively easy too. Lets try for this.. With summary data at the end of each category&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Fkx1-w7uSqA/SlyOwXc4-qI/AAAAAAAAA5I/vRPpZa4b91Q/s1600-h/Sum01.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 360px;" src="http://4.bp.blogspot.com/_Fkx1-w7uSqA/SlyOwXc4-qI/AAAAAAAAA5I/vRPpZa4b91Q/s400/Sum01.jpg" alt="" id="BLOGGER_PHOTO_ID_5358314618244102818" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Ok Lets go.&lt;br /&gt;&lt;br /&gt;01. I go to the GroupingField definitions I created yesterday&lt;br /&gt;Originally  it looked like this &amp;lt;mx:GroupingField name="cat"/&amp;gt;&lt;br /&gt;&lt;br /&gt;02. I drop the / from the end and create a tag pair&lt;br /&gt;&amp;lt;mx:GroupingField name="cat"&amp;gt;&lt;br /&gt;&amp;amp;lt/mx:GroupingField&amp;gt;&lt;br /&gt;&lt;br /&gt;03. Inside this tag pair I create a &amp;lt;mx:summaries&amp;gt; and  &amp;lt;/mx:summaries&amp;gt; tag pair&lt;br /&gt;&lt;br /&gt;04.  Inside the summaries Tags i create a &amp;lt;mx:SummaryRow summaryPlacement="last"&amp;gt; tag pair.. Note the SummaryPlacement attribute. "last" will place it at the end of the category and "first" will put it and the start.&lt;br /&gt;&lt;br /&gt;05. Inside the SummaryRow i create a &amp;lt;mx:fields&amp;gt; tag pair&lt;br /&gt;&lt;br /&gt;06. Inside the fields tag pair i create&lt;br /&gt;&amp;lt;mx:SummaryField dataField="qty" operation="SUM" label="summary" /&amp;gt;&lt;br /&gt;The source of the data is set in dataField which in this case is the "qty" field in the XML pulled from the domino agent.&lt;br /&gt;The Operation is "SUM" (or totalise all the QTY values in the category) other options can be MIN, MAX, AVG and COUNT&lt;br /&gt;&lt;br /&gt;07. I repeat 1-6 for the other field "subcat" that I am summarising on&lt;br /&gt;&lt;br /&gt;08. Your code will now look like this.&lt;br /&gt;&lt;br /&gt;&lt;pre style="border: 1px dashed rgb(153, 153, 153); padding: 5px; overflow: auto; font-family: Andale Mono,Lucida Console,Monaco,fixed,monospace; color: rgb(0, 0, 0); background-color: rgb(238, 238, 238); font-size: 12px; line-height: 14px; width: 100%;"&gt;&lt;code&gt;&amp;lt;mx:Grouping&amp;gt;&lt;br /&gt;             &amp;lt;mx:GroupingField name="cat"&amp;gt;&lt;br /&gt;                 &amp;lt;mx:summaries&amp;gt;&lt;br /&gt;                     &amp;lt;mx:SummaryRow summaryPlacement="last"&amp;gt;&lt;br /&gt;                         &amp;lt;mx:fields&amp;gt;&lt;br /&gt;                             &amp;lt;mx:SummaryField&lt;br /&gt;                                 dataField="qty"&lt;br /&gt;                                 operation="SUM"&lt;br /&gt;                                 label="summary" /&amp;gt;&lt;br /&gt;                         &amp;lt;/mx:fields&amp;gt;&lt;br /&gt;                     &amp;lt;/mx:SummaryRow&amp;gt;&lt;br /&gt;                 &amp;lt;/mx:summaries&amp;gt;&lt;br /&gt;             &amp;lt;/mx:GroupingField&amp;gt;&lt;br /&gt;             &amp;lt;mx:GroupingField name="subcat"&amp;gt;&lt;br /&gt;                 &amp;lt;mx:summaries&amp;gt;&lt;br /&gt;                     &amp;lt;mx:SummaryRow summaryPlacement="last"&amp;gt;&lt;br /&gt;                         &amp;lt;mx:fields&amp;gt;&lt;br /&gt;                             &amp;lt;mx:SummaryField dataField="qty" operation="SUM" label="summary" /&amp;gt;&lt;br /&gt;                         &amp;lt;/mx:fields&amp;gt;&lt;br /&gt;                     &amp;lt;/mx:SummaryRow&amp;gt;&lt;br /&gt;                 &amp;lt;/mx:summaries&amp;gt;&lt;br /&gt;             &amp;lt;/mx:GroupingField&amp;gt;                             &lt;br /&gt;         &amp;lt;/mx:Grouping&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;09. Now i am going to use a flex function called a rendererProvider, which is a MXML component that is used to render a particular item in your project.&lt;br /&gt;&lt;br /&gt;10. I create a new MXML file called SummaryText.mxml in a subdirectory called Renderers off the directory i have my main MXML file in.&lt;br /&gt;&lt;br /&gt;11. The code looks like this and basically all it is , is a LABEL component the which will display the total that is calculated for the category. Note the {data.summary} the .summary refers back to the LABEL I used in the &amp;lt;mx:SummaryField&amp;gt; statement above&lt;br /&gt;&lt;br /&gt;&lt;pre style="border: 1px dashed rgb(153, 153, 153); padding: 5px; overflow: auto; font-family: Andale Mono,Lucida Console,Monaco,fixed,monospace; color: rgb(0, 0, 0); background-color: rgb(238, 238, 238); font-size: 12px; line-height: 14px; width: 100%;"&gt;&lt;code&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;br /&gt;&amp;lt;mx:Label xmlns:mx="http://www.adobe.com/2006/mxml"&lt;br /&gt;text="Total Quantity {data.summary}"&amp;gt;&lt;br /&gt;&amp;lt;/mx:Label&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;12.  Having saved the SummaryText.mxml file I return to the AdvancedDataGrid definition in my main MXML file. Just above the closing &amp;lt;/mx:AdvancedDataGrid&amp;gt; tag I create a new set of tags that attach the renderer to the AdvancedDataGrid. the code looks like this&lt;br /&gt;&lt;br /&gt;&lt;pre style="border: 1px dashed rgb(153, 153, 153); padding: 5px; overflow: auto; font-family: Andale Mono,Lucida Console,Monaco,fixed,monospace; color: rgb(0, 0, 0); background-color: rgb(238, 238, 238); font-size: 12px; line-height: 14px; width: 100%;"&gt;&lt;code&gt;&amp;lt;mx:rendererProviders&amp;gt;&lt;br /&gt;       &amp;lt;mx:AdvancedDataGridRendererProvider&lt;br /&gt;           dataField="summary"&lt;br /&gt;           columnIndex="1"&lt;br /&gt;           columnSpan="2"&lt;br /&gt;           renderer="Renderers.SummaryText"/&amp;gt;&lt;br /&gt;   &amp;lt;/mx:rendererProviders&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;Of note here is the the dataField attribute points at LABEL I used in the &amp;lt;mx:SummaryField&amp;gt; definition (and beware it IS case sensitive)&lt;br /&gt;Also if i set the columnSpan to "0" it will span all columns in the grid. I have chosen 2 here cos it looks better in the finished application.&lt;br /&gt;Also the renderer attribute is made up of [the path to the renderer MXML file].[File name without extenstion] beware this too is case sensitive.&lt;br /&gt;&lt;br /&gt;13. Once that is done ... compile up your app and there you have it.. summary values in your view. Note this is all done by FLEX as I have NOT changed the agent that supplies the data from the Domino application.&lt;br /&gt;&lt;br /&gt;I have Popped this into a NSF and zipped it up with the Flex Builder 3 project files if you want to have a look see.. This is the same file as yesterday.. except the summarised page is FlexView2 ad the SWF is called CategoryView2.swf.. you can get it &lt;a href="http://www.mcdonaghs.utvinternet.com/flexview2.zip"&gt;here&lt;/a&gt; .. Same provisio as yesterday, This will NOT work on your server as you need to change the URL for the HTTPService object and recompile the SWF for it to work!!! Enjoy and again if you have any questions drop me an email :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-1630696984551018781?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/ySjHSZ_feWw" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-07-14T15:59:29.936+01:00</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_Fkx1-w7uSqA/SlyOwXc4-qI/AAAAAAAAA5I/vRPpZa4b91Q/s72-c/Sum01.jpg" height="72" width="72" /><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/07/more-flexy-loveliness-categorized-with.html</feedburner:origLink></item><item><title>Categorised Views in Flex - It's really easy</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/4Eb4DH1pLMQ/categorised-views-in-flex-its-really.html</link><category>Flex For Thick Gits</category><category>Flex</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Mon, 13 Jul 2009 16:52:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-5740862820025178175</guid><description>OK .. a Flex Post for youse in Domino land.&lt;br /&gt;&lt;br /&gt;First some stuff about the what I used.&lt;br /&gt;&lt;br /&gt; Flex 3 SDK&lt;br /&gt; Notepad ++&lt;br /&gt; Domino 8.5.0 server&lt;br /&gt; Domino 8.5.0 DDE&lt;br /&gt;&lt;br /&gt;I was asked recently how I would FLEX a multi-category expand/collapsible view which is admittedly dead easy in the Notes Client. Well it is almost as easy in Flex.&lt;br /&gt;&lt;br /&gt;This is what I did to illustrate the method.&lt;br /&gt;&lt;br /&gt;01. I created a form that looks like this&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Fkx1-w7uSqA/SlvMagRFdMI/AAAAAAAAA4Q/T1EXiB3dIOA/s1600-h/view01.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 481px; height: 197px;" src="http://1.bp.blogspot.com/_Fkx1-w7uSqA/SlvMagRFdMI/AAAAAAAAA4Q/T1EXiB3dIOA/s400/view01.jpg" alt="" id="BLOGGER_PHOTO_ID_5358100937397597378" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;02. I created a view that looks like this&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Fkx1-w7uSqA/SlvMa-zKLDI/AAAAAAAAA4Y/_9ziI7HwH7I/s1600-h/view02.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 184px;" src="http://3.bp.blogspot.com/_Fkx1-w7uSqA/SlvMa-zKLDI/AAAAAAAAA4Y/_9ziI7HwH7I/s400/view02.jpg" alt="" id="BLOGGER_PHOTO_ID_5358100945593576498" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;03. I created an agent that does this&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Fkx1-w7uSqA/SlvMbOcgotI/AAAAAAAAA4g/-S4yDKB_LRc/s1600-h/view03.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 368px;" src="http://2.bp.blogspot.com/_Fkx1-w7uSqA/SlvMbOcgotI/AAAAAAAAA4g/-S4yDKB_LRc/s400/view03.jpg" alt="" id="BLOGGER_PHOTO_ID_5358100949793546962" border="0" /&gt;&lt;/a&gt;04. I opened Notepad++ and created a file called CategoryView1.mxml and typed up these 47 lines of code&lt;br /&gt;&lt;pre style="border: 1px dashed rgb(153, 153, 153); padding: 5px; overflow: auto; font-family: Andale Mono,Lucida Console,Monaco,fixed,monospace; color: rgb(0, 0, 0); background-color: rgb(238, 238, 238); font-size: 12px; line-height: 14px; width: 100%;"&gt;&lt;code&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;br /&gt;&amp;lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="myData.send()"&amp;gt;&lt;br /&gt;&amp;lt;mx:HTTPService id="myData"&lt;br /&gt;            url="http://www.unseenuni.com:81/flexview.nsf/getdata?openagent"&lt;br /&gt;            result="dataResult(event)"/&amp;gt;&lt;br /&gt;&amp;lt;mx:Script&amp;gt;&lt;br /&gt;&amp;lt;![CDATA[&lt;br /&gt;    import mx.controls.Text;&lt;br /&gt;    import mx.controls.Alert;            &lt;br /&gt;    import mx.rpc.events.ResultEvent&lt;br /&gt;    import mx.collections.ArrayCollection&lt;br /&gt;    [Bindable]&lt;br /&gt;    private var items:ArrayCollection = new ArrayCollection&lt;br /&gt;    private var msg:String&lt;br /&gt;    private function dataResult(event:ResultEvent):void&lt;br /&gt;    {&lt;br /&gt;        items= event.result.items.item;&lt;br /&gt;        myGroup.refresh(true)            &lt;br /&gt;    }&lt;br /&gt;    private function dostuff(event:MouseEvent):void&lt;br /&gt;    {&lt;br /&gt;        if(event.target.data.key)&lt;br /&gt;        {&lt;br /&gt;            msg = event.target.data.key        &lt;br /&gt;            mx.controls.Alert.show(msg)&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;]]&amp;gt;&lt;br /&gt;&amp;lt;/mx:Script&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;mx:AdvancedDataGrid x="10" y="10" id="Grid1" designViewDataType="tree" width="719" height="343" creationComplete="myGroup.refresh()"&amp;gt;&lt;br /&gt;    &amp;lt;mx:dataProvider&amp;gt;&lt;br /&gt;        &amp;lt;mx:GroupingCollection id="myGroup" source="{items}"&amp;gt;&lt;br /&gt;            &amp;lt;mx:Grouping&amp;gt;&lt;br /&gt;                &amp;lt;mx:GroupingField name="cat"/&amp;gt;&lt;br /&gt;                &amp;lt;mx:GroupingField name="subcat"/&amp;gt;                &lt;br /&gt;            &amp;lt;/mx:Grouping&amp;gt;&lt;br /&gt;        &amp;lt;/mx:GroupingCollection&amp;gt;&lt;br /&gt;    &amp;lt;/mx:dataProvider&amp;gt;&lt;br /&gt;    &amp;lt;mx:columns&amp;gt;        &lt;br /&gt;        &amp;lt;mx:AdvancedDataGridColumn headerText="Item" dataField="item"/&amp;gt;&lt;br /&gt;        &amp;lt;mx:AdvancedDataGridColumn headerText="Qty" dataField="qty"/&amp;gt;&lt;br /&gt;        &amp;lt;mx:AdvancedDataGridColumn headerText="Price" dataField="price"/&amp;gt;&lt;br /&gt;    &amp;lt;/mx:columns&amp;gt;&lt;br /&gt;&amp;lt;/mx:AdvancedDataGrid&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/mx:Application&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;05. I compiled up the mxml to a SWF using the SDK (a lot easier if you use FLEX BUILDER!)&lt;br /&gt;&lt;br /&gt;06. I Imported the resulting file CategoryView1.swf as a File Resource in my NSF&lt;br /&gt;&lt;br /&gt;07. I created a Page in my NSF with this Passthru HTML&lt;br /&gt;&lt;pre style="border: 1px dashed rgb(153, 153, 153); padding: 5px; overflow: auto; font-family: Andale Mono,Lucida Console,Monaco,fixed,monospace; color: rgb(0, 0, 0); background-color: rgb(238, 238, 238); font-size: 12px; line-height: 14px; width: 100%;"&gt;&lt;code&gt;&amp;lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"&lt;br /&gt;         id="CategoryView1" width="100%" height="100%"&lt;br /&gt;         codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab"&amp;gt;&lt;br /&gt;         &amp;lt;param name="movie" value="CategoryView1.swf" /&amp;gt;&lt;br /&gt;         &amp;lt;param name="quality" value="high" /&amp;gt;&lt;br /&gt;         &amp;lt;param name="bgcolor" value="#869ca7" /&amp;gt;&lt;br /&gt;         &amp;lt;param name="allowScriptAccess" value="sameDomain" /&amp;gt;&lt;br /&gt;         &amp;lt;embed src="CategoryView1.swf" quality="high" bgcolor="#869ca7"&lt;br /&gt;             width="100%" height="100%" name="CategoryView1" align="middle"&lt;br /&gt;             play="true"&lt;br /&gt;             loop="false"&lt;br /&gt;             quality="high"&lt;br /&gt;             allowScriptAccess="sameDomain"&lt;br /&gt;             type="application/x-shockwave-flash"&lt;br /&gt;             pluginspage="http://www.adobe.com/go/getflashplayer"&amp;gt;&lt;br /&gt;         &amp;lt;/embed&amp;gt;&lt;br /&gt; &amp;lt;/object&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;08. I fired up a browser and went to the page's I just created URL and this is what appeared.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Fkx1-w7uSqA/SlvQLOOLWZI/AAAAAAAAA5A/ttwMskQ6Fns/s1600-h/view07.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 203px;" src="http://1.bp.blogspot.com/_Fkx1-w7uSqA/SlvQLOOLWZI/AAAAAAAAA5A/ttwMskQ6Fns/s400/view07.jpg" alt="" id="BLOGGER_PHOTO_ID_5358105072902035858" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;It really is that easy... So lets look at this in detail.&lt;br /&gt;&lt;br /&gt;The Domino agent returns nice simple XML - have a look at ../flexdata.nsf/getdata?openagent and you will see it in "raw" form, althought the parent view is sorted it is not categorised it is an ordinary flat view. We will let Flex do the sorting and grouping once it gets the data.&lt;br /&gt;&lt;br /&gt;The MXML is only 47 lines long and was created as follows :-&lt;br /&gt;(replace [] with &amp;lt; adn &amp;gt;)&lt;br /&gt;01. I created an application&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;[mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"]&lt;br /&gt;&lt;br /&gt;[/mx:Application]&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;This defines the application and it is always like this, note the tag pair is closed!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;02. Inside the application tags I place a definition of the HTTPService I am going to use to provide the data to the application&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;[mx:HTTPService id="myData" &lt;br /&gt;             url="http://www.unseenuni.com:81/flexview.nsf/getdata?openagent"&lt;br /&gt;             result="dataResult(event)"/]&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;This breaks down into&lt;br /&gt;&lt;b&gt;id&lt;/b&gt; this is the id by which I will refer to the service later in the code&lt;br /&gt;&lt;b&gt;url&lt;/b&gt; this is the URL which will provide the data&lt;br /&gt;&lt;b&gt;result&lt;/b&gt; this is the actionscript code that will run when data is recieved from the url&lt;br /&gt;&lt;br /&gt;03. The next section is the Actionscript code that my flex application will use&lt;br /&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;&amp;lt;mx:Script&amp;gt;&lt;br /&gt;    &amp;lt;![CDATA[&lt;br /&gt;        import mx.controls.Text;&lt;br /&gt;        import mx.controls.Alert;                &lt;br /&gt;        import mx.rpc.events.ResultEvent&lt;br /&gt;        import mx.collections.ArrayCollection&lt;br /&gt;        [Bindable]&lt;br /&gt;        private var items:ArrayCollection = new ArrayCollection&lt;br /&gt;        private var msg:String&lt;br /&gt;        private function dataResult(event:ResultEvent):void &lt;br /&gt;        {&lt;br /&gt;            items= event.result.items.item;    &lt;br /&gt;            myGroup.refresh(true)                &lt;br /&gt;        }       &lt;br /&gt;    ]]&amp;gt;&lt;br /&gt;&amp;lt;/mx:Script&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;Firstly I import the various Adobe Supplied libaries that i will need&lt;br /&gt;Then I create a Bindable ArrayCollection object call items, this will store the returned data.&lt;br /&gt;Then I define the &lt;b&gt;dataResult()&lt;/b&gt; function that I attached to the HTTPService object. Remember this code gets executed when the URL in the HTTPService recieves data from the URL. In this instance the items ArrayCollection is loaded with the data returned from the URL. FLEX will see it as XML and I can access it through the event.result object by name.&lt;br /&gt;&lt;br /&gt;04. Now I define my on screen objects&lt;br /&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;&amp;lt;mx:AdvancedDataGrid x=&amp;quot;10&amp;quot; y=&amp;quot;10&amp;quot; id=&amp;quot;Grid1&amp;quot; designViewDataType=&amp;quot;tree&amp;quot; width=&amp;quot;719&amp;quot; height=&amp;quot;343&amp;quot; creationComplete=&amp;quot;myGroup.refresh()&amp;quot;&amp;gt;&lt;br /&gt;        &amp;lt;mx:dataProvider&amp;gt;&lt;br /&gt;            &amp;lt;mx:GroupingCollection id=&amp;quot;myGroup&amp;quot; source=&amp;quot;{items}&amp;quot;&amp;gt;&lt;br /&gt;                &amp;lt;mx:Grouping&amp;gt;&lt;br /&gt;                    &amp;lt;mx:GroupingField name=&amp;quot;cat&amp;quot;/&amp;gt;&lt;br /&gt;                    &amp;lt;mx:GroupingField name=&amp;quot;subcat&amp;quot;/&amp;gt;                    &lt;br /&gt;                &amp;lt;/mx:Grouping&amp;gt;&lt;br /&gt;            &amp;lt;/mx:GroupingCollection&amp;gt;&lt;br /&gt;        &amp;lt;/mx:dataProvider&amp;gt;&lt;br /&gt;        &amp;lt;mx:columns&amp;gt;            &lt;br /&gt;            &amp;lt;mx:AdvancedDataGridColumn headerText=&amp;quot;Item&amp;quot; dataField=&amp;quot;item&amp;quot;/&amp;gt;&lt;br /&gt;            &amp;lt;mx:AdvancedDataGridColumn headerText=&amp;quot;Qty&amp;quot; dataField=&amp;quot;qty&amp;quot;/&amp;gt;&lt;br /&gt;            &amp;lt;mx:AdvancedDataGridColumn headerText=&amp;quot;Price&amp;quot; dataField=&amp;quot;price&amp;quot;/&amp;gt;&lt;br /&gt;        &amp;lt;/mx:columns&amp;gt;&lt;br /&gt;    &amp;lt;/mx:AdvancedDataGrid&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;I use the AdvancedDataGrid because it has support for Grouped (read Categorised Objects) you will not I do not ascribe a datasource to the AdvancedDataGrid Object. Instead I create a DataProvider object INSIDE the AdvancedDataGrid Tag pair! very important than!&lt;br /&gt;&lt;br /&gt;Inside the DataProvider Object I create first a GroupingCollection object, I would do this even if I had only one category. Inside that I define a Grouping object and then as manu GroupingField objects as I need. In this instance the Fields Cat and SubCat.&lt;br /&gt;&lt;br /&gt;I then define the Columns I want to display. Note i do NOT include the columns that will be my groups!&lt;br /&gt;&lt;br /&gt;And that is it... compile it up, stick it in your NSF and Robert is your mother's brother.&lt;br /&gt;&lt;br /&gt;I have uploaded the NSF and FLEX BUILDER PROJECT &lt;a href="http://www.mcdonaghs.utvinternet.com/flexview.zip"&gt;here&lt;/a&gt;.. but the NSF will not work on your server unless you change the URL in the MXML from my server to your own, recompile the SWF and delete the orginal SWF from the NSF and attach the new one as a new file resource.. i include it only so you can see the code not run it :-)&lt;br /&gt;&lt;br /&gt;If you have any questions just drop me a line ... enjoy&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-5740862820025178175?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/4Eb4DH1pLMQ" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-07-14T01:51:52.483+01:00</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_Fkx1-w7uSqA/SlvMagRFdMI/AAAAAAAAA4Q/T1EXiB3dIOA/s72-c/view01.jpg" height="72" width="72" /><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/07/categorised-views-in-flex-its-really.html</feedburner:origLink></item><item><title>Tinariwen - New Album Companions - 5 Star wonderful!</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/ruY7ULKAL1M/tinariwen-new-album-companions-5-star.html</link><category>Music</category><category>World</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Sun, 12 Jul 2009 09:44:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-1593054386247718372</guid><description>I discovered the Tuareg Poet / Guitarist legends Tinariwen last year and YIPEE a new album is out.. This is Lulla from the new album "Companions" If you like new exciting sounds give it a listen close your eyes and think desert ... enjoy&lt;br /&gt;&lt;br /&gt;&lt;object width="640" height="385"&gt;&lt;param name="movie" value="http://www.youtube.com/v/WcqlOq1cjjc&amp;amp;hl=en&amp;amp;fs=1&amp;amp;"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="never"&gt;&lt;embed src="http://www.youtube.com/v/WcqlOq1cjjc&amp;amp;hl=en&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="never" width="640" height="385"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-1593054386247718372?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/ruY7ULKAL1M" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-07-12T17:45:04.972+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/07/tinariwen-new-album-companions-5-star.html</feedburner:origLink></item><item><title>Some thoughts on Tradition</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/E1VzrII9890/some-thoughts-on-tradition.html</link><category>Religion</category><category>Rant</category><category>Politics</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Sun, 12 Jul 2009 06:27:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-2013002531831706621</guid><description>I have recently returned from a business trip to the far east and arrived back just in time for the annual tradition of the 12th of July. The "Glorious Twelfth" as it is known in some circles is the traditional celebration of the The Battle of Boyne in 1690 when the Protestant King William of Orange gave the Catholic King James a bloody nose. Now it was far from the simple matter of two denominations of Christianity being belligerent, it was more about the power of the royal families in Europe at the time. In fact Pope Alexander VIII lent King William troops for the war against King James. King William and the Pope and several other countries were in the League of Ausburg which was set up to defend the Palatinate of the Rhine from the French. A fact sadly lacking from the history expounded by organisations like the Orange Order who much prefer the world view that the Battle of the Boyne was a "Protestant Victory for a Protestant People" which is in fact a load of revisionist knob cheese, but what is a bit of revisionism when it is the absolute right given by God and justified by Luther, Calvin, Knox and the tooth fairy to be a raving bigot at the drop of a bowler hat each July.&lt;br /&gt;&lt;br /&gt;I overheard a conversation at the airport where a grandmother was telling her grandchildren of the "good old days" when her grandfather paid her 1 old penny each time she sat on his knee and shouted "To hell and the flames with the pope and all Catholics". Ah yes the good old days of vitriol and hatred ... such a fine gift to pass on to one's children!&lt;br /&gt;&lt;br /&gt;When I was a teenager if you travelled outside the streets where you were known it was inevitable that you would be asked "What are you?". Now for other traditional forms of hatred like racism it is easy to pick your targets by visual cues alone. Picking which person to abuse is harder when based on religion hence the blunt interrogative method. It became second nature for most to quickly work out who was doing the asking and switch sides accordingly, this whilst being ethically suspect was a sure fire way to avoid getting a black eye or worse. Needless to say one had to learn the responses to the follow up questions of "Well sing the Sash" or "Say the hail Mary" but that was a small price to pay.&lt;br /&gt;&lt;br /&gt;You could not answer "neither", that was not an option, you could not sit on the fence. You had to plant yourself firmly on one side or the other and be prepared to defend that position from all comers, needless to say expressions of distrust or outright hatred of the "other" side were mandatory if you were to be believed.&lt;br /&gt;&lt;br /&gt;As a callow youth the painful experience of having to fight off both sides soon lead to the my questionable position of variable allegiance, although in hindsight I was put in the position of having to repeat parrot like the vitriol of one side or the other, something I could not and hopefully would not allow myself to do now.&lt;br /&gt;&lt;br /&gt;Now do not get me wrong, tradition can be a wonderful thing. The traditions of openness, friendship, philanthropy and generosity of spirit are fine things to pass on to the next generation. Such traditions are the glue that holds societies together and makes them work. However on the other side of the coin are the traditions that are divisive, that are driven by the sure and certain knowledge that your tradition is the ONLY one that is right, the only one that is useful and in this case that it is the only one that is God Given to you and your side only.&lt;br /&gt;&lt;br /&gt;Traditions are dangerous when they are the only thing that defines who you are. I do not define myself by the country that I live in, nor do I wrap myself in the dubious comfort of a flag, as this only succeeds in hiding me from others. If I was holding that tightly onto a flag how could I hug a stranger or extend them the hand of friendship?.. and there is the rub ... i do not think that is part of the traditions I see unfolding each July. There are no hands of friendship, no hugs expect for those in your tribe. It is all inward looking, incestuous, foetid reinforcement of generationally transmitted regligious hatred and distrust.&lt;br /&gt;&lt;br /&gt;Tomorrow, tens of thousands of bowler hatted, white gloved men will march behind banners that display their commitment to the British monarch (but ONLY with the strict condition that the monarch is Protestant, or more exactly, not Catholic) and commitment to the Bible (the protestant one not the catholic one). The banners they march behind will be flanked by men carrying swords and pikestaffs in rememberance of those that were killed and the fact that they needed to be killed to protect the faith. There will be marching bands playing military marching tunes mixed with sectarian anthems, some of which will have words that call the listener to arms to defend with violence the God given right to be Protestant. There will be acts of worship in which ministers will  pillory the "church of rome" and declaimed it as the worst evil in the world. There will be speeches where the leaders of the Orange tribes will extole their members to stick together for God and Country at all and any cost.&lt;br /&gt;&lt;br /&gt;This is not a tradition I want any part of.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-2013002531831706621?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/E1VzrII9890" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-07-12T23:03:23.661+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/07/some-thoughts-on-tradition.html</feedburner:origLink></item><item><title>Oh Joy .. here comes July :-( or "The Joy Of Flags"</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/RAMNGhHvMV0/oh-joy-here-comes-july-or-joy-of-flags.html</link><category>Ulster</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Mon, 22 Jun 2009 14:42:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-7818063301766060220</guid><description>I am sat here in my front room watching some chaps who don't live on the estate hang flags on the lamp posts. This is because it is only a couple of weeks until that annual orgy of all things "orange" and "protestant" gets under way.&lt;br /&gt;&lt;br /&gt;This year there are a lot less flags, mainly due to the fact that when the wee toerags whose appear to communicate in monosyllabic grunts, groin scratching and positioning of a Burberry/Rangers FC baseball cap at varying angles upon their echoingly empty heads, came to the door and asked "wannagiveussomemoneyfurdeflagseh?" I, like many of my neighbours when we had taken a moment or two to decrypt this strange request replied "Ah no". This could be because folks are a bit strapped for cash this year or it could be that being surrounded by 100's of flags all flapping in the ever present Norn Iron wind roughly level with your bedroom window was just a bit intrusive. "Tradition" or not, sleep deprivation can be a right royal pain in the arse.&lt;br /&gt;&lt;br /&gt;Now it has to be said we have a plethora of flags and for some it is a requirement equivalent with breathing that they fly every fecking one from every lamp post in the province.&lt;br /&gt;&lt;br /&gt;At the top of the heap the Union Jack, the flag of  the "United Kingdom of Great Britain and Northern Ireland" to give it the full rather boring name.. this one&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://cain.ulst.ac.uk/images/symbols/union2.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 248px; height: 124px;" src="http://cain.ulst.ac.uk/images/symbols/union2.gif" alt="" border="0" /&gt;&lt;/a&gt;Then you have the "Government of Northern Ireland Flag" which is the sort of official flag of the six counties&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://cain.ulst.ac.uk/images/symbols/northern.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 160px; height: 98px;" src="http://cain.ulst.ac.uk/images/symbols/northern.gif" alt="" border="0" /&gt;&lt;/a&gt;Then you have the "Alternate Northern Ireland Flag" Which has no crown and a wee union jack in the top corner. This is perceived to be a UDA (Ulster Defence association - an illegal paramilitary/terrorist/drug dealing group)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://cain.ulst.ac.uk/images/symbols/northern4.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 273px; height: 137px;" src="http://cain.ulst.ac.uk/images/symbols/northern4.gif" alt="" border="0" /&gt;&lt;/a&gt;Then you have the flag of the Orange order, a protestant religious organisation famed for it's bowler hats, sashes and it's unofficial war cry of "Fuck the Pope" (i am being crass here, however on the 12th july when certain songs are played at the BIG parade you will hear this with a monotonous regularity and on walls in Belfast you will see FTP scrawled on walls and it is not the work some underground group of TCP/IP graffitioso)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://cain.ulst.ac.uk/images/symbols/orangeflag3.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 160px; height: 104px;" src="http://cain.ulst.ac.uk/images/symbols/orangeflag3.gif" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Then there is the King Billy Flag .. another sort of  Orange order flag&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://i.ebayimg.com/09/%21BUm5hV%21BWk%7E$%28KGrHgoH-DQEjlLlt51ZBKOVsCVM+w%7E%7E_1.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 222px;" src="http://i.ebayimg.com/09/%21BUm5hV%21BWk%7E$%28KGrHgoH-DQEjlLlt51ZBKOVsCVM+w%7E%7E_1.JPG" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Not to be left out the UVF (Ulster Volunteer Force - Another illegal paramilitary,terrorist organisation) and the YCV (Young Citizen Volunteers - Much the same as the UVF but without the moustaches)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.irishnews.com/webimages/20080701/news3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 545px; height: 350px;" src="http://www.irishnews.com/webimages/20080701/news3.jpg" alt="" border="0" /&gt;&lt;/a&gt;And here are more.. including Dutch flags (King Billy was Dutch) Scottish flags and even  Israeli flags (The Meyer &amp;amp; Cohen Hassidic Loyal Rising Sons of William temperance and Ohi Vey Battalion perhaps??) Anyway there are lots and lots and lots of flags on BOTH sides and as they fly in estates all over the north each flutter picks at the scabs of a 1000 insults both real and imagined.&lt;br /&gt;&lt;br /&gt;So here I sit watching a plethora of flags flutter in the stiff breeze and there in the background several of young Ulster Protestantism's finest are singing along to the not terribly well played battle flute. &lt;span style="font-style: italic;"&gt;"We are... We are... We are the billy boys! We are up to our necks in Fenian blood, surrender or you die"&lt;/span&gt; whilst necking a bottle of Buckfast tonic .. well after all it is traditional so it must be right... isn't it?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-7818063301766060220?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/RAMNGhHvMV0" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-06-22T23:42:20.426+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/06/oh-joy-here-comes-july-or-joy-of-flags.html</feedburner:origLink></item><item><title>The "YEC " scientific method</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/X1kg_YjqBnI/yec-scientific-method.html</link><category>Rant</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Thu, 18 Jun 2009 15:26:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-5549576146428051170</guid><description>I recently had a run in with some anti-Darwin YEC (Young Earth Creationists) I am a card carrying "Grumpy Old Atheist Fart" and as I get older my capacity to put up with the tawdry dribbling of the wilful ignorant gets less and less.&lt;br /&gt;&lt;br /&gt;In a perfect proof of &lt;b&gt;Godwin's Rule of Nazi Analogies&lt;/b&gt; i was sent this&lt;br /&gt;&lt;br /&gt;&lt;a href="http://creation.com/the-holocaust-and-evolution"&gt;"However, the Western nations have not learned the lessons of the horrific wars and genocides this century. Evolution is today entrenched in our universities even more than it was in Nazi Germany. "&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;and a sentence later not satisfied with reductio ad hitlerum, Darwin is up to his evil ways again 150 years after his death.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.blogger.com/And%20our%20report%20of%20the%20Columbine%20High%20School%20massacre%20documents%20the%20on-going%20effects%20of%20evolutionary%20thinking%20in%20the%20young"&gt;.. our report of the Columbine High School massacre documents the on-going effects of evolutionary thinking in the young&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;This load of advanced gobshitery set me to thinking and I believe I can now reveal that YEC's have adapted the standard Scientific Method the orginal one goes like this&lt;br /&gt;&lt;br /&gt;1. Observation and description of a phenomenon or group of phenomena.&lt;br /&gt;&lt;br /&gt;2. Formulation of an hypothesis to explain the phenomena. In physics, the hypothesis often takes the form of a causal mechanism or a mathematical relation.&lt;br /&gt;&lt;br /&gt;3. Use of the hypothesis to predict the existence of other phenomena, or to predict quantitatively the results of new observations.&lt;br /&gt;&lt;br /&gt;4. Performance of experimental tests of the predictions by several independent experimenters and properly performed experiments.&lt;br /&gt;&lt;br /&gt;And this has evolved (ooops sorry strike that) stayed the same into the &lt;span style="font-weight: bold;"&gt;YEC METHOD&lt;/span&gt; which goes like this&lt;br /&gt;&lt;br /&gt;1.  Observe the scientists observing Phenomena, look grumpy, pray a bit, blame Darwin for the Holocaust.&lt;br /&gt;&lt;br /&gt;2.  Start mining "The Sunday Sport" and "The National Enquirer" for phenomena that could be useful later on. "Aircraft buried under 1000 years of ice" is a good one.&lt;br /&gt;The startling news that the Piltdown Man was a fake is another. Stop looking grumpy and try looking saintly for a while, grow a Moses-esque beard, pray some more, twiddle thumbs and wait for a scientist to publish something you don't like. Blame Darwin for Columbine, Pol Pot,the third world debt and the disappearance of Orange Smarties.&lt;br /&gt;&lt;br /&gt;3.  Have a good long pray, fleece some true believers of a few more quid, wonder why scientists bother with all this work since they are wrong all the time ... blame Satan ... Jesus tells you that Darwin IS Satan and he hid his horns using genetic manipulation.&lt;br /&gt;&lt;br /&gt;4.  Form a "ministry", start a web site, make a documentary about how Darwin IS actually Satan . Prove beyond doubt that Darwin's Beard is a portent of the end of times. Form a hypothesis that affirms that the Man and, consequently, the Earth, is in the centre of the creation, prove hypothesis using bible verses ,repeal Copernican celestial model because Copernicus was a Catholic and very probably a relative of Darwin and therefore the second cousin twice removed of "the beast" .. underline this by showing their beards were VERY similar.&lt;br /&gt;&lt;br /&gt;5.  Ban Science for being always wrong, co-opt the Orange Order as the NEW Protestant Inquisition, burn Richard Dawkins at the stake even if he does recant.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-5549576146428051170?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/X1kg_YjqBnI" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-06-19T00:17:42.143+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/06/yec-scientific-method.html</feedburner:origLink></item><item><title>Woooot I didnt know DVD's came like this?</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/J-P14rkAs3g/woooot-i-didnt-know-dvds-came-like-this.html</link><category>Random</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Wed, 17 Jun 2009 01:02:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-5503099186171461918</guid><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.psychohistorian.org/img/atheism/humour/dvd_player.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 520px; height: 390px;" src="http://www.psychohistorian.org/img/atheism/humour/dvd_player.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thanks to  ....&lt;a href="http://www.psychohistorian.org/img/atheism/humour/dvd_player.jpg"&gt; PshcyoChristian.org&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-5503099186171461918?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/J-P14rkAs3g" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-06-17T09:05:20.049+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/06/woooot-i-didnt-know-dvds-came-like-this.html</feedburner:origLink></item><item><title>Shock Horror Coding Pencil High level Probe - I am speaking at UKLUG</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/hDL83qRCxRg/shock-horror-coding-pencil-high-level.html</link><category>UKLUG 2009</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Fri, 12 Jun 2009 15:13:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-8514013579716411599</guid><description>Well it had to come sometime. ILUG, UKLUG, DNUG, Lotusphere all have a long and rich history of excellent speakers covering topics of interest with alacrity, elegance, wit and vigour. Well for an hour during UKLUG on the 8th or 9th of October that is all due to change, for tis on one of those days I will take the stage to deliver with my compadre in arms&lt;a href="http://www.billbuchan.com"&gt; "Will" Bill Buchan&lt;/a&gt; an hours worth of fun filled romping around the world of RIAs.&lt;br /&gt;&lt;br /&gt;So if you are coming to UKLUG in October , please stop by and heckle, we may be providing things to throw and Bill and I promise to make it more difficult by moving around a lot and filling the silence with geek chat delivered in a variety of strange accents at great speed. (Subtitles will be provided)&lt;br /&gt;&lt;br /&gt;We will be expecting a certain amount of audience participation and if you are planning to attend you should start practising the following catchphrases now ...&lt;br /&gt;&lt;br /&gt;"OOOOOOOH My life!"&lt;br /&gt;&lt;br /&gt;"FECK! ARSE! DRINK! GURLS!"&lt;br /&gt;&lt;br /&gt;"Could'nt find his arse with both hands and a Tom Tom"&lt;br /&gt;&lt;br /&gt;"Flex? With this waistline I should cocco!"&lt;br /&gt;&lt;br /&gt;"Warren ...  I'm really an admin...honestly....please let me out"&lt;br /&gt;&lt;br /&gt;You can find out more about what is going on here on the &lt;a href="http://www.uklug.info"&gt;UKLUG SITE&lt;/a&gt; if you haven't made you mind up yet I would advise you to get your skates on as the books are is very nearly full which is testimony to the fact that the rest of the speakers are way way better than me!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-8514013579716411599?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/hDL83qRCxRg" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-06-13T01:06:48.788+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/06/shock-horror-coding-pencil-high-level.html</feedburner:origLink></item><item><title>Panda Bear - a Boon for Quickr Users from SNAPPS</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/nBGoEK4oSmI/panda-bear-boon-for-quickr-users-from.html</link><category>SNAPPS</category><category>Quickr</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Fri, 12 Jun 2009 14:00:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-6947527090206051810</guid><description>There are dozens of links to this already, however just in case you don't follow the Notes Yellow Blogs.. This is just out from those awfully nice people at SNAPPS&lt;br /&gt;&lt;a href=" http://bit.ly/LuDff "&gt;Panda Bear&lt;/a&gt; which is a nice alternative to the "Quickr Connectors" supplied with Quickr and because it is an ADOBE Air App, much less&lt;br /&gt;intrusive when installed on your PC.&lt;br /&gt;&lt;br /&gt;I was lucky enough to have been using it for a while now, the folks at SNAPPS called it "testing" .. but I managed not to break it, which for me is strange and for Panda Bear a ringing endorsement of it's stability and fragility.&lt;br /&gt;&lt;br /&gt;If you have a mainly file share Quickr Installation and need a quick and easy method of getting files into and out of your Quickr Places, Panda bear is the tool for you.&lt;br /&gt;&lt;br /&gt;Take a trip over to the &lt;a href="http://bit.ly/LuDff"&gt;SNAPPS site&lt;/a&gt; and check out and A+ Gold Star cracking app!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-6947527090206051810?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/nBGoEK4oSmI" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-06-12T22:07:06.117+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/06/panda-bear-boon-for-quickr-users-from.html</feedburner:origLink></item><item><title>Notes Client Tip - Dragging and Dropping documents into a calendar</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/AtoE4Km9cCs/notes-client-tip-dragging-and-dropping.html</link><category>Lotusscript</category><category>Notes Client</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Fri, 12 Jun 2009 11:54:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-3218945370454916951</guid><description>I was asked today the following question,&lt;br /&gt;&lt;blockquote&gt;Why can't we drag a customer from a customer list onto our Customer Visit Calendar and make an appointment with them that way?&lt;br /&gt;&lt;/blockquote&gt;Good question. We already have that functionality on the web interface. Popup a customer list, select the customer or customers from the list and drag them to the day you want to schedule the visit and it auto creates the document for that customer on the day you dragged the document(s) onto.&lt;br /&gt;&lt;br /&gt;I sucked my pencil for a bit, scratched various bits of my anatomy that would not be misconstrued by my colleagues as offensive and hummed and ahhed. I pinged &lt;a href="http://www.nsftools.com/"&gt;Julian Robichaux&lt;/a&gt; and bounced the idea off him. Can I drag docs which are not calendar docs from an embedded view on a page (or form) onto calendar view embedded on the same form and create a document or documents based on the QueryDragDrop event of the calendar based on the documents that I had dropped.&lt;br /&gt;&lt;br /&gt;Julian confirmed my initial thoughts that this was a non-runner because when a view is embedded you can't seem to access the drag drop events - BUMMER! So I then mentioned a word not mentioned in polite society much these days and to give Julian credit it didn't finch or berate me in any way. "What about Framesets?" I said&lt;br /&gt;&lt;br /&gt;After a bit of futtering about we discovered that yes you could accecss the Drag and Drop events from FrameA to FrameB and Joy of Joys the CurrentView in the UIWorkspace FrameB's QueryDragDrop event was the view from FrameA! _ YIPEE!&lt;br /&gt;&lt;br /&gt;I took my leave of Julian with much thanking and promises of beer and proceeded to have a bit of a debug to see what I could do.&lt;br /&gt;&lt;br /&gt;I created a wee test NSF with two forms CUSTOMER and CALENT&lt;br /&gt;Followed by a View of just the CUSTOMER forms and a Calendar view of the CALENT forms&lt;br /&gt;A Frameset was created and in the LHS frame I popped CUSTOMER view and in the RHS frame CALENT calendar view.&lt;br /&gt;&lt;br /&gt;On the CALENT view's QueryDragDrop I entered some code and had a ferret about in&lt;br /&gt;what was an what was not passed, this is what I found out.&lt;br /&gt;&lt;br /&gt;If you grab one doc from the CUSTOMER view and drop it over the calendar, then there are no documents in the UIView.Documents collection, there is a CaretNoteID that links to the dragging document in the UIView.&lt;br /&gt;&lt;br /&gt;If you select more than one document from the CUSTOMER view and drag it over the Calendar then the UIView.documents collection contains the documents you selected.&lt;br /&gt;If you actually select (the wee tick in the gutter) one document the UIView.documents will contain that one document, but you cannot count on users doing that.&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;Sub Querydragdrop(Source As Notesuiview, Continue As Variant)&lt;br /&gt; &lt;br /&gt; Dim ThisSession As New NotesSession&lt;br /&gt; Dim ThisDB As notesdatabase &lt;br /&gt; Dim ThisUI As New NotesUIWorkspace&lt;br /&gt; Dim ThisUIV As NotesUIView&lt;br /&gt; Dim ThisDC As notesdocumentcollection&lt;br /&gt; Dim OldDoc As NotesDocument&lt;br /&gt; Dim NewDoc As NotesDocument&lt;br /&gt; &lt;br /&gt; Set ThisDB = ThisSession.CurrentDatabase &lt;br /&gt; Set ThisUIV = ThisUI.CurrentView&lt;br /&gt; ' *** Test to see if the view I am dragging from is the calendar or the customer list&lt;br /&gt; If ThisUIV.ViewName &lt;&gt; "Calendar" Then  &lt;br /&gt;  Set ThisDC = ThisUIV.Documents&lt;br /&gt;  '*** Well you must have dragged SOMETHING to fire the event so get it from&lt;br /&gt;  '*** from the CaretNoteId  &lt;br /&gt;  If ThisDC.Count = 0 Then &lt;br /&gt;   Set OldDoc = ThisDB.getDocumentById(ThisUIV.CaretNoteID)&lt;br /&gt;   Set NewDoc = New NotesDocument(ThisDB)&lt;br /&gt;   NewDoc.Form = "CalEnt"&lt;br /&gt;   NewDoc.Customer = OldDoc.Customer(0)&lt;br /&gt;   NewDoc.City = OldDoc.City(0)&lt;br /&gt;   NewDoc.Date = Source.CalendarDateTime&lt;br /&gt;   NewDoc.Time =Format(Now,"hh:mm")&lt;br /&gt;   NewDoc.Status = "Planned"&lt;br /&gt;   Call NewDoc.Save(True,False) &lt;br /&gt;  Else&lt;br /&gt;   Set OldDoc = ThisDC.GetFirstDocument&lt;br /&gt;   Do While Not (OldDoc Is Nothing)&lt;br /&gt;    Set NewDoc = New NotesDocument(ThisDB)&lt;br /&gt;    NewDoc.Form = "CalEnt"&lt;br /&gt;    NewDoc.Customer = OldDoc.Customer(0)&lt;br /&gt;    NewDoc.City = OldDoc.City(0)&lt;br /&gt;    NewDoc.Date = Source.CalendarDateTime&lt;br /&gt;    NewDoc.Time =Format(Now,"hh:mm")&lt;br /&gt;    NewDoc.Status = "Planned"&lt;br /&gt;    Call NewDoc.Save(True,False) &lt;br /&gt;    Set OldDoc = ThisDC.GetNextDocument(OldDoc)&lt;br /&gt;   Loop&lt;br /&gt;  End If&lt;br /&gt; Else&lt;br /&gt;  '*** This is the calendar and I am moving docs around inside it&lt;br /&gt;  Set ThisDC = ThisUIV.Documents&lt;br /&gt;  If ThisDC.Count = 0 Then Exit Sub&lt;br /&gt;  Set OldDoc = ThisDC.GetFirstDocument()&lt;br /&gt;  Do While Not (OldDoc Is Nothing)&lt;br /&gt;   OldDoc.Date = Source.CalendarDateTime&lt;br /&gt;   Call OldDoc.Save(True,False)&lt;br /&gt;   Set OldDoc = ThisDC.GetNextDocument(OldDoc)&lt;br /&gt;  Loop&lt;br /&gt; End If &lt;br /&gt; Call ThisUI.ReloadWindow()&lt;br /&gt; &lt;br /&gt;End Sub&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;This code allows the user to drag a customer (with or without tick selction) or customers from the customer list in the left hand frame onto the calendar and create a calendar entry for that customer on the dropped on date. The user can also safely drag and drop calendar entries around inside the calendar.&lt;br /&gt;&lt;br /&gt;Useful and cool. :-)&lt;br /&gt;&lt;br /&gt;I have popped the NSF up &lt;a href="http://www.mcdonaghs.utvinternet.com/excal.nsf"&gt;here&lt;/a&gt; so if you are interested in seeing it in action you can have a go.&lt;br /&gt;&lt;br /&gt;Enjoy ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-3218945370454916951?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/AtoE4Km9cCs" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-06-12T21:39:24.289+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/06/notes-client-tip-dragging-and-dropping.html</feedburner:origLink></item><item><title>Be sure to tell your Flash Drives you love them</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/F5Ifzirly68/be-sure-to-tell-your-flash-drives-you.html</link><category>Nostalgia</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Mon, 08 Jun 2009 15:31:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-962445386617459263</guid><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Fkx1-w7uSqA/Si2RzNDBUcI/AAAAAAAAA4I/3HH427y7558/s1600-h/image0011.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 318px; height: 400px;" src="http://1.bp.blogspot.com/_Fkx1-w7uSqA/Si2RzNDBUcI/AAAAAAAAA4I/3HH427y7558/s400/image0011.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5345088641620332994" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;In September 1956 IBM launched the 305 RAMAC, the first computer with a hard disk drive and that beauty is it The HDD weighed over a ton and stored 5 MB of data.&lt;br /&gt;So send some love to your 32gb Memory stick right now!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-962445386617459263?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/F5Ifzirly68" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-06-08T23:35:13.028+01:00</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_Fkx1-w7uSqA/Si2RzNDBUcI/AAAAAAAAA4I/3HH427y7558/s72-c/image0011.jpg" height="72" width="72" /><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/06/be-sure-to-tell-your-flash-drives-you.html</feedburner:origLink></item><item><title>International "NotesBeer'n'Tweetup" Invite Hong Kong</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/BMqEb29fqWI/international-notesbeerntweetup-invite.html</link><category>NotesBeer</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Mon, 08 Jun 2009 09:14:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-3227702425120143213</guid><description>I am off on my travels again this month, and I will be in Hong Kong (well Kowloon to be exact) from the 25th June until the 3rd July. So if any local Notesgeeks or allied trades from the Hong Kong/Kowloon area want to get together for a few beers and a bit of a laugh during that time leave a comment here or drop me an email to mcdonaghs[at]utvinternet[dot]com and we can arrange something.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-3227702425120143213?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/BMqEb29fqWI" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-06-09T17:38:48.075+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/06/international-notesbeerntweetup-invite.html</feedburner:origLink></item><item><title>An Alternate way of embedding a configurable Video player in an NSF</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/WGAj7LdnE_U/alternate-way-of-embedding-configurable.html</link><category>Web</category><category>Javascript</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Wed, 03 Jun 2009 16:07:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-5539997191114998474</guid><description>I recently came across a nice open source video player that is dead easy to build into your Notes Applications. The player is called &lt;a href="http://flowplayer.org/index.html"&gt;FLOWPLAYER&lt;/a&gt; and has been released under a GPL license. There are commercial and multi-domain  versions which you have to pay for, but the base app is free to build into your apps.&lt;br /&gt;&lt;br /&gt;You can download it &lt;a href="http://flowplayer.org/download/index.html"&gt;here&lt;/a&gt; and once you have the zip file unzipped you have two SWFs and an example directory. I embedded it in my app like this.&lt;br /&gt;&lt;br /&gt;01. I embedded FlowPlayer-3.1.1.swf into the RESOURCES / FILES section of the nsf&lt;br /&gt;&lt;br /&gt;02. I embedded FlowPlayer.controls-3.1.1.swf into the RESOURCES / FILES Section of the nsf&lt;br /&gt;&lt;br /&gt;03. I embedded the Flowplayer-3.1.1.min.js inot the RESOURCES / FILES section of the nsf&lt;br /&gt;&lt;br /&gt;04. I added the flowplayer-3.1.1.min.js as an external JS file to the form I wanted the player to be on&lt;br /&gt;&lt;br /&gt;05. I added a RT field into which a Video file could be attached&lt;br /&gt;&lt;br /&gt;06. I added this code to the form&lt;br /&gt;&lt;blockquote&gt;&amp;lt;a href="'http://www.unseenuni.com:81/flowplay.nsf/new/[ComputedText1]/$File/[ComputedText2]?openelement' style='display:block;width:400px;height:300px' id='player'&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;script language="'javascript'"&amp;gt; flowplayer("player","http://www.unseenuni.com:81/flowplay.nsf/fp311.swf?openfileresource")&amp;lt;/script&amp;gt;&amp;lt/pre&amp;gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;[ComputedText1] = @documentUniqueID and&lt;br /&gt;[ComputedText2] = @attachmentnames&lt;br /&gt;&lt;br /&gt;07. I created the form .. attached an MP4 opened it in the browser and it worked like a charm and looked like this&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Fkx1-w7uSqA/SicFrM0yDwI/AAAAAAAAA4A/8jHgbqgzYFY/s1600-h/att1.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 382px;" src="http://4.bp.blogspot.com/_Fkx1-w7uSqA/SicFrM0yDwI/AAAAAAAAA4A/8jHgbqgzYFY/s400/att1.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5343245722633506562" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;So if you have a need for a very clean, easy to use adaptable player for free (we like for free) then you can't go far wrong with Flowplayer ... check it out &lt;a href="http://flowplayer.org/index.html"&gt;here&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-5539997191114998474?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/WGAj7LdnE_U" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-06-04T00:26:57.025+01:00</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_Fkx1-w7uSqA/SicFrM0yDwI/AAAAAAAAA4A/8jHgbqgzYFY/s72-c/att1.jpg" height="72" width="72" /><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/06/alternate-way-of-embedding-configurable.html</feedburner:origLink></item><item><title>Sorting out an Admin Worst Practices offender</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/LQwodmqJciI/sorting-out-admin-worst-practices.html</link><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Sun, 31 May 2009 08:35:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-4241380669949769646</guid><description>&lt;div style='text-align:center;margin:0px auto 10px;'&gt;&lt;a href='http://3.bp.blogspot.com/_Fkx1-w7uSqA/SiKjuKRylpI/AAAAAAAAA34/ulSGZKyV9-0/s1600-h/STA40699.JPG'&gt;&lt;img src='http://3.bp.blogspot.com/_Fkx1-w7uSqA/SiKjuKRylpI/AAAAAAAAA34/ulSGZKyV9-0/s400/STA40699.JPG' border='0' alt='' /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div style='clear:both; text-align:CENTER'&gt;&lt;a href='http://picasa.google.com/blogger/' target='ext'&gt;&lt;img src='http://photos1.blogger.com/pbp.gif' alt='Posted by Picasa' style='border: 0px none ; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial;' align='middle' border='0' /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-4241380669949769646?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/LQwodmqJciI" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-05-31T16:35:21.392+01:00</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_Fkx1-w7uSqA/SiKjuKRylpI/AAAAAAAAA34/ulSGZKyV9-0/s72-c/STA40699.JPG" height="72" width="72" /><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/05/sorting-out-admin-worst-practices.html</feedburner:origLink></item><item><title>Just to prove to Coatsie and Bill that the sun does shine in Norn Iron</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/d0mPDwx0g38/just-to-prove-to-coatsie-and-bill-that.html</link><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Sun, 31 May 2009 08:22:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-1984373798895150602</guid><description>&lt;div style='text-align:center;margin:0px auto 10px;'&gt;&lt;a href='http://1.bp.blogspot.com/_Fkx1-w7uSqA/SiKgqvWKYKI/AAAAAAAAA3Y/DY1iXCOT-r8/s1600-h/STA40705.JPG'&gt;&lt;img src='http://1.bp.blogspot.com/_Fkx1-w7uSqA/SiKgqvWKYKI/AAAAAAAAA3Y/DY1iXCOT-r8/s400/STA40705.JPG' border='0' alt='' /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div style='clear:both; text-align:CENTER'&gt;&lt;a href='http://picasa.google.com/blogger/' target='ext'&gt;&lt;img src='http://photos1.blogger.com/pbp.gif' alt='Posted by Picasa' style='border: 0px none ; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial;' align='middle' border='0' /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-1984373798895150602?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/d0mPDwx0g38" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-05-31T16:22:19.141+01:00</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_Fkx1-w7uSqA/SiKgqvWKYKI/AAAAAAAAA3Y/DY1iXCOT-r8/s72-c/STA40705.JPG" height="72" width="72" /><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/05/just-to-prove-to-coatsie-and-bill-that.html</feedburner:origLink></item><item><title>A Dog Rose</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/UCOa8Pky5B0/dog-rose.html</link><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Sun, 31 May 2009 08:21:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-1003981637432044016</guid><description>&lt;div style='text-align:center;margin:0px auto 10px;'&gt;&lt;a href='http://3.bp.blogspot.com/_Fkx1-w7uSqA/SiKgjDxyhLI/AAAAAAAAA3Q/euAVwayMRPo/s1600-h/STA40716.JPG'&gt;&lt;img src='http://3.bp.blogspot.com/_Fkx1-w7uSqA/SiKgjDxyhLI/AAAAAAAAA3Q/euAVwayMRPo/s400/STA40716.JPG' border='0' alt='' /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div style='clear:both; text-align:CENTER'&gt;&lt;a href='http://picasa.google.com/blogger/' target='ext'&gt;&lt;img src='http://photos1.blogger.com/pbp.gif' alt='Posted by Picasa' style='border: 0px none ; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial;' align='middle' border='0' /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-1003981637432044016?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/UCOa8Pky5B0" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-05-31T16:21:48.990+01:00</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_Fkx1-w7uSqA/SiKgjDxyhLI/AAAAAAAAA3Q/euAVwayMRPo/s72-c/STA40716.JPG" height="72" width="72" /><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/05/dog-rose.html</feedburner:origLink></item><item><title>May Thorn in all of its wonderful glory</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/aFPTkrltD-o/may-thorn-in-all-of-its-wonderful-glory.html</link><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Sun, 31 May 2009 08:20:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-2807529231734437393</guid><description>&lt;div style='text-align:center;margin:0px auto 10px;'&gt;&lt;a href='http://3.bp.blogspot.com/_Fkx1-w7uSqA/SiKgRRn5NbI/AAAAAAAAA3I/kn89ugILQYM/s1600-h/STA40715.JPG'&gt;&lt;img src='http://3.bp.blogspot.com/_Fkx1-w7uSqA/SiKgRRn5NbI/AAAAAAAAA3I/kn89ugILQYM/s400/STA40715.JPG' border='0' alt='' /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div style='clear:both; text-align:CENTER'&gt;&lt;a href='http://picasa.google.com/blogger/' target='ext'&gt;&lt;img src='http://photos1.blogger.com/pbp.gif' alt='Posted by Picasa' style='border: 0px none ; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial;' align='middle' border='0' /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-2807529231734437393?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/aFPTkrltD-o" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-05-31T16:20:38.686+01:00</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_Fkx1-w7uSqA/SiKgRRn5NbI/AAAAAAAAA3I/kn89ugILQYM/s72-c/STA40715.JPG" height="72" width="72" /><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/05/may-thorn-in-all-of-its-wonderful-glory.html</feedburner:origLink></item><item><title>Saturday Walk in the woods</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/Wt9Jx3LHy4U/saturday-walk-i-woods_30.html</link><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Sat, 30 May 2009 07:41:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-7059933451093108022</guid><description>&lt;div style='text-align:center;margin:0px auto 10px;'&gt;&lt;a href='http://4.bp.blogspot.com/_Fkx1-w7uSqA/SiFFv91JHvI/AAAAAAAAA2o/F6q16ZPMqBo/s1600-h/DSC00686.JPG'&gt;&lt;img src='http://4.bp.blogspot.com/_Fkx1-w7uSqA/SiFFv91JHvI/AAAAAAAAA2o/F6q16ZPMqBo/s400/DSC00686.JPG' border='0' alt='' /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div style='clear:both; text-align:CENTER'&gt;&lt;a href='http://picasa.google.com/blogger/' target='ext'&gt;&lt;img src='http://photos1.blogger.com/pbp.gif' alt='Posted by Picasa' style='border: 0px none ; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial;' align='middle' border='0' /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-7059933451093108022?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/Wt9Jx3LHy4U" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-05-30T15:43:21.181+01:00</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_Fkx1-w7uSqA/SiFFv91JHvI/AAAAAAAAA2o/F6q16ZPMqBo/s72-c/DSC00686.JPG" height="72" width="72" /><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/05/saturday-walk-i-woods_30.html</feedburner:origLink></item><item><title>Famous Cousin Andy is Playing WOMAD this year</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/H1OpzzX6mdc/famous-cousin-andy-is-playing-womad.html</link><category>Family</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Fri, 29 May 2009 16:58:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-3648393194278793985</guid><description>YEAH .. just got the news that my cousin &lt;a href="http://www.andywhite.com/"&gt;Andy White&lt;/a&gt; is playing &lt;a href="http://www.womad.org/"&gt;WOMAD&lt;/a&gt; again this year !!!!&lt;br /&gt;&lt;br /&gt;KUDOS Cousin!!  :-) You da Man!&lt;br /&gt;&lt;br /&gt;From the WOMAD Site&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Northern Irish songwriter Andy White plays WOMAD Charlton Park, Sunday July 26, before taking the songwriting strand of the WOMAD Summer School at Bath Spa University, July 27-31. At the festival, Andy will preview his forthcoming album 'Songwriter' (Floating World), on release this September.&lt;br /&gt;&lt;/p&gt;&lt;br&gt;&lt;p&gt;It's been twenty three years since Andy burst onto the UK music scene with his debut album 'Rave On'. "Yer Man's Brilliant" proclaimed Melody Maker, and the singer the UK press called 'Belfast's Bob Dylan' or alternately 'Ireland's Billy Bragg' was born.&lt;/p&gt; &lt;p&gt;Since then, Andy has become very much his own man. His lyric-driven acoustic rock, which owes as much to David Gray or the Waterboys as Dylan or Bragg, has become more engaging-and his social commentary more relevant-each year.&lt;/p&gt;&lt;br&gt;&lt;p&gt;Andy has been closely involved with WOMAD for a number of years, sharing its core values and appearing at many WOMAD festivals worldwide. In 2000, the WOMAD Select label released 'Speechless', a live performance album featuring Andy's best-known songs and poems.&lt;/p&gt;&lt;br&gt;&lt;p&gt;Lead track on Peter Gabriel's current album 'Big Blue Ball' is 'Whole Thing', a song Andy wrote with Peter, Karl Wallinger, Geoffrey Oryema and others at a Real World recording week.&lt;/p&gt;&lt;br&gt; &lt;p&gt;Andy's career highlights include winning Ireland's Hot Press Songwriter of the Year award, recording and touring as the A in ALT along with Liam O Maonlai and Tim Finn, and working and writing with the some of the great names in the music world-the Finn Brothers, Sinead O'Connor, Van Morrison.&lt;/p&gt;&lt;br&gt;&lt;p&gt;Andy's new album 'Songwriter' was co-written over the past few years with a number of collaborators, and recorded live in the studio in Vancouver, with a rootsy all-star line-up. A shift from the layered textures of his current album 'Garageband' which was recorded in Andy's new home of Melbourne, Australia, and Real World, and mixed by old friend and national treasure John Leckie. &lt;/p&gt; &lt;p&gt;As MOJO magazine said about Andy, "From rage to sage, it's not too late to discover one of our best kept secrets."&lt;/p&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-3648393194278793985?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/H1OpzzX6mdc" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-05-30T01:04:53.884+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/05/famous-cousin-andy-is-playing-womad.html</feedburner:origLink></item><item><title>Blue Sky Evening in May</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/vlueRV8EDvk/blue-sky-evening-in-may.html</link><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Fri, 29 May 2009 15:59:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-1186856356990768122</guid><description>&lt;div style="text-align: left; padding: 3px;"&gt;&lt;a href="http://www.flickr.com/photos/29168165@N05/3577288680/" title="photo sharing"&gt;&lt;img src="http://farm4.static.flickr.com/3340/3577288680_750a5b48a9.jpg" style="border: solid 2px #000000;" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-size: 0.8em; margin-top: 0px;"&gt;&lt;a href="http://www.flickr.com/photos/29168165@N05/3577288680/"&gt;DSC00663&lt;/a&gt;, originally uploaded by &lt;a href="http://www.flickr.com/people/29168165@N05/"&gt;DarkRedSpiral&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;&lt;p&gt;A Pretentious title for a photo i took on my phone.. and it is just.. well it is just "right" .. well i think so ;-)&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-1186856356990768122?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/vlueRV8EDvk" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-05-29T23:59:13.151+01:00</atom:updated><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/05/blue-sky-evening-in-may.html</feedburner:origLink></item><item><title>BBA - Breeding Bananas for Anguilla</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/914-pe5cn8w/bba-breeding-bananas-for-anguilla.html</link><category>Random</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Thu, 28 May 2009 02:53:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-5494331482319824433</guid><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Fkx1-w7uSqA/Sh5fd3uJPWI/AAAAAAAAA2I/-JzShKMkLfY/s1600-h/bananas-01.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 285px;" src="http://1.bp.blogspot.com/_Fkx1-w7uSqA/Sh5fd3uJPWI/AAAAAAAAA2I/-JzShKMkLfY/s400/bananas-01.jpg" alt="" id="BLOGGER_PHOTO_ID_5340811174886325602" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The ravages of the Anguilla Banana Famine continue. I encourage all you folk on the interweb to start breeding Bananas now to ease the suffering&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-5494331482319824433?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/914-pe5cn8w" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-05-28T10:55:10.316+01:00</atom:updated><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_Fkx1-w7uSqA/Sh5fd3uJPWI/AAAAAAAAA2I/-JzShKMkLfY/s72-c/bananas-01.jpg" height="72" width="72" /><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/05/bba-breeding-bananas-for-anguilla.html</feedburner:origLink></item><item><title>Two Tribes forever at each others throats?</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/ajzv4vLVMp0/two-tribes-forever-at-each-others.html</link><category>Ulster</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Tue, 26 May 2009 14:58:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-7323700996472597970</guid><description>On &lt;a href="http://news.bbc.co.uk/1/hi/northern_ireland/foyle_and_west/8068956.stm"&gt;Sunday a man was murdered&lt;/a&gt; not 5 minutes from where I sit writing this post. His wife was beaten, a neighbour a woman several months pregnant who tried to stop the beating was attacked and another man was beaten so badly around the head that he remains in a critical condition in hospital.&lt;br /&gt;&lt;br /&gt;The reasons why this happened are not clear, however it seems that tensions in the area rose when Glasgow Rangers won the Scottish league. For those of you not familiar with the sectarian nature that surrounds some football teams. Glasgow Rangers is regarded as a Protestant team and their neighbours Glasgow Celtic are nominally a "Catholic" team. The management of both teams have done much to try and shake themselves of this sectarian image, however some of their supporters hold tightly to the old ways. If you are a "Prod" (as protestants are known) you support Rangers, if you are a catholic you support Celtic, simple as that, or it is to those people who enjoy beating people with baseball bats because they support the other team.&lt;br /&gt;&lt;br /&gt;There will be as is always the case in Northern Ireland a lot of  "what-about-ery" as people with vested interests in staying firmly on one side of the sectarian divide try to blame the other side. They supported the "other" football team, they wore the other teams shirts, they flew a flag I am insulted by, they sang sectarian songs, they called us rude and hateful names , they acted in a provocative manner etc etc etc, trotting out the same tired old shite I have heard for my entire adult life from one side or the other.&lt;br /&gt;&lt;br /&gt;For me it is simple ... no football team, no flag, no song, no injured national pride and no percieved insult to my religion is a valid excuse to beat a man to death, beat another to near death, beat a wife and mother and beat another pregnant woman.&lt;br /&gt;&lt;br /&gt;The people that did this are scum.&lt;br /&gt;&lt;br /&gt;The politicians that wriggle and squirm and attempt to justify and excuse are scum&lt;br /&gt;&lt;br /&gt;Religions that propagate division by claiming their way is the "only true way" and all others are false and thus not even worthy of the hand of friendship are scum.&lt;br /&gt;&lt;br /&gt;... and then there is me ... when faced with sectarianism in my life did I challenge it or opt for the  way that caused me least problems? I suppose there is scum in me too :(&lt;br /&gt;&lt;br /&gt;I didn't know Kevin McDaid, our paths crossed from time to time, Coleraine is not a big place.&lt;br /&gt;My thoughts are with his family this evening and the relatives of the other victims, I hope for their full recovery ... although that I suspect is little comfort.&lt;br /&gt;&lt;br /&gt;Perhaps one day instead of two tribes at each others throats, we will be two tribes that can share and become more that the sum of our parts ... that day I fear is still a long way away.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-7323700996472597970?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/ajzv4vLVMp0" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-05-27T00:03:25.432+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/05/two-tribes-forever-at-each-others.html</feedburner:origLink></item><item><title>I love this ad, ...it is just so good!</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/6INZDKqOLF8/i-love-this-ad-it-is-just-so-good.html</link><category>Random</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Mon, 25 May 2009 06:30:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-7861647746683380322</guid><description>&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/at_f98qOGY0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/at_f98qOGY0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-7861647746683380322?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/6INZDKqOLF8" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-05-25T14:30:53.820+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/05/i-love-this-ad-it-is-just-so-good.html</feedburner:origLink></item><item><title>Irish Government, The Catholic Church and abuse</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/_sIqqtZ_nVc/irish-government-catholic-church-and.html</link><category>Religion</category><category>Rant</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Sun, 24 May 2009 08:32:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-1649674878487360258</guid><description>There are paragraphs and links in this post that are not easy to read ...&lt;br /&gt;&lt;br /&gt;In Ireland for decades children were systematically abused, physically , sexually and psychologically by agents of the Catholic Church in Ireland. When they did report the abuse the children were ignored, when the complaints got to great to ignore the church simply moved the nuns, priests and brothers to other parts of the world out of the jurisdiction of the state ... not that they would have done a whole hell of a lot about it if they had got their hands on the abusers.&lt;br /&gt;&lt;br /&gt;Justice Ryan a senior Irish Judge was tasked with investigating the 1000's of claims of abuse and his report was published this week all 5 volumes of it. The Christian Brothers went to court and won an injunction which means that Justice Ryan's report could not name the abusers in his report even when evidence exists that abuse did take place.&lt;br /&gt;&lt;br /&gt;The head of the Catholic Church in Ireland Cardinal Brady, a mealy mouthed useless stream of piss is "saddened and sorry" by the report. SADDENED BY THIS?&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;from the Ryan Report ...&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;Physical abuse&lt;/span&gt;&lt;br /&gt;More than 90% of all witnesses who gave evidence to the Confidential Committee reported being physically abused while in schools or out-of-home care. Physical abuse was a component of the vast majority of abuse reported in all decades and institutions and witnesses described pervasive abuse as part of their daily lives. They frequently described casual, random physical abuse but many wished to report only the times when the frequency and severity were such that they were injured or in fear for their lives. In addition to being hit and beaten, witnesses described other&lt;br /&gt;forms of abuse such as being flogged, kicked and otherwise physically assaulted, scalded, burned and held under water. Witnesses reported being beaten in front of other staff, residents, patients and pupils as well as in private. Physical abuse was reported to have been perpetrated by religious and lay staff, older residents and others who were associated with the schools and institutions. There were many reports of injuries as a result of physical abuse, including broken bones, lacerations and bruising.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Sexual abuse&lt;/span&gt;&lt;br /&gt;Sexual abuse was reported by approximately half of all the Confidential Committee witnesses. Acute and chronic contact and non-contact sexual abuse was reported, including vaginal and analrape, molestation and voyeurism in both isolated assaults and on a regular basis over long periods of time. The secret nature of sexual abuse was repeatedly emphasised as facilitating its occurrence. Witnesses reported being sexually abused by religious and lay staff in the schools and institutions and by co-residents and others, including professionals, both within and external to the institutions. They also reported being sexually abused by members of the general public, including volunteer workers, visitors, work placement employers, foster parents, and others who had unsupervised contact with residents in the course of everyday activities. Witnesses reported being sexually abused when they were taken away for excursions, holidays or to work for others. Some witnesses who disclosed sexual abuse were subjected to severe reproach by those who had responsibility for their care and protection. Female witnesses in particular described, at times, being told they were responsible for the sexual abuse they experienced, by both their abuser and those to whom they disclosed abuse.&lt;br /&gt;&lt;/blockquote&gt;The Irish Tax payer is fronting up a billion euros in compensation for their part in the conspiracy of silence over decades of abuse. The prime offenders, the catholic church has managed to find a paltry 128 million euro, obviously the shame of allowing the systematic abuse of children and then covering it up is worth 128 million.&lt;br /&gt;&lt;br /&gt;The perfidious devils in the church that allowed this to happen and covered it up after discovered are still doing it today! &lt;a href="http://www.guardian.co.uk/world/2009/mar/08/child-abuse-catholicism-john-magee"&gt;Bishop John Magee&lt;/a&gt; supported by three of the senior members of the church refused to resign when an inquiry found his &lt;a href="http://www.guardian.co.uk/society/childprotection"&gt;child protection&lt;/a&gt; policy inadequate and dangerous after complaints of abuse where investigated. The Bishop "stood aside" from the running of the diocese of Cloyne, although he STILL retains his title and is fully supported by the Vatican in his stand, although it does appear he has his head up his arse if he can't see what is happening around him.&lt;br /&gt;&lt;br /&gt;There is shame enough for everyone in this report, for the state for ignoring it under church pressure, the public for thinking "it couldnt be true they are religious" .Both state and public are talking openly of their shame and trying to find ways to make some difference to lives of the survivors (and yes there were many who did not survive) and yet so far the Catholic Churtch  through its senior representativea is "saddened" ... well Pope Benedict, Ireland is looking to you as God Botherer in Chief to be WAY more than saddened or "unable to comment at this time" .... get off your fecking arse and do something about it! The buck stops with you!&lt;br /&gt;&lt;br /&gt;Have a read at the summary report &lt;a href="http://www.independent.ie/multimedia/archive/00323/CICA-Executive_Summ_323482a.pdf"&gt;here&lt;/a&gt; the full report runs to 5 volumes... 5 fecking volumes of documented misery all done by the agents of "The Catholic Jesus"&lt;br /&gt;&lt;br /&gt;Have a listen to the discussion on &lt;a href="http://downloads.bbc.co.uk/podcasts/northernireland/ethics/ethics_20090524-0936a.mp3"&gt;Everyday Ethics&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.irishtimes.com/newspaper/opinion/2009/0521/1224247034262.html"&gt;&lt;br /&gt;The Irish Times&lt;/a&gt; take on Justice Ryan's report.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-1649674878487360258?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/_sIqqtZ_nVc" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-05-24T17:32:17.207+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/05/irish-government-catholic-church-and.html</feedburner:origLink></item><item><title>A rogue pair of FLEX purple underpants have mounted an assault on the yellow-only wash of  my lotus web dev laundry</title><link>http://feedproxy.google.com/~r/dominoyesmaybe/~3/RZYiNe8bBHo/rogue-pair-of-flex-purple-underpants.html</link><category>Web</category><category>AJAX</category><category>Flex</category><category>Domino</category><author>noreply@blogger.com (Steve McDonagh)</author><pubDate>Sun, 24 May 2009 05:09:00 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-1527573980897631948.post-9011955632062417155</guid><description>I have been a bit remiss with the Flex series I started a while back and I do apologise for the discontinuity and I have started doing some more examples that I will pop up on here in the next few days.&lt;br /&gt;&lt;br /&gt;There is a part of me that is a wee bit ... embarrassed is not the right word ... concerned is perhaps better ... that whilst the movers and shakers in the Domino world are "Doing it" the Xpage way I have veered off into another RIA technology.&lt;br /&gt;&lt;br /&gt;I have never been a fanboy of any particular technology I am more inclined to use the tools that I have access to and which get the job done. Now I have had a bit of a play with X-Pages and they are indeed a wonderful if slightly not-quite-there-yet thing. As the new Domino techniques develop I have found myself moving towards a place where Domino is a back end data store, like DB2, MySQL or Oracle&lt;br /&gt;&lt;br /&gt;I am not sure quite why I this is happening, but technologies &amp; frameworks like AJAX, FLEX etc do take a fair bit of the drudgery out of coding for the web. I found that it was easier to have a slight dichotomy between the app as seen on the web and the app as seen in the notes client rather than to have to make concessions in one or the other for the sake of conformity. &lt;br /&gt;&lt;br /&gt;Taking this approach also means I can deliver web apps for a broader range of server installs. Back to V6.* rather than confine myself to V8.* servers thus giving more of my user base a nice warm feeling of being included in the "new" stuff.&lt;br /&gt;&lt;br /&gt;This is not to say that I am leaving all of the tools of Notes/Domino behind. I still use Domino Security, Author and Reader fields and loads of LS and JAVA based agents to provide the data handling facilities. &lt;br /&gt;&lt;br /&gt;I suppose that another reason that I am heading in this direction is that Domino does not exist in isolation in my sphere of reference. It exists along side data silos in DB2 and Oracle which in the client we can now leverage with Live text linking to composite apps, widgets and side bar apps in the 8* client, which is of course marvellous for those folk on the Full Version 8 client. In the real world where I code not all my users are on V8 and it will (given the current economic climate etc etc) be some time until some of the non-power users have the tin capable of running the full client to its full advantage. In the interim so as not to exclude these users from the momentum of change, I will use the power of non-yellow-tech then it seems prudent to do so.&lt;br /&gt;&lt;br /&gt;In several conversations I have had on this topic, there has been an air of disapproval from some that I am at snubbing all the work done to improve things on the platform in the last couple of years. I do not think that I am , I leverage the best for my users with the tools that I have and the facilities they have to use it, if that appears "disloyal" well so be it. I am paid to service my users not some ethereal dogma of yellow oneness. ;-)&lt;br /&gt;&lt;br /&gt;For those of you not yet on Version 8 and perhaps held back by budgetary constraints my message would be that you can move forward if you step outside what some refer to as "the bubble" and look at other methods that will maintain your creative momentum with the tools and servers you have to hand.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1527573980897631948-9011955632062417155?l=dominoyesmaybe.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dominoyesmaybe/~4/RZYiNe8bBHo" height="1" width="1"/&gt;</description><atom:updated xmlns:atom="http://www.w3.org/2005/Atom">2009-05-24T14:28:59.817+01:00</atom:updated><feedburner:origLink>http://dominoyesmaybe.blogspot.com/2009/05/rogue-pair-of-flex-purple-underpants.html</feedburner:origLink></item></channel></rss>
