<?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>Content Insomnia &#187; Social Media</title>
	<atom:link href="http://www.contentinsomnia.net/category/social_media/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.contentinsomnia.net</link>
	<description>For those times when thinking about content keeps you awake at night</description>
	<lastBuildDate>Fri, 27 Jan 2012 18:23:09 +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>Reusing Content on Wikis and Blogs</title>
		<link>http://www.contentinsomnia.net/reusing-content-on-wikis-and-blogs/</link>
		<comments>http://www.contentinsomnia.net/reusing-content-on-wikis-and-blogs/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 17:46:23 +0000</pubDate>
		<dc:creator>Eddie</dc:creator>
				<category><![CDATA[Content Strategy]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[content reuse]]></category>
		<category><![CDATA[wikis]]></category>

		<guid isPermaLink="false">http://www.contentinsomnia.net/?p=2581</guid>
		<description><![CDATA[Since I launched this site last year, I have been looking for an effective way to reuse content on server-installed WordPress blogs. I wanted a solution that&#8217;s similar to creating snippets in MadCap Flare. Flare snippets are the big brother of variables. They&#8217;re reusable blocks of content that can store formatting along with the text. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a name="top"></a>
<p>Since I launched this site last year, I have been looking for an effective way to reuse content on server-installed WordPress blogs. I wanted a solution that&#8217;s similar to creating <em>snippets</em> in MadCap Flare.</p>
<p>Flare snippets are the big brother of variables. They&#8217;re reusable blocks of content that can store formatting along with the text. They can also include variables and condition tags. You maintain them as individual files and can point to them from multiple topics and projects. A snippet is similar to a <em>text inset</em> in FrameMaker and a <em>linked file</em> in Microsoft Word.</p>
<p>So what&#8217;s the equivalent of snippets on wikis and blogs?</p>
<p><span id="more-2581"></span></p>
<h2>The MediaWiki Equivalent: Transclusion</h2>
<p>Last year while working on the <a href="http://biomedgt.nci.nih.gov/wiki/index.php/Main_Page" title="Link to BiomedGT Wiki" target="_blank">National Cancer Institute&#8217;s BiomedGT Wiki</a>, I used the MediaWiki equivalent of snippets. For example, I wrote a statement that reminded experts that they needed to register with the site and get a login to be able to perform certain tasks. That statement needed to appear in multiple places, so if reviewers wanted to change the language, I needed to be able to update it in one place and have it update everywhere that it appeared. </p>
<p>I used a process called <em>transclusion</em>. To give you the simplest example, I created a wiki template that included the heading <strong>Before You Begin</strong> and the paragraph that described the registration requirement. I then pointed to that template from other pages using a simple tag with the template name: <span class="leadin">{{RegistrationRequirement}}</span>. For more information about how this works on a MediaWiki, <a href="http://en.wikipedia.org/wiki/Help:Template" title="Link to Wikipedia help on templates" target="_blank">see the Wikipedia Help for using templates</a>. The Wikipedia templates work exactly the same way.</p>
<h2>The WordPress Equivalent: Shortcodes</h2>
<p>I first realized that I wanted to deploy a similar reuse feature on my WordPress blog when I created my <a href="http://www.contentinsomnia.net/freestuff/" title="Link to Eddie's free stuff page" target="_blank">Free Stuff</a> page. The CSS Book list that appears there originated in a <a href="http://www.contentinsomnia.net/2008/12/15/flare-print-styles/" title="Link to styles post" target="_blank">blog post on defining Flare styles</a>. If I want to add to the list, I want to be able to update it in one place and have the current list show in both places.</p>
<p>I had read about various WordPress features for possible reuse, but none of them seemed to be exactly what I wanted. So I posted a question on the Thesis forum, where I can get help on customizing my blog&#8217;s <a href="http://diythemes.com/?a_aid=great_thesis_theme" title="Link to DIY Thesis page" target="_blank">Thesis theme</a>. One of the moderators recommended <em>shortcodes</em>.</p>
<p>Shortcodes enable you to reuse content using PHP functions and function calls. If that scares you, relax. My PHP skills are still developing. Granted, I have had a lot of scripting experience, so I do understand functions and function calls. If you don&#8217;t understand what functions do, <a href="http://en.wikipedia.org/wiki/Function_(computer_science)" title="Link to Wikipedia article about functions" target="_blank">read the Wikipedia article about functions</a>.</p>
<p>In a WordPress blog, you normally include shortcode functions in your <span class="leadin">functions.php</span> file. Make sure that you create a backup copy of the file before you change it. Fortunately, the vendor who designed my WordPress template (<a href="http://diythemes.com/" title="Link to DIY Themes site" target="_blank">DIY Themes</a>), included a <span class="leadin">custom_functions.php</span> file. Using this file ensures that when I upgrade the template, I won&#8217;t lose my custom functions. Nevertheless, I still keep a backup copy of that file, too.</p>
<p>Here&#8217;s the example that I used to generate my CSS Book list. The explanatory comments are preceded by two forward slashes (//).</p>
<div class="codeblock">
<p><span class="leadin">//This statement sets up the display of CSS book list.<br />
//It declares the function name (show_css_book_list),<br />
//then displays markup for the list.</span></p>
<p>function show_css_book_list() {<br />
return <span class="tag">&#39&#60;h2&#62</span>On CSS<span class="tag">&#60;/h2&#62</span><br />
<span class="tag">&#60;ul&#62</span></p>
<div class="codeindent">
<p><span class="tag">&#60;li&#62</span><span class="tag">&#60;a</span><span class="attribute"> title=&#8221;Link to ClickStart.net&#8221; href=&#8221;http://www.clickstart.net/&#8221; target=&#8221;_blank&#8221;</span><span class="tag">&#62;</span>CSS To The Point<span class="tag">&#60;/a&#62</span><span class="tag">&#60;br /&#62;</span><br />
First Ed., ISBN-13: 978-0-6152-1213-5<span class="tag">&#60;br /&#62;</span><br />
A handy desktop reference written by Flare and CSS expert <span class="tag">&#60;a</span><span class="attribute"> title=&#8221;Link to more information about Scott DeLoach&#8221; href=&#8221;http://www.clickstart.net/?page_id=2&#8243; target=&#8221;_blank&#8221;</span><span class="tag">&#62;</span>Scott Deloach<span class="tag">&#60;/a&#62;</span>. Its concise, cookbook-style approach will lead you quickly to the right solution. Recommended for users of all levels.<span class="tag">&#60;/li&#62;</span></p>
<p><span class="tag">&#60;li&#62&#60;</span><span class="tag">a</span><span class="attribute"> title=&#8221;Link to Amazon page for Lie and Bos book&#8221; href=&#8221;http://www.amazon.com/Cascading-Style-Sheets-Designing-Web/dp/0321193121/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1229352588&amp;sr=1-1&#8243; target=&#8221;_blank&#8221;</span><span class="tag">&#62;</span>Cascading Style Sheets: Designing for the Web<span class="tag">&#60;/a&#62;</span><span class="tag">&#60;br /&#62;</span><br />
Third Ed., ISBN-13: 978-0-321-19312-4<span class="tag">&#60;br /&#62;</span><br />
The classic text written by the creators of CSS, Hakon Wium Lie and Bert Bos. This book is a cross between a tutorial and a reference. Recommended for users of all levels.<span class="tag">&#60;/li&#62</span></p>
<p><span class="tag">&#60;li&#62&#60;a</span><span class="attribute"> title=&#8221;Link to Amazon page for Eric Meyer book&#8221; href=&#8221;http://www.amazon.com/CSS-Definitive-Guide-Eric-Meyer/dp/0596527330/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1229353312&amp;sr=1-1&#8243; target=&#8221;_blank&#8221;</span><span class="tag">&#62;</span>CSS: The Definitive Guide<span class="tag">&#60;/a&#62;&#60;br /&#62;</span><br />
Third Ed., ISBN-13: 978-0-596-52733-4<span class="tag">&#60;br /&#62;</span><br />
A comprehensive reference book by a CSS guru. Recommended for intermediate to advanced users.<span class="tag">&#60;/li&#62</span></p>
</div>
<p><span class="tag">&#60;/ul&#62;</span>&#39&#59</p>
<p>}</p>
<p><span class="leadin">//The following statement sets up a shortcode<br />
//called cssbooklist, which calls the show_css_book_list function.<br />
//To make this work, I insert &#91cssbooklist&#93 in my post.<br />
//The post shows the CSS Books list instead of the shortcode.</span><br />
add_shortcode(&#8216;cssbooklist&#8217;,'show_css_book_list&#8217;);</div>
<p>So, when I want to modify the CSS Books list, I modify the HTML markup in the <span class="leadin">show_css_book_list</span> function. In every location where I have inserted the <span class="leadin">&#91cssbooklist&#93</span> shortcode on my site, the updated book list appears. </p>
<p>If you want to learn more about WordPress short codes and how you can extend them, see <a href="http://www.smashingmagazine.com/2009/02/02/mastering-wordpress-shortcodes/" title="Link to more info about shortcodes" target="_blank">Mastering WordPress Shortcodes</a>. I thank <a href="http://www.idratherbewriting.com/wordpress-consulting/" title="Link to Tom Johnson's WordPress Consulting page" target="_blank">WordPress guru Tom Johnson</a> for sending me the link.</p>
<p><a href="#top">Back to top</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.contentinsomnia.net/reusing-content-on-wikis-and-blogs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>You Will Be Assimilated</title>
		<link>http://www.contentinsomnia.net/you-will-be-assimilated/</link>
		<comments>http://www.contentinsomnia.net/you-will-be-assimilated/#comments</comments>
		<pubDate>Thu, 28 May 2009 04:48:42 +0000</pubDate>
		<dc:creator>Eddie</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[anthropology]]></category>
		<category><![CDATA[sociology]]></category>

		<guid isPermaLink="false">http://www.contentinsomnia.net/?p=2463</guid>
		<description><![CDATA[Having recently seen and enjoyed the 2009 Star Trek movie, I can&#8217;t resist a Borg-inspired title. I&#8217;m no diehard trekkie, but I have seen several of the movies. I also watched the original series as a kid and have infrequently tuned in to some of the other series over the years. Does that make me [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a name="top"></a>
<div class="floatleft"><img src="http://www.contentinsomnia.net/wp-content/uploads/2009/05/borg_bear05_opt-112x150.jpg" alt="Borg Bear" title="Borg Bear" width="112" height="150" /></div>
<p>Having recently seen and enjoyed the 2009 <em>Star Trek</em> movie, I can&#8217;t resist a Borg-inspired title. I&#8217;m no diehard trekkie, but I have seen several of the movies. I also watched the original series as a kid and have infrequently tuned in to some of the other series over the years.</p>
<p>Does that make me a part-time trekkie? The level of trekkiness seems to have a scale based on participation and devotion. My partner has followed all of the series, knows all of the characters, and can explain story lines in technical and historical terms. Yet, he would never dress as a Romulan and go to a trekkie conference. </p>
<p>Social media seems to have a similar scale. Some love it. Some hate it. Some try it and “don&#8217;t get it.” Others approach it with hesitation and later become addicted. </p>
<p>I have friends who say that they would never use Facebook, and later I receive their invitations to connect. Many have stopped sending me email and only contact me in the Facebook space. Others who didn&#8217;t “get” Twitter are now tweeting so much that they&#8217;re sprouting wings.</p>
<p>So where does your level of participation fall on the social media scale? Have you joined the throng? Are you ready to become a publisher?</p>
<p><span id="more-2463"></span></p>
<h2>Becoming a Citizen of Content Nation</h2>
<p>In <em>Content Nation: Surviving and Thriving as Social Media Changes Our Work, Our Lives, and Our Future</em>, author <a href="http://www.shore.com/us/team/jblossom.html" title="Link to John Blossom's bio" target="_blank">John Blossom</a> examines how the spreading wildfire of social media has transformed us into a “nation of publishers.” He traces this phenomenon back to its primitive origins, from nomadic tribes to “trade-oriented ownership economies” (p. xvi). Those economies created the need for published materials that began with monuments, scrolls, and primitive books. Subsequent publishing events shaped history and transformed society. Blossom cites Thomas Paine&#8217;s <em>Common Sense</em> and the arrival of the Gutenberg printing press as significant turning points.</p>
<p>The recurrent theme of <em>Content Nation</em> (used as the book title and as a description for the entity that we have become) is that the growth of social media publishing is the unparalleled phenomenon—the one that&#8217;s changing all the rules. This is most evident in the nomadic nature of free-form publishing. We&#8217;re running off in our own directions, tailoring our content to our own needs. Publishing institutions are trying to figure out how to domesticate us.</p>
<p>Most notably, we&#8217;re spreading <em>influence</em> in a way that is transforming the world. Our ability to publish on-demand content challenges news sources, exposes product weaknesses, and even saves lives.</p>
<h2>Following Your Tribe</h2>
<p>How we use social media can depend on which of the three publishing “tribes” we belong to (p. 60).</p>
<p><em>Personal</em> publishers use social media to gain both personal and professional benefits. If your passion is cooking, you can blog about food and publish recipes. You can start a wiki to collaborate on recipes with other cooking enthusiasts.</p>
<p><em>Media</em> publishers use social media to “market content and online services.” These publishers have traditionally been “manufacturers and distributors of content from centralized plants” (p. 44). Aggregation of content has traditionally been achieved through a layered pyramid structure. But that model has changed. We&#8217;re no longer bound to the layers used to filter and package published content. We can package and mix our own content, aggregating it from our own preferred sources. As consumers of information, this is great for us but challenging for traditional media publishers. Blossom cites <a href="http://www.nytimes.com/" title="Link to New York Times site" target="_blank">The New York Times</a> and <a href="http://www.chron.com/" title="Link to Houston Chronicle site" target="_blank">The Houston Chronicle</a> as examples of newspapers that have risen to the challenge and adapted well.</p>
<p><em>Enterprise</em> publishers use social media to improve communication and promote collaboration. But because many businesses still perceive social media applications as frivolous, their adoption rate has been relatively slow. Those businesses are not ready to flatten the corporate hierarchy by giving everyone a voice. Businesses who want to attract and retain younger workers need to change this perception. Blossom includes several examples of forward-looking enterprises that are developing a social media strategy and integrating tools such as blogs, wikis, and messaging.</p>
<h2>Understanding the New Rules of&nbsp;Buying&nbsp;and&nbsp;Selling</h2>
<p>Becoming a citizen of Content Nation brings both benefits and challenges. It creates new opportunities while requiring that we adapt to new ways of thinking and working. </p>
<p>One of the most significant paradigm shifts is the relationship between buyers and sellers. Buyers have access to a growing number of sites that compare products and prices, enabling them to better discover and understand supply and demand. Blossom points out that this “builds efficient economies that benefit the most people” (p. 97). He cites <a href="http://www.ebay.com/" title="Link to eBay site" target="_blank">eBay</a> and <a href="http://www.craigslist.org/about/sites" title="Link to Craig's List site" target="_blank">Craig&#8217;s List</a> as examples.</p>
<p>Feedback from other buyers is more prevalent than ever. When you shop online, do you read the marketing fluff, or do you go straight to the consumer comments?  Blossom refers to research showing that a clear majority of consumers seek peer advice and are influenced by consumer reviews and ratings. Last year I was minutes away from ordering two office chairs when I paused to read the customer comments more closely. As a result, I ordered different chairs from a different manufacturer and saved several hundred dollars.</p>
<p>Advertising is still prevalent on the web and elsewhere. Viral marketing still exists. But social media brings on a new method of marketing that Blossom calls the <em>Big Sombrero</em> model. In this model,  mass markets give way to more effective small markets, which are based on more direct transactions. An example is the print-on-demand capability of <a href="http://www.lulu.com/?cid=eng_brand_nm&#038;gclid=CPX14oKQ3poCFQQrFQodsFzUzg" title="Link to Lulu site" target="_blank">Lulu.com</a>.</p>
<p>With the prevalence of peer-to-peer advice and more power behind small markets, marketers need to rethink their approach. When joining an online conversation, they need to function as peers to gain the trust of the community. </p>
<h2>Embracing Change&#8230;</h2>
<h3>In politics</h3>
<p>Milestones in the evolution of publishing often centered around politics. Newspapers, journals, books, and television all made us more politically aware. Early blogs piggybacked on existing outlets before becoming news sources in their own right. In <em>Content Nation Redefines How Citizens Influence Governments</em>, Blossom impartially covers ways in which social media now plays a major role in politics. Although blogs were influential in the 2004 election, their influence was ubiquitous in 2008. Regardless of how the political tide turns, we can expect that influence to continue.</p>
<h3>In Daily Life</h3>
<p>The chapter <em>Content Nation Redefines How People Live Their Lives</em> explores the “social” in social media. We create “spaces for common experiences” (p. 201). We organize events. We build communities that promote cultural identity. We reveal our natural tendency toward altruism. As an example, Blossom cites the role of social media in mobilizing disaster relief after the 2004 tsunami in south Asia. </p>
<h3>In Education</h3>
<p>For learners, the concept of “just-in-time training” is more crucial than ever. Quoting the author:</p>
<blockquote><p>&#8230;by the time young adults enter adulthood to put their education to use, the world has already changed significantly&#8230; Now, as our problem-solving needs shift from moment to moment, our need for education cannot wait for a book to put everything that we need together.</p></blockquote>
<p>Learning professionals refer to the marriage of social media and education as Learning 2.0. I am very interested in this trend and welcome reader comments.</p>
<h2>Looking Toward the Future</h2>
<p><em>Content Nation</em> is one of the more richly detailed and analytical books that I have read on social media. Each topic mentioned here is accompanied by a relevant set of social media rules and examples.</p>
<p>I periodically put the book down to ponder the rules, explore the examples, and oh, yes—get some work done. I took a break before reading the last three chapters, and nothing prepared me for their depth. In a way, everything else in the book was simply preparing for the story told in those chapters.</p>
<p>Blossom looks to the past to predict how publishing will play a part in our future. He returns to the subject of altruism—not as an innate abandonment of self-interest, but as a genetic predisposition to preserve our bloodline. This base genetic altruism eventually gave way to a clan-based version based on trade, setting the stage for the evolution of publishing. </p>
<p>To establish a system of trust, we needed contracts, which became a part of our first published content. As publishing became more sophisticated, it also became more centralized, setting the model for the institutions that we know today—the ones that are challenged by social media. With our “giving to get” nature, we are returning to our altruistic roots, this time with more interest in taking care of the earth and spreading global wealth through such online vehicles as microloans. Blossom brings our story full circle, linking our future to our nomadic, herd-chasing origins.</p>
<p>The book closes with glimpses of the future—50, 100, 1,000, and 10,000 years from now. In Blossom&#8217;s visions, what we now refer to as social media is fully integrated into our lives, our work, and in some cases, our chemistry. </p>
<p>I&#8217;ll stop there. Now <a href="http://contentnation.com/wiki/show/Content%20Nation%20-%20The%20Book" title="Link to Content Nation book page" target="_blank">read the book</a>!</p>
<h2>Informing by Example</h2>
<p>The <em>Content Nation</em> book is a product of social media publishing. The content was first developed and published through a collaborative wiki on Blossom&#8217;s <a href="http://www.contentnation.com/wiki" title="Link to Content Nation site" target="_blank">Content Nation site</a>.  The “post-print” version continues online, demonstrating that “evolving social media forms use mass media more as a transient form than as a final goal” (p. 55).</p>
<p>The Content Nation site features links to many of the sites that are used as examples in the book. I encourage you to <a href="http://www.contentnation.com/wiki" title="Link to Content Nation site" target="_blank">explore the site and the links</a>.</p>
<h2>Getting ready for the next wave</h2>
<p>How will social media affect you? Why should you care?</p>
<p>You should care because it will affect your life in some way, even if it&#8217;s an indirect way. It&#8217;s not a matter of <em>how</em>, but <em>when</em>.</p>
<p>Just when you least expect it, you <em>will</em> be assimilated.</p>
<p><a href="#top">Back to top</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.contentinsomnia.net/you-will-be-assimilated/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Words to Wiki, Part 2</title>
		<link>http://www.contentinsomnia.net/words-to-wiki-part-2/</link>
		<comments>http://www.contentinsomnia.net/words-to-wiki-part-2/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 17:06:39 +0000</pubDate>
		<dc:creator>Eddie</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Content Strategy]]></category>
		<category><![CDATA[Learning Resources]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[technical writing]]></category>
		<category><![CDATA[wikis]]></category>

		<guid isPermaLink="false">http://www.contentinsomnia.net/?p=1723</guid>
		<description><![CDATA[In my last post, I expressed my admiration for wikis as a collaborative solution for project and process management. I didn&#8217;t discuss wikis as a publishing platform for technical documentation, simply because my clients haven&#8217;t yet taken that step. Fellow blogger Jason Coleman expressed his views on wiki-based tech docs in a comment following my [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a name="top"></a>
<p>In my last post, I expressed my admiration for wikis as a collaborative solution for project and process management. I didn&#8217;t discuss wikis as a publishing platform for technical documentation, simply because my clients haven&#8217;t yet taken that step.</p>
<p>Fellow blogger <a href="http://www.jasoncoleman.net/" title="Link to Jason Coleman's blog" target="_blank">Jason Coleman</a> expressed his views on wiki-based tech docs in a comment following my post. In my response, I promised to report back after participating in the Firefox book sprint at DocTrain West 2009.</p>
<p><span id="more-1723"></span></p>
<p>Having seen a demo of the <a href="http://en.flossmanuals.net/" title="Link to FLOSS Manuals site" target="_blank">FLOSS Manuals site</a> last fall, I had been looking forward to the Firefox book sprint with eagerness and curiosity. I had never participated in a real-time, collaborative writing event of that magnitude. So on March 16 and 17, I joined several writers in a conference room in Rancho Mirage, with other writers participating remotely from other US states and other countries. Our goal was to produce and publish a manual for the Firefox browser in two days.</p>
<p>After participating in the book sprint and using the FLOSS Manuals <a href="http://www.twiki.org/" title="Link to TWiki site" target="_blank">TWiki</a> publishing platform, I am now a wiki publishing convert. Granted, a true, complete publishing solution takes quite a bit of customized development, but the FLOSS Manuals platform exemplifies the possibilities. </p>
<p>The FLOSS platform encourages topic-based writing. It has a simple user interface for writing and editing. It enables participating writers to remain aware of the status of big-picture content development at all times. As a participant, you can chat with remote writers. You can observe the state of in-process topics (such as <em>needs updating</em>, <em>to be proofed</em>, or <em>complete</em>). You can save your work and resume later, or another writer can step in and complete the topic. </p>
<div class="clearright"><img src="http://www.contentinsomnia.net/wp-content/uploads/2009/03/floss-ui.png" alt="FLOSS Manuals interface" title="FLOSS Manuals interface" width="509" height="395" /></div>
<p>We used Firefox help topics as source material, with the goal of improving the structure and the content. We wrote. We edited. We held group discussions. We had direct access to Firefox expert Chis Hoffman of the Mozilla Foundation. Chris was on site with us in Rancho Mirage.</p>
<p>At the end of the sprint, we all gathered to watch as FLOSS founder Adam Hyde walked us through the publishing process. Seeing the result of our work published in real time was exciting. The platform does an amazing job of paginating, and it includes headers, footers, and page numbering. It also enables you to &#8220;remix&#8221; a book&#8217;s content and publish your own customized version. You can <a href="http://stores.lulu.com/flossmanuals" title="Link to FLOSS Manuals storefront on Lulu" target="_blank">buy published FLOSS books</a> from the FLOSS Manuals storefront at lulu.com. The proceeds help to further the work of the foundation.</p>
<p>Here&#8217;s a picture of some the writers who participated on site at Rancho Mirage.</p>
<p><span class="floatleft"><img src="http://www.contentinsomnia.net/wp-content/uploads/2009/03/doctrainbooksprintcrew-300x176.jpg" alt="DocTrain Book Sprint crew" title="DocTrain Book Sprint crew" width="300" height="176" class="alignleft size-medium wp-image-1736" /></span></p>
<p class="caption">Left to Right: Adam Hyde, Me, Greg Urban, Jay Maechtlen, Chris Hoffman, and Janet Swisher (Photo courtesy of Greg Urban)</p>
<p>Remember, you can participate in a FLOSS Manuals book sprint without attending in person. You can join as a remote participant. By helping to create documentation for free, open-source software, you can help encourage more people to use the software. If you are interested in participating in future sprints, you need to <a href="http://booki.flossmanuals.net/" title="FLOSS Manuals registration page" target="_blank">register on the FLOSS Manuals site</a>.</p>
<p>Fellow blogger, tech comm expert, and FLOSS Manuals evangelist Anne Gentle expresses exactly why I found the sprint so amazing:</p>
<blockquote><p>A book in two days thanks to a great group of writers, an excellent Subject Matter Expert, and remote contributors from Calgary to Moscow to Bangalore.</p></blockquote>
<p>You can <a href="http://justwriteclick.com/2009/03/19/firefox-book-sprint-complete/" title="Link to Anne Gentle's blog" target="_blank">visit Anne&#8217;s blog to read her full summary of the event</a>. Then join FLOSS Manuals and have some fun.</p>
<p><a href="#top">Back to top</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.contentinsomnia.net/words-to-wiki-part-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Words to Wiki, Part 1</title>
		<link>http://www.contentinsomnia.net/words-to-wiki/</link>
		<comments>http://www.contentinsomnia.net/words-to-wiki/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 22:07:35 +0000</pubDate>
		<dc:creator>Eddie</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Content Strategy]]></category>
		<category><![CDATA[Learning Resources]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[technical writing]]></category>
		<category><![CDATA[wikis]]></category>

		<guid isPermaLink="false">http://www.contentinsomnia.net/?p=1613</guid>
		<description><![CDATA[For the last 2.5 years, I have had the honor of developing content that supports cancer research. I developed various guides, online help, and a training course for the National Cancer Institute Center for Biomedical Informatics and Information Technology (NCI CBIIT). My audiences included ontology editors, software developers, administrators, and grant managers. I found my [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a name="top"></a>
<p>For the last 2.5 years, I have had the honor of developing content that supports cancer research. I developed various guides, online help, and a training course for the National Cancer Institute Center for Biomedical Informatics and Information Technology (NCI CBIIT). My audiences included ontology editors, software developers, administrators, and grant managers.</p>
<p>I found my work with the Enterprise Vocabulary Services (EVS) group especially rewarding. The EVS is a subset of NCI CBIIT. The primary mission of the EVS is to &#8220;harmonize and integrate the many diverse terminologies and coding frameworks used by the NCI and its partners.&#8221; The group works with research institutions in and outside of the United States to promote collaborative terminology development. Their technical infrastructure includes the NCI Thesaurus and other terminology databases. My work supported the development and maintenance of that infrastructure.</p>
<p>The EVS also introduced me to the world of wikis. If you have no idea what a wiki is, you can <a href="http://en.wikipedia.org/wiki/Wiki" title="Link to Wikipedia definition of wikis" target="_blank">learn more about wikis at Wikipedia</a>.</p>
<p><span id="more-1613"></span></p>
<h2>Make Wiki, Not War</h2>
<p>Before working at the NCI, I had no direct experience with wikis. The software developers at a previous job had set up a wiki using the &#8220;build it and they will come&#8221; principal, but no one led the effort. The wiki eventually languished. </p>
<p>I had also come close to working on a wiki-based project while consulting with a large service organization to develop a centralized knowledge base. Various factions were at odds about whether to use a proprietary database or an open-source wiki solution. A particularly influential business unit was lobbying to deploy the wiki, but the management team was against it. Management was wedded to their solution and made no effort to understand wiki technology. They simply asked me to step in and explain to the sub-group why a wiki wasn&#8217;t appropriate. </p>
<p>Because I had so little knowledge of wikis, I wanted to do research before getting involved in the discussion. I asked &#8220;shouldn&#8217;t we all become more educated on the subject of wikis before we dismiss the idea?&#8221; But the managers wouldn&#8217;t hear of it. They had heard too many stories about wiki anarchy and loss of control. Ironically, after doing the research, I was convinced that a wiki might be a better choice than the proprietary solution. After failing to change the minds of the naysayers, I managed to extricate myself from the political crossfire.</p>
<h2>The Wisdom of Wiki-Building</h2>
<p>The NCI CBIIT experience gave me my first real opportunity to develop content in a wiki environment. In early 2008, the organization implemented a wiki for project management, process management, and resource sharing. Long-time STC member and wiki expert Ann Wiley was the site architect and mentor. In addition to other daunting tasks, she built an online catalog of our sizable documentation library. </p>
<p>I began to appreciate the power of wikis as a versatile tool for organization and knowledge sharing. I could see daily details of projects to come. I could instantly post a live information plan, share it, receive notification of comments, and update it. No more circulating Word documents and waiting for review comments. The wiki gave new meaning to the concept of a &#8220;living&#8221; document.</p>
<p>Later in the year, the EVS launched the BiomedGT wiki to support the development of the Biomedical Grid Terminology, &#8220;an open, collaboratively developed terminology for translational research.&#8221; The wiki promotes collaboration from terminology experts in the scientific community, though it&#8217;s hardly the renegade monster that my other clients feared. Anyone can browse and search the terminology, but they cannot create a login or edit the terminology without first undergoing a screening process. Interested collaborators must submit their contact information and credentials, be approved, and receive a login from the wiki administrator. </p>
<p>Even after passing the screening process, approved BiomedGT wiki collaborators cannot directly edit the terminology. Instead, they suggest changes by submitting &#8220;proposals&#8221; using online forms. Those changes can range from <em>retreeing</em> a term (moving it to another position in the hierarchy) to deprecating a term.</p>
<p>At the point of submission, a proposal enters a workflow process where it interfaces with internal NCI editing tools. The most notable of those tools is NCI Protégé, a version of the open-source, OWL-based Protégé ontology editor developed by Stanford Medical Informatics. While NCI editors review the proposals and &#8220;curate&#8221; the vocabulary, outside collaborators can use the wiki to trace the proposal status.</p>
<p>I contributed to the BiomedGT wiki by editing and restructuring information, writing help pages, and adding CSS flourishes. I found the work liberating, because the focus was mostly on writing and content. Wiki markup is easy to learn, and wiki templates are a great mechanism for content reuse.</p>
<h2>Wiki out West</h2>
<p>Next week brings a new wiki adventure. While attending DocTrain West in Palm Springs, I will participate in an event called <em>Firefox Book Sprint: From Zero to Book in Two Days</em>. We will use the FLOSS Manuals toolkit, a collaborative wiki writing environment, to create a new manual for the Firefox browser.</p>
<p>I first learned about FLOSS manuals and met its founder, Adam Hyde, at DocTrain East in October 2008. FLOSS Manuals is a not-for-profit, volunteer-based foundation based in Amsterdam. FLOSS stands for “Free, Libre, Open Source Software,” and its volunteer writers collaboratively write documentation for free, open-based software. FLOSS writers also wrote the help content for the One Laptop Per Child program. I am excited about the opportunity to be a part of a Book Sprint.</p>
<h2>Related Links</h2>
<p>This section provides links to everything that I have discussed in this post.</p>
<ul>
<li><a href="http://ncicb.nci.nih.gov/" title="Link to NCICB page" target="_blank">Learn more about the NCICB</a></li>
<li><a href="http://ncicb.nci.nih.gov/NCICB/infrastructure/cacore_overview/vocabulary" title="Link to EVS page" target="_blank">Learn more about the EVS</a></li>
<li><a href="http://biomedgt.nci.nih.gov/wiki/index.php/Main_Page" title="Link to the BiomedGT wiki" target="_blank">Visit the BiomedGT wiki</a></li>
<li><a href="http://protege.stanford.edu/" title="Link to Stanford Protégé site" target="_blank">Learn more about the Protégé ontology editor</a></li>
<li><a href="http://en.flossmanuals.net/" title="Link to FLOSS Manuals site" target="_blank">Visit the FLOSS Manuals site</a></li>
<li><a href="http://laptop.org/en/vision/index.shtml" title="Link to One Laptop per Child page" target="_blank">Learn more about the One Laptop per Child program</a></li>
<li><a href="http://www.doctrain.com/west/2009/program_detail/firefox_book_sprint/" title="Link to information about Firefox Book Sprint target="_blank">Learn more about the Firefox Book Sprint at DocTrain West</a></li>
</ul>
<p><a href="#top">Back to top</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.contentinsomnia.net/words-to-wiki/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: www.contentinsomnia.net @ 2012-02-04 11:05:53 -->
