<?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>ffeathers</title>
	<atom:link href="http://ffeathers.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ffeathers.wordpress.com</link>
	<description>A technical writing and fiction blog by Sarah Maddox</description>
	<lastBuildDate>Tue, 21 May 2013 05:50:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ffeathers.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/67155352897ee61269e1f869ab42b699?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>ffeathers</title>
		<link>http://ffeathers.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ffeathers.wordpress.com/osd.xml" title="ffeathers" />
	<atom:link rel='hub' href='http://ffeathers.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Python as a useful tool for technical writers</title>
		<link>http://ffeathers.wordpress.com/2013/05/15/python-as-a-useful-tool-for-technical-writers/</link>
		<comments>http://ffeathers.wordpress.com/2013/05/15/python-as-a-useful-tool-for-technical-writers/#comments</comments>
		<pubDate>Wed, 15 May 2013 08:25:48 +0000</pubDate>
		<dc:creator>ffeathers</dc:creator>
				<category><![CDATA[Confluence]]></category>
		<category><![CDATA[technical writing]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[technical communication]]></category>
		<category><![CDATA[technical documentation]]></category>

		<guid isPermaLink="false">http://ffeathers.wordpress.com/?p=4795</guid>
		<description><![CDATA[Every now and then, and perhaps particularly so when working on a wiki, we technical writers need to manipulate our content in some way that&#8217;s not provided by our content management system. A few times recently, I&#8217;ve dabbled with Python to solve some problems. Do you often find the need to wrangle your content outside [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4795&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><em><strong>Every now and then, and perhaps particularly so when working on a wiki, we technical writers need to manipulate our content in some way that&#8217;s not provided by our content management system. A few times recently, I&#8217;ve dabbled with Python to solve some problems. Do you often find the need to wrangle your content outside your CMS, and do you use Python or another scripting tool?</strong></em></p>
<p>Python is a scripting language. It&#8217;s easy to learn, especially if you&#8217;ve done some programming in other languages. It&#8217;s just the ticket for data manipulation. It also offers a number of useful libraries. For example:</p>
<ul>
<li><span style="font-size:13px;">There are various libraries that you can use to access a web application via a SOAP or an XML-RPC remote API. I use the &#8220;</span><span style="font-size:13px;">xmlrpc.client&#8221;</span><span style="font-size:13px;"> library in a few scripts, to get access to Confluence data.</span></li>
<li><span style="font-size:13px;">The &#8220;os&#8221; library is useful for creating directories on the local file system of the computer you’re running on. For example, I use it to create a directory for the script’s output file.</span></li>
<li>The &#8220;re&#8221; library offers regular expression functions.</li>
</ul>
<h3>A script to find duplicate page names across Confluence spaces</h3>
<p>This was the first Python script that I wrote to wrangle Confluence data. I started with a specific problem: I had five text files, each containing a list of page names. These were the pages in five Confluence spaces, that we needed to copy into another, single space. The problem is that Confluence does not allow duplicate page names within a space. So I needed to check my lists for matching page names.</p>
<p>I hacked together a Python script that checked for duplicate page names. The script reads a text file containing Confluence space keys and page names, and reports on duplicate page names. My first script used nested lists to store and compare the page names. A kind Atlassian developer reviewed the script and suggested I use a dictionary instead. So I did. A dictionary stores data in key-value pairs. Much neater!</p>
<p>Then I thought: Some people may not have their page names in a handy text file. They may want to get a list of all pages in a Confluence space. So I wrote a script to get the names of all pages in a given set of Confluence spaces.</p>
<p>The details of the scripts are in this post: <a href="http://ffeathers.wordpress.com/2012/07/28/how-to-find-duplicate-page-names-across-confluence-spaces/">How to find duplicate page names across Confluence spaces</a>.</p>
<h3>A script to get the source code of all pages in a Confluence space, for a full-text search</h3>
<p>The search functionality in the Confluence web interface will return results from the visible content of the page, but it cannot get inside the XML-like elements that make up the Confluence storage format. For example, it&#8217;s not possible to find all pages that reference a certain image. And you can&#8217;t search for macro parameter values. This means, for example, you can’t search for all pages that include content from a given page.</p>
<p>Just recently I wrote a script that gets the XML storage format of all pages in a given Confluence space, and puts the code into text files on your local machine. Then you can use a powerful full-text search like grep, to find what you need. The details are in this post: <a href="http://ffeathers.wordpress.com/2013/04/20/confluence-full-text-search-using-python-and-grep/">Confluence full-text search using Python and grep</a></p>
<h3>More on the way</h3>
<p>I’m currently writing a couple more Python scripts to solve another problem. I’ll blog about it when I’ve finished.</p>
<h3>Resources</h3>
<p>If you&#8217;re interesting in Python, here are some links you many find useful:</p>
<ul>
<li><a title="Python docs" href="http://www.python.org/doc/"><span style="line-height:13px;">Python documentation</span></a></li>
<li><a title="Python tutorial" href="http://docs.python.org/3/tutorial/">The Python Tutorial</a></li>
<li><a title="Libraries" href="http://docs.python.org/3/tutorial/stdlib.html">Python libraries</a></li>
</ul>
<h3>A chuckle, courtesy of the Python technical writers</h3>
<p>From the <a title="Appetite in the Python docs" href="http://docs.python.org/py3k/tutorial/appetite.html">Python documentation</a>:</p>
<blockquote><p>By the way, the language is named after the BBC show “Monty Python’s Flying Circus” and has nothing to do with reptiles. Making references to Monty Python skits in documentation is not only allowed, it is encouraged!</p></blockquote>
<h3>Probably not a python</h3>
<p>Last week I was lucky enough to be in New Orleans in the USA. I went on a tour of the Honey Island swamp, and saw this snake coiled comfortably on a tree trunk. I’m not sure what type of snake it is. Maybe a Copperhead:</p>
<p><a href="http://ffeathers.files.wordpress.com/2013/05/img_4798-snake_trunc.jpg"><img class="alignnone size-large wp-image-4915" alt="Python for technical writers" src="http://ffeathers.files.wordpress.com/2013/05/img_4798-snake_trunc.jpg?w=604&#038;h=495" width="604" height="495" /></a></p>
<h3>What do you use?</h3>
<p>Do you often use Python or some other scripting tool to automate those pesky tasks your CMS can&#8217;t handle?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ffeathers.wordpress.com/4795/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ffeathers.wordpress.com/4795/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4795&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ffeathers.wordpress.com/2013/05/15/python-as-a-useful-tool-for-technical-writers/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/f52310b46a3f0b45af06905366d2331b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ffeathers</media:title>
		</media:content>

		<media:content url="http://ffeathers.files.wordpress.com/2013/05/img_4798-snake_trunc.jpg?w=604" medium="image">
			<media:title type="html">Python for technical writers</media:title>
		</media:content>
	</item>
		<item>
		<title>STC Summit 2013 wrapup #stc13</title>
		<link>http://ffeathers.wordpress.com/2013/05/09/stc-summit-2013-wrapup-stc13/</link>
		<comments>http://ffeathers.wordpress.com/2013/05/09/stc-summit-2013-wrapup-stc13/#comments</comments>
		<pubDate>Wed, 08 May 2013 21:13:27 +0000</pubDate>
		<dc:creator>ffeathers</dc:creator>
				<category><![CDATA[STC]]></category>
		<category><![CDATA[technical writing]]></category>
		<category><![CDATA[stc13]]></category>

		<guid isPermaLink="false">http://ffeathers.wordpress.com/?p=4897</guid>
		<description><![CDATA[Today is the last day of  STC Summit 2013, the annual conference of the Society for Technical Communication. All the sessions are finished, and I&#8217;m wrapping up my blogging before getting on a plane. You’ll find my posts under the tag stc13 on this blog. Kudos and a big vote of thanks to Paul Mueller, [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4897&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><em><strong>Today is the last day of  STC Summit 2013, the annual conference of the Society for Technical Communication. All the sessions are finished, and I&#8217;m wrapping up my blogging before getting on a plane. You’ll find my posts under the tag <a title="Posts tagged with &quot;stc13&quot;" href="http://ffeathers.wordpress.com/tag/stc13/">stc13</a> on this blog.</strong></em></p>
<p>Kudos and a big vote of thanks to <a title="Paul on Twitter" href="https://twitter.com/Paul_UserAid">Paul Mueller</a>, <a title="Chris on Twitter" href="https://twitter.com/chris_oh">Chris Hester</a> and the STC conference committee for organising such a great event. From my point of view, the organisation was flawless. I had fun, learned a lot, met great people, and spoke my piece to my satisfaction too. All of those are thanks to the hard work of the organisers.</p>
<p>There were 80+ education sessions, spread over 7 tracks, as well as various workshops, demos, trade expositions, training sessions and social events. I&#8217;ve blogged about the sessions I attended. Please take the posting dates with a pinch of salt. My WordPress site is set to Australian time.</p>
<ul>
<li><a title="Data visualisation at STC Summit 2013" href="http://ffeathers.wordpress.com/2013/05/09/data-visualisation-at-stc-summit-2013/">Data visualisation</a></li>
<li><a title="A marketing communications career at STC Summit 2013" href="http://ffeathers.wordpress.com/2013/05/09/a-marketing-communications-career-at-stc-summit-2013/">A marketing communications career</a></li>
<li><a title="Engaging infographics at STC Summit 2013" href="http://ffeathers.wordpress.com/2013/05/08/engaging-infographics-at-stc-summit-2013/">Engaging infographics</a></li>
<li><a title="Doc sprints at STC Summit 2013 – the presentation" href="http://ffeathers.wordpress.com/2013/05/08/doc-sprints-at-stc-summit-2013-the-presentation/">Doc sprints<em></em></a><em> (this is the session I presented)</em></li>
<li><a title="Conveying messages with graphs at STC Summit 2013" href="http://ffeathers.wordpress.com/2013/05/08/conveying-messages-with-graphs-at-stc-summit-2013/">Conveying messages with graphs</a></li>
<li><a title="Creating user experience for gamified products at STC Summit 2013" href="http://ffeathers.wordpress.com/2013/05/08/creating-user-experience-for-gamified-products-at-stc-summit-2013/">Creating user experience for gamified products</a></li>
<li><a title="From technical writer to content strategist at STC Summit 2013" href="http://ffeathers.wordpress.com/2013/05/08/from-technical-writer-to-content-strategist-at-stc-summit-2013/">From technical writer to content strategist</a></li>
<li><a title="Documentation teams and company mergers at STC Summit 2013" href="http://ffeathers.wordpress.com/2013/05/07/documentation-teams-and-company-mergers-at-stc-summit-2013/">Documentation teams and company mergers</a></li>
<li><a title="Flexible content and future-ready organisations at STC Summit 2013" href="http://ffeathers.wordpress.com/2013/05/07/flexible-content-and-future-ready-organisations-at-stc-summit-2013/">Flexible content and future-ready organisations</a></li>
<li><a title="Information development flexibility in Agile at STC Summit 2013" href="http://ffeathers.wordpress.com/2013/05/07/information-development-flexibility-in-agile-at-stc-summit-2013/">Information development flexibility in Agile</a></li>
<li><a title="Edit “EPUB and technical communication at STC Summit 2013”" href="http://ffeathers.wordpress.com/2013/05/07/epub-and-technical-communication-at-stc-summit-2013/">EPUB and technical communication</a></li>
</ul>
<p>Because there were many sessions running concurrently, it&#8217;s not possible to attend them all. I also attended a progression (a sequence of short talks within the space of an hour) where the pace was too fast for me to take notes.</p>
<h3>More sources of information</h3>
<p>Kai Weber has published some posts about the conference. Knowing him, he&#8217;ll come up with more once he&#8217;s made the long trip back to Germany. See <a title="Kai on WordPress" href="http://kaiweber.wordpress.com/tag/stc13/">posts tagged &#8220;stc13&#8243; on Kai&#8217;s blog</a>.</p>
<p>Twitter is very active at the moment. You can catch the tweets on the <a href="https://twitter.com/search?q=%23stc13">#stc hash tag</a>. That feed will fade in a few days, when the Twitter search API times the entries out.</p>
<p>You&#8217;ll find a full list of sessions, along with information about the speakers and related links for each session, at the <a title="Lanyrd.com" href="http://lanyrd.com/2013/society-for-technical-communication-summit/">STC Summit 2013 site on Lanyrd.com</a>.</p>
<p>I&#8217;m sure the STC will publish a summary and more links soon. And there are other bloggers around too. Stay tuned!</p>
<p>For a touch of light relief: A report from the intrepid band of <a title="Ghosts in Atlanta GA" href="http://travellingworm.wordpress.com/2013/05/10/ghosts-in-atlanta-ga/">STC ghost busters</a>.</p>
<h3>Pictures</h3>
<p>At the opening session and keynote presentation on Sunday. The stage before the action starts:</p>
<p><a href="http://ffeathers.files.wordpress.com/2013/05/img_4643-stcsummitkeynote2.jpg"><img alt="STC Summit 2013 wrapup" src="http://ffeathers.files.wordpress.com/2013/05/img_4643-stcsummitkeynote2.jpg?w=300&#038;h=225" width="300" height="225" /></a></p>
<p>The audience getting ready for the big event:</p>
<p><a href="http://ffeathers.files.wordpress.com/2013/05/img_4639-stcsummitkeynote1.jpg"><img class="alignnone size-medium wp-image-4903" alt="STC Summit 2013 wrapup" src="http://ffeathers.files.wordpress.com/2013/05/img_4639-stcsummitkeynote1.jpg?w=300&#038;h=133" width="300" height="133" /></a></p>
<p>The keynote speaker was <a title="@Pogue on Twitter" href="https://twitter.com/Pogue">David Pogue</a>, technology columnist for the New York Times and creator of the <em>Missing Manuals </em>series. At this Summit, David was awarded honorary membership of the STC. Here&#8217;s Alan Houser, outgoing STC president, with David Pogue:</p>
<p><a href="http://ffeathers.files.wordpress.com/2013/05/img_4645-sctsummitkeynote4-alanhouser-davidpogue.jpg"><img class="alignnone size-medium wp-image-4905" alt="STC Summit 2013 wrapup" src="http://ffeathers.files.wordpress.com/2013/05/img_4645-sctsummitkeynote4-alanhouser-davidpogue.jpg?w=300&#038;h=172" width="300" height="172" /></a></p>
<p>David in full swing:</p>
<p><a href="http://ffeathers.files.wordpress.com/2013/05/img_4650-sctsummitkeynote3-davidpogue.jpg"><img class="alignnone size-medium wp-image-4906" alt="STC Summit 2013 wrapup" src="http://ffeathers.files.wordpress.com/2013/05/img_4650-sctsummitkeynote3-davidpogue.jpg?w=300&#038;h=225" width="300" height="225" /></a></p>
<p>Intrepid ghost hunters on the Atlanta Ghost Tour:</p>
<p><a href="http://ffeathers.files.wordpress.com/2013/05/img_4677-stcsummit-atlantaghosttourleader.jpg"><img class="alignnone size-medium wp-image-4907" alt="STC Summit 2013 wrapup" src="http://ffeathers.files.wordpress.com/2013/05/img_4677-stcsummit-atlantaghosttourleader.jpg?w=300&#038;h=225" width="300" height="225" /></a></p>
<p>Nope, not really convinced there&#8217;s a ghost around here, but we&#8217;re having fun anyway:</p>
<p><a href="http://ffeathers.files.wordpress.com/2013/05/img_4690-stcsummit-atlantaghosttour2.jpg"><img class="alignnone size-medium wp-image-4908" alt="STC Summit 2013 wrapup" src="http://ffeathers.files.wordpress.com/2013/05/img_4690-stcsummit-atlantaghosttour2.jpg?w=300&#038;h=225" width="300" height="225" /></a></p>
<p>Thanks again everyone at stc13!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ffeathers.wordpress.com/4897/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ffeathers.wordpress.com/4897/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4897&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ffeathers.wordpress.com/2013/05/09/stc-summit-2013-wrapup-stc13/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/f52310b46a3f0b45af06905366d2331b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ffeathers</media:title>
		</media:content>

		<media:content url="http://ffeathers.files.wordpress.com/2013/05/img_4643-stcsummitkeynote2.jpg?w=300" medium="image">
			<media:title type="html">STC Summit 2013 wrapup</media:title>
		</media:content>

		<media:content url="http://ffeathers.files.wordpress.com/2013/05/img_4639-stcsummitkeynote1.jpg?w=300" medium="image">
			<media:title type="html">STC Summit 2013 wrapup</media:title>
		</media:content>

		<media:content url="http://ffeathers.files.wordpress.com/2013/05/img_4645-sctsummitkeynote4-alanhouser-davidpogue.jpg?w=300" medium="image">
			<media:title type="html">STC Summit 2013 wrapup</media:title>
		</media:content>

		<media:content url="http://ffeathers.files.wordpress.com/2013/05/img_4650-sctsummitkeynote3-davidpogue.jpg?w=300" medium="image">
			<media:title type="html">STC Summit 2013 wrapup</media:title>
		</media:content>

		<media:content url="http://ffeathers.files.wordpress.com/2013/05/img_4677-stcsummit-atlantaghosttourleader.jpg?w=300" medium="image">
			<media:title type="html">STC Summit 2013 wrapup</media:title>
		</media:content>

		<media:content url="http://ffeathers.files.wordpress.com/2013/05/img_4690-stcsummit-atlantaghosttour2.jpg?w=300" medium="image">
			<media:title type="html">STC Summit 2013 wrapup</media:title>
		</media:content>
	</item>
		<item>
		<title>Data visualisation at STC Summit 2013</title>
		<link>http://ffeathers.wordpress.com/2013/05/09/data-visualisation-at-stc-summit-2013/</link>
		<comments>http://ffeathers.wordpress.com/2013/05/09/data-visualisation-at-stc-summit-2013/#comments</comments>
		<pubDate>Wed, 08 May 2013 16:16:39 +0000</pubDate>
		<dc:creator>ffeathers</dc:creator>
				<category><![CDATA[STC]]></category>
		<category><![CDATA[technical writing]]></category>
		<category><![CDATA[stc13]]></category>

		<guid isPermaLink="false">http://ffeathers.wordpress.com/?p=4874</guid>
		<description><![CDATA[This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag stc13 on this blog. This is the last session of the conference! It&#8217;s [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4874&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><em><strong>This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag <a title="Posts tagged with &quot;stc13&quot;" href="http://ffeathers.wordpress.com/tag/stc13/">stc13</a> on this blog.</strong></em></p>
<p>This is the last session of the conference! It&#8217;s called <em>Data Visualization: Seeing through the Numbers</em>, presented by <a title="Phylise on Twitter" href="http://twitter.com/phylisebanner">Phylise Banner</a>. Phylise will also present some material from <a title="Rob on Twitter" href="http://twitter.com/rmitchell">Rob Mitchell</a>.</p>
<h3>The most important map in the world</h3>
<p>Phylise showed us a map of the Soho area of London. For the work we do as technical communicators, this is the most important map in the world.</p>
<p>John Snow, who lived in England in the 1800s. During the great cholera outbreak, he plotted the homes of the people who were dying. From this map, he was able to trace the source of the disease to the water source. The notion of relational data telling a story. As a result, the city owners took the handle off the Broad Street pump, and the outbreak stopped.</p>
<h3>Ten questions we need to ask</h3>
<ol>
<li>What story are you trying to tell?</li>
<li>What actions do you expect people to take? Are you creating visualisations for a decision maker, an explorer, or whatever, and what actions will they take based on your data?</li>
<li>What route will you take? Explore the data further. There are places where you can get data and explore it. Until you see what is there, you don&#8217;t know what you&#8217;re looking for.</li>
<li>What is the difference between qualitative and quantitative data? You need to know the difference. Quantitative is numbers and values. Qualitative is descriptive data. Some data is both.</li>
<li>Where does the data come from and what are the sources? Site your sources, and link to it if you want. Make sure it&#8217;s real, secure and correct. This may not be an easy task. Think about where else you can get it from.</li>
<li>What tools are available? There are some really interesting and good tools available:
<ul>
<li><a href="http://www-958.ibm.com/software/analytics/manyeyes/">ManyEyes</a>, from IBM. This is an online open tool, one of the best out there. Explore the data sets available here, as well as the visualisations. Be aware, if you put your data up here it will be visible to the world. Playing with this tool is a great way of learning. Read the section on data format and style.</li>
<li><a href="http://www.tableausoftware.com/public/">Tableau Public</a> is a free version of Tableau. A great free tool.</li>
</ul>
</li>
<li>What are the best practices? Best practices for working with data are different from those for working with visualisations. It&#8217;s not about being a mathematician or statistician, but it is about getting to know the field.
<ul>
<li>Read Stephen Few and Tufte.</li>
<li>Avoid pie charts. (This has come up in all three of the data visualisation sessions I&#8217;ve attended at this conference.)</li>
</ul>
</li>
<li>What to do with the data?
<ul>
<li>As an exercise, try comparing and contrasting the nutrition facts from difference restaurants. Phylise showed us three PDF files from various restaurants. How can you process a PDF file? You could try an OCR. But the first step is to decide the story you want to tell, then extract the relevant data. Type it into Excel so you can work with it.</li>
<li>Phylise showed us an Excel file where a single column contained 1 to 3 values, and occasionally text. This is the kind of mess you often get. So, you&#8217;ll need to clean the data before you can use it. This often takes up a large part of the task.</li>
</ul>
<ul>
<li>Learn regular expressions and Excel&#8217;s find/replace syntax, including wild cards. See <a href="http://www.regular-expressions.info/refflavors.html">Regular-Expressions.info</a>.</li>
<li>Code dichotomous variables to 1 and 0.</li>
<li>Pay attention to case. In qualitative data, a difference in case is a different variable.</li>
<li>Watch for invisible baddies! For example, spaces at the beginning and end of column. This expression is your friend: <code>ltrim(rtrim(Field))</code></li>
<li>Watch out for ampersands. Use the word &#8220;and&#8221; instead.</li>
<li>Remember that 1.0 is not the same as 1. Check your character types,and watch your floats versus integers. When rounding, make sure you have a standard policy.</li>
<li>Watch for outliers &#8211; data points that don&#8217;t fit in with the data. You can decide to take these out, if they&#8217;re not important to your data. But think about what it means. The outlier may be what tells your story.</li>
<li>Beware of the acceptable leading zero. For example, there are zip codes that begin with zero. Make sure the data type is text, if relevant.</li>
<li>If you&#8217;re using comma-separated values, use quotes. Otherwise you&#8217;ll run into trouble when the data itself contains commas.</li>
<li>Write macros to clean your data, if you get the same data regularly. This is where technical communicators have the skill sets required.</li>
</ul>
<ul>
<li>Figure out what the data is saying. For example, in qualitative data, you may need to know how many times certain words come up.</li>
<li>Decide on the best way of representing the data. For example, to create a word cloud, you may need a document containing all the words, repeated the relevant number of times. Phylise showed us a case where it took her more than a week to clean the data, then 30 seconds to generate the word cloud.</li>
</ul>
</li>
<li>What is the context? What is around the data, and what do you want to say in the specific environment?</li>
<li>What comes next? What other stories can you tell, and what new data can come from the data you have. You&#8217;ll never know this until you know the context of the data you have.</li>
</ol>
<h3>Some data to play with</h3>
<p>Phylise shows us a list of data sources. They will be available on SlideShare. Here are a few I had time to note down:</p>
<ul>
<li><a href="http://www.google.com.au/publicdata/directory">http://www.google.com.au/publicdata/directory</a></li>
<li><a href="http://www.data.gov/">http://www.data.gov/</a></li>
<li><a href="http://www.faa.gov/about/office_org/headquarters_offices/apl/aviation_forecasts/">http://www.faa.gov/about/office_org/headquarters_offices/apl/aviation_forecasts/</a></li>
</ul>
<h3>Tools</h3>
<p>Some I noted:</p>
<ul>
<li><a href="http://www.visualthesaurus.com/">http://www.visualthesaurus.com/</a></li>
<li>Mindmapping</li>
<li>Timelining</li>
</ul>
<h3>In summary</h3>
<p>There&#8217;s data behind every visualisation. Unless you get to know the data, you&#8217;re just creating another picture. You can become incredibly valuable if you go for what it means to work with the data.</p>
<p><a href="http://www-958.ibm.com/software/analytics/manyeyes/">ManyEyes</a> is a wonderful way to start.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ffeathers.wordpress.com/4874/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ffeathers.wordpress.com/4874/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4874&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ffeathers.wordpress.com/2013/05/09/data-visualisation-at-stc-summit-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/f52310b46a3f0b45af06905366d2331b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ffeathers</media:title>
		</media:content>
	</item>
		<item>
		<title>A marketing communications career at STC Summit 2013</title>
		<link>http://ffeathers.wordpress.com/2013/05/09/a-marketing-communications-career-at-stc-summit-2013/</link>
		<comments>http://ffeathers.wordpress.com/2013/05/09/a-marketing-communications-career-at-stc-summit-2013/#comments</comments>
		<pubDate>Wed, 08 May 2013 15:00:11 +0000</pubDate>
		<dc:creator>ffeathers</dc:creator>
				<category><![CDATA[STC]]></category>
		<category><![CDATA[technical writing]]></category>
		<category><![CDATA[stc13]]></category>

		<guid isPermaLink="false">http://ffeathers.wordpress.com/?p=4867</guid>
		<description><![CDATA[This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag stc13 on this blog. I&#8217;m attending a session titled A Marketing Communications Career: [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4867&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><em><strong>This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag <a title="Posts tagged with &quot;stc13&quot;" href="http://ffeathers.wordpress.com/tag/stc13/">stc13</a> on this blog.</strong></em></p>
<p>I&#8217;m attending a session titled <em>A Marketing Communications Career: Making the Transition</em>. The presenters are <a title="Barbara on Twitter" href="http://twitter.com/barbgia">Barbara Giammona</a>, <a title="Vici on Twitter" href="http://twitter.com/vkosterlenhardt">Vici Koster-Lenhardt</a>, <a title="Rich on Twitter" href="http://twitter.com/richmaggiani">Rich Maggiani</a>, and <a title="Eric on Twitter" href="http://twitter.com/erickoup">Eric Koup</a>.</p>
<h3>Summary of how marketing looks from the tech comm side</h3>
<p>How does a technical writer move into marketing? Someone comes and asks you to write content for the website, or a proposal, or a document to solve a crisis.</p>
<p>Some technical writers aren&#8217;t comfortable with writing marketing content. We&#8217;re comfortable writing something we can touch and test.</p>
<p>Another way to come into marketing: Perhaps your manager offers to change your title to be tech writer / marketing communication. Or you move fully into marketing.</p>
<p>What&#8217;s different about the role: The messaging, advertising, understanding the corporate and internal communications messaging.</p>
<p>For the rest of the session, the panel answered a number of pre-set questions. These are my notes from the resulting discussions. I haven&#8217;t tried to put people&#8217;s names next to each reply, but rather just summarised the whole picture.</p>
<h3>Key differences in attitude</h3>
<p>Typically, technical writers focus on details. They may struggle with structuring and presenting something from a different strategic point of view. The ability to evaluate what&#8217;s important is key.</p>
<p>The skills of a tech writer can come into play, being able to simplify the language into just what you need.</p>
<p>Is marketing lying? To many of us, it does seem so. So we should think about the transition path, if we want to move into marketing. Choose what&#8217;s closest to what we want to do.</p>
<p>The target market changes from users to buyers, and the content therefore becomes much more strategical. As soon as you start on the marketing path, you become more visible.</p>
<p>The requirements from management are not as clear-cut in marketing as in technical communication. You need to know the wider goals of the organisation. This requires less time in front of the screen and more time in trying to understand the aim. This takes collaboration.</p>
<h3>Personality types</h3>
<p>Looking at the Myers Briggs personality types, what is the difference between a tech writer and a marketing communicator?</p>
<p>A marketing person will have more contact with humans. Take this into account, especially if you are more of an introvert.</p>
<p>A marketing person tends to be intuitive, and are more of a feeling person than a thinking person. Perception is a strong gift for marketing. If you&#8217;re too rigid, the transition would be difficult.</p>
<p>Even if you&#8217;re a strong introvert, you can still play the extrovert, and make sure there are times in between when you can recharge. If you&#8217;re an extrovert, you may want to go into management.</p>
<h3>Education</h3>
<p>How would you go about taking the next step to getting into marketing?</p>
<p>You could be extreme, go back to school and get a degree, such as an MBA of marketing. Alternatively, do some certificate courses. Analyse your existing skills and see what more you need.</p>
<p>Volunteer for any project you can. If someone needs a newsletter, be the person who writes it.Newsletters may give you the opportunity to talk to higher management, and network with people you wouldn&#8217;t normally meet.</p>
<p>Look for volunteering opportunities outside the workplace too.</p>
<p>Set a clear goal of where you want your career to go. Then fill in the needs as you move along the path. Remember that your route to the goal may change along the way. Take it step by step.</p>
<h3>Pros and cons, perks and challenges</h3>
<p>Marketing is &#8220;way more fun&#8221; and &#8220;way cooler&#8221;!</p>
<p>Planning parties, making posters, organisational, project management&#8230; you&#8217;ll use all your skills. You&#8217;ll also work on more concurrent projects than you would as a tech writer. Emergencies happen, so you need to be fluid and juggle changes and concurrent projects.</p>
<p>It&#8217;s harder to plan vacation. Your work cycles are not based on the product release cycles.</p>
<p>You feel more part of the strategic plans of the company. You leap into a different track. You have a higher visibility to management. So you need to be sure you know what you&#8217;re doing.</p>
<p>Perks include travel. And you&#8217;ll make more money.</p>
<p>And you still get to write!</p>
<p>On the other hand, if you&#8217;re into tools, you&#8217;ll find that marketing is not about tools. It&#8217;s about communication rather than tools. Often the marketer asks someone else to do the design.</p>
<h3>How do you break in?</h3>
<p>The panel recommends the International Association of Business Communicators. They have the same kind of resources as STC, in terms of publications, knowledge banks, and job listings. They&#8217;re also very extrovert and welcoming.</p>
<p>Indeed.com is a job aggregator that will give you a feed of jobs available.</p>
<p>An organisation called Melcrum focuses on the employee and internal communication, useful if you&#8217;re in internal marketing.</p>
<p>Networking inside your own company will find you opportunities. Network outside your company too, as you never know where the opportunity will come from. Talk to your neighbour, volunteer organisations, and so on.</p>
<p>Do some volunteering inside your organisation. Managers don&#8217;t have time, and hate, to do the marketing for the projects they&#8217;re working on. Network with your sales force (customer care). Ask them if they need help, say &#8220;I can write that&#8221;. Take people to lunch. There is tons of marketing communication coming from HR. Find out who is writing the newsletter in your company. There may be a great opportunity to improve it.</p>
<h3>Questions from the floor</h3>
<p>These are the notes I took during the question-and-answer part of this session:</p>
<ul>
<li>When talking to designers and other people who produce the deliverables, have a vision of what you want. You don&#8217;t need to know how to use the tools. You just need to know what you want.</li>
<li>What about recent college graduates looking to break into marketing communications? College doesn&#8217;t prepare you for some realities in the working world. One is the iterative nature &#8211; you do things again and again. The review process, and the number of stakeholders who have a say on your work, can also be a surprise. It&#8217;s very collaborative. Every day at work is a group project. If you&#8217;re just coming out of college, find a place that offers an internship. Many places offer great interships, and there&#8217;s a variety of them.</li>
</ul>
<h3>Thanks to the panel</h3>
<p>This was a good insight into what marketers do, and some different types of marketing roles. Thanks Vici, Barbara, Rich and Eric.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ffeathers.wordpress.com/4867/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ffeathers.wordpress.com/4867/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4867&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ffeathers.wordpress.com/2013/05/09/a-marketing-communications-career-at-stc-summit-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/f52310b46a3f0b45af06905366d2331b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ffeathers</media:title>
		</media:content>
	</item>
		<item>
		<title>Engaging infographics at STC Summit 2013</title>
		<link>http://ffeathers.wordpress.com/2013/05/08/engaging-infographics-at-stc-summit-2013/</link>
		<comments>http://ffeathers.wordpress.com/2013/05/08/engaging-infographics-at-stc-summit-2013/#comments</comments>
		<pubDate>Wed, 08 May 2013 13:56:46 +0000</pubDate>
		<dc:creator>ffeathers</dc:creator>
				<category><![CDATA[STC]]></category>
		<category><![CDATA[technical writing]]></category>
		<category><![CDATA[infographics]]></category>
		<category><![CDATA[stc13]]></category>

		<guid isPermaLink="false">http://ffeathers.wordpress.com/?p=4865</guid>
		<description><![CDATA[This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag stc13 on this blog. Michael Opsteegh is about to present a session called [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4865&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><em><strong>This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag <a title="Posts tagged with &quot;stc13&quot;" href="http://ffeathers.wordpress.com/tag/stc13/">stc13</a> on this blog.</strong></em></p>
<p><a title="Michael on Twitter" href="https://twitter.com/StubbornlyWrite">Michael Opsteegh</a> is about to present a session called <em>Planning and Creating Engaging Infographics</em>. I&#8217;m delighted to be here, having survived the Atlanta Ghost Tour last night and just two hours&#8217; sleep.</p>
<h3>Introduction</h3>
<p>Michael started by discussing the graph on the front page of the Wall Street Journal this morning. Like most of us, he looked at the chart but didn&#8217;t read the article. So the only information he got was from the infographic on the side of the page.</p>
<p>Infographics are a powerful way of making information accessible and showing the relationships between pieces of information. You can weave a story consisting of graphs, images and more.</p>
<p>This presentation will focus mostly on the presentation of data, rather than the maths. The focus is on planning and building charts, graphs and larger infographics.</p>
<h3>Examples of infographics</h3>
<p>We saw a number of examples, and Michael talked us through the plus and minus points.</p>
<p>Infographics can be very persuasive, and can convey a lot of information.A graph, for example, is easier to digest and remember than a lot of text.</p>
<p>Sometimes they are overused. As a result, some people don&#8217;t like them. Still, they&#8217;re overall very popular.</p>
<p>Infographics can also be fun. Michael showed us one based on a batman theme.</p>
<p>There&#8217;s also a lot of room for misrepresentation.</p>
<h3>Uses other than selling products and services</h3>
<p>You could use an infographic for your resume. A website called <a href="http://vizualize.me/">visualize.me</a> will produce an infographic based on your LinkedIn profile. But Michael recommends that you do the infographic yourself, rather than ending up with one based on a template.</p>
<p>There&#8217;s an <a href="http://www.youtube.com/watch?v=QPKKQnijnsM">infographic showing the wealth gap in America</a>. It incorporates videos and charts, showing what people think the income difference is versus the actual situation. Unfortunately, it&#8217;s not easy to see who created the infographic. If someone isn&#8217;t prepared to acknowledge they created an infographic, then it may be difficult to trust it.</p>
<h3>Skills required to create infographics</h3>
<p>The creation of an infographic involves several disciplines. Michael has combined them into three areas:</p>
<ul>
<li>Liberal arts: Your infographic needs to tell a story, and it needs to be interesting. Companies are looking more and more to creative people to differentiate their products and services.</li>
<li>Social sciences: You need some knowledge of human behaviour and cognitive sciences. How your infographic will be received and how to convey the information.</li>
<li>Mathematics. You need to recognise if you&#8217;ve misrepresented your data, and understand the basics.</li>
</ul>
<p>What about graphic design? If you have the skills, that&#8217;s great. Otherwise, hire someone to do the design. You give them the information and the specification for what the chart should look like.</p>
<h3>Tools</h3>
<p>You need to be able to record your thoughts and ideas, and also questions you have. Michael finds Evernote very useful, because he can jot down notes wherever he is. Evernote syncs the notes from his phone, tablet, PC. You can also include photos, links, videos.</p>
<p>Excel is ubiquitous and powerful. Use it to sort your data and produce preliminary graphs, to help see what your information will look like. Use pivot tables to sort and filter data. Michael demonstrated how you can drill down into data via pivot tables, then generate a graph.</p>
<p>Illustrator or PhotoShop are useful, if you are going to design your own infographic. Michael recommends Illustrator, because it&#8217;s great for vector tools and also includes a graph tool.</p>
<h3>Visualising data</h3>
<p>Bar charts, which can be vertical or horizontal. These are good for comparing figures side by side.</p>
<p>Pie charts are OK for representing data as a whole, and the different percentages within them. But research shows that people aren&#8217;t capable of seeing the distinctions well. A doughnut chart is just like a pie chart, with the centre missing. This is even less useful than a pie chart, because you lose the angles at the centre. Bar charts are usually better.</p>
<p>Scatter charts are good for finding patterns in the data.</p>
<p>Line graphs are a little like scatter charts, except that you&#8217;re dropping the points at regular intervals.</p>
<p>An area chart is basically a line graph filled in. Good for demonstrating changes over time. The Wall Street Journal chart this morning is an example.</p>
<p>Venn diagrams show relationships between discrete objects. The overlap shows the shared parts.</p>
<p>Flow charts (pedigree charts) show hierarchy or workflows.</p>
<p>Pictograms or iconographs show set numbers. Michael showed a page with a number of figures of people. Each figure might represent 1 million, for example.</p>
<p>There are many other types, like radial charts and maps. See the <a title="On Amazon.com" href="http://www.amazon.com/Street-Journal-Guide-Information-Graphics/dp/0393072959">Wall Street Journal&#8217;s guide to designing infographics</a>. Also the <a href="http://au.blurb.com/b/1892410-napkin-sketch-workbook">Napkin Sketch Workbook by Don Moyer</a>.</p>
<h3>Research</h3>
<p>This is a critical stage. You need reliable and accurate data before you can move forward.</p>
<p>Identify your sources: must be current, reliable, non-biased.</p>
<p>Get permission to use the data. If a company conducted the research, for example.</p>
<h3>Editing</h3>
<p>This is where you decide what story you&#8217;re going to tell, and how you will tell it. Be aware, as you&#8217;re editing, that people will call you out if they find an anomaly or if they want to view it in a different way. So, play with different ways of viewing the data. See if there&#8217;s another way to tell your story.</p>
<p>Look for outliers in your data, and see how they affect the message.</p>
<p>What about rounding your numbers? Make sure you round at the end, after you&#8217;ve plotted the data. If you do it before, it will skew the graph.</p>
<p>If you&#8217;re going to place charts side by side, make sure you&#8217;re not comparing apples and pears. Make sure you&#8217;re using the right figures to illustrate a point. For bar charts, always start the axis at zero. For other graphs, if you need to start elsewhere make it very clear.</p>
<p>If you&#8217;re missing data, you may still be able to create the infographic. If you&#8217;re missing more than 2 points out of 10, then your infographic will not be reliable. Look at the data that&#8217;s missing and decide if it affects the perception of your story.</p>
<h3>Plotting</h3>
<p>This is the most fun part. The point where you actually draw the infographic.</p>
<p>Make sure you&#8217;re staying true to the data. Remain aware of the maths involved.</p>
<p>If you&#8217;re plotting several graphs for the same infographic, you&#8217;ll need to wireframe them. A wireframe is basically a set of boxes or circles (in Illustrator) to represent where the bits of data will go. The advantage is that you can move the sections around, before actually drawing them. Look at where the infographic will appear, to decide whether it needs to be tall and thin, or wide and short. Make sure your dimensions are correct.</p>
<h3>Reviewing</h3>
<p>Make sure your infographic visually represents the data that it ought to. Get a couple of colleagues to take a look and give you feedback. Ask them if there&#8217;s anything that worries them.</p>
<h3>Ethical considerations</h3>
<p>Throughout the process, make sure you don&#8217;t misrepresent the data.</p>
<p>Remember: Correlation is not causation. Michael showed us to line graphs that could show that ice cream consumption leads to murder.</p>
<p>Make sure the story you are trying to tell needs telling, and that it will benefit the audience.</p>
<h3>Accessibility</h3>
<p>There was a lively discussion around accessibility. Michael recommends you put a textual description on the page, near the infographic. An alternative is the new &#8220;longdesc&#8221; attribute. Don&#8217;t use the &#8220;alt&#8221; attribute, as it&#8217;s intended for a short description.</p>
<h3>Thanks Michael</h3>
<p>Thank you for an informative introduction to infographics. I&#8217;m keen to get my hands dirty creating one!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ffeathers.wordpress.com/4865/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ffeathers.wordpress.com/4865/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4865&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ffeathers.wordpress.com/2013/05/08/engaging-infographics-at-stc-summit-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/f52310b46a3f0b45af06905366d2331b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ffeathers</media:title>
		</media:content>
	</item>
		<item>
		<title>Doc sprints at STC Summit 2013 &#8211; the presentation</title>
		<link>http://ffeathers.wordpress.com/2013/05/08/doc-sprints-at-stc-summit-2013-the-presentation/</link>
		<comments>http://ffeathers.wordpress.com/2013/05/08/doc-sprints-at-stc-summit-2013-the-presentation/#comments</comments>
		<pubDate>Tue, 07 May 2013 23:41:03 +0000</pubDate>
		<dc:creator>ffeathers</dc:creator>
				<category><![CDATA[STC]]></category>
		<category><![CDATA[technical writing]]></category>
		<category><![CDATA[doc sprint]]></category>
		<category><![CDATA[stc13]]></category>

		<guid isPermaLink="false">http://ffeathers.wordpress.com/?p=4876</guid>
		<description><![CDATA[This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag stc13 on this blog. Today it was my turn to stand up on [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4876&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><em><strong>This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag <a title="Posts tagged with &quot;stc13&quot;" href="http://ffeathers.wordpress.com/tag/stc13/">stc13</a> on this blog.</strong></em></p>
<p>Today it was my turn to stand up on stage, knees quaking, watching people enter the room, and hoping what I had to say would be useful to them.</p>
<h3>Overview</h3>
<p>My presentation is called <em>Doc Sprints: The Ultimate in Collaborative Document Development</em>. It focuses on planning and running a doc sprint, and how doc sprints are useful in developing the documentation our readers need.</p>
<p>It also includes a number of <strong>stories and tips</strong>, gleaned from doc sprinters around the world. Thanks to <a title="Anne on the OpenStack blog" href="http://www.openstack.org/blog/2013/03/we-did-it-zero-to-book-in-five-days/">Anne Gentle</a>, <a title="Swapnil's blog" href="http://icreatedocs.blogspot.com.au/2012/09/experiencing-atlassian-doc-sprint-aug.html">Swapnil Ogale</a>, <a title="Cherryleat blog" href="http://www.cherryleaf.com/blog/2013/04/is-it-possible-to-combine-technical-authoring-with-literary-styles/">Ellis Pratt</a>, Katya Stepalina, <a title="Andreas's website" href="http://aevolu.com">Andreas Spall</a>, <a title="Jay's website" href="http://klick-ass.com/">Jay Meissner</a>, and <a title="Peter on Twitter" href="https://twitter.com/peterlubbers">Peter Lubbers</a>, for contributing their ideas!</p>
<h3>What&#8217;s in the presentation</h3>
<p>The presentation covers these topics:</p>
<ul>
<li>Introduction to doc sprints, agile environments, and why a doc sprint is a good fit for technical documentation.</li>
<li>Who to invite, when to start, and how to ensure that the sprint will produce the documents you need.</li>
<li>How to get the best out of the sprinters.</li>
<li>Collaborative tools for use during the sprint.</li>
<li>Sprinting across the world: Handling multiple time zones, early sprinters, late sprinters.</li>
<li>How to run a retrospective, and why.</li>
<li>Reviewing and publishing the documents, and writing up the results.</li>
<li>Other innovative types of sprints for documentation teams.</li>
</ul>
<h3>Getting the slides</h3>
<p>You can watch or download the slides from <a title="Doc sprint presentation on SlideShare" href="http://www.slideshare.net/sarahmaddox/stc-summit2013-presentationsarahmaddoxdocsprints">SlideShare</a>:</p>
<p><a href="http://www.slideshare.net/sarahmaddox/stc-summit2013-presentationsarahmaddoxdocsprints"><img class="alignnone size-large wp-image-4877" alt="Doc Sprints" src="http://ffeathers.files.wordpress.com/2013/05/docsprints.png?w=604&#038;h=450" width="604" height="450" /></a></p>
<h3>Feedback from attendees</h3>
<p>There were plenty of questions, both during and after the session, which is great. People came up and told me they enjoyed the presentation. That&#8217;s very very nice to hear.</p>
<p>There were also quite a few tweets during the session. This has to be my favourite, from <a title="Stephanie's tweet" href="https://twitter.com/Steph_Donovan/status/331774006900449282">Stephanie Donovan</a>:</p>
<div id="attachment_4880" class="wp-caption alignnone" style="width: 436px"><a href="http://ffeathers.files.wordpress.com/2013/05/docsprinttweet.png"><img class=" wp-image-4880 " alt="Doc sprints" src="http://ffeathers.files.wordpress.com/2013/05/docsprinttweet.png?w=426&#038;h=433" width="426" height="433" /></a><p class="wp-caption-text">Stephanie&#8217;s tweet</p></div>
<p>If you see any blog posts or reviews appearing, let me know. And thanks so much to everyone for being such a great audience!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ffeathers.wordpress.com/4876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ffeathers.wordpress.com/4876/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4876&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ffeathers.wordpress.com/2013/05/08/doc-sprints-at-stc-summit-2013-the-presentation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/f52310b46a3f0b45af06905366d2331b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ffeathers</media:title>
		</media:content>

		<media:content url="http://ffeathers.files.wordpress.com/2013/05/docsprints.png?w=604" medium="image">
			<media:title type="html">Doc Sprints</media:title>
		</media:content>

		<media:content url="http://ffeathers.files.wordpress.com/2013/05/docsprinttweet.png" medium="image">
			<media:title type="html">Doc sprints</media:title>
		</media:content>
	</item>
		<item>
		<title>Conveying messages with graphs at STC Summit 2013</title>
		<link>http://ffeathers.wordpress.com/2013/05/08/conveying-messages-with-graphs-at-stc-summit-2013/</link>
		<comments>http://ffeathers.wordpress.com/2013/05/08/conveying-messages-with-graphs-at-stc-summit-2013/#comments</comments>
		<pubDate>Tue, 07 May 2013 22:31:10 +0000</pubDate>
		<dc:creator>ffeathers</dc:creator>
				<category><![CDATA[STC]]></category>
		<category><![CDATA[technical writing]]></category>
		<category><![CDATA[stc13]]></category>

		<guid isPermaLink="false">http://ffeathers.wordpress.com/?p=4844</guid>
		<description><![CDATA[This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag stc13 on this blog. Early on Tuesday morning, Jean-luc Doumont presented a session [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4844&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><em><strong>This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag <a title="Posts tagged with &quot;stc13&quot;" href="http://ffeathers.wordpress.com/tag/stc13/">stc13</a> on this blog.</strong></em></p>
<p>Early on Tuesday morning, <a title="Jean-luc on Facebook" href="https://www.facebook.com/principiae">Jean-luc Doumont</a> presented a session titled <em>Conveying Messages with Graphs.</em> The blurb for this session is:</p>
<blockquote><p>Graphical displays are still poorly mastered by technical communicators and other professionals. They seldom think of using graphs to communicate about data; when they do, they often use the wrong graphs or in the wrong way. Based on Doumont’s book Trees, Maps, and Theorems, about “effective communication for rational minds,” this session discusses how to select the right graph and how to optimize the graph&#8217;s construction, and how to phrase a useful caption.</p></blockquote>
<p>Because this session is immediately before mine, I&#8217;ve decided not to take extensive notes. I&#8217;m too scatterbrained just before and just after live speaking! Instead, I&#8217;ll just give you my impressions from Jean-luc&#8217;s talk.</p>
<p>Jean-luc is an engaging and knowledgeable speaker, and the topic is very important in technical communication. I&#8217;m one of those text-oriented people. I find graphs difficult to interpret, and also difficult to create. A simple bar chart is good, but when you get to scatter-charts and 3D graphs, you leave me behind.</p>
<p>That&#8217;s why I attended Jean-luc&#8217;s session – to pump up my knowledge of conveying information in graphs. And I wasn&#8217;t disappointed. I&#8217;m now more comfortable with the more advanced types of graphs. More importantly, I know when to employ the simpler graphs, and how to knock out superfluous information. Simpler is better, as in most types of technical communication.</p>
<p>My two key take-aways are:</p>
<ul>
<li>Beware of the x-axis in Microsoft Excel. It assumes the data is string-based, even if you enter numerical values. If you want a true numerical reflection of your data, you need to set the data type explicitly.</li>
<li>Horizontal bar charts are often more effective than vertical ones. The default is often vertical, but try flipping it around. A big advantage is avoiding vertically-oriented text.</li>
</ul>
<p>Thanks Jean-luc for an informative presentation, delivered with charm. Here is a link to the handout from the session (PDF): <a title="PDF handout from Jean-luc Doumont" href="http://www.treesmapsandtheorems.com/pdfs/TM&amp;Th-4.0-summary.pdf">Effective graphical displays</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ffeathers.wordpress.com/4844/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ffeathers.wordpress.com/4844/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4844&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ffeathers.wordpress.com/2013/05/08/conveying-messages-with-graphs-at-stc-summit-2013/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/f52310b46a3f0b45af06905366d2331b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ffeathers</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating user experience for gamified products at STC Summit 2013</title>
		<link>http://ffeathers.wordpress.com/2013/05/08/creating-user-experience-for-gamified-products-at-stc-summit-2013/</link>
		<comments>http://ffeathers.wordpress.com/2013/05/08/creating-user-experience-for-gamified-products-at-stc-summit-2013/#comments</comments>
		<pubDate>Tue, 07 May 2013 20:58:17 +0000</pubDate>
		<dc:creator>ffeathers</dc:creator>
				<category><![CDATA[STC]]></category>
		<category><![CDATA[technical writing]]></category>
		<category><![CDATA[stc13]]></category>

		<guid isPermaLink="false">http://ffeathers.wordpress.com/?p=4846</guid>
		<description><![CDATA[This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag stc13 on this blog. Marta Rauch presented a session titled Game On! Creating [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4846&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><em><strong>This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag <a title="Posts tagged with &quot;stc13&quot;" href="http://ffeathers.wordpress.com/tag/stc13/">stc13</a> on this blog.</strong></em></p>
<p><a title="Marta on Twitter" href="http://www.slideshare.net/MartaRauch/rauch-game-onstc2013-20554472">Marta Rauch</a> presented a session titled <em>Game On! Creating User Experience for Gamified Products</em>. Marta learned about gamification when she became interested in what motivates people to contribute to communities. This was around 2005. She is now a certified gamification designer.</p>
<p>A key take-away from Marta:</p>
<blockquote><p>Gamification is already here. It&#8217;s time for us to get our game on!</p></blockquote>
<h3>Importance of gamification</h3>
<p>Why should we pay attention to it, as technical writers? Gamification is the technique of applying game techniques in non-game situations, to motivate people and drive behaviour. So if that&#8217;s what we need for a particular piece of user assistance, gamification would be a good fit.</p>
<p>Game techniques:</p>
<ul>
<li>Game dynamics, which are rules to help you progress through the game</li>
<li>Game mechanics that help you achieve your goals</li>
<li>Game components that help you track your progress</li>
</ul>
<h3>Some stats</h3>
<p>By 2014, over 705 of companies will have at least one gamified product. And by 2015, half will gamify innovation.</p>
<p>In the near future, a company that gamifies will be as important as eBay, Facebook, or Amazon.</p>
<p>In terms of money, the market is huge.</p>
<p>The focus is on engaging users. Gamification is the best way to engage younger workers (&#8220;millennial&#8221; workers). They have 10,0000 hours of gaming by age 21. This qualifies them as experts in gaming. They form 25% of the workforce now, and it&#8217;s a growing portion.</p>
<p>Marta highly recommends a TED talk by Dr Jane McGonigal: <a title="TED talk on YouTube" href="http://www.youtube.com/watch?v=dE1DuBesGYM">Gaming can make a better world</a>.</p>
<h3>Game changers for tech comm</h3>
<p>The next 9 sections are about the things gamification is introducing that we need to consider in tech comm.</p>
<h3>1. Understanding motivation</h3>
<p>We need to understand our players&#8217; (users&#8217;) motivation. What would engage them and what do they really like? To this end, Marta has set up special sessions at user conferences (such as Oracle OpenWorld) to talk about gamification. They had surprising results:</p>
<ul>
<li>Some players are not interested in badges, but rather in gaining access to information and people. That would be the kind of reward they would like.</li>
<li>Some people really like to help other people. This can also be a reward.</li>
</ul>
<p>There&#8217;s been a lot of research on the general types of players that play games, and what motivates them:</p>
<ul>
<li>Competing. Seeing how you rank against other players. Getting visibility.</li>
<li>Completing tasks and checking them off.</li>
<li>Helping other people.</li>
</ul>
<p>In your gamified product, have tasks that play to these difference types of motivates.</p>
<p>Marta gave the example of the Nike fitness apps. They target main user groups, such as people who want to move through their fitness goals, or those who want to talk to and share with friends, or those who want to compete.</p>
<h3>2. Gamified user assistance architecture and patterns</h3>
<p>Plan the process, then keep the players motivated throughout.</p>
<p>There&#8217;s the concept of &#8220;onboarding&#8221; in games. It helps people know what to do when they get started. Games give you a plan to get started, and quests to follow or levels to conquer. Marta gave an example of a game used to teach maths.</p>
<p>A use case in tech comm: we may need to get people more involved in installing and configuring a product, and we want to keep them motivated all the way to the end.</p>
<p>In games, there&#8217;s often no documentation. Everything is embedded. There may be a quest to set up your user profile and get connected with other people. The game may also show you what other people are doing &#8211; a bit of peer pressure.</p>
<h3>3. Gamification terminology</h3>
<p>Marta listed some examples of game terms that have crept into general terminology, such as:</p>
<ul>
<li>Onboarding</li>
<li>Avatar &#8211; this targets people who really like to customise and personalise</li>
<li>Quests</li>
<li>Leaderboards</li>
</ul>
<h3>4. Gamified messages</h3>
<p>Messages are really crucial in a game.  They set the tone, as well as telling people what to do and giving them instructions. Think about a coach in real life. The messages are there just when they&#8217;re needed.</p>
<p>Often there is a link to the game FAQ. Inspired players love to share what they learn in a forum, and you may want to consolidate the top tips into the FAQ.</p>
<h3>5. Writing style</h3>
<p>The style is more informal, more friendly, intended to engage and motivate.</p>
<p>Marta pointed us to a chart by Amy Jo Kim &#8211; a social actions matrix. It shows the type of words you would use, depending on the quarter of the chart in which the target audience sits, or the type of quest.</p>
<h3>6. Testing</h3>
<p>When testing, have people sitting in a booth, unable to see each other. Watch how they&#8217;re doing. Are they achieving what we want them to achieve. Are they gaming the system in ways we don&#8217;t really want? Sometimes you may want to let them do that, and add it as a new feature, otherwise design it out.</p>
<h3>7. Change mangement</h3>
<p>If you&#8217;re going to upgrade or change the game, you must let the players know. They&#8217;ll be engaged and motivated, and will hate it if you take something away or change it while they&#8217;re in mid stream.</p>
<h3>8. Accessibility</h3>
<p>If your company is required to be accessible, your gamification must be too. The best information available is from game designers. See <a title="Includification website" href="http://www.includification.com/">Includification</a> as a good source.</p>
<h3>9. Localisation</h3>
<p>This is always a challenge, because you need to consider the culture as well as translation. Game strategies may need to change. In some countries, for example, you don&#8217;t want a leaderboard, because it&#8217;s not seen as a good thing to be at the top of the board. Or, it may be OK for a group instead of an individual to be at the top. There are also legal and privacy considerations.</p>
<h3>Examples of user assistance</h3>
<p>Marta picked a few examples that she thought would be fun to talk about, and to get us thinking.</p>
<ul>
<li>Microsoft Office &#8211; Ribbon Hero 2. &#8220;You&#8217;ve tried [various games]. Finally, here&#8217;s a game that will make you better at your job.&#8221; Marta recommends we download and try this game. It&#8217;s fun. Knights on horses, dragons. The &#8220;Canterburied Tale&#8221; quest helps you learn Word, for example. It has some excellent and fun animations. There are other quests to help you with Excel, and more.</li>
<li>Adobe PhotoShop &#8211; Level Up. There are five key tasks. They had a business need to teach these tasks, to reduce support calls. An example is changing red-eye. The game takes you through various missions. You &#8220;level up&#8221; as you move through various missions, and its tied into social networks (Facebook). People love to share, so let them do it.</li>
<li>Cisco &#8211; Mind Share. Cisco knows their players &#8211; these are certifications for network administrators. It&#8217;s really hard to get the certification, and was a painpoint for the administrators. Cisco knew that their administrators really enjoy SciFi games, so this was very successful for them.</li>
</ul>
<h3>A gamified reading app</h3>
<p>This reading app was introduced in a gamification summit in San Francisco just a couple of weeks ago: &#8220;Read Social App&#8221;. You log in via Facebook, then start reading a book. The app shows your progress, and makes you feel good about it.</p>
<p>Marta showed us some great photos of how the app looks on a mobile device. You are presented with challenges to engage you in the content. Players type interesting tidbits they have learned while reading the chapter. The game also has ways to quiz you about what you&#8217;ve learned.</p>
<p>There&#8217;s also a way to unlock content. You can get access to a video, for example, as a reward for your effort.</p>
<p>You can see a tour at <a href="http://www.readsocialapp.com">http://www.readsocialapp.com</a>.</p>
<h3>Gamification framework</h3>
<p>How to get started:</p>
<ul>
<li>Define your business objectives</li>
<li>Define your audience (players)</li>
<li>Describe the behaviours you want them to follow</li>
<li>Devise activity loops</li>
<li>Remember it must be fun</li>
<li>Deploy the tools you need</li>
</ul>
<h3>Marta&#8217;s responses to some questions</h3>
<p>Gamification is not the same as games. It&#8217;s doing something with a business focus, but with a little more fun and a little more engagement.</p>
<p>Check your metrics. By gamifying a task, we aim to achieve that task a little more efficiently and effectively.</p>
<p>How does this apply to mid-career professionals? The data shows that the average age of a gamer is older than we thought. Also, a number of women play games. The Home Shopping network is very into gamification.</p>
<h3>Thanks Marta</h3>
<p>Marta finished off by pretending we (the audience) were on a gamification quest. Yaayyy, we&#8217;re already on stage 1, by attending Marta&#8217;s session. She took us through a number of &#8220;levels&#8221; we can follow,  to take us all the way to &#8220;mission accomplished&#8221; where we become gamification gurus.</p>
<p>Marta&#8217;s slide deck on <a title="Marta's presentation on SlideShare" href="http://www.slideshare.net/MartaRauch/rauch-game-onstc2013-20554472">SlideShare</a> has a number of useful resources, for learning more about gamification. She also recommends a <a title="Gamification course" href="https://www.coursera.org/course/gamification">gamification course by Kevin Werbach</a>, hosted on coursera. It&#8217;s pretty intensive, and you can gain an accreditation at the end.</p>
<p>This was a fun and inspiring session. It made me want to learn more. Thanks Marta!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ffeathers.wordpress.com/4846/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ffeathers.wordpress.com/4846/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4846&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ffeathers.wordpress.com/2013/05/08/creating-user-experience-for-gamified-products-at-stc-summit-2013/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/f52310b46a3f0b45af06905366d2331b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ffeathers</media:title>
		</media:content>
	</item>
		<item>
		<title>From technical writer to content strategist at STC Summit 2013</title>
		<link>http://ffeathers.wordpress.com/2013/05/08/from-technical-writer-to-content-strategist-at-stc-summit-2013/</link>
		<comments>http://ffeathers.wordpress.com/2013/05/08/from-technical-writer-to-content-strategist-at-stc-summit-2013/#comments</comments>
		<pubDate>Tue, 07 May 2013 20:33:55 +0000</pubDate>
		<dc:creator>ffeathers</dc:creator>
				<category><![CDATA[STC]]></category>
		<category><![CDATA[technical writing]]></category>
		<category><![CDATA[stc13]]></category>

		<guid isPermaLink="false">http://ffeathers.wordpress.com/?p=4849</guid>
		<description><![CDATA[This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag stc13 on this blog. Alan Porter&#8216;s presentation is called From Technical Writer to [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4849&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><em><strong>This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag <a title="Posts tagged with &quot;stc13&quot;" href="http://ffeathers.wordpress.com/tag/stc13/">stc13</a> on this blog.</strong></em></p>
<p><a title="Alan on Twitter" href="https://twitter.com/alanjporter">Alan Porter</a>&#8216;s presentation is called <em>From Technical Writer to Content Strategist</em>. Here&#8217;s what Alan promises for this session:</p>
<blockquote><p>Content strategy is a hot topic right now. The rise in corporate awareness of the value of content represents a great opportunity for technical writers to leverage their skills and experience. This session will help you position yourself to take advantage of that opportunity.</p></blockquote>
<p>I&#8217;m looking forward to a talk by Alan, someone I admire for his diversity and depth of knowledge in the writing and communication fields.</p>
<h3>Kicking off the session</h3>
<p>After a couple of laughs about food, beer, and cut-and-paste (you had to be there!) Alan summarised the message of his session like this:</p>
<blockquote><p>I&#8217;m going to talk about why I think technical communicators are best fitted to become content strategists.</p></blockquote>
<p>Alan asked various members of the audience what their company does. After hearing a few specific answers (develop software, medical devices, etc) someone got the right answer: Every company is in business to make money. The other answers describe how we do it.</p>
<p>There&#8217;s no good developing something, without telling people about it. That&#8217;s marketing. Then you have to get people to buy it. That&#8217;s sales. Collect money. That&#8217;s finance.</p>
<p>And the fifth thing every company does is: Create content.</p>
<h3>Different views of content</h3>
<p>The thing about content is, it&#8217;s not seen as a strategic asset, because everyone creates is. We have to change this view. Depending on your role, you have a different view of content. Alan showed us some pictures of different ways of seeing a pig.</p>
<ul>
<li>Marketing puts the lipstick on the pig.</li>
<li>The tech comm department shows a diagram of the pig and describes its various parts.</li>
<li>The customer sees pigs wallowing in the mud.</li>
</ul>
<h3>What customers care about</h3>
<p>They care about their problems, not ours.</p>
<p>We&#8217;re the people causing the disruptions.</p>
<p>As content strategists, we need to see the customer&#8217;s view of the content. And we, as technical communicators, are really good at that.</p>
<h3>Definition of content strategy</h3>
<p>One problem is that there are so many definitions of content strategy at the moment.</p>
<p>To Alan, it&#8217;s about:</p>
<blockquote><p>Achieving business goals for us and our customers, by maximising the impact of content.</p></blockquote>
<h3>Analysing enterprise content</h3>
<p>Companies don&#8217;t know:</p>
<ul>
<li>What content they have that is relevant to the customer.</li>
<li>Where the content gaps are. The content is developed in silos, so things slip through the cracks.</li>
<li>What resources are available elsewhere, either inside or outside the company, that you can use instead of developing new content.</li>
<li>How to put processes in place for the more advanced aspects of content, such as retiring content, managing content.</li>
<li>How to deliver content in the way the customer needs.</li>
</ul>
<h3>Where a content strategy fits</h3>
<p>Alan showed us a four-part pyramid. From the top down:</p>
<ul>
<li>Editorial vision</li>
<li>Content strategy</li>
<li>New capabilities</li>
<li>Foundational capabilities &#8211; these are the skills and knowledge that technical writers have. Things like metadata, for example.</li>
</ul>
<h3>Providing value to the customer</h3>
<p>Content needs to be engaging, relevant and actionable. It must help the customer do something, so they can solve an immediate business need. Alan is currently analysing exactly what &#8220;engaging&#8221; means. In part, it must be something the customer wants to read, and can find easily.</p>
<h3>Where&#8217;s the opportunity for a technical communicator?</h3>
<p>A survey asked companies whether they have a unified content strategy that covers both marketing and multi-channel publishing. 80% of the responders said no.</p>
<p>That&#8217;s a big opportunity for us. But we need to change our terminology. Instead of talking about metadata and publishing processes, we must talk about business case and strategy. We need to use the vocabulary that the business uses. That&#8217;s the role of a content strategist.</p>
<p>Alan took us through a chart showing a typical framework for a content strategy process. The chart is in his slide deck on on <a href="http://www.slideshare.net/4JsGroup/techcomm-to-content-strategy">SlideShare</a>.</p>
<h3>How to go about it</h3>
<p>Be aware that content resides across the organisation. We need to break down silos, build bridges, talk to people, and get them to talk to each other. End the cold war between departments, such as tech comm, marketing, training, and so on.</p>
<p>Perform audits of your content. Find out what you have, across the organisation. This can be painful. You need people who understand content, and can ask questions about the business purpose of the content.</p>
<p>Offer advice, build a vision, and share that vision across the organisation.</p>
<p>Figure out a way your content adds revenue. Don&#8217;t say you can save money, because that will make it more difficult to get more budget the following year.</p>
<h3>Thank you Alan</h3>
<p>My key take away from this talk is that we must learn to talk the language the business people are talking, and use it to emphasize our skills, knowledge and impact. Thank you Alan for an encouraging glimpse into the life of a technical communicator become content strategist.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ffeathers.wordpress.com/4849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ffeathers.wordpress.com/4849/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4849&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ffeathers.wordpress.com/2013/05/08/from-technical-writer-to-content-strategist-at-stc-summit-2013/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/f52310b46a3f0b45af06905366d2331b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ffeathers</media:title>
		</media:content>
	</item>
		<item>
		<title>Documentation teams and company mergers at STC Summit 2013</title>
		<link>http://ffeathers.wordpress.com/2013/05/07/documentation-teams-and-company-mergers-at-stc-summit-2013/</link>
		<comments>http://ffeathers.wordpress.com/2013/05/07/documentation-teams-and-company-mergers-at-stc-summit-2013/#comments</comments>
		<pubDate>Mon, 06 May 2013 20:26:09 +0000</pubDate>
		<dc:creator>ffeathers</dc:creator>
				<category><![CDATA[STC]]></category>
		<category><![CDATA[stc13]]></category>

		<guid isPermaLink="false">http://ffeathers.wordpress.com/?p=4833</guid>
		<description><![CDATA[This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag stc13 on this blog. Kirsty Taylor&#8217;s presentation has an intriguing title: And Then [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4833&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><em><strong>This week I’m attending STC Summit 2013, the annual conference of the Society for Technical Communication. I’ll blog about the sessions I attend, and give you some links to other news I hear about too. You’ll find my posts under the tag <a title="Posts tagged with &quot;stc13&quot;" href="http://ffeathers.wordpress.com/tag/stc13/">stc13</a> on this blog.</strong></em></p>
<p>Kirsty Taylor&#8217;s presentation has an intriguing title: <em>And Then There Was One &#8230; Documentation Team</em>. Her team of technical communicators has recently undergone a company merger, and the documentation team has merged with another global team. Kirsty will tell us how to keep our sanity under such circumstances, while looking at the aspects of &#8220;culture, standards, time differences, and multiple Englishes&#8221;.</p>
<h3>Setting the scene</h3>
<p>Two years ago, the company Kirsty worked for was bought by a huge conglomerate. The conglomerate then acquired another company, and merged Kirsty&#8217;s documentation team with the teams in the other company. They now work together as one team. The company is in the business-to-business area, in the mining and defence industries.</p>
<p>The content team consists of 21 people, over 3 continents, and 11 offices. Kirsty manages the Asia-Pacific region, which covers 5 time zones. Kirsty&#8217;s team is also responsible for producing the classroom training materials for their consulting services.</p>
<p>In the last 5 years, there have been multiple acquisisions. The development and documentation team have been merged into one. It&#8217;s a distributed team, but with a central function and reporting structure.</p>
<p>This has involved aligning tools, standards, styles, responsibilities and roles. As technical writers come in from each organisation, they learn to use the standard tools. Their roles are aligned with the rest of the team.</p>
<p>One of the really strong things about the team is that they strive for consensus. There&#8217;s not always agreement, but there is consensus.</p>
<h3>Mincom was added in 2010</h3>
<p>This was the largest acquisition to date, in terms of merging of tech comm teams &#8211; there were 9 technical writers at Mincom. At first, the two R&amp;D groups worked independently.</p>
<p>Technical writers are inherently curious people. So Kirsty and the other writers from both teams found each other and started talking and comparing notes. The structures and development team were still silos.</p>
<p>There have been many changes at top-management level too.</p>
<p>At the end of 2013, the R&amp;D teams started working together. The technical writing team are still the teams who work most closely together. In March this ear, the VP of Quality Operations started, and the technical writers became part of the QO area.</p>
<p>Kirsty says that this was not like a takeover. It&#8217;s a much more collaborative environment, where they&#8217;re working together to decide how to move forward.</p>
<h3>Refreshed branding</h3>
<p>When the merger finally happened, the brand had to change. Luckily it was just the logo that needed to change. Not much else.</p>
<h3>Standards committee</h3>
<p>The team decided to form a standards committee for online help. There were too many writers to include everyone in the meetings, so they decided to involve the key team members with clever ideas.</p>
<h3>Quick wins and collaboration</h3>
<p>They looked at the things they could do to improve collaboration and get quick wins early.</p>
<ul>
<li>Style and standards for online help. This can be tricky, because everyone feels passionately. People had just recently redefined their styles, and didn&#8217;t want to change again. The approach was &#8220;not to kill anyone&#8217;s babies&#8221;. Don&#8217;t enforce the standards unnecessarily. Be grateful that we&#8217;re working together</li>
<li>Output format. They focused on this because they&#8217;d be able to show stakeholders they were working together.</li>
<li>The aim was to start looking like one company, in terms of the documentation, and to show they&#8217;re working together as a team, even if not a single team.</li>
<li>Knowledge and experience gained from earlier mergers and acquisitions. It was incredibly useful having people who had already gained skills in negotiating decisions.</li>
</ul>
<h3>Problems and challenges</h3>
<p>There are some problems to tackle.</p>
<p>Time zones. Kirsty has one person in Perth, while most of the team are in Atlanta. The time difference is 12 hours. There are 21 individuals in the team. Some like/need to start early. Others want/need to start late and work late. This makes team meetings difficult. One trick is to shuffle the meeting times, so that it&#8217;s not always the same people who have to work early or late.</p>
<p>The Australian team is used to having the team get together and make a decision, then go back to their desks and make the change. Now it takes adaptation to make the decisions monthly via a standards committee.</p>
<p>It&#8217;s tempting to group and name things for the former region or company. But this can create division. Management needs to guard against this. Instead, create a sense of unity and team. Use the words &#8220;our team&#8221; and &#8220;we&#8221; frequently and by default. Foster and develop relationships between team members across the pond. Buddy up the technical writers. Make sure they have the facilities (WebEx accounts, for example) to work together.</p>
<p>The company is still consolidating the tools to be used. For example, at first they used GoToMeeting. Then that was no longer available, and they&#8217;ve tried Telkom, WebEx, Skype. All have their problems. You need special headsets, or Skype credits, and so on. These ongoing changes can cause problems that can upset team members.</p>
<p>Other important tools are those for content creation, publishing, eLearning, etc. What is standard in one office is not necessarily standard globally. This can cause confusion.</p>
<p>There are changes to content style and writing standards. For example, do you use US or Australian spelling, syntax and punctuation? The information architecture needs to be consolidated. Think about the voice of your content, and more.</p>
<h3>Encouraging the team to collaborate</h3>
<p>Kirsty mentioned the idea of a team-building exercise somewhere half way between Atlanta and Brisbane. Hawaii, for example! But she laughed and said this probably wouldn&#8217;t happen.</p>
<p>Hold a global team meeting. Use games to help people get to know each other, and slide with a photo and short bio.</p>
<p>Have some internal social networking, in a tool like Chatter. Encourage team discussions, share articles and blog posts, ask questions, and respond when others ask questions. They do have SharePoint too, but felt that Chatter is more collaborative.</p>
<p>Pair people on projects, as &#8220;buddies&#8221;. Be flexible. Allow people to work from home for early or late starts.</p>
<p>Within SharePoint, try a shared team task list. This was a great initiative from the US team. A team task list is a request list from any team member who may need help from another team member. People can ask for a review, or help with something specific like CSS. This is also a useful tool for managers to see when team members need help, or someone is regularly giving help.</p>
<p>The team needs some way of sharing ideas. Hold virtual brown bag sessions, via webinars and recorded sessions.</p>
<h3>Main themes</h3>
<p>These are the main themes Kirsty has noticed so far:</p>
<ul>
<li>People. It&#8217;s all about change management and working on team relationships.</li>
<li>Processes. When you&#8217;re aligning your processes, it&#8217;s a really good time to see why you&#8217;re doing something or not doing something. This can be really hard to justify.</li>
<li>Collaboration. Focus always on co-operation and the fact that you&#8217;re one team.</li>
</ul>
<h3>Thanks Kirsty</h3>
<p>This was an intriguing glimpse into the issues that arise when global teams are merged, and the creative solutions Kirsty and her team are putting in place. Thanks Kirsty!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ffeathers.wordpress.com/4833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ffeathers.wordpress.com/4833/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ffeathers.wordpress.com&#038;blog=1466415&#038;post=4833&#038;subd=ffeathers&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ffeathers.wordpress.com/2013/05/07/documentation-teams-and-company-mergers-at-stc-summit-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/f52310b46a3f0b45af06905366d2331b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ffeathers</media:title>
		</media:content>
	</item>
	</channel>
</rss>
