<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Patrick O&#039;Beirne @ sysmod</title>
	<atom:link href="http://sysmod.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sysmod.wordpress.com</link>
	<description>Spreadsheet quality and testing</description>
	<lastBuildDate>Tue, 14 Feb 2012 09:26:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sysmod.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/06854340f377c96702f5836f95675c1a?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Patrick O&#039;Beirne @ sysmod</title>
		<link>http://sysmod.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sysmod.wordpress.com/osd.xml" title="Patrick O&#039;Beirne @ sysmod" />
	<atom:link rel='hub' href='http://sysmod.wordpress.com/?pushpress=hub'/>
		<item>
		<title>From VBA to VB.Net using ExcelDna</title>
		<link>http://sysmod.wordpress.com/2012/02/06/from-vba-to-vb-net-using-exceldna/</link>
		<comments>http://sysmod.wordpress.com/2012/02/06/from-vba-to-vb-net-using-exceldna/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 15:38:00 +0000</pubDate>
		<dc:creator>sysmod</dc:creator>
				<category><![CDATA[Excel/VBA]]></category>
		<category><![CDATA[ExcelDna]]></category>
		<category><![CDATA[addin]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[VB.Net]]></category>

		<guid isPermaLink="false">http://sysmod.wordpress.com/?p=102</guid>
		<description><![CDATA[This is a collection of links for learning about VB.Net and ExcelDna. Firstly, here are my two documents: a collection of resources and a worked example of migrating an addin to VB.Net Getting Started with VB.Net using ExcelDNA.docx Practice project &#8230; <a href="http://sysmod.wordpress.com/2012/02/06/from-vba-to-vb-net-using-exceldna/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=102&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a collection of links for learning about VB.Net and ExcelDna. Firstly, here are my two documents: a collection of resources and a worked example of migrating an addin to VB.Net</p>
<p><a title="Getting Started with VB.Net using ExcelDNA.docx" href="http://www.sysmod.com/Getting%20Started%20with%20VB.Net%20using%20ExcelDNA.docx">Getting Started with VB.Net using ExcelDNA.docx</a></p>
<p><a title="Practice project converting XLAM to ExcelDna.docx" href="http://www.sysmod.com/Practice%20project%20converting%20XLAM%20to%20ExcelDna.docx">Practice project converting XLAM to ExcelDna.docx</a>  This shows the steps involved in taking a simple addin that creates a Table Of Contents worksheet in a workbook. It illustrates the basics of creating a dll, a Ribbon button, and access to the Excel object model. It does not use forms. <a title="Source code zip" href="http://www.sysmod.com/CreateTOCExcelDna.zip">Source code zip</a></p>
<p>Here for convenience are the links from the first document:<br />
The latest Excel-DNA version is available on the CodePlex site: <a href="http://exceldna.codeplex.com/">http://exceldna.codeplex.com</a> also has links to tutorials<br />
<a href="http://groups.google.com/group/exceldna">http://groups.google.com/group/exceldna</a> Primary support channel</p>
<p>All applications use the ExcelDna.xll addin. The stages of learning successively add files:<br />
1) Using only a text file MyAddin.dna which includes the source code text.<br />
2) Add an external dll which you create from VB.net source code and compile using either the vbc.exe compile or the Visual Basic Studio IDE. I used the free Express edition.<br />
3) Ease the transition using the official MS Primary Interop Assemblies (PIA) or third party libraries such as NetOffice<br />
4) Simplify the deployment by packing the components into one .XLL file.<br />
Stage 1: using only a .DNA test file<br />
Getting Started with ExcelDna &#8211; Do this first<br />
<a href="http://exceldna.codeplex.com/wikipage?title=Getting%20Started">http://exceldna.codeplex.com/wikipage?title=Getting%20Started</a><br />
1. Create a user-defined function in Visual Basic</p>
<p><a href="http://www.blog.methodsinexcel.co.uk/2010/09/03/excel-dna-hello-world-function/">http://www.blog.methodsinexcel.co.uk/2010/09/03/excel-da-hello-world-function/</a><br />
Similar to above. Ideal if you want to write User Defined Functions (UDF), or want to copy a UDF from VBA to DNA for a quick and easy-ish performance improvement.</p>
<p>Stage 2: Compiling  a .DLL<br />
<a href="http://www.blog.methodsinexcel.co.uk/2010/09/22/writing-an-excel-dna-function-using-an-ide/">http://www.blog.methodsinexcel.co.uk/2010/09/22/writing-an-excel-dna-function-using-an-ide/</a><br />
Ross McLean uses the SharpDevelop IDE; VB Express is similar.</p>
<p>Stage 3: Adding Intellisense to a DNA solution<br />
<a href="http://www.blog.methodsinexcel.co.uk/2010/10/28/ading-intellisense-to-a-dna-solution/">http://www.blog.methodsinexcel.co.uk/2010/10/28/ading-intellisense-to-a-dna-solution/</a><br />
Download the PIA .Zip file from the link in that post and extract to your hard disk. Setup up a DNA project in the normal way, go to the “Project” menu, “Add reference”, then “.Net assembly Browser” then go and find the PIA folder you just extracted, and pick the right version for your needs.</p>
<p>Also see NetOffice, a version-independent set of Office interop assemblies put together by Sebastian Lange.<br />
<a href="http://excel-dna.net/2012/01/30/excel-vba-to-vb-net-with-excel-dna-and-netoffice/">http://excel-dna.net/2012/01/30/excel-vba-to-vb-net-with-excel-dna-and-netoffice/</a><br />
<a href="http://netoffice.codeplex.com/">http://netoffice.codeplex.com/</a><br />
<a href="http://groups.google.com/group/exceldna/browse_frm/thread/f356a30adf9130d0/c7625c8836affd3d">http://groups.google.com/group/exceldna/browse_frm/thread/f356a30adf9130d0/c7625c8836affd3d</a></p>
<p>Stage 4: Simplify deployment by packing the components into one .XLL file.<br />
ExcelDnaPack is a command-line utility to pack ExcelDna add-ins into a single .xll file.<br />
<strong>Going further to C#</strong><br />
<a title="Charles Williams" href="http://www.decisionmodels.com">Charles Williams</a> recommends this automatic code converter to ease the transition from VB to C# and C++ :<br />
<a href="http://tangiblesoftwaresolutions.com/">http://tangiblesoftwaresolutions.com/</a></p>
<p><strong>Background reading</strong><br />
Currently (Feb 2012) the only documentation on ExcelDna is effectively the google group.</p>
<p>Note that <a href="http://exceldna.typepad.com/">http://exceldna.typepad.com</a> is old, not updated since 2006.</p>
<p><strong>Microsoft and other sources</strong></p>
<p><a href="http://blogs.msdn.com/b/pstubbs/archive/2004/01/15/59049.aspx">http://blogs.msdn.com/b/pstubbs/archive/2004/01/15/59049.aspx</a><br />
Convert VBA to VB .Net and C#</p>
<p><a href="http://msdn.microsoft.com/en-us/vstudio/ms788236">http://msdn.microsoft.com/en-us/vstudio/ms788236</a><br />
Free Book &#8211; Upgrading Microsoft Visual Basic 6.0 to Microsoft Visual Basic .NET</p>
<p><a href="http://www.upsizing.co.uk/Art52_VBAToNet2.aspx">http://www.upsizing.co.uk/Art52_VBAToNet2.aspx</a><br />
Converting Access VBA to VB.NET – General Principals</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa192490%28v=office.11%29.aspx">http://msdn.microsoft.com/en-us/library/aa192490%28v=office.11%29.aspx</a><br />
Converting Code from VBA to Visual Basic .NET<br />
Office 2003<br />
For more information, see Introduction to Visual Basic .NET for Visual Basic Veterans.<br />
<a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vboriintroductiontovisualbasic70forvisualbasicveterans.asp">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vboriintroductiontovisualbasic70forvisualbasicveterans.asp</a><br />
<a href="http://msdn.microsoft.com/en-us/library/kehz1dz1(vs.71).aspx">http://msdn.microsoft.com/en-us/library/kehz1dz1(vs.71).aspx</a><br />
Introduction to Visual Basic .NET for Visual Basic Veterans</p>
<p><a href="http://msdn.microsoft.com/en-us/library/kehz1dz1(v=vs.90).aspx">http://msdn.microsoft.com/en-us/library/kehz1dz1(v=vs.90).aspx</a><br />
Help for Visual Basic 6.0 Users</p>
<p><a href="http://oreilly.com/catalog/vbdotnetnut/chapter/appa.html">http://oreilly.com/catalog/vbdotnetnut/chapter/appa.html</a><br />
Appendix A<br />
What&#8217;s New and Different in VB .NET</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysmod.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysmod.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sysmod.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sysmod.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sysmod.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sysmod.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sysmod.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sysmod.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sysmod.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sysmod.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sysmod.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sysmod.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sysmod.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sysmod.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=102&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysmod.wordpress.com/2012/02/06/from-vba-to-vb-net-using-exceldna/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f0c802a1182bf0d67a175a414c0dba3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysmod</media:title>
		</media:content>
	</item>
		<item>
		<title>Excel Developers&#8217; Conference Jan 25 London report</title>
		<link>http://sysmod.wordpress.com/2012/01/25/excel-developers-conference-jan-25-london-report/</link>
		<comments>http://sysmod.wordpress.com/2012/01/25/excel-developers-conference-jan-25-london-report/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 23:34:57 +0000</pubDate>
		<dc:creator>sysmod</dc:creator>
				<category><![CDATA[Excel/VBA]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[Excel Developers]]></category>
		<category><![CDATA[London]]></category>

		<guid isPermaLink="false">http://sysmod.wordpress.com/?p=94</guid>
		<description><![CDATA[http://xlconf.wordpress.com/2011/11/22/uk-excel-developer-conference-london-january-2012/ Simon Murphy of Codematic had lined up an array of speakers and topics that drew a packed crowd. Morten Siersted&#8217;s company F1F9 sponsored the lunch for all the delegates.  Simon opened the conference with a summary of the evolution &#8230; <a href="http://sysmod.wordpress.com/2012/01/25/excel-developers-conference-jan-25-london-report/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=94&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://xlconf.wordpress.com/2011/11/22/uk-excel-developer-conference-london-january-2012/">http://xlconf.wordpress.com/2011/11/22/uk-excel-developer-conference-london-january-2012/</a></p>
<p>Simon Murphy of Codematic had lined up an array of speakers and topics that drew a packed crowd. Morten Siersted&#8217;s company F1F9 sponsored the lunch for all the delegates.  <a title="Simon" href="http://xlconf.wordpress.com/2012/01/09/excel-dev-conf-presenter-simon-murphy/">Simon </a>opened the conference with a summary of the evolution of Excel development and closed it with a personal view of project management.</p>
<p><a title="Stephen Allen" href="http://xlconf.wordpress.com/2011/12/23/excel-dev-conf-presenter-stephen-allen/">Stephen Allen </a>of ACBA spoke on his auditor&#8217;s Electronic Working Papers (EWP) application, which he developed from the need to demonstrate a chain of evidence from the system being audited through the risk to the audit finding, conclusions, and recommendations. <span style="font-family:Georgia;color:#333333;">He describes this as &#8220;<em>a recursive programming approach required to rearrange branched thought processes into linear output for reporting&#8221;</em>.  A trial copy of ACBA-EWP can be requested from <a title="ACBA (UK)" href="http://www.acba.co.uk/WP.htm">ACBA (UK)</a> where you can also download a <a title="demonstration workbook" href="http://acba.co.uk/DownLoads/ExcelDevSeminat.xls">demonstration workbook</a>.</span></p>
<p><a title="Bob Phillips" href="http://xlconf.wordpress.com/2012/01/11/excel-developer-conference-presenter-bob-phillips/">Bob Phillips </a>spoke on Personal BI (Business Intelligence) made possible by the PowerPivot addin for Excel 2010. He covered the DAX language and mentioned the work of Tom Gleeson, the datasmith. There were some questions from the Access developers in the audience, as Bob indicated that PowerPivot is the future of data access and reporting by Excel.</p>
<p>Dr. Mike Staunton of the London Business School spoke on his approach to coding style to permit portable code from VBA to VB.Net and C#. He likes the free tool <a title="ExcelDNA" href="http://excel-dna.net/">ExcelDNA </a>and TangibleSoftwareSolutions.com code translators, who feature his Wilmott article on <a title="VBA to C#.Net" href="http://tangiblesoftwaresolutions.com/Articles/Wilmott_Magazine.pdf">VBA to C#.Net</a>.</p>
<p><a title="Mathias Brandewinder" href="http://xlconf.wordpress.com/2012/01/02/excel-dev-conf-presenter-mathias-brandewinder/">Mathias Brandewinder </a>spoke on VSTO, showing that version 2 was not the bugbear that version 1 had been. He demonstrated several simple applications including Ribbon and Custom Task Panes; see VSTOStocks.codeplex.com. For UDFs he recommends ExcelDNA and XLL-plus. The audience were with him right up to the point he mentioned that VSTO needs a Visual Studio 2010 Professional licence at $800. However, ask your national MS developers&#8217; contact who may know of special offers with eg Technet.</p>
<p><a title="Charles Williams" href="http://xlconf.wordpress.com/2012/01/05/excel-dev-conf-presenter-charles-williams/">Charles Williams </a> recounted his experience of migrating 8000+ lines of VBA code in his FastExcel addin to C++. This was necessitated by the introduction of the 64-bit version of Excel. To save him time, he used the Plantech XLL+ addin for Visual Studio and the STL/Boost library. His blog at decisionmodels.com is worth following for tips on improving Excel performance which can be better done by more efficient algorithms than language tweaks.</p>
<p>Morten Siersted of <a title="F1F9" href="http://www.f1f9.com">F1F9</a> spoke of the <a title="FAST" href="http://www.fast-standard.org/">FAST</a> modelling standard. Aimed at the general spreadsheet financial modeller, it stresses virtues such as transparency (comprehensibility) and being &#8220;beautifully simple&#8221;. This is achieved through a few rules for organising code in consistent formula blocks, grouped detail rows. He enlivened the rules by comparing their recommendations of staged inputs to a TV cook and font color coding to plumbing diagrams.</p>
<p>Simon provided the usual swag that conference attendees love to collect and also gave away draw prizes &#8211; I had contributed my book on <a title="Spreadsheet Check and Control" href="http://www.sysmod.com/scc.htm">Spreadsheet Check and Control</a>, and the Q-Validus <a title="Spreadsheet Safe" href="http://www.spreadsheetsafe.com">Spreadsheet Safe</a> training manual. Some of us,because of our connection with EuSpRIG, were interviewed by the BBC for their upcoming programme on spreadsheet risks in &#8220;<a title="More or Less" href="http://www.bbc.co.uk/programmes/b006qshd">More or Less</a>&#8221; (about statistics and economics) to go out on the World Service. It was good to meet so many faces belonging to people I had hitherto known by email or newsgroups, such as Simon Hurst, Anthony Prince, Andy Pope, Russell Proctor of BetterSolutions, Philip O&#8217;Brien of Pasigraphy, and colleagues from previous work. I&#8217;ve taken away some New Year resolutions for things to work on!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysmod.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysmod.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sysmod.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sysmod.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sysmod.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sysmod.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sysmod.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sysmod.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sysmod.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sysmod.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sysmod.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sysmod.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sysmod.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sysmod.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=94&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysmod.wordpress.com/2012/01/25/excel-developers-conference-jan-25-london-report/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f0c802a1182bf0d67a175a414c0dba3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysmod</media:title>
		</media:content>
	</item>
		<item>
		<title>Talk at SoftTest 26 Jan 6pm Dublin on &#8220;Test Centres of Excellence&#8221;</title>
		<link>http://sysmod.wordpress.com/2012/01/18/talk-at-softtest-26-jan-6pm-dublin-on-test-centres-of-excellence/</link>
		<comments>http://sysmod.wordpress.com/2012/01/18/talk-at-softtest-26-jan-6pm-dublin-on-test-centres-of-excellence/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 15:45:37 +0000</pubDate>
		<dc:creator>sysmod</dc:creator>
				<category><![CDATA[Software Quality]]></category>
		<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[Dublin]]></category>
		<category><![CDATA[meeting]]></category>
		<category><![CDATA[SoftTest]]></category>

		<guid isPermaLink="false">http://sysmod.wordpress.com/?p=91</guid>
		<description><![CDATA[http://softtesteventjan2012.eventbrite.co.uk/ Annex meeting room in the Central Hotel, 1 &#8211; 5 Exchequer Street Dublin 2 Thursday, 26 January 2012 from 18:00 to 20:00  Too often companies are relying on hard work, experience and luck rather than planning and executing tests &#8230; <a href="http://sysmod.wordpress.com/2012/01/18/talk-at-softtest-26-jan-6pm-dublin-on-test-centres-of-excellence/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=91&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="http://softtesteventjan2012.eventbrite.co.uk/" href="http://softtesteventjan2012.eventbrite.co.uk/">http://softtesteventjan2012.eventbrite.co.uk/</a></p>
<p>Annex meeting room in the Central Hotel, 1 &#8211; 5 Exchequer Street Dublin 2 Thursday, 26 January 2012 from 18:00 to 20:00 </p>
<p>Too often companies are relying on hard work, experience and luck rather than planning and executing tests in an appropriate and focused way. With increasing demands these systems grow to be more inefficient, unreliable, costly and can ultimately become a serious risk to the business.</p>
<p>So how are organisations meeting this challenge head on? The answer is by developing and growing Test Centres of Excellence (CoE). A Test CoE is a professional service organisation that delivers testing services to the IT group and the business. It comprises a dedicated and independently managed team of people with a core competency in testing, operational processes to support testing for the enterprise and supporting tools and technologies.</p>
<p><strong>Presenter: David Cass. </strong>David is a Senior Manager in Strategy and Operations Consulting for Deloitte Ireland with over 9 years experience in software testing, test programme management, test strategy development and organisational change. David specialises in developing organisational test strategies, end to end quality assurance and test organisation planning &amp; optimisation for large organisations.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysmod.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysmod.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sysmod.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sysmod.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sysmod.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sysmod.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sysmod.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sysmod.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sysmod.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sysmod.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sysmod.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sysmod.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sysmod.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sysmod.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=91&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysmod.wordpress.com/2012/01/18/talk-at-softtest-26-jan-6pm-dublin-on-test-centres-of-excellence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f0c802a1182bf0d67a175a414c0dba3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysmod</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Translator VBA code sample</title>
		<link>http://sysmod.wordpress.com/2012/01/09/microsoft-translator-vba-code-sample/</link>
		<comments>http://sysmod.wordpress.com/2012/01/09/microsoft-translator-vba-code-sample/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 11:42:20 +0000</pubDate>
		<dc:creator>sysmod</dc:creator>
				<category><![CDATA[Excel/VBA]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[Microsoft Translator]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://sysmod.wordpress.com/?p=76</guid>
		<description><![CDATA[MicrosoftTranslator.com provides an API that is free up to 2MB per month. MS are moving from the Bing appID to an authorization token for their translator but as this forum post says have not brought the documentation up to date &#8230; <a href="http://sysmod.wordpress.com/2012/01/09/microsoft-translator-vba-code-sample/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=76&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>MicrosoftTranslator.com provides an API that is free up to 2MB per month.<br />
MS are moving from the Bing appID to an authorization token for their translator but <a title="as this forum post says" href="http://social.msdn.microsoft.com/Forums/en-US/microsofttranslator/thread/e4c149c4-fefb-48fd-8990-db6a8f0f9045">as this forum post says</a> have not brought the documentation up to date and don&#8217;t have VBA examples. So  I&#8217;ve decided to post my own so people can suggest improvements.</p>
<p><a title="MicrosoftTranslator VBA module" href="http://www.sysmod.com/MSTranslator.bas">MicrosoftTranslator VBA module</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysmod.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysmod.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sysmod.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sysmod.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sysmod.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sysmod.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sysmod.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sysmod.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sysmod.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sysmod.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sysmod.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sysmod.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sysmod.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sysmod.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=76&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysmod.wordpress.com/2012/01/09/microsoft-translator-vba-code-sample/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f0c802a1182bf0d67a175a414c0dba3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysmod</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy new year!</title>
		<link>http://sysmod.wordpress.com/2012/01/01/happy-new-year/</link>
		<comments>http://sysmod.wordpress.com/2012/01/01/happy-new-year/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 18:53:23 +0000</pubDate>
		<dc:creator>sysmod</dc:creator>
				<category><![CDATA[Software Quality]]></category>
		<category><![CDATA[Euro conversion]]></category>
		<category><![CDATA[regression]]></category>
		<category><![CDATA[spreadsheet risk]]></category>

		<guid isPermaLink="false">http://sysmod.wordpress.com/?p=74</guid>
		<description><![CDATA[Twelve years ago I wrote the book on the Euro Changeover in IT systems (&#8220;Managing the Euro in Information Systems&#8221;, Addison-Wesley, 1999). I wonder will 2012 see the year some countries have to switch back? Internally it should be easy &#8230; <a href="http://sysmod.wordpress.com/2012/01/01/happy-new-year/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=74&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Twelve years ago I wrote the book on the Euro Changeover in IT systems (&#8220;Managing the Euro in Information Systems&#8221;, Addison-Wesley, 1999). I wonder will 2012 see the year some countries have to switch back? Internally it should be easy enough if they adopt 1 new NC (eg púnt nua) = 1 euro then national prices remain the same. International prices will then need foreign currency handling. Ah well. At the time (1999-2001) I had believed there were controls in place on financial discipline but the realpolitik proved otherwise.</p>
<p>On the side of End User Computing and Compliance and Best Practices and Spreadsheet Controls and all those good things, well, I&#8217;m still developing techniques, tools, processes, and training for organizations to get to grips with the spreadsheet Hydra &#8211; ask me for more info!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysmod.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysmod.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sysmod.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sysmod.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sysmod.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sysmod.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sysmod.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sysmod.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sysmod.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sysmod.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sysmod.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sysmod.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sysmod.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sysmod.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=74&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysmod.wordpress.com/2012/01/01/happy-new-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f0c802a1182bf0d67a175a414c0dba3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysmod</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy Christmas and good wishes for 2012</title>
		<link>http://sysmod.wordpress.com/2011/12/23/happy-christmas-and-good-wishes-for-2012/</link>
		<comments>http://sysmod.wordpress.com/2011/12/23/happy-christmas-and-good-wishes-for-2012/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 16:54:08 +0000</pubDate>
		<dc:creator>sysmod</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Christmas Season greetings]]></category>
		<category><![CDATA[New Year]]></category>

		<guid isPermaLink="false">http://sysmod.wordpress.com/?p=63</guid>
		<description><![CDATA[Our card this year is Megan&#8217;s photo of the Festival Arbres et Lumières in Geneva last Christmas. Her calendar for 2012 features photos she took at the Annecy Venetian Festival. http://www.meganobeirne.com/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=63&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Our card this year is Megan&#8217;s photo of the Festival Arbres et Lumières in Geneva last Christmas. Her calendar for 2012 features photos she took at the Annecy Venetian Festival.</p>
<p>http://www.meganobeirne.com/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysmod.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysmod.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sysmod.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sysmod.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sysmod.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sysmod.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sysmod.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sysmod.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sysmod.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sysmod.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sysmod.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sysmod.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sysmod.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sysmod.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=63&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysmod.wordpress.com/2011/12/23/happy-christmas-and-good-wishes-for-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f0c802a1182bf0d67a175a414c0dba3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysmod</media:title>
		</media:content>
	</item>
		<item>
		<title>Dictionary VBA Class update</title>
		<link>http://sysmod.wordpress.com/2011/11/24/dictionary-vba-class-update/</link>
		<comments>http://sysmod.wordpress.com/2011/11/24/dictionary-vba-class-update/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 15:21:02 +0000</pubDate>
		<dc:creator>sysmod</dc:creator>
				<category><![CDATA[Excel/VBA]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[Dictionary]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://sysmod.wordpress.com/?p=64</guid>
		<description><![CDATA[I&#8217;ve uploaded a new version of the Dictionary Class and a helper KeyValuePair Class. This exposes the KeyValuePairs collection so iteration is now very fast, about 2 seconds to iterate 1 million items using a for each loop:   dim oKeyValuePair &#8230; <a href="http://sysmod.wordpress.com/2011/11/24/dictionary-vba-class-update/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=64&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve uploaded a new version of the <a title="Dictionary Class" href="http://www.sysmod.com/Dictionary.cls">Dictionary Class</a> and a helper <a title="KeyValuePair Class" href="http://www.sysmod.com/KeyValuePair.cls">KeyValuePair Class</a>. This exposes the KeyValuePairs collection so iteration is now very fast, about 2 seconds to iterate 1 million items using a for each loop:</p>
<pre> 
dim oKeyValuePair as KeyItemPair
For Each oKeyValuePair In td.KeyValuePairs ' direct access to collection
   var = oKeyValuePair.Value 'either of .key,.value
Next</pre>
<p>Updated 25-Nov-11: The need for the helper class is to allow updates to the .Item without changing the order.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysmod.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysmod.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sysmod.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sysmod.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sysmod.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sysmod.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sysmod.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sysmod.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sysmod.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sysmod.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sysmod.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sysmod.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sysmod.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sysmod.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=64&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysmod.wordpress.com/2011/11/24/dictionary-vba-class-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f0c802a1182bf0d67a175a414c0dba3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysmod</media:title>
		</media:content>
	</item>
		<item>
		<title>The Science of Spreadsheet Risk Management, July 5-6 2012, Manchester UK</title>
		<link>http://sysmod.wordpress.com/2011/11/23/the-science-of-spreadsheet-risk-management-july-5-6-2012-manchester-uk/</link>
		<comments>http://sysmod.wordpress.com/2011/11/23/the-science-of-spreadsheet-risk-management-july-5-6-2012-manchester-uk/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 11:43:07 +0000</pubDate>
		<dc:creator>sysmod</dc:creator>
				<category><![CDATA[Excel/VBA]]></category>
		<category><![CDATA[Risk]]></category>
		<category><![CDATA[academics]]></category>
		<category><![CDATA[conference 2012]]></category>
		<category><![CDATA[consultants]]></category>
		<category><![CDATA[controls]]></category>
		<category><![CDATA[eusprig]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[manchester]]></category>
		<category><![CDATA[papers]]></category>
		<category><![CDATA[spreadsheet risk]]></category>

		<guid isPermaLink="false">http://sysmod.wordpress.com/?p=60</guid>
		<description><![CDATA[The European Spreadsheet Risks Interest Group (www.eusprig.org) has issued a call for papers for their 13th Annual Conference on the theme “The Science of Spreadsheet Risk Management”. The conference will be held on the 5th and 6th of July 2012 &#8230; <a href="http://sysmod.wordpress.com/2011/11/23/the-science-of-spreadsheet-risk-management-july-5-6-2012-manchester-uk/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=60&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The European Spreadsheet Risks Interest Group (<a href="http://www.eusprig.org">www.eusprig.org</a>) has issued a call for papers for their 13th Annual Conference on the theme “The Science of Spreadsheet Risk Management”. The conference will be held on the 5th and 6th of July 2012 in Manchester, United Kingdom. Papers are welcomed on the management, development and use of spreadsheets.</p>
<p>Academic papers and practitioner reports describing how organisations have developed enterprise policies and best practices covering the development, testing, use, deployment and control of spreadsheets will be particularly welcome.</p>
<p>Here are some sample paper titles I&#8217;d like to see:</p>
<p>Spreadsheet Success: How we did It<br />
Spreadsheet Efficiency and Productivity<br />
Balancing Spreadsheet Controls and Benefits<br />
Spreadsheet Development : Smart and Safe<br />
Safe and Effective Prescriptions for Spreadsheet Users</p>
<p>More info at <a href="http://www.eusprig.org/call-for-papers.htm">www.eusprig.org/call-for-papers.htm</a></p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysmod.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysmod.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sysmod.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sysmod.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sysmod.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sysmod.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sysmod.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sysmod.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sysmod.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sysmod.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sysmod.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sysmod.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sysmod.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sysmod.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=60&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysmod.wordpress.com/2011/11/23/the-science-of-spreadsheet-risk-management-july-5-6-2012-manchester-uk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f0c802a1182bf0d67a175a414c0dba3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysmod</media:title>
		</media:content>
	</item>
		<item>
		<title>SoftTest Event With Geoff Thompson and Graham Thomas in Galway, Dublin and Belfast</title>
		<link>http://sysmod.wordpress.com/2011/11/15/softtest-event-with-geoff-thompson-and-graham-thomas-in-galway-dublin-and-belfast/</link>
		<comments>http://sysmod.wordpress.com/2011/11/15/softtest-event-with-geoff-thompson-and-graham-thomas-in-galway-dublin-and-belfast/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 11:37:42 +0000</pubDate>
		<dc:creator>sysmod</dc:creator>
				<category><![CDATA[Software Quality]]></category>
		<category><![CDATA[problem patterns]]></category>
		<category><![CDATA[SoftTest]]></category>
		<category><![CDATA[Software testing]]></category>
		<category><![CDATA[test management]]></category>
		<category><![CDATA[Test Process Improvement]]></category>

		<guid isPermaLink="false">http://sysmod.wordpress.com/?p=54</guid>
		<description><![CDATA[SoftTest Ireland (www.softtest.ie) in association with its sponsors (InterTrade Ireland, Sogeti and Software Skillnet) would like to announce the following events in Belfast, Galway and Dublin featuring two international speakers Geoff Thompson and Graham Thomas. Full details at http://softtest.ie/sign-up-for-our-next-event-with-geoff-thompson-and-graham-thomas/ “Testing, &#8230; <a href="http://sysmod.wordpress.com/2011/11/15/softtest-event-with-geoff-thompson-and-graham-thomas-in-galway-dublin-and-belfast/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=54&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SoftTest Ireland (<a href="http://www.softtest.ie/">www.softtest.ie</a>) in association with its sponsors (InterTrade Ireland, Sogeti and Software Skillnet) would like to announce the following events in Belfast, Galway and Dublin featuring two international speakers Geoff Thompson and Graham Thomas.</p>
<p>Full details at</p>
<p><a href="http://softtest.ie/sign-up-for-our-next-event-with-geoff-thompson-and-graham-thomas/">http://softtest.ie/sign-up-for-our-next-event-with-geoff-thompson-and-graham-thomas/</a></p>
<p>“Testing, so many problems but we have the solutions don’t we?”  with Geoff Thompson</p>
<p>“Test Process Improvement – Answering the BIG questions!” with Graham Thomas</p>
<p>Belfast – Wednesday, 30th November – 12.00 – 2.00pm – Holiday Inn , Ormeau Avenue, Belfast<br />
 <a href="http://belfastsofttestdoubleevent.eventbrite.com/">http://belfastsofttestdoubleevent.eventbrite.com/</a></p>
<p>Dublin &#8211; Thursday, 1st December – 6.00 – 8.00pm, Central Hotel, Exchequer Street, Dublin<br />
<a href="http://dublinsofttestdoubleevent.eventbrite.com/">http://dublinsofttestdoubleevent.eventbrite.com/</a></p>
<p>Galway &#8211; Friday, 2nd December – 11am – 1pm Clayton Hotel, Ballybrit, Galway<br />
<a href="http://galwaysofttestdoubleevent.eventbrite.com/">http://galwaysofttestdoubleevent.eventbrite.com/</a><br />
 </p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysmod.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysmod.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sysmod.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sysmod.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sysmod.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sysmod.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sysmod.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sysmod.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sysmod.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sysmod.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sysmod.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sysmod.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sysmod.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sysmod.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=54&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysmod.wordpress.com/2011/11/15/softtest-event-with-geoff-thompson-and-graham-thomas-in-galway-dublin-and-belfast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f0c802a1182bf0d67a175a414c0dba3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysmod</media:title>
		</media:content>
	</item>
		<item>
		<title>Software Development Productivity Analytics?</title>
		<link>http://sysmod.wordpress.com/2011/11/14/software-development-productivity-analytics/</link>
		<comments>http://sysmod.wordpress.com/2011/11/14/software-development-productivity-analytics/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 09:45:15 +0000</pubDate>
		<dc:creator>sysmod</dc:creator>
				<category><![CDATA[Software Quality]]></category>
		<category><![CDATA[efficiency]]></category>
		<category><![CDATA[error reduction]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[PSP]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[time recording]]></category>

		<guid isPermaLink="false">http://sysmod.wordpress.com/?p=50</guid>
		<description><![CDATA[Does anyone know of current methods to record developer time with some kind of analysis either post hoc review or concurrent notetaking to show where time is being spent? In the Personal Software Process (PSP) the first stage is to &#8230; <a href="http://sysmod.wordpress.com/2011/11/14/software-development-productivity-analytics/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=50&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<div>
<p>Does anyone know of current methods to record developer time with some kind of analysis either post hoc review or concurrent notetaking to show where time is being spent?</p>
<p>In the Personal Software Process (PSP) the first stage is to record one&#8217;s work and learn to distinguish between time spent writing working software, injecting bugs, and removing them. Ultimately the aim is to work better with fewer defects therefore improving productivity.<br />
This is something I&#8217;ve only ever seen as a project, whether for research or as part of a process improvement initiative. Nonetheless it has always been a surprise to the developer to see how much time they spend fixing stuff and how useful it is to be able to say &#8220;if we were told that first it would have saved time&#8221; or &#8220;I see you&#8217;re doing it that way .. do it this way, it&#8217;s faster and less error prone&#8221;. Second-person review only works in a mature environment of course, otherwise it becomes a blame game.</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysmod.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysmod.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sysmod.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sysmod.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sysmod.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sysmod.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sysmod.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sysmod.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sysmod.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sysmod.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sysmod.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sysmod.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sysmod.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sysmod.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysmod.wordpress.com&amp;blog=13776823&amp;post=50&amp;subd=sysmod&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysmod.wordpress.com/2011/11/14/software-development-productivity-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f0c802a1182bf0d67a175a414c0dba3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysmod</media:title>
		</media:content>
	</item>
	</channel>
</rss>
