<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Safe as Milk &#187; work</title>
	<atom:link href="http://blogs.gnome.org/bolsh/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.gnome.org/bolsh</link>
	<description>Dave Neary's view of the world</description>
	<lastBuildDate>Fri, 09 Dec 2011 20:55:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Connecting Apache httpd to Tomcat with mod_jk: The bare minimum</title>
		<link>http://blogs.gnome.org/bolsh/2011/12/09/connecting-apache-httpd-to-tomcat-with-mod_jk-the-bare-minimum/</link>
		<comments>http://blogs.gnome.org/bolsh/2011/12/09/connecting-apache-httpd-to-tomcat-with-mod_jk-the-bare-minimum/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 20:55:53 +0000</pubDate>
		<dc:creator>Dave Neary</dc:creator>
				<category><![CDATA[freesoftware]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/bolsh/?p=1404</guid>
		<description><![CDATA[Earlier this week, I wrote: I hate docs that tell you what to do, but not why. As soon as a package name or path changes, you&#8217;re dust. This is maybe the 4th time I&#8217;ve been configuring Apache to delegate stuff to Tomcat using mod_jk, and every time is just like the first. For those [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this week, <a href="https://plus.google.com/109199464497582075623/posts/W3nciR3LUuS">I wrote</a>:</p>
<blockquote><p>I hate docs that tell you what to do, but not why. As soon as a package name or path changes, you&#8217;re dust. This is maybe the 4th time I&#8217;ve been configuring Apache to delegate stuff to Tomcat using mod_jk, and every time is just like the first.</p></blockquote>
<p>For those who don&#8217;t know, mod_jk is a module inplementing the wire protocol AJP/13, which allows a normal HTTP web server to forward on certain requests to a second server. In this case, we want to forward requests for JSP pages and servlets to Tomcat 6. This allows you to do neat things like serve static content with Apache and only forward on the dynamic Java stuff to Tomcat. The user sees a convenient URL (no port :8080 on the hostname) and the administrator gets to serve multiple web scripting languages on the same server, or load balance requests for Java server resources across several hosts.</p>
<p>I have spent enough time on it at this point, I think, that I understand all of the steps in the process, and have stripped it down to the bare minimum that one would need to do in terms of configuration to get things working. And so I&#8217;m putting my money where my mouth is, and this is my attempt to write a nice explanation of how mod_jk does its thing, and how to avoid some of the common mistakes I had.</p>
<p>First, a remark: Apache is one of those pieces of software that has gotten harder, rather than easier, to configure as time has gone on. Distributions each package it differently, with different &#8220;helpful&#8221; mechanisms that make common tasks like enabling a module easier, and to enable convenient packaging of modules like PHP, independent of the core package. But the overall effect is that a lot of magic done by distributions makes it much harder to follow the upstream documentation. Config files are called different names, or stored in different places. Different distributions handle the inclusion of config file snippets differently. And so on.</p>
<p>This is not to say that Apache, Tomcat and mod_jk don&#8217;t have some nice docs &#8211; they do, but often the docs don&#8217;t correspond to the distros, or haven&#8217;t been updated in a while, and often they don&#8217;t explain why you have to do something, putting emphasis instead on what you need to do. After all my reading, I finally found the Holy Grail I was looking for &#8211; <a href="http://tomcat.apache.org/connectors-doc/generic_howto/quick.html">the simple document of how to configure mod_jk</a> &#8211; but even this has its shortcomings. The article doesn&#8217;t mention Tomcat, for example, which left me digging around for information on the configuration I needed to do to Tomcat, which led me to <a href="http://tomcat.apache.org/tomcat-3.3-doc/mod_jk-howto.html#s8">this</a>, which led me to over-write the sample workers.properties file in the simple set-up document.</p>
<p>But if you understand the First Principles, you can figure out what&#8217;s going on with any organisation of configuration. That&#8217;s what I&#8217;m hoping to get across here.</p>
<h3>How does mod_jk do its thing?</h3>
<p>The first issue I had trouble getting my head around was how, exactly, all this was supposed to work. In particular, I didn&#8217;t quite understand how the configuration worked on the Tomcat size of things.</p>
<p>As I understand it, here&#8217;s what happens:</p>
<ul>
<li>A GET request comes in to httpd for http://localhost/examples/jsp/num/numguess.jsp</li>
<li>Apache processes the request, and find a matching pattern for the URL among JkMount directives</li>
<li>Apache then reads the file specified by the JkWorkersFile option to figure out what to do with the request. Let&#8217;s say that config file says to forward to localhost:8009 using the protocol ajp13</li>
<li>Tomcat has a Connector listening on port 8009, with the protocol AJP/13, which handles the request and replies on the wire. Apache httpd sends the reply back to the client</li>
</ul>
<h3>Apache httpd configuration</h3>
<p>There are two steps to configuring Apache:</p>
<ol>
<li>Enabling the module</li>
<li>Configuring mod_jk</li>
</ol>
<p>Apache provides a handy utility called &#8220;a2enmod&#8221; which will enable a module for you, once it&#8217;s installed. What happens behind the scenes for modules depends on the distribution. On Ubuntu, module load instructions are put in a file called /etc/apache2/mods-available/&lt;module&gt;.load optionally alongside a sample configuration file /etc/apache2/mods-available/&lt;module&gt;.conf. To enable the module, you create a symlink to the .load file in /etc/apache2/mods-enabled.</p>
<p>On my Ubuntu laptop, my jk.load contains:</p>
<blockquote><p>LoadModule jk_module /usr/lib/apache2/modules/mod_jk.so</p></blockquote>
<p>On OpenSuse, on the other hand, a line similar to this is explicitly added to the file /etc/apache2/sysconfig.d/loadmodule by sysconfig, based on the contents of a field in the configuration file /etc/sysconfig/apache2 &#8211; remember how I said that distro packaging makes things harder? If you added the line directly to the loadmodule file, the change would be lost the next time Apache restarts.</p>
<p>In both cases, these files (on Ubuntu, the mods-available/*.load files, and on OpenSuse the sysconfig.d/* files) are loaded by the main Apache config file (httpd.conf) at start-up.</p>
<h3>Configuring mod_jk</h3>
<p>The minimum configuration that mod_jk needs is a pointer to a Workers definition config file (JkWorkersFile). Other useful configuration options are a path to a log file (JkLogFile &#8211; which should be writable by the user ID which owns the httpd process) and a desired log level &#8211; I set JkLogLevel to &#8220;debug&#8221; while getting things set up. On OpenSuse, I also needed to set JkShmFile, since for the default file location (/srv/www/logs/jk-runtime-status) the directory didn&#8217;t exist and wasn&#8217;t writable by wwwrun, the user that owns the httpd process.</p>
<p>This configuration, and the configuration of paths below, is usually in a separate config file &#8211; in both Ubuntu and OpenSuse, it&#8217;s jk.conf in /etc/apache2/conf.d (files ending in .conf in this directory are automatically parsed at start-up). To avoid errors in the case where mod_jk is not present or loaded, you can surround all Jk directives with an &#8220;&lt;IfModule mod_jk.c&gt;&#8230;&lt;/IfModule&gt;&#8221; check if you&#8217;d like.</p>
<p>The JkMount directive configures what will get handled by which worker (more on workers later). It takes two arguments: a path, and the name of the worker to handle requests matching the path. Unix wildcards (globs) are accepted, so</p>
<blockquote><p>JkMount /examples/*.jsp ajp13_worker</p></blockquote>
<p>will match all files under /examples ending in .jsp and will pass them off to the ajp13_worker worker.</p>
<p>If you want Apache to serve any static content under your webapps, you&#8217;ll also need either a Directory or Alias entry to handle them. Putting together with the previous section, the following (from Ubuntu) was the jk.conf file I used to pass the handling of JSPs and servlets off to Tomcat, and serves static stuff through Apache:</p>
<blockquote><p>&lt;IfModule mod_jk.c&gt;</p>
<p style="padding-left: 30px">JkWorkersFile   /etc/libapache2-mod-jk/workers.properties<br />
JkLogFile       /var/log/apache2/mod_jk.log<br />
JkLogLevel      debug<br />
Alias /examples /usr/share/tomcat6-examples/examples<br />
JkMount /examples/*.jsp ajp13_worker<br />
JkMount /examples/servlets/* ajp13_worker</p>
<p>&lt;/IfModule&gt;</p></blockquote>
<p>I should use Directory to prevent Apache from serving anything it shouldn&#8217;t, like Tomcat config files under WEB-INF &#8211; I could also just use &#8220;JkMount /examples/* ajp13_worker&#8221; to have everything handled by Tomcat.</p>
<p>Now that Apache&#8217;s config is done, we need to configure mod_jk itself, via the workers.properties file we set in the JkWorkersFile parameter.</p>
<h3>workers.properties</h3>
<p>Sample <a href="http://tomcat.apache.org/tomcat-3.3-doc/Tomcat-Workers-HowTo.html">workers.properties files</a> contain a lot of stuff you probably don&#8217;t need. The basic, unavoidable parameters you will need are the name of a worker (which you&#8217;ve already used as the 2nd argument for JkMount above), and a hostname and port to send requests to, and a protocol type (there are several options for worker type besides AJP/1.3 &#8211; <a href="http://tomcat.apache.org/connectors-doc/generic_howto/loadbalancers.html">&#8220;lb&#8221; for &#8220;load balancer&#8221; is the most important to read up on</a>). For the above jk.conf, the simplest possible workers.properties file is:</p>
<blockquote><p>worker.list=ajp13_worker<br />
worker.ajp13_worker.port=8009<br />
worker.ajp13_worker.host=localhost<br />
worker.ajp13_worker.type=ajp13</p></blockquote>
<p>And that&#8217;s it! The last step is to set up Tomcat to handle AJP 1.3 requests on port 8009.</p>
<h3>Configuring Tomcat</h3>
<p>In principle, Tomcat doesn&#8217;t need to know anything about mod_jk.It just needs to know that requests are coming in on a given port, with a given protocol.</p>
<p>Typically, an AJP 1.3 connector is already defined in te default server.xml (in /usr/tomcat6 on both Ubuntu and OpenSuse) when you install Tomcat. The format of the connector configuration is:</p>
<blockquote><p>&lt;Connector port=&#8221;8009&#8243; protocol=&#8221;AJP/1.3&#8243; redirectPort=&#8221;8443&#8243; /&gt;</p></blockquote>
<p>I am pretty sure that this will work without the redirectPort option, but I haven&#8217;t tried it. It basically allows requests received with security constraints specifying encryption to be handled over SSL, rather than unencrypted.</p>
<p>In addition to this, Tomcat <a href="http://tomcat.apache.org/tomcat-3.3-doc/mod_jk-howto.html#s8">does provide a facility</a> to auto-create the appropriate mod_jk configuration on the fly. To do so, you need to specify an ApacheConfig in the Tomcat connector, and point it at the workers.properties file. This facility looks pretty straightforward, but I know I found it confusing in the past when I lost edits to the jk.conf file &#8211; I prefer manual configuration myself.</p>
<h3>Gotchas</h3>
<p>I have had quite a few gotchas while figuring all this out &#8211; I may as well share for the benefit of future people having the same problems.</p>
<ul>
<li>All the documentation for mod_jk installedd with the packages refers to Tomcat5 paths &#8211; for example, on OpenSuse, in the readme, I was asked to copy workers.config into /etc/tomcat5/base &#8211; a directory which doesn&#8217;t exist (even when you change the 5 to a 6)</li>
<li>If your apache web server uses virtual hosts (and, on Ubuntu, it does by default) then JkMounts are not picked up from the global configuration file! You need to either add &#8220;JkMountCopy true&#8221; to the VirtualHost section, or have JkMounts per VirtualHost. If you used Alias as I did above, and you try to run a servlet, the error message is just a 404. If you try to load a JSP, you will see the source.</li>
<li>If you make a mistake in your workers.property file (I had a typo &#8220;workers.list=ajp13_worker&#8221; for several hours) and your worker name is not found in a &#8220;worker.list&#8221; entry, you will see no error message at all with warnings set to error or info. With the warning level set to debug, you will see the error message &#8220;jk_translate::mod_jk.c (3542): no match for /examples/ found&#8221; The chances are you have a typo in either your jk.conf file (check that the name of the worker corresponds to the name you use in workers.properties), or you have a typo somewhere in your workers.properties file (is it really work.list? Does the worker name match? Is it the same as the worker name in the .host, .port and .type configuration?</li>
<li>Make sure you get Tomcat working correctly first and working perfectly on port 8080 &#8211; or you won&#8217;t know whether errors you&#8217;re seeing are Tomcat errors, Apache errors or mod_jk errors.</li>
</ul>
<p>I&#8217;m sure I&#8217;ve made mistakes and forgotten important stuff &#8211; I&#8217;m happy to get feedback in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/bolsh/2011/12/09/connecting-apache-httpd-to-tomcat-with-mod_jk-the-bare-minimum/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Community Software Development training course</title>
		<link>http://blogs.gnome.org/bolsh/2011/12/07/community-software-development-training-course/</link>
		<comments>http://blogs.gnome.org/bolsh/2011/12/07/community-software-development-training-course/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 16:33:38 +0000</pubDate>
		<dc:creator>Dave Neary</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/bolsh/?p=1399</guid>
		<description><![CDATA[For the past few months, I have been offering a new service &#8211; a training course tailored to helping a team be effective working with community projects &#8211; whether that is engaging an existing community, or growing a community around new code. Details of the topics I cover are up on my site. Developing software [...]]]></description>
			<content:encoded><![CDATA[<p>For the past few months, I have been offering a new service &#8211; a training course tailored to helping a team be effective working with community projects &#8211; whether that is engaging an existing community, or growing a community around new code. Details of the topics I cover <a href="http://www.neary-consulting.com/index.php/services/#community_training">are up on my site</a>. Developing software in community is as much a social activity as it is a technical activity &#8211; and engaging an existing community, like moving into a new neighbourhood or starting at a new school, can be very daunting indeed. This course covers not just the technical issues of community development, but also the social, management and strategic issues involved. Some of the questions that I try to help answer are:</p>
<ul>
<li>What are the tools and communication norms?</li>
<li>How can I get answers to my questions?</li>
<li>Is there a trick to writing patches that get reviewed quickly?</li>
<li>How do I figure out who&#8217;s in charge?</li>
<li>How much will it cost me to open source some code/to work with an existing project?</li>
<li>How does managing volunteers work?</li>
<li>Is there anything I can do to help my developers be more vocal upstream?</li>
<li>What legal issues should my developers be aware of?</li>
</ul>
<p>All of these things, in my experience, are challenges that organisations have to overcome when they start engaging with community projects like Apache, GNOME or the Linux kernel.</p>
<p>If you&#8217;re having trouble with these issues, or some subset of them, and are interested in a training seminar, please <a href="mailto:dave@neary-consulting.com">contact me</a>, and we&#8217;ll talk.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/bolsh/2011/12/07/community-software-development-training-course/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What community?</title>
		<link>http://blogs.gnome.org/bolsh/2011/10/06/what-community/</link>
		<comments>http://blogs.gnome.org/bolsh/2011/10/06/what-community/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 20:00:34 +0000</pubDate>
		<dc:creator>Dave Neary</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/bolsh/?p=1377</guid>
		<description><![CDATA[With the announcement of Tizen (pronounced, I learned, tie-zen, not tea-zen or tizz-en) recently, I headed over to the website to find out who the project was aimed at. I read this on the &#8220;Community&#8221; page: The Tizen community is made up of all of the people who collectively work on or with Tizen: Product [...]]]></description>
			<content:encoded><![CDATA[<p>With the announcement of <a href="http://www.tizen.org">Tizen</a> (pronounced, I learned, tie-zen, not tea-zen or tizz-en) recently, I headed over to the website to find out who the project was aimed at. I read this on the <a href="https://www.tizen.org/community">&#8220;Community&#8221;</a> page:</p>
<blockquote><p><em>The Tizen community is made up of all of the people who collectively work on or with Tizen:</em></p>
<ul>
<li><em>Product contributors: kernel/distribution developers, release managers, quality assurance, localization, etc.</em></li>
<li><em>Application developers: people who write applications to run on top of Tizen</em></li>
<li><em>Users: people who run Tizen on their device and provide feedback</em></li>
<li><em>Vendors: companies who create products based on Tizen</em></li>
<li><em>Other contributors: promotion, documentation, and much more</em></li>
</ul>
<p><em>Anyone can contribute by:</em></p>
<ul>
<li><em>Submitting patches</em></li>
<li><em>Filing bugs</em></li>
<li><em>Developing applications</em></li>
<li><em>Helping with wiki documentation</em></li>
<li><em>Participating in other community efforts and programs</em></li>
</ul>
</blockquote>
<p>Wow! That&#8217;s a diverse target audience, and a very wide ranging list of ways you can help out. But is it really helpful to scope the project so wide, and try to cater to such a wide range of use-cases from the start? And is the project at a stage where it even makes sense to advertise itself to some of these different types of users?</p>
<p>I have talked about <a href="http://blogs.gnome.org/bolsh/2011/01/13/whats-involved-in-maintaining-a-package/">the different meanings of &#8220;maintainer&#8221;</a> before, depending on whether you&#8217;re maintaining a code project or are a package maintainer for a distribution. I have also talked about the different types of community that build up around a project, and how each of them needs their own identity &#8211; particularly in the context of the MeeGo trademark. I particularly like <a href="http://webmink.com/essays/community-types/">Simon Phipps&#8217;s analysis of the four community types</a> as a way to clarify what you&#8217;re talking about.</p>
<p>For Tizen, I see between three and five different types of community, each with different needs, and each of which can form at different stages in the life-cycle of the project. Trying to &#8220;sell&#8221; the project to one type of community before the project is ready for them will result in disappointment and frustration all round &#8211; managing the expectations of people approaching Tizen will be vital to its long-term success, even if it opens you up to short-term criticism. Unless each of these communities is targeted individually and separately, and at the right time, I am sceptical about the results.</p>
<h3>&#8220;Upstream&#8221; software developers</h3>
<p>The first and most identifiably &#8220;Open Source&#8221; family of communities will be the software developers working on components and applications which will end up in the core of Tizen. For the most part, these communities exist already, and Samsung and Intel engineers are working with them. These are the projects we commonly call &#8220;upstreams&#8221; &#8211; projects you don&#8217;t control, but from whom code flows into your product.</p>
<p>In other cases, code will originate from Intel and/or Samsung. In the same way that Buteo, oFono and the various applications which were developed for the MeeGo Netbook UX were very closely associated with MeeGo, there will be similar projects (sometimes the same projects) which will have a close association with Tizen. Each of these projects will have their own personality, their own maintainers, roadmaps, specs &#8211; and each of them should have their own identity, and space to collaborate and communicate.</p>
<p>Communities form around programming projects not because of the code, but because of a shared vision and values. Each project will attract different people &#8211; the people who are interested in metadata and search are not the same as the people who will be passionate about system-wide contact integration. Each project needs its own web space, maintainers, bug tracker, mailing list, and wiki space. Of course, many projects can share the same infrastructure, and a lot of the same community processes (for things like code governance), and for projects closely related to Tizen, we can provide common space to help create a Tizen developer community in the same way there&#8217;s a GNOME developer community. But each community around each component will have its own personality and will need its own space.</p>
<p>At the level of Tizen, we could start with an architecture diagram, perhaps &#8211; and for each component on the architecture diagram, link to the project&#8217;s home page &#8211; many of the links will point to places like kernel.org, gnome.org, freedesktop.org and so on. For Tizen-specific projects, there could be a link to the project home page, with a list of stuff that needs to be done before the component is &#8220;ready&#8221;.</p>
<h3>Core platform packagers, testers, integrators</h3>
<p>Once we have a set of components which are working well together, we get to the heart of what I think will be Tizen&#8217;s early activity &#8211; bringing those components together into a cohesive whole. Tizen will be, basically, a set of distributions aimed at different form factors. And the deliverable in a distribution is not code or a Git tag, it&#8217;s a complete, integrated stack.</p>
<p>The engineering skills, resources and processes required to integrate a distribution are different to those of a code project. Making a great integrated Linux platform is obviously difficult &#8211; otherwise Red Hat would not be making money, and Ubuntu would not have had the opportunity to capture so much mind-share. Both Red Hat and Canonical do something right which others failed at before them.</p>
<p>Distributions attract a different type of contributor than code projects, and need a different set of tools and infrastructure to allow people to collaborate.At the distribution level, it is more likely you will be debating whether or not to integrate a particular package or its competitor than it is to debate whether to implement a feature in a specific package. Of course, it is possible to influence upstream projects to get specific features implemented, not least by providing developer resources, and there will be a need for some ambassadors to bridge the gap to upstream projects. And it is possible for a distribution to carry patches to upstream packages if that community disagrees. But in general, not much code gets written in distributions.</p>
<p>What the distro community needs and expects is infrastructure for continuous integration, bug tracking software, a way to submit and build software packages, good release engineering, an easy way to find out what packages need a maintainer (see <a href="http://www.debian.org/devel/wnpp/">Debian&#8217;s WNPP list</a>  or <a href="https://launchpad.net/ubuntu/+bugs?field.tag=needs-packaging">Ubuntu&#8217;s &#8220;need-packaging&#8221; list</a> for examples) and a way to influence what packages or features are included in future releases (see <a href="http://fedoraproject.org/wiki/Releases/16/Schedule">Fedora</a> or <a href="https://wiki.ubuntu.com/UbuntuDevelopment/ReleaseProcess">Ubuntu</a> for examples). They also want tools to allow packaging, testing and  deploying the integrated distribution &#8211; for an embedded distro, that might mean an emulator and an image creator, perhaps.</p>
<h3>Vendors and carriers</h3>
<p>Communities of companies are worth a special mention. Companies have very different ways of working together and agreeing on things than communities of individuals. I was tempted to just roll vendors into the &#8220;Platform integrators&#8221; community type, but they are sufficiently different to be considered another type of community. Vendors have different constraints and motivations than individual contributors to the platform, and we should be aware of those.</p>
<p>Vendors like to have a business relationship &#8211; some written agreement that shows where everyone stands. They have a direct relationship with people who buy their hardware, and have an interest (potentially in conflict with other communities) in owning the user relationship &#8211; through branded application stores, UI and support forums, for example. And since vendors are typically working on hardware development in parallel with software development, they care a lot about a reliable release schedule and quality level from the stack. Something that companies care about which individuals usually don&#8217;t are legal concerns around working with the process &#8211; do they have patent rights to the code they ship? Are they giving up any of their own potential patent claims?</p>
<h3>3rd party application developers</h3>
<p>Application developers don&#8217;t care, in general, whether the platform is open source or closed, or developed collaboratively or by one party (witness the popularity of Android and iOS with application developers). What they do care about are developer tools, documentation, and the ability to share their work with device users and other application developers. Some application developers will want to develop their applications as free software, and it is possible to enable that, but I think the most important thing for application developers is that it&#8217;s easy to do things with your platform, that there are good tools for developing, testing and deploying your application, that your platforms APIs are enabling the developer to do what he wants, and that you are providing a channel for those developers to get their apps to users of your platform.</p>
<p>An application developer doesn&#8217;t want to have to ship his software to 5 different app stores on every release &#8211; in contrast to vendors, he would like a single channel to his market. Other things he cares about are being able to form a relationship with his users &#8211; so app stores need to be social, allow user ratings and comments, and allow the author to interact with his users. Clear terms of engagement are vital here too &#8211; especially for commercial application developers. And application developers are also another type of community &#8211; they will want to share tips and tricks, code, and their thoughts on the project leaders in some kind of app developer knowledge base.</p>
<h3>Device users</h3>
<p>There is another potential community which I should mention, and that is users of your platform &#8211; typically, these will be users of devices running your platform. It should be possible for engaged users to share information, opinions, tips &amp; tricks, and interesting hacks among each other. It should also be possible to rate and recommend applications easily &#8211; this is in the interests of both your user community and your application developer ecosystem.</p>
<h3>OK, so what?</h3>
<p>Each of these community types is different, and they don&#8217;t mix well. They mature at different rates. There is no point in trying to build a user platform until there are devices running your platform on the market, for example</p>
<p>So each type of community needs a separate space to work. There is no point in catering to a 3rd party application developer until you have developer tools and a platform for him to develop against. Vendors will commit to products when they see a viable integrated platform. And so on.</p>
<p>What is vital is to be very clear, for each type of community, what the rules of engagement are. As an example, one company can control the integration of a platform and the development of many of its components (as is the case for Android) and everyone is relatively happy, because they know where they stand and what they&#8217;re getting into. But if you advertise as an open and transparent project, and a small group of people announce the decisions of what components are included or excluded from the stack (as was the case in MeeGo), then in spite of being vastly more open, people who have engaged with the project will end up unhappy, because of a mismatch between the message and the practice in the project.</p>
<p>So what about Tizen? I think it is a mistake to announce the projects as a place to &#8220;submit patches, report bugs and develop applications&#8221; when there is no identifiable code base, no platform to try, and no published SDK to develop against. By announcing that Tizen is an Open Source platform, Intel and Samsung have set an expectation for people &#8211; and these are people who have gone through the move to MeeGo under two years ago, and who have seen Nokia drop the project earlier this year. If they are disappointed by the project&#8217;s beginnings because the expectations around the project have been set wrong from the offset, it could take a long time to recover.</p>
<p>Personally, I would start low-key by announcing an architecture diagram and concentrating on code and features that need writing, then ramp up the integrator community with some alpha images and tools to allow people to roll their own; finally, when the platform stabilises roll out the developer SDK and app store and start building up an application developer community. But by aiming too big with the messaging, Tizen runs the risk of scaring some people away early. Time will tell.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/bolsh/2011/10/06/what-community/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Humanitarian Software &#8211; Using technology to help humanity</title>
		<link>http://blogs.gnome.org/bolsh/2011/09/22/humanitarian-software-using-technology-to-help-humanity/</link>
		<comments>http://blogs.gnome.org/bolsh/2011/09/22/humanitarian-software-using-technology-to-help-humanity/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 14:37:25 +0000</pubDate>
		<dc:creator>Dave Neary</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[freesoftware]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/bolsh/?p=1374</guid>
		<description><![CDATA[Tomorrow, Friday September 23rd, the Humanitarian FOSS track at the Open World Forum will bring together leaders from some of the most important humanitarian software projects and case studies of the impact these projects are having on people&#8217;s lives around the world. I&#8217;m happy to have been allowed to chair the track, and I am [...]]]></description>
			<content:encoded><![CDATA[<p>Tomorrow, Friday September 23rd, the Humanitarian FOSS track at the Open World Forum will bring together leaders from some of the most important humanitarian software projects and case studies of the impact these projects are having on people&#8217;s lives around the world. I&#8217;m happy to have been allowed to chair the track, and I am humbled by the quality of the presenters and the impact that their work is having.</p>
<p>In addition to the Humanitarian track, we are also honoured to have Laura Walker Hudson from FrontlineSMS give a keynote presentation on the overarching theme of “Humanitarian FOSS – serving humanity” in the main auditorium at 17:15. Laura will give an overview of the myriad ways that free and open source software is saving and helping people&#8217;s lives.</p>
<p>The Humanitarian track will have two core themes:</p>
<ul>
<li><strong>Crisis Management</strong>– how Free and Open Source Software plays a role in extreme events
<ul>
<li><a href="http://sahanafoundation.org/">The Sahana project</a>, born in Sri Lanka after the 2004 tsunami in the Indian Ocean, helps NGOs and citizens caught in a crisis by crowd-sourcing missing persons reports, co-ordinate different NGOs working in the same place, and track incident reports and volunteer co-ordination.</li>
<li>Tashiro Shuichi from Japan will present the ways that Open Source software helped during the tsunami disaster in Japan.</li>
<li>Syrine Tlili from the Tunisian Ministry of Communication Technologies will tell us how Open Source was used by citizens during the Arab Spring revolutions</li>
<li><a href="http://www.sigmah.org/">Sigmah</a> is a project that enables project management for NGOs<strong></strong></li>
</ul>
</li>
<li><strong>Sustainable Development</strong>– once the crisis is over, what are the projects that help with systemic problems like education, health-care, sanitation, and documenting human rights violations?
<ul>
<li>SMS is the killer app for communication in the developing world. Most villages in Africa, Asia and South America have cellphone connectivity, but unreliable power grid, Internet and no phone lines. <a href="http://www.frontlinesms.com/">FrontlineSMS</a> enables you to send and receive SMS messages from any computer, using a cheap phone or GSM modem. It is at the heart of every prominent humanitarian software project.</li>
<li><a href="http://www.sugarlabs.org/">Sugar</a> is an operating system which was designed from the ground up to meet the needs of educators in developing countries, as part of the OLPC (One Laptop Per Child) project to revolutionize the use of technology in education. Sean Daly from the Sugar project will show us a deployment of Sugar and OLPC in a secondary school in a small town in Madagascar.</li>
<li><a href="http://www.martus.org/">Martus</a>, a project created by <a href="http://www.benetech.org/">Benetech</a>, allows the secure recording and storage of testimony relating to human rights violations. Testimony collected with Martus has been used to successfully prosecute police officers for murder in Guatemala.</li>
<li><a href="http://mifos.org/">Mifos</a>, which was developed by <a href="http://www.grameen-info.org/">Grameen Bank</a>, the pre-cursor of micro-financing, provides a micro-financing platform for financial institutions.</li>
<li><a href="http://www.akvo.org/">Akvo</a> help connect doers and donors to transform communities in some of the poorest parts of the world, funding water, sanitation, and health-care projects around the world.</li>
<li>The <a href="http://www.openbankproject.com/">Open Bank Project</a> promotes financial transparency and provides tools to allow people to fight corruption in banking.</li>
</ul>
</li>
</ul>
<h3>Coders for Social Good</h3>
<p>There are dozens of amazing Free/Open Source Software projects working to improve the lives of people around the world. For example, <a href="http://www.literacybridge.org/">Literacy Bridge</a> provides talking books to communities in Africa, and <a href="http://openmrs.org/">OpenMRS</a> enables the gathering of medical information from regional clinics to reduce child mortality by improving resource allocation.</p>
<p>Many Open Source developers are developing software in communities because they want to make the world a better place. Working on a humanitarian project provides a unique opportunity to combine the social good of Open Source community projects and the public good of helping people in need. <a href="http://socialcoding4good.org/">Social Coding 4 Good</a> is a new initiative from Benetech which puts willing volunteers in contact with humanitarian projects in need of resources.</p>
<p>The <a href="http://openworldforum.org/index.php/eng/Conferences/Humanitarian-FOSS">schedule for the track</a> is available on the Open World Forum website. For any press or interview requests, please contact me by email <a href="mailto://dave@neary-consulting.com">dave@neary-consulting.com</a> or my cellphone +33 6 77 01 92 13.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/bolsh/2011/09/22/humanitarian-software-using-technology-to-help-humanity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where do we go from here?</title>
		<link>http://blogs.gnome.org/bolsh/2011/02/16/where-do-we-go-from-here/</link>
		<comments>http://blogs.gnome.org/bolsh/2011/02/16/where-do-we-go-from-here/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 11:43:17 +0000</pubDate>
		<dc:creator>Dave Neary</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[freesoftware]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[meego]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[elopocalypse]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[strategy]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/bolsh/?p=1253</guid>
		<description><![CDATA[The post-Elopocalypse angst has been getting me down over the past few days. It&#8217;s against my nature to spend a lot of time worrying about things that are decided, done, dusted. It was Democritus, I think, who said that only a fool worries about things over which he has no control, and I definitely identify [...]]]></description>
			<content:encoded><![CDATA[<p>The post-<a href="http://conversations.nokia.com/2011/02/11/open-letter-from-ceo-stephen-elop-nokia-and-ceo-steve-ballmer-microsoft/">Elopocalypse</a> <a href="http://www.engadget.com/2011/02/16/nokia-shareholders-and-unions-fight-back-against-microkia/">angst</a> has been getting me down over the past few days. It&#8217;s against my nature to spend a lot of time worrying about things that are decided, done, dusted. It was Democritus, I think, who said that only a fool worries about things over which he has no control, and I definitely identify with that. It seems that a significant number of people on mailing lists I&#8217;m subscribed to don&#8217;t share this character trait.</p>
<p>I prefer to roll with the punches, to ask, &#8220;where do we go from here?&#8221; &#8211; we have a new landscape, with Nokia potentially being a lot less involved in MeeGo over the coming months. Will they reduce their investment in 3rd party developers? Perhaps. I expect them to. Will they lay some people off? I bet that there will be a small layoff in MeeGo Devices, but I&#8217;d wager that there will be bigger cuts in external contracts. In any case, this is something over which I have no control.</p>
<p>First up &#8211; what next for MeeGo? While MeeGo is looking a lot less attractive for application developers  now, I still think there&#8217;s a great value proposition for hardware  vendors to get behind it in vertical markets. Intel seem committed, and MeeGo (even with Nokia reducing investment) is much broader than one company now. A lot of people are betting the bank on it being a viable platform. So I think it will be, and soon.</p>
<p>Will I continue contributing time &amp; effort to MeeGo? My reasons for contributing to MeeGo were not dependent on Nokia&#8217;s involvement, so yes, but I will be carefully eyeing business opportunities as well. I&#8217;d be lying if I said that I didn&#8217;t expect to get some business from a vibrant MeeGo ecosystem, and now I will need to explore other avenues. But the idea of collaborating on a core platform and building a set of free software form-factor specific UIs is still appealing. And I really do like the Maemo/MeeGo community a lot.</p>
<p>Luckily, the time to market difficulties that Nokia experienced are, in my opinion, issues of execution rather than inherent problems in working with free software. Companies have a clear choice between embracing proprietary-style development and treating upstream as &#8220;free code&#8221; (as Google have with Android), or embracing community-style development and working <a href="http://www.theopensourceway.org/book/">&#8220;The Open Source Way&#8221;</a> (as Red Hat have learned to do). Nokia&#8217;s problems came from the hybrid approach of engage-but-keep-something-back, which prevented them from leveraging community developers as co-developers, while at the same time imposing all the costs of growing and supporting a large community.</p>
<p>I expect lots of companies to try to learn from this experience and start working smarter with communities &#8211; and since that&#8217;s where <a href="http://www.neary-consulting.com/index.php/services/">I can help them</a>, I&#8217;m not too worried about the medium term.</p>
<p>I would bet on Nokia partners and subcontractors battening down the hatches right now until the dust settles, and potentially looking for revenue sources outside the MeeGo world. If I had a team of people working for me that&#8217;s what I&#8217;d do. If some Nokia work kept coming my way, I&#8217;d be glad of it, but right now I&#8217;d be planning a life without Nokia in the medium term.</p>
<p>For any companies who have followed Nokia from Symbian to MeeGo, my advice would be to stick to Linux, convert to an Android strategy, and start building some Windows Phone skills in case Nokia&#8217;s bet works out, but don&#8217;t bet the bank on it. And working effectively with community developed software projects is a key skill for the next decade that you should be developing (a small plug for my services there).</p>
<p>For anyone working on MeeGo within Nokia, the suspense over who might lose their jobs is worse than the fall, let me reassure you. Having been through a re-org or two in my time, I know that the wait can last weeks or months, and even when the cuts come, there&#8217;s always an itching suspicion of another one around the corner. Nothing is worse for morale in a team than wondering who will still be there next month. But you have learned valuable and sought-after skills working on MeeGo, and they are bankable on the market right now. If I were working on MeeGo inside Nokia right now, I think I&#8217;d ignore the possibility of a lay-off and get on with trying to make the MeeGo phone as great as possible. If I got laid off, I&#8217;d be happy to have a redundancy package worthy of Finland, and would be confident in my ability to find a job as a Linux developer very quickly.</p>
<p>For community members wondering whether to stick with MeeGo or jump ship, I&#8217;d ask, why were you hanging out around MeeGo in the first place? Has anything in the past week changed your motivations? If you wanted to have a shiny free-software-powered Nokia phone, you should have one by the end of the year. If you wanted to hack on any of the components that make up MeeGo, you can still do that. If you were hoping to make money off apps, that&#8217;s probably not going to happen with MeeGo on handsets any time soon. If you&#8217;re not convinced by the market potential of MeeGo apps on tablets, I&#8217;d jump ship to Android quick (in fact, why aren&#8217;t you there already?).</p>
<p>Qt users and developers are probably worried too. I don&#8217;t think that Qt is immediately threatened. The biggest danger for Qt at this point would be Intel &amp; others deciding that Qt was a bad choice and moving to something else. That would be a massive strategic blunder &#8211; on a par with abandoning the GTK+ work which had been done before moblin 2 to move to Qt. <a href="http://blogs.gnome.org/bolsh/2010/10/25/ubuntu-to-move-to-unity-as-default-desktop-for-11-04/">Rewriting user interfaces is hard</a> and I don&#8217;t think that Intel are ready to run the market risk of dropping Qt &#8211; which means that they&#8217;re pot-committed at this point. If Nokia ever did decide to drop Qt, Intel would probably be in the market to buy it. Then again, I can also see how Qt&#8217;s management might try to do an LMBO and bring the company private again. Either way, there will be a demand for Qt, and Qt developers, for some time to come.</p>
<p>No-one likes the guy giving unwanted advice to everyone, so this seems like a good place to stop. My instinct when something like this happens is to take a step back, see what&#8217;s inherently changed, and try to see what the landscape looks like from different perspectives. From my perspective, the future is definitely more challenging than it was a week ago, but it&#8217;s not like the Elopocalypse wiped out my livelihood. In fact, I have been thinking about life without Nokia since MeeGo was first announced last year, when I guessed that Nokia would prefer working through the Linux Foundation for an independent eye.</p>
<p>But even if Nokia were my only client, and they were going away tomorrow, I think I could probably find other clients, or get a job, quickly enough. It&#8217;s important to put these things in perspective.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/bolsh/2011/02/16/where-do-we-go-from-here/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Drawing up a roadmap</title>
		<link>http://blogs.gnome.org/bolsh/2011/02/07/drawing-up-a-roadmap/</link>
		<comments>http://blogs.gnome.org/bolsh/2011/02/07/drawing-up-a-roadmap/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 21:05:42 +0000</pubDate>
		<dc:creator>Dave Neary</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[freesoftware]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[openwengo]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[roadmap]]></category>
		<category><![CDATA[scheduling]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/bolsh/?p=1244</guid>
		<description><![CDATA[One of the most important documents a project can have is some kind of elaboration of what the maintainers want to see happen in the future. This is the concrete expression of the project vision &#8211; it allows people to adhere to the vision, and gives them the opportunity to contribute to its realisation. This [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most important documents a project can have is some kind of elaboration of what the maintainers want to see happen in the future. This is the concrete expression of the project vision &#8211; it allows people to adhere to the vision, and gives them the opportunity to contribute to its realisation. This is the document I&#8217;ll be calling a roadmap.</p>
<p>Sometimes the word &#8220;roadmap&#8221; is used to talk about other things, like branching strategies and release schedules. To me, a release schedule and a roadmap are related, but different documents. Releasing is about ensuring users get to use what you make. The roadmap is your guiding light, the beacon at the end of the road that lets you know what you&#8217;re making, and why.</p>
<p>Too many projects fall into the trap of having occasional roadmap planning processes, and then posting a mighty document which stays, unchanged, until the next time the planning process gets done. Roadmaps like these end up being historical documents &#8211; a shining example of how aspirations get lost along the way of product development.</p>
<p>Other projects are under-ambitious. Either there is no roadmap at all, in which case the business as usual of making software takes over &#8211; developers are interrupt-driven, fixing bugs, taking care of user requests, and never taking a step back to look at the bigger picture. Or your roadmap is something you use to track tasks which are already underway, a list of the features which developers are working on right now. It&#8217;s like walking in a forest at night with a head-light &#8211; you are always looking at your feet avoiding tree-roots, yet you have no idea where you&#8217;re going.</p>
<p>When we drew up <a href="http://lists.xcf.berkeley.edu/lists/gimp-user/2003-August/006576.html">the roadmap</a> for the GIMP for versions 2.0 and 2.2 in 2003, we committed <a href="http://www.mail-archive.com/gimp-developer@lists.xcf.berkeley.edu/msg06066.html">some of these mistakes</a>. By observing some projects like Inkscape (which has a history of excellent roadmapping) and learning from our mistakes, I came up with a different method which we applied to the WengoPhone from OpenWengo in 2006, and which served us well (until the project became <a href="http://trac.qutecom.org">QuteCom</a>, at least). Here are some of the techniques I learned, which I hope will be useful to others.</p>
<h2>Time or features?</h2>
<p>One question with roadmaps is whether hitting a date for release should be included as an objective. Even though I&#8217;ve said that release plans and roadmaps are different documents, I think it is important to set realistic target dates on way-points. Having a calendar in front of you allows you to keep people focussed on the path, and avoid falling into the trap of implementing one small feature that isn&#8217;t part of your release criteria. Pure time-based releases, with no features associated, don&#8217;t quite work either. The end result is often quite tepid, a product of the release process rather than any design by a core team.</p>
<p>I like <a href="http://www.joelonsoftware.com/items/2007/10/26.html">Joel&#8217;s scheduling technique</a>: &#8220;If you have a bunch of wood blocks, and you can&#8217;t fit them into a box,  you have two choices: get a bigger box, or remove some blocks.&#8221; That is, you can mix a time-based and feature-based schedule. You plan features, giving each one a priority. You start at the top and work your way down the list. At the feature freeze date, you run a project review. If a feature is finished, or will be finished (at a sufficient quality level) in time for release, it&#8217;s in. If it won&#8217;t realistically be finished in time for the release date, it&#8217;s bumped. That way, you stick to your schedule (mostly), and there is a motivation to start working on the biggest wood blocks (the most important features) first.</p>
<p>A recent article on <a href="http://www.codesimplicity.com/post/open-source-community-simplified/">lessons learned over years of Bugzilla development</a> by Max Kanat-Alexander made an interesting suggestion which makes a lot of sense to me &#8211; at the point you decide to feature freeze and bump features, it may be better to create a release branch for stabilisation work, and allow the trunk to continue in active development. The potential cost of this is a duplication of work merging unfinished features and bug fixes into both branches, the advantage is it allows someone to continue working on a bumped feature while the team as a whole works towards the stable release.</p>
<h2>Near term, mid term, long term</h2>
<p>The <a href="http://web.archive.org/web/20050206190027/www.inkscape.org/cgi-bin/wiki.pl?Roadmap">Inkscape roadmap from 2005</a> is a thing of beauty. The roadmap mixes beautifully long-term goals with short-term planning. Each release has a by-line, a set of one or two things which are the main focus of the release. Some releases are purely focussed on quality. Others include important features. The whole thing feels planned. There is a vision.</p>
<p>But as you come closer and closer to the current work, the plans get broken down, itemised further. The <a href="http://en.wikipedia.org/wiki/Big_Hairy_Audacious_Goal">BHAGs</a> of a release in 2 years gets turned into a list of sub-features when it&#8217;s one year away, and each of those features gets broken down further as a developer starts planning and working on it.</p>
<p>The fractal geometer in me identifies this as a scaling phenomenon &#8211; coding software is like <a href="http://en.wikipedia.org/wiki/Coastline_paradox">zooming in to a coastline and measuring its length</a>. The value you get when measuring with a 1km long ruler is not the same as with a 1m ruler. And as you get closer and closer to writing code, you also need to break down bigger tasks into smaller tasks, and smaller tasks into object design, then coding the actual objects and methods. Giving your roadmap this sense of scope allows you to look up and see in the distance every now and again.</p>
<h2>Keep it accurate</h2>
<p>A roadmap is a living document. The best reason to go into no detail at all for  future releases beyond specifying a theme is that you have no idea yet how long things will take to do when you get there. If you load up the next version with features, you&#8217;re probably aiming for a long death-march in the project team.</p>
<p>The inaccurate roadmap is an object of ridicule, and a motivation killer. If it becomes clear that you&#8217;re not going to make a date, change the date (and all the other dates in consequence). That might also be a sign that the team has over-committed for the release, and an opportunity to bump some features.</p>
<h2>Leave some empty seats</h2>
<p>In community projects, new contributors often arrive who would like to work on features, but they don&#8217;t know where to start. There is an in-place core team who are claiming features for the next release left &amp; right, and the new guy doesn&#8217;t know what to do. &#8220;Fix some bugs&#8221; or &#8220;do some documentation&#8221; are common answers for many projects including GNOME (with the <a href="https://bugzilla.gnome.org/buglist.cgi?keywords=gnome-love&amp;resolution=---">gnome-love keyword in Bugzilla</a>) and LibreOffice (with the <a href="http://wiki.documentfoundation.org/Easy_Hacks">easy hacks list</a>). Indeed, these do allow you to get to know the project.</p>
<p>But, as has often been said, developers like to develop features, and sometimes it can be really hard what features are important to the core team. This is especially true with commercial software developers. The roadmap can help.</p>
<p>In any given release, you can include some high priority features &#8211; stuff that you would love to see happen &#8211; and explicitly marked as &#8220;Not taken by the core team&#8221;. It should be clear that patches of a sufficiently high standard implementing the feature would be gratefully accepted. This won&#8217;t automatically change a new developer into a coding ninja, nor will it prevent an ambitious hacker from biting off more than he can chew, but it will give experienced developers an easy way to prove themselves and earn their place in the core team, and it will also provide some great opportunities for mentoring programs like the Google Summer of Code.</p>
<p><a href="http://subversion.apache.org/roadmap.html">The Subversion roadmap</a>, <a href="http://lwn.net/Articles/381794/">recently updated</a> by the core team, is another example of best practice in this area. In addition to a mixed features &amp; time based release cycle, they maintain a roadmap which has key goals for a release, but also includes a separate list of high priority features.</p>
<h2>The end result: Visibility</h2>
<p>The end result of a good roadmap process is that your users know where they stand, more or less, at any given time. Your developers know where you want to take the project, and can see opportunities to contribute. Your core team knows what the release criteria for the next release are, and you have agreed together mid-term and long-term goals for the project that express your common vision. As maintainer, you have a powerful tool to explain your decisions and align your community around your ideas. A good roadmap is the fertile soil on which your developer community will grow.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/bolsh/2011/02/07/drawing-up-a-roadmap/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>The Ladybird Guide to Business Intelligence</title>
		<link>http://blogs.gnome.org/bolsh/2011/01/26/the-ladybird-guide-to-business-intelligence/</link>
		<comments>http://blogs.gnome.org/bolsh/2011/01/26/the-ladybird-guide-to-business-intelligence/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 11:33:47 +0000</pubDate>
		<dc:creator>Dave Neary</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[bi]]></category>
		<category><![CDATA[etl]]></category>
		<category><![CDATA[jargon]]></category>
		<category><![CDATA[metrics]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/bolsh/?p=1233</guid>
		<description><![CDATA[Recently I have found myself frustrated by the lack of a very simple overview for Business Intelligence explaining what problems it solves, and how. For example, the Pentaho BI platform FAQ has a promising first question: &#8220;What is a business intelligence (BI) platform?&#8221; The answer is typical of BI overviews I have seen: A comprehensive [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I have found myself frustrated by the lack of a very simple overview for Business Intelligence explaining what problems it solves, and how.</p>
<p>For example, <a href="http://community.pentaho.com/faq/bi_platform.php">the Pentaho BI platform FAQ</a> has a promising first question: &#8220;What is a business intelligence (BI) platform?&#8221; The answer is typical of BI overviews I have seen:</p>
<blockquote><p>A comprehensive development and runtime environment for building complete solutions to business intelligence problems. The Pentaho BI Platform is the infrastructure and core services that integrate business intelligence components to complete the BI Suite.  This includes the infrastructure necessary to build, deploy, execute and support applications.</p></blockquote>
<p>I don&#8217;t know about you, but that gives me more questions than answers. What type of problems are business intelligence problems? What <strong>are</strong> the core services provided by a BI platform? What are BI components, and a complete BI suite? In short, what does it <strong>do</strong>?</p>
<p>The <a href="http://en.wikipedia.org/wiki/Business_intelligence">wikipedia article on business intelligence</a> is a bit better, but still gets into heavy acronyms quite early.</p>
<p>I think I have figured out what Don Norman calls a conceptual model which is about right, so for those who have struggled as I have recently, here is the Ladybird guide to Business Intelligence.</p>
<h2>What problems does BI solve?</h2>
<p>Let&#8217;s say you are the CEO of a company, and you want to track what the costs of the company are, across payroll, purchasing, marketing and sales, overall and by division. You also want to track revenues by division, product line, market and month. For each variable, you&#8217;d like to drill down when you see a figure that looks odd. Payroll in Asia increased 20% this year &#8211; did we buy a company? Are there savings to be made?</p>
<p>All of this information spans dozens of different computer systems, applications, databases. What you want is one application to rule them all, from which you can get nice graphical clickable data.</p>
<p>Let&#8217;s say you&#8217;re a free software project manager or community manager. You have lots of infrastructure for people working on the project &#8211; source control, mailing lists, forums, translation infrastructure, documentation, bug tracking, downloads, &#8230;</p>
<p>You want to know if your community is growing, shrinking or stagnant. You&#8217;d like to know if translators are up, and spot when something is up &#8211; we lost 3 Thai translators last cycle, does the Thai translation team have a problem? Is there a problem with wiki spam? A correlation between people active on the forums and commits to the project? Some of these questions span different applications, systems, and databases. What you want is one application to rule them all, where you can get a quick overview of what&#8217;s happening in the community, and click on something to drill down into the data, or create complex queries to spot correlations and patterns across different apps.</p>
<p>BI software is ideally suited to helping in both of these situations.</p>
<h2>How does it work?</h2>
<p>Very simply, a BI platform is a web application that allows you to create queries and visualise the results across a variety of data sources. At its simplest, you bring big lumps of data together and extract some useful numbers from it. If you&#8217;ve ever used a pivot table in a spreadsheet application, you&#8217;ve written a BI query.</p>
<p>Now we get into the acronyms and the jargon. Here&#8217;s a quick lexicon of commonly used BI terms:</p>
<dl>
<dt>ETL</dt>
<dd>Extract/Transform/Load &#8211; An ETL module allows you to script and automate the extraction of data from a funky data source (say, CSV files on a server, an auto-generated spreadsheet, or screen-scraping data from a HTTP query, or just an SQL database), and transform it into some other format (typically basic transformations like joins, mapping inputs to database fields, or applying simple arithmetic to convert to an agreed unit), and then store the result in a database.</dd>
<dt>OLAP</dt>
<dd>Online Analytical Processing &#8211; a fancy name for &#8220;queries&#8221;. There is a de facto standard query format called MDX and the database needs to be optimised for &#8220;multidimensional queries&#8221; (aka joins &#8211; like pivot tables in a spreadsheet). </dd>
<dt>Data Warehouse </dt>
<dd>A fancy name for database. </dd>
<dt>Reporting</dt>
<dd>The presentation of the results of queries in a graphical way.</dd>
</dl>
<p>In brief, then, a BI suite provides you with a way to suck in data from a variety of sources, store the data (if you need to) in a custom database which is optimised for querying across different data sources, a nice way to define the queries in which you are interested, and then present the results of those queries in a nice graphical way.</p>
<p>If you don&#8217;t need to do any transformation of data, and you can operate directly on SQL databases, then you can typically provide the BI platform access to them directly. If you have any unusual data sources, or want to transform data, you will need an ETL module. If you are dealing with a lot of data and want to optimise query time, you might need a specific OLAP server. A query editor will help you create queries to get the information you want out of your data. You will need a reporting module to convert query results from raw tabular form to pie charts, bar charts and the like. And the BI server provides hooks for all of these various modules to work together, sucking in, storing, manipulating and presenting data in interesting ways.</p>
<h2>Is this all right?</h2>
<p>I would love to know if my mental model is flawed &#8211; so if I&#8217;m missing anything important, or I&#8217;ve said something which is a pile of rubbish, please do add a comment and let me know.</p>
<p>I know how hard it can be to cut through the jargon in an area where it&#8217;s ubiquitous and the first step in enterprise software is usually the hardest, so hopefully this will be useful to someone other than myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/bolsh/2011/01/26/the-ladybird-guide-to-business-intelligence/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Follow-up to &#8220;Shy Developer Syndrome&#8221;</title>
		<link>http://blogs.gnome.org/bolsh/2010/12/18/follow-up-to-shy-developer-syndrome/</link>
		<comments>http://blogs.gnome.org/bolsh/2010/12/18/follow-up-to-shy-developer-syndrome/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 21:29:12 +0000</pubDate>
		<dc:creator>Dave Neary</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[freesoftware]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/bolsh/?p=1217</guid>
		<description><![CDATA[Reposted from neary-consulting.com My article on &#8220;Shy Developer Syndrome&#8221; a few weeks ago garnered quite a bit of interest, and useful feedback. Since a lot of it adds valuable perspectives to the problem, I thought I should share some of my favourite responses. Here on gnome.org, Rodney Dawes argued that developers tend to stay away [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.neary-consulting.com/index.php/2010/12/18/follow-up-to-shy-developer-syndrome/"><em>Reposted from neary-consulting.com</em></a></p>
<p>My article on <a href="http://www.neary-consulting.com/index.php/2010/12/08/curing-shy-developer-syndrome/">&#8220;Shy Developer Syndrome&#8221;</a> a few weeks ago garnered quite a bit of interest, and useful feedback.  Since a lot of it adds valuable perspectives to the problem, I thought I  should share some of my favourite responses.</p>
<p>Here on <a href="../2010/12/08/curing-shy-developer-syndrome/">gnome.org</a>, <a href="../2010/12/08/curing-shy-developer-syndrome/#comment-3347">Rodney Dawes argued</a> that developers tend to stay away from mailing lists because the more public lists are very noisy:</p>
<blockquote><p>For me, mailing lists are a huge risk vs. low return  problem. They can  become a time sink easily, and it’s quite often that  pointless arguments  get started on them, as offshoots of the original  intent of the thread.  Web Forums also have this problem. And, to really  get much of anything  out of a list, you must subscribe to it, as not  everyone who replies, is  going to put you specifically in the  recipients headers. That means,  you’re now suddenly going to get a lot  more mail than you normally would  for any highly active project. And  for anyone trying to get involved in  an open source community, 99% of  the mail on that list is probably  going to be totally irrelevant to  them. It will just make tracking the  conversation they are trying to  have, much harder.</p></blockquote>
<p>I agree with Rodney that dealing with a new level of volume of email  is one of the trickiest things for new contributors. I still remember  when I signed up to lkml for an afternoon in college, only to find 200  new emails 3 hours later. I panicked, unsubscribed, and gave up that day  on being a Linux kernel hacker.</p>
<p>Since then, however, I have learned some email habits which are  shared by other free software hackers I know. Everyone I know has their  own tricks for working with medium or high volume mailing lists, and  some combination of them may make things livable for you, allowing you  to hear the signal without being drowned out by the noise. <a href="http://lifehackerbook.com/ch1/">LifeHacker is a good source of tips</a>.</p>
<p><a href="../2010/12/08/curing-shy-developer-syndrome/#comment-3349">Rob Staudinger</a> says something similar, pointing the finger at <a href="http://communitymgt.wikia.com/wiki/Bikeshedding">bikeshed discussions</a> as a big problem with many community lists:</p>
<blockquote><p>Will the zealots go and suggest postgresql’s process  model was poor, or  samba’s memory allocator sucks? Unlikely, but they  will tell you your  GUI was bad or that you’re using a package format  they don’t like, just  because it’s so easy to engage on that  superficial level.</p></blockquote>
<p><a href="http://lwn.net/Articles/419318/">Over at LWN</a>, meanwhile, <a href="http://lwn.net/Articles/419475/">Ciaran O&#8217;Riordan makes a good point</a>. Many developers working on free software want to separate their work and personal lives.</p>
<blockquote><p>When I leave the office at 6pm, my work should have no  more relevance  until the following morning.  Same when I quit a  company.  I might  choose to tell people where I work/worked, but it  should be a choice,  and I should be able to choose how much I tell  people about my work.   Having mailing list posts and maybe even cvs  commits might be too  detailed.  Maybe waaay too detailed.</p></blockquote>
<p>Finally, <a href="http://www.neary-consulting.com/index.php/2010/12/08/curing-shy-developer-syndrome/">over at neary-consulting.com</a>, <a href="http://www.neary-consulting.com/index.php/2010/12/08/curing-shy-developer-syndrome/#comment-203">MJ Ray suggested</a> that asking individuals to respond to a request can backfire:</p>
<blockquote><p>Publicly referring to individuals on a mailing list is a  double-edged  sword.  It might bolster the confidence of the named  individual, but it  also reduces the confidence of other people who  might have answered the  question.  In general, I feel it’s best not to  personalise comments  on-list.  Some e-democracy groups require all  messages to be addressed  to a (fictional or powerless) chair or editor,  similar to the letters  pages of The Times.</p></blockquote>
<p>While I agree with MJ in situations where the answer is accessible to  the wider community, but often only developers working for you, the  manager, are in a position to reply &#8211; at that point, you have a choice:  get the information off your developer and answer yourself, or ask him  to answer the question. and I&#8217;ve found that asking on the list has the  positive side-effects I mentioned.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/bolsh/2010/12/18/follow-up-to-shy-developer-syndrome/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Curing &#8220;Shy Developer Syndrome&#8221;</title>
		<link>http://blogs.gnome.org/bolsh/2010/12/08/curing-shy-developer-syndrome/</link>
		<comments>http://blogs.gnome.org/bolsh/2010/12/08/curing-shy-developer-syndrome/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 19:39:37 +0000</pubDate>
		<dc:creator>Dave Neary</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[freesoftware]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/bolsh/?p=1212</guid>
		<description><![CDATA[From the Neary Consulting blog: One of the most common issues I have seen with experienced professional software developers who start to work on community software is a reluctance to engage with public communication channels like mailing lists. Understanding the reasons why, and helping your developers overcome their timidity, is key to creating a successful [...]]]></description>
			<content:encoded><![CDATA[<p><em><a href="http://www.neary-consulting.com/index.php/2010/12/08/curing-shy-developer-syndrome/">From the Neary Consulting blog</a>:</em></p>
<p>One of the most common issues I have seen with experienced  professional software developers who start to work on community software  is a reluctance to engage with public communication channels like  mailing lists. Understanding the reasons why, and helping your  developers overcome their timidity, is key to creating a successful and  fruitful relationship with the community you are working with.</p>
<p>In my experience, common reasons for this timidity are a lack of  confidence in written English skills, or technical skills, nervousness  related to public peer review, and seeing community interaction as  &#8220;communication&#8221; or &#8220;marketing&#8221; (which are not part of their job), rather  than just &#8220;getting stuff done&#8221; (which, of course, is part of their  job).</p>
<p><a href="http://www.neary-consulting.com/index.php/2010/12/08/curing-shy-developer-syndrome/"><em>Read more&#8230;</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/bolsh/2010/12/08/curing-shy-developer-syndrome/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>MeeGo Progress Report</title>
		<link>http://blogs.gnome.org/bolsh/2010/11/08/meego-progress-report/</link>
		<comments>http://blogs.gnome.org/bolsh/2010/11/08/meego-progress-report/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 07:37:10 +0000</pubDate>
		<dc:creator>Dave Neary</dc:creator>
				<category><![CDATA[maemo]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/bolsh/?p=1196</guid>
		<description><![CDATA[Some of you may be interested in a guest article I wrote for the VisionMobile blog reviewing the state of MeeGo eight months after its announcement: &#8220;The MeeGo Progress Report&#8221; Some excerpts: On the state of the MeeGo application developer story: From the point of view of tools, documentation and software distribution channels, MeeGo is [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you may be interested in a guest article I wrote for <a href="http://www.visionmobile.com/blog/">the VisionMobile blog</a> reviewing the state of MeeGo eight months after its announcement: <a href="http://www.visionmobile.com/blog/2010/11/the-meego-progress-report-a-or-d/">&#8220;The MeeGo Progress Report&#8221;</a></p>
<p>Some excerpts:</p>
<p>On the state of the MeeGo application developer story:</p>
<blockquote><p>From the point of view of tools, documentation and software distribution  channels, MeeGo is undoubtedly behind its primary competitors – but for  such a young project, this is to be expected. The success of the  project among application developers and the free software community  will depend to a large extent on the project’s ability to fill these  gaps and provide developers with an excellent development experience.</p></blockquote>
<p>On the openness of the project:</p>
<blockquote><p>[...] In the mobile platform development world, it is fair to say that MeeGo is second to none in terms of its open development model.</p></blockquote>
<p>On comparisons with Android and iOS:</p>
<blockquote><p>It does not feel fair at this point to compare MeeGo, a project which  came into being 8 months ago, with iOS or Android, but this is the  yardstick which will be used when the first MeeGo smartphone comes on  the market. The project has come a long way since its inception, in  particular in working towards an open and transparent development model.  There is still some way to go but improvements have been happening  daily.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gnome.org/bolsh/2010/11/08/meego-progress-report/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  blogs.gnome.org/bolsh/category/work/feed/ ) in 1.73676 seconds, on Feb 10th, 2012 at 9:34 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 10th, 2012 at 10:34 pm UTC -->
