<?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>The WikiWorks Blog</title>
	<atom:link href="http://wikiworks.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://wikiworks.com/blog</link>
	<description>The blog for &#60;a href=&#34;http://wikiworks.com&#34;&#62;WikiWorks&#60;/a&#62;, the MediaWiki consulting company</description>
	<lastBuildDate>Wed, 18 Apr 2012 16:27:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Launch of Innovention wiki</title>
		<link>http://wikiworks.com/blog/2012/04/18/launch-of-innovention-wiki/</link>
		<comments>http://wikiworks.com/blog/2012/04/18/launch-of-innovention-wiki/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 16:08:35 +0000</pubDate>
		<dc:creator>Ike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wikiworks.com/blog/?p=110</guid>
		<description><![CDATA[Today is the launch date of a new WikiWorks site: Innovention wiki, which &#8220;showcases the themes of innovation and invention through stories drawn from South Australia.&#8221;
Skinning
We were able to design a really nice skin for the site, based on the specs of their designer. It uses a 3-column layout which is kind of uncharted territory [...]]]></description>
			<content:encoded><![CDATA[<p>Today is the launch date of a new <a href="http://wikiworks.com/">WikiWorks </a>site: <a href="http://saheritagefestival.com.au/">Innovention wiki</a>, which &#8220;showcases the themes of innovation and invention through stories drawn from South Australia.&#8221;</p>
<h2>Skinning</h2>
<p>We were able to design a really nice skin for the site, based on the specs of their designer. It uses a <a href="http://saheritagefestival.com.au.tmp.anchor.net.au/wiki/Both%27s_Iron_Lung">3-column layout</a> which is kind of uncharted territory as far as MediaWiki skins go. Part of the challenge here was the right-hand column. The search section is a part of the skin, while the maps, photos and videos are generated by the MediaWiki page itself. This was accomplished by putting that stuff into a div which uses absolute positioning.</p>
<p>Another challenge was trying to fit a decent form into a very narrow middle column. The solution was to hide the right column via CSS, since the search form doesn&#8217;t really need to be on a form page. Then, the middle column is stretched to cover both columns. This was easy to do, since <a href="http://www.mediawiki.org/wiki/Extension:Semantic_Forms">Semantic Forms</a> helpfully adds a class to the body tag for any formedit page (which works for existing pages) and MediaWiki adds a tag to any Special page (for when adding a new place with Special:FormEdit). So the content area was accessed with:</p>
<pre>.action-formedit #content, .mw-special-FormEdit #content {
<span>   width</span><span>: (a whole lot);</span>
<span>}
</span></pre>
<h2>Displaying different stuff to logged in and anonymous users</h2>
<p>While on the topic of body attributes, MediaWiki does not add any classes to the body tag which would <a href="https://bugzilla.wikimedia.org/show_bug.cgi?id=13242">differentiate logged in from anonymous users</a>. This doesn&#8217;t present a problem for the skin, which can easily check if the user is logged in. But what if you wanted to have a part of the MediaWiki content page displayed only for anonymous users? A common example would be exhortations to create an account and/or sign in. That&#8217;s something that should be hidden for logged in users. Fortunately, this is easily and cleanly resolved.</p>
<p>Since this was a custom skin, we overrode the Skin class&#8217;s handy addToBodyAttributes function <em>(hat <a href="https://bugzilla.wikimedia.org/show_bug.cgi?id=13242#c14">tip</a>)</em>:</p>
<pre>/* Extend the body element by a class that tells whether the user is
 logged in or not */
 public function addToBodyAttributes( $out, &amp;$bodyAttrs ) {
    if ($this-&gt;loggedin) {
       $bodyAttrs['class'] = $bodyAttrs['class'] . ' isloggedin ';
    } else {
       $bodyAttrs['class'] = $bodyAttrs['class'] . ' notloggedin';
    }
 }</pre>
<p>For the built in skins, this is still easy to do. Just use the same code with the <a href="http://www.mediawiki.org/wiki/Manual:Hooks/OutputPageBodyAttributes">OutputPageBodyAttributes </a>hook in your LocalSettings.php.  This function adds a class to the body tag called either &#8220;isloggedin&#8221; or &#8220;notloggedin.&#8221;  Then add the following CSS to your MediaWiki:SkinName.css:</p>
<pre>.isloggedin .hideifloggedin {
   display:none
}
.notloggedin .hideifnotloggedin {
   display:none
}</pre>
<p>Now in your MediaWiki code simply use these two classes to hide information from anonymous or logged in users. For example:</p>
<pre>
<pre>&lt;span class="hideifnotloggedin"&gt;You're logged in, mate!&lt;/span&gt;
&lt;span class="hideifloggedin"&gt;Dude, you should really make an account.&lt;/span&gt;</pre>
</pre>
<h3>Combine with some nifty login and formedit links</h3>
<p>Or even better, here&#8217;s a trick to generate links to edit the current page with a form:</p>
<pre>&lt;span class="hideifnotloggedin"&gt; [{{fullurl:{{FULLPAGENAMEE}}|action=formedit}} Edit this page]&lt;/span&gt;</pre>
<p>&#8230;and a bonus trick that will log in an anonymous user and THEN bring him to the form edit page:</p>
<pre>&lt;span class="hideifloggedin"&gt;[{{fullurl:Special:Userlogin|returnto={{FULLPAGENAMEE}}&amp;returntoquery=action=formedit}} Log in and edit this page.]&lt;/span&gt;</pre>
<p>It doesn&#8217;t get much better than that! See it in action <a href="http://saheritagefestival.com.au/wiki/Both%27s_Iron_Lung">here</a>. Yes, you&#8217;d have to make an account to really see it work. So take my word for it.</p>
<h2>Spam bots</h2>
<p>While on the subject of making an account, it seems that bots have gotten way too sophisticated. One of our clients had been using <a href="http://www.mediawiki.org/wiki/Extension:ConfirmEdit">ConfirmEdit</a> with <a rel="nofollow" href="http://www.google.com/recaptcha">reCAPTCHA</a> and was getting absolutely clobbered by spam. I&#8217;ve found that for low traffic wikis, the best and easiest solution is to combine with <a title="Extension:QuestyCaptcha" href="http://www.mediawiki.org/wiki/Extension:QuestyCaptcha">QuestyCaptcha</a> instead. They&#8217;re easily broken by an attacker who is specifically targeting that wiki, but very few wikis have gained that level of prominence. The trick is to ask a question that only a human can answer. I&#8217;ve had success with this type of question:</p>
<p>Please write the word, &#8220;horsse&#8221;, here (leave out the extra &#8220;s&#8221;): ______</p>
<h2>Featured article slideshow</h2>
<p>This site has a pretty cool <a href="http://saheritagefestival.com.au/wiki/Main_Page">main page</a>. The main contributor to that coolness is the transitioning slideshow with various featured articles. Gone are the days when a wiki only featured one page! This was made possible by bringing the <a rel="nofollow" href="http://www.mediawiki.org/wiki/Extension:Javascript_Slideshow">Javascript Slideshow</a> extension up to date, which was done by our founder <a title="User:Yaron Koren" href="http://www.mediawiki.org/wiki/User:Yaron_Koren">Yaron Koren</a> in honor of Innovention wiki. The articles are <a href="http://saheritagefestival.com.au/wiki/Template:Featured">inserted manually</a> which gives the user complete control over the appearance. But it would be pretty simple to generate the featured pages with a <a href="http://semantic-mediawiki.org/">Semantic MediaWiki</a> query.</p>
<h2>Tag Cloud</h2>
<p>Also on the <a href="http://saheritagefestival.com.au/wiki/Main_Page">main page</a> is a nifty tag cloud. That is done with <a href="http://www.mediawiki.org/wiki/Extension:Semantic_Result_Formats">Semantic Result Formats</a> and its <a href="http://semantic-mediawiki.org/wiki/Help:Tagcloud_format">tag-cloud format</a> (by our own <a title="Jeroen De Dauw" href="http://semantic-mediawiki.org/wiki/Jeroen_De_Dauw">Jeroen De Dauw</a>). Maybe I&#8217;ll blog more about that as it develops.</p>
<h2>Stay tuned</h2>
<p>The site will be developed further over the next few weeks, with some neat stuff to come&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://wikiworks.com/blog/2012/04/18/launch-of-innovention-wiki/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wikidata begins</title>
		<link>http://wikiworks.com/blog/2012/04/02/wikidata-begins/</link>
		<comments>http://wikiworks.com/blog/2012/04/02/wikidata-begins/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 02:31:48 +0000</pubDate>
		<dc:creator>Yaron Koren</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wikiworks.com/blog/?p=103</guid>
		<description><![CDATA[I regret to say that our consultant Jeroen De Dauw will not be doing any significant work for WikiWorks for at least the next year. Thankfully, that&#8217;s for a very good reason: he&#8217;s moved to Berlin to be part of the Wikidata project, which starts tomorrow.
Wikidata is headed by Denny Vrandecic, who, like Jeroen, is [...]]]></description>
			<content:encoded><![CDATA[<p>I regret to say that our consultant Jeroen De Dauw will not be doing any significant work for WikiWorks for at least the next year. Thankfully, that&#8217;s for a very good reason: he&#8217;s moved to Berlin to be part of the <a href="http://meta.wikimedia.org/wiki/Wikidata">Wikidata</a> project, which starts tomorrow.</p>
<p>Wikidata is headed by Denny Vrandecic, who, like Jeroen, is a friend and colleague of mine; and its goal is to bring true data to Wikipedia, in part via Semantic MediaWiki. There was a press release about it on Friday that got some significant media attention, including <a href="http://techcrunch.com/2012/03/30/wikipedias-next-big-thing-wikidata-a-machine-readable-user-editable-database-funded-by-google-paul-allen-and-others/">this good summary at TechCrunch</a>.</p>
<p>I&#8217;m very excited about the project, as a MediaWiki and SMW developer, as a data enthusiast, and simply as a Wikipedia user. This project quite different from any of the work that I&#8217;ve personally been involved with, because Wikipedia is simply a different beast from any standard wiki. There are five challenges that are specific to Wikipedia: it&#8217;s massive, it needs to be extremely fast at all times, it&#8217;s highly multi-lingual (over 200 languages currently), it requires references for all facts (at least in theory), and it has, at this point, no real top-down structure.</p>
<p>So the approach they will take will be not to tag information within articles themselves, the way it&#8217;s done in Semantic MediaWiki, but rather to create a new, separate site: a &#8220;Data Commons&#8221;, where potentially hundreds of millions of facts (or more?) will be stored, each fact with its own reference. Then, each individual language Wikipedia can make use of those facts within its own infobox template, where that Wikipedia&#8217;s community sees fit to use it.</p>
<p>It&#8217;s a bold vision, and there will be a lot of work necessary to pull it off, but I have a lot of faith in the abilities of the programmers who are on the team now. Just as importantly, I see the planned outcome of Wikidata as an inevitable one for Wikipedia. Wikipedia has been incrementally evolving from a random collection of articles to a true database since the beginning, and I think this is a natural step along that process.</p>
<p>A <a href="http://cyber.law.harvard.edu/~reagle/wp-redux/">set of files</a> were discovered in 2010 that represented the state of Wikipedia after about six weeks of existence, in February 2001. If you look through those pages, you can see nearly total chaos: there&#8217;s not even a hint of a unifying structure, or guidelines as to what should constitute a Wikipedia page; over 10% the articles related in some way to the book <em>Atlas Shrugged</em>, presumably added by a devoted fan.</p>
<p>11 years later, there&#8217;s structure everywhere: infobox templates dictate the important summary information for any one subject type, reference templates specify how references should be structured, article-tagging templates let users state precisely the areas they think need improvement. There are guidelines for the first sentence, for the introductory paragraphs (ideally, <a href="http://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style/Lead_section#Length">one to four of them</a>, depending on the article&#8217;s overall length), for how detailed sections should be, for when one should link to years, and so on. There are also tens of thousands of categories (at least, on the English-language Wikipedia), with guidelines on how to use them, creating a large set of hierarchies for browsing through all the information. These are all, in my eyes, symptoms of a natural progression toward a database-like system. Why is it natural? Because, if a rule makes sense for one article, it probably makes sense for all of them. Of course, that&#8217;s not always true, and there can be sub-rules, exceptions, etc.; but still, there&#8217;s no use reinventing the wheel for every article.</p>
<p>People complain that the proliferation of rules and guidelines, not to mention categories and templates, <a href="http://www.pcmag.com/article2/0,2817,2390484,00.asp">drive away new users</a>, who are increasingly afraid to edit articles for fear of doing the wrong thing. And they&#8217;re right. But the solution to this problem is not to scale back all these rules, but rather to make the software more aware of the rules, and the overall structure, to prevent users from being able to make a mistake in the first place. That, at heart, was the thinking behind my extension <a href="http://www.mediawiki.org/wiki/Extension:Semantic_Forms">Semantic Forms</a>: if there&#8217;s a specific way of creating calls to a specific template, there&#8217;s no point requiring each user to create them in that way, when you can just display a form, let the user only enter valid inputs, and have the software take care of the rest.</p>
<p>Now, Wikidata isn&#8217;t concerned with the structuring of articles, but only with the data that they contain; but the core philosophy is the same: let the software take care of anything that there&#8217;s only one right way to do. If a country has a certain population (at least, according to some source), then there&#8217;s no reason that the users of every different language Wikipedia need to independently look up and maintain that information. If every page about a mutiplanetary system already has its information stored semantically, then there&#8217;s no reason to separately maintain a hand-generated <a href="http://en.wikipedia.org/wiki/List_of_multiplanetary_systems">list of multiplanetary systems</a>. And if, for every page about a musician, there&#8217;s already semantic information about their genre, instrument and nationality, then there&#8217;s no reason for categories such as &#8220;<a href="http://en.wikipedia.org/wiki/Category:Danish_jazz_trumpeters">Danish jazz trumpeters</a>&#8220;. (And there&#8217;s probably much less of a need for categories in general.)</p>
<p>With increased meaning/semantics on one hand, and increased structure on the other, Wikipedia will become more like a database that can be queried, than like a standard encyclopedia. And at that point, the possibilities are endless, as they say. The demand is already there; all that&#8217;s missing is the software, and that&#8217;s what they&#8217;ll be working on in Berlin. <em>Viel Glück!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://wikiworks.com/blog/2012/04/02/wikidata-begins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dynamically resizing an image</title>
		<link>http://wikiworks.com/blog/2011/12/12/dynamically-resizing-an-image/</link>
		<comments>http://wikiworks.com/blog/2011/12/12/dynamically-resizing-an-image/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 20:11:27 +0000</pubDate>
		<dc:creator>Ike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wikiworks.com/blog/?p=91</guid>
		<description><![CDATA[This is something that comes up, particularly when dealing with MediaWiki infoboxes. We had an infobox table floating on the right side of the page with a fixed with. Then there was an image to the left of it that was supposed to take up the remaining page&#8217;s width. The challenge was: What happens as [...]]]></description>
			<content:encoded><![CDATA[<p>This is something that comes up, particularly when dealing with MediaWiki infoboxes. We had an infobox table floating on the right side of the page with a fixed with. Then there was an image to the left of it that was supposed to take up the remaining page&#8217;s width. The challenge was: What happens as the user shrinks or stretches the browser window? The fixed width table would stay the same size but the image would have to grow or shrink with the browser width.</p>
<p>There are some scripts out there that would do this. You don&#8217;t need them. Here&#8217;s what to do:</p>
<pre>{| style="float: right; width: 613px" ... |}</pre>
<pre>&lt;div id="image-holder" style="margin-right: 630px;"&gt;
[[File:Image.jpg]]
&lt;/div&gt;</pre>
<p>Then add some CSS:</p>
<pre>div#image-holder img {
  height: auto;
  width: 100%;
}</pre>
<p>Simple, right? Basically, the 100% width combined with the right margin gives us a &#8220;100% percent minus x number of pixels&#8221; effect. The browser responds accordingly.</p>
<p>See it live <a href="http://theplantencyclopedia.org/index.php?title=Aa&amp;action=formedit">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wikiworks.com/blog/2011/12/12/dynamically-resizing-an-image/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New AdManager extension</title>
		<link>http://wikiworks.com/blog/2011/11/15/new-admanager-extension/</link>
		<comments>http://wikiworks.com/blog/2011/11/15/new-admanager-extension/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 01:51:22 +0000</pubDate>
		<dc:creator>Ike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AdManager]]></category>
		<category><![CDATA[sidebar]]></category>

		<guid isPermaLink="false">http://wikiworks.com/blog/?p=88</guid>
		<description><![CDATA[The folks at the American Academy of Ophthalmology asked us to create an AdManager that could be managed in full from the wiki itself. They were using BanManPro which allows you to create zones, with each zone corresponding to a particular ad. AAO wanted per-page or per-category control of which zone was assigned to which [...]]]></description>
			<content:encoded><![CDATA[<p>The folks at the <a href="http://www.aao.org/">American Academy of Ophthalmology</a> asked us to create an AdManager that could be managed in full from the wiki itself. They were using <a href="http://www.banmanpro.com/">BanManPro</a> which allows you to create zones, with each zone corresponding to a particular ad. AAO wanted per-page or per-category control of which zone was assigned to which page. We created <a href="http://www.mediawiki.org/wiki/Extension:AdManager">the AdManager extension</a> but we designed it so it could be used with <a href="http://www.openx.com/">OpenX</a> or really any ad service. The extension currently sticks the ads in the sidebar. You can place any number of zones there. See it in action <a href="http://eyewiki.aao.org/Intravitreal_Injections">here</a>.</p>
<p>I think the way we hooked into the sidebar was neat and the tips I took from it are useful for any other extension that adds to the sidebar. We of course used the <a href="http://www.mediawiki.org/wiki/Manual:Hooks/SkinBuildSidebar">SkinBuildSidebar hook</a>. The problem is that monobook automatically puts a header on top of the new sidebar item &#8211; in this case AdManager1 &#8211; and puts a border around it. Neither of these was desired. Good thing that MediaWiki also gives it an id (p-AdManager1) so you can use some CSS to hide it. The trick here is that there can be multiple zones added so we may have other ids like p-AdManager2 and so on. So here&#8217;s the nifty CSS that will match all of those ids:</p>
<pre>div[id*='AdManager'] h5 {
	display: none; #Hide the header
}
div[id*='AdManager'] .pBody {
	border: none; #and the border
	padding-left: 0; #override the normal padding
}</pre>
<p>Unfortunately, you&#8217;ll need admin rights to see the 2 special pages that handle the settings. And that&#8217;s that.</p>
]]></content:encoded>
			<wfw:commentRss>http://wikiworks.com/blog/2011/11/15/new-admanager-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrating Mediawiki while retaining your web site&#8217;s look and feel</title>
		<link>http://wikiworks.com/blog/2011/11/15/integrating-mediawiki-while-retaining-your-web-sites-look-and-feel/</link>
		<comments>http://wikiworks.com/blog/2011/11/15/integrating-mediawiki-while-retaining-your-web-sites-look-and-feel/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 01:04:29 +0000</pubDate>
		<dc:creator>Ike</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[skinning]]></category>

		<guid isPermaLink="false">http://wikiworks.com/blog/?p=83</guid>
		<description><![CDATA[We finished this project quite a few months ago but I never got around to bragging about it. The nice folks at petwellbeing.com already had a web site and wanted to add a wiki that would completely match it.
There are a few interesting points here. We based it on the Vector skin. The sidebar was [...]]]></description>
			<content:encoded><![CDATA[<p>We finished this project <a href="http://wikiworks.com/blog/2011/01/09/new-vector-base-skin-complete/">quite a few months ago</a> but I never got around to bragging about it. The nice folks at petwellbeing.com already had a web site and wanted to add a wiki that would completely match it.<br />
There are a few interesting points here. We based it on the Vector skin. The sidebar was a natural fit since the rest of the site already had one. The main problem was positioning the (always difficult) vector tabs and the personal links at the top. The good news is that it can be done, with a bit of trial and error.</p>
<p>You can see it in action <a href="http://pethealth.petwellbeing.com/wiki/Main_Page">here</a>.</p>
<p>We then pulled off the same idea for <a href="http://www.naturalwellbeing.com/learning-center/Main_Page">another one</a> of their sites. <em>(Both of these skins have since been revamped by a fellow WikiWorks consultant.)</em></p>
<p>I think the main lesson for me was how easy it is to integrate MediaWiki with the rest of a site. We&#8217;ve all come across well-designed sites with a wiki component. Click the wiki and you&#8217;re off into monobook-land with no (apparent) links to help you return. Now what? As it turns out, it doesn&#8217;t have to be that way. With a little bit of effort, that nice theme can be applied to MediaWiki.</p>
]]></content:encoded>
			<wfw:commentRss>http://wikiworks.com/blog/2011/11/15/integrating-mediawiki-while-retaining-your-web-sites-look-and-feel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notes from Wikimania 2011</title>
		<link>http://wikiworks.com/blog/2011/08/19/notes-from-wikimania-2011/</link>
		<comments>http://wikiworks.com/blog/2011/08/19/notes-from-wikimania-2011/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 22:06:12 +0000</pubDate>
		<dc:creator>Yaron Koren</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wikiworks.com/blog/?p=80</guid>
		<description><![CDATA[My wife and I got back a week ago from our trip to Israel, which included the Wikimania conference in Haifa &#8211; Wikimania is an annual conference mostly about Wikipedia, that, like the Olympics, moves around the globe every time. Wikimania, in this case, was half the goal and half an excuse to visit Israel [...]]]></description>
			<content:encoded><![CDATA[<p>My wife and I got back a week ago from our trip to Israel, which included the <a href="http://wikimania2011.wikimedia.org/wiki/Main_Page">Wikimania conference</a> in Haifa &#8211; Wikimania is an annual conference mostly about Wikipedia, that, like the Olympics, moves around the globe every time. Wikimania, in this case, was half the goal and half an excuse to visit Israel &#8211; which is where I grew up, and where my extended family lives, but which I hadn&#8217;t visited in six years.</p>
<p>First, I&#8217;ll say that visiting Israel was an absolutely amazing experience. We managed to see a huge amount of the country &#8211; Haifa, Tel Aviv, Jaffa, Jerusalem, the West Bank, etc. We met secular Jews, orthodox Jews, Arabs, Russians, Americans (plus all the really diverse attendees of Wikimania, but that&#8217;s a separate story). We visited ancient ruins, high-tech parks, leafy neighborhoods, government offices, and settlements on the edge of a desert. And my extended family could not have been nicer &#8211; and the same actualy holds true for almost everyone I met, which really defies the stereotype of rude Israelis. (I was 90% enthused about it and 10% &#8211; dare I say? &#8211; disappointed.)</p>
<p>With that said, on to the conference. Here are some general observations of mine:</p>
<ul>
<li> I think there was a general view that this was might have been the best-organized, best-run Wikimania ever. The venue was great, the food was amazing, the parties were on-point, the keynote speakers (Yochai Benkler and Joseph Reagle) were well-chosen, and there were lots of nice little touches, like awesome videos at the opening and closing (the closing one must have been prepared in less than a day). The one technical glitch was the lack of enough power outlets &#8211; but people managed. I&#8217;ve been to four of the seven Wikimanias, and they&#8217;ve all been enjoyable and well-run, but this one just seemed to have that something extra. I&#8217;m biased, though, because I grew up in Haifa, so maybe I&#8217;m the wrong person to ask.</li>
<li>I have to admit that I had soured a little on Wikimania beforehand &#8211; it&#8217;s a great experience for anyone who hasn&#8217;t been before, but at some point one can get a little Wikipedia&#8217;d out. There are always technical discussions about Mediawiki, but never enough, in my opinion. This one had more than usual, though, and a lot of interest among the attendees, so that was a very positive step. As always, I got to talk to other developers, and as always I got to meet some of them for the first time &#8211; like Niklas, two ahead of me on the <a href="http://www.ohloh.net/p/mediawiki/contributors">contributors list</a>.</li>
<li>The next Wikimania will be in Washington, D.C. At the end of the conference, the D.C. organizers gave a shambolic presentation that I think had everyone worried. Still, the conference will be in the U.S., which gives them a huge natural advantage in terms of getting both attendees and speakers. I plan to be there, in any case.</li>
</ul>
<p>And, since we&#8217;re a Semantic MediaWiki-related company, some Semantic MediaWiki-related comments:</p>
<ul>
<li>There was <a href="http://wikimania2011.wikimedia.org/wiki/Submissions/Towards_a_Semantic_Wikipedia">one directly SMW-related talk</a>, given by Denny Vrandecic, Daniel Kinzler and me. The talk was mostly about adding SMW to Wikipedia, and not about the software per se. Denny talked about the basic premise of SMW, I went into the details and showed some demos, and then Denny and Daniel talked about the planned upcoming &#8220;Wikidata&#8221; project, which is meant to supply infobox data to all the different language Wikipedias (and, via RDF, to the world), using SMW as the backend. We had 40 minutes to talk, but we could have easily talked for twice that long &#8211; we barely talked about the Semantic Web, didn&#8217;t mention projects like DBpedia and Freebase, and the SMW demos were quite minimal. Also, there was a packed room, with about 60 people, and lots of questions and comments at the end. Anyway, you can find more <a href="http://meta.wikimedia.org/wiki/New_Wikidata">information about the Wikidata proposal here</a>.</li>
<li>Wikimedia operations guy Ryan Lane gave a talk about the WMF&#8217;s server management, where he mentioned that Semantic MediaWiki was used to store details about their setup. (You can see an explanation of that <a href="http://ryandlane.com/blog/2010/03/29/helpdesk-system-and-datacenter-inventory-semantic-mediawiki-prototypes-added-to-my-prototype-wiki/">here</a>.) That was pretty cool.</li>
<li>There was a session called &#8220;<a href="http://wikimania2011.wikimedia.org/wiki/Submissions/Ask_the_Developers">Ask the developers</a>&#8220;, where I found out about the <a href="http://www.mediawiki.org/wiki/Style_guide">MediaWiki style guide</a>, which I hadn&#8217;t seen before. It&#8217;s awesome, and I&#8217;ve actually already modified the error-messages display in Semantic Forms to match what&#8217;s in the guide.</li>
<li>As at previous Wikimanias, there was a good amount of discussion about making editing easier, both of template calls and of wiki syntax in general. Brion Vibber, the head MediaWiki programmer, talked about it a few times, as did Sue Gardner, the WMF executive director. And Jimmy Wales focused a lot of his talk, which was the final talk of Wikimania, on improving the interface on Wikipedia to make things like requesting page moves easier. That last one is not directly editing-related, but it does tie in to making smarter, more user-friendly interfaces. If anything comes out of either initiative, it will undoubtedly be interesting to the Semantic MediaWiki community.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wikiworks.com/blog/2011/08/19/notes-from-wikimania-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Semantic MediaWiki is better than Sharepoint</title>
		<link>http://wikiworks.com/blog/2011/07/28/why-semantic-mediawiki-is-better-than-sharepoint/</link>
		<comments>http://wikiworks.com/blog/2011/07/28/why-semantic-mediawiki-is-better-than-sharepoint/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 15:29:59 +0000</pubDate>
		<dc:creator>Yaron Koren</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wikiworks.com/blog/?p=78</guid>
		<description><![CDATA[We have a new essay up, linked from our main site: Semantic MediaWiki vs. Sharepoint. When people talk about the competitors to Semantic MediaWiki, it&#8217;s Microsoft Sharepoint that always comes up first &#8211; it&#8217;s popular, and for many people the name &#8220;Sharepoint&#8221; is pretty much synonymous with collaboration software. This essay tries to make our [...]]]></description>
			<content:encoded><![CDATA[<p>We have a new essay up, linked from our main site: <a href="http://wikiworks.com/semantic-mediawiki-vs-sharepoint.html">Semantic MediaWiki vs. Sharepoint</a>. When people talk about the competitors to Semantic MediaWiki, it&#8217;s <a href="http://sharepoint.microsoft.com/en-us/Pages/default.aspx">Microsoft Sharepoint</a> that always comes up first &#8211; it&#8217;s popular, and for many people the name &#8220;Sharepoint&#8221; is pretty much synonymous with collaboration software. This essay tries to make our case for why SMW is actually the better tool, in both quality and cost. I put together the essay based on our collective knowledge about Sharepoint, in addition to feedback from people who have used both pieces of software extensively.</p>
]]></content:encoded>
			<wfw:commentRss>http://wikiworks.com/blog/2011/07/28/why-semantic-mediawiki-is-better-than-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMWCon in DC, the writeup</title>
		<link>http://wikiworks.com/blog/2011/05/16/smwcon-in-dc-writeup/</link>
		<comments>http://wikiworks.com/blog/2011/05/16/smwcon-in-dc-writeup/#comments</comments>
		<pubDate>Mon, 16 May 2011 22:41:22 +0000</pubDate>
		<dc:creator>Yaron Koren</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wikiworks.com/blog/?p=71</guid>
		<description><![CDATA[We had SMWCon, the Semantic MediaWiki Conference, in Arlington, Virginia (right near Washington, D.C.) about two and a half weeks ago. I meant to blog about it right afterwards, but things kept interfering. Anyway, here&#8217;s my writeup.
We had over 30 attendees, from all over the United States in addition to Germany, the Netherlands, China and [...]]]></description>
			<content:encoded><![CDATA[<p>We had <a href="http://semantic-mediawiki.org/wiki/SMWCon_Spring_2011">SMWCon, the Semantic MediaWiki Conference, in Arlington, Virginia (right near Washington, D.C.)</a> about two and a half weeks ago. I meant to blog about it right afterwards, but things kept interfering. Anyway, here&#8217;s my writeup.</p>
<p>We had over 30 attendees, from all over the United States in addition to Germany, the Netherlands, China and Japan. The plurality, though, and maybe even the majority, were from the area.</p>
<p>Some thoughts about the conference:</p>
<ul>
<li>The biggest discovery, in my opinion, was the success of the <a href="http://semantic-mediawiki.org/wiki/SMWCon_Spring_2011#Tutorial_Day">tutorial day</a>. Previously we&#8217;ve always had two-day conferences, but for this one we added a third day at the beginning, which was intended to be strictly for tutorials &#8211; letting people learn about the basics of MediaWiki, Semantic MediaWiki and its spinoff extensions. It was useful both in the context of the conference &#8211; so that people could attend having a good sense of what all the technology was about &#8211; and as simply a training session for the software. I led the first two of the four tutorial sessions. There were around 25 people attending &#8211; mostly people from the conference, although some  attended only the tutorial day. Each attendee paid around $100 to attend (dinner included); which, as training sessions go, is very much on the cheap side. Still, the tutorial ended up basically paying for the rest of the conference, with a little bit of surplus at the end; which was a nice state of things.</li>
<li>The rest of the conference was great too. As usual, we had a mix of talks by developers, users/administrators who shared interesting things they were doing with Semantic MediaWiki, and some talks on more general, sort of cerebral topics (like my talk about the future of semantic wikis). We definitely had more than enough material to cover both days.</li>
<li>This was probably the most corporate and enterprise-y Semantic MediaWiki meeting yet. The conferences in the U.S. tend to be more corporate anyway than the ones in Europe, which tend to have a higher share of academics and &#8220;hackers&#8221;. But this one especially was pretty serious &#8211; lots of people representing various organizations, including, as you&#8217;d expect, many working either directly or indirectly for the U.S. government.</li>
<li>I got to meet a bunch of people that I had only talked to online, which is always neat &#8211; there were probably about 10 people there that I had only talked to via email, wiki talk page, etc.</li>
<li>We also had some celebrities &#8211; well, quasi-celebrities &#8211; in the group, including Sherrod DeGrippo, who <a href="http://www.digitaltrends.com/computing/encyclopedia-dramatica-evolving/">famously</a> (or infamously, depending on your opinion) shut down the wiki <a href="http://en.wikipedia.org/wiki/Encyclopedia_Dramatica">Encyclopædia Dramatica</a> last month and redirected it to an awesome new Semantic MediaWiki-based wiki, <a href="http://ohinternet.com/">Oh Internet</a>. (When I first met her, I told her it was great meeting an internet celebrity &#8211; she was nonplussed, and responded, &#8220;I&#8217;m more like &#8211; what do you call the kind of celebrity that most people hate?&#8221; &#8220;Celebrity,&#8221; I answered.) We also had two semantic-web pioneers: Mike Dean from Raytheon/BBN (who helped to arrange the conference) and Mark Greaves of Vulcan. There was also my friend Mike Cariaso, who gets a steady stream of press due to SNPedia, the site he co-founded, most recently a <a href="http://reason.com/archives/2010/12/13/ill-show-you-my-genome-will-yo">nice writeup</a> in Reason magazine.</li>
</ul>
<p>The slides from talks have mostly been uploaded, and are linked on the wiki page. The talks were also videotaped, but the videos haven&#8217;t been uploaded yet. It&#8217;s in progress, though &#8211; another SMW user has graciously volunteered to help with the process, so my guess is that within a few weeks the videos will start showing up on of your favorite video-sharing sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://wikiworks.com/blog/2011/05/16/smwcon-in-dc-writeup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Can Semantic MediaWiki cross the chasm?</title>
		<link>http://wikiworks.com/blog/2011/03/28/can-semantic-mediawiki-cross-the-chasm/</link>
		<comments>http://wikiworks.com/blog/2011/03/28/can-semantic-mediawiki-cross-the-chasm/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 03:05:50 +0000</pubDate>
		<dc:creator>Yaron Koren</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wikiworks.com/blog/?p=65</guid>
		<description><![CDATA[I recently read &#8220;Crossing the Chasm&#8221; by Geoffrey Moore, which is a book I&#8217;d heard about a few years ago, described by someone as required reading for tech entrepreneurs.
The basic premise of the book is that the rise in popularity of tech products is very rarely a smooth upward curve: even for products that have [...]]]></description>
			<content:encoded><![CDATA[<p>I recently read &#8220;<a href="http://www.amazon.com/Crossing-Chasm-Marketing-High-Tech-Mainstream/dp/0066620023">Crossing the Chasm</a>&#8221; by Geoffrey Moore, which is a book I&#8217;d heard about a few years ago, described by someone as required reading for tech entrepreneurs.</p>
<p>The basic premise of the book is that the rise in popularity of tech products is very rarely a smooth upward curve: even for products that have a nice initial burst of popularity, it&#8217;s very difficult to move past the early user base and start to get acceptance among the general population (or the population who might use one&#8217;s product, in any case). That&#8217;s because those early adopters are usually the ones who already seek out and embrace new technologies; while the majority of people are either, in the book&#8217;s vocabulary, &#8220;pragmatists&#8221; (who just care about getting things done with a minimum of headache) or &#8220;&#8221;skeptics&#8221; (who actively dislike switching from whatever they&#8217;re using now).</p>
<p>When trying to move from the early adopters to everyone else, Moore argues, everything has to change: your marketing pitch, your sales strategy, the array of additional services and peripherals around the product (if any even existed), and even your company culture.</p>
<p>&#8220;Crossing the Chasm&#8221; then gives a prescription for the marketing and sales strategy to use: find a suitable niche market, and then put all your focus on that, trying to monopolize it to the greatest extent possible. The operative theory is that pragmatists and skeptics tend not to switch over to new technology unless they start to see people around them using it; so you need to focus on a very small group of people and keep marketing to it until many of them have become convinced by each other&#8217;s examples to start using your software. Once that happens, you can let your success among that group propagate out to related markets, to other departments within organizations you&#8217;ve already sold to, etc.</p>
<p>On top of that, there&#8217;s then a specific branding strategy, to use when marketing to that niche group: find the main software you&#8217;re trying to replace, then describe yourself as like that software, but with one improvement: the pitch should sound like, &#8220;it&#8217;s like X, but Y&#8221;. That applies even if your software has more than one benefit over your competitor: the key is, at all costs, not to confuse your potential new customers or overload them with facts, which would give them an excuse to tune you out.</p>
<p>There are some case studies cited in the book; the one that struck out at me was Documentum, a document-management software company which did just that &#8211; in 1993, after several years of flat revenues, they decided (based on reading &#8220;Crossing the Chasm&#8221;&#8217;s first edition, it turns out) to focus on a tiny niche: the regulatory-affairs departments at large pharmaceutical companies. As the book puts it, the company was paradoxically &#8220;reducing its market scope from &#8216;all personnel who touch complex documents in all large enterprises,&#8217; to maybe one thousand people total on the planet.&#8221; It worked for them, though &#8211; they started doubling their revenues every year, they went public in 1996, and in 2003 they were bought by EMC.</p>
<p>Crossing the Chasm was first published in 1991, and then re-published in 2000 with extensive rewrites; the 2000 version is the one I read. So &#8211; is it still relevant?</p>
<p>There are ways in which &#8220;Crossing the Chasm&#8221; is an outdated book, especially for the open-source web software business. The overriding feeling of the book is one of urgency &#8211; in its parlance, you have to, with great discipline, &#8220;secure a beachhead&#8221;, before you can be attacked by rival companies or by &#8220;vulture capitalists&#8221;, VCs looking for struggling companies to buy up and exploit. The source of all that angst is that, for a company developing proprietary software, the &#8220;burn rate&#8221;, the amount of money it takes to keep the company going, pay developers&#8217; salaries, pay rent on the office, etc., can be large &#8211; <a href="http://www.techiteasy.org/2007/01/21/us-tech-start-ups-cash-burn-rate-on-average-10k-per-employee-per-month/">over $100,000 per year per employee</a>, on average. For a 20-person startup, that&#8217;s over $2 million a year, so if you&#8217;re not making that much in revenue every year, you&#8217;re in constant danger.</p>
<p>There&#8217;s just less urgency in open-source. It&#8217;s true that some open-source software companies do follow the proprietary software model &#8211; the software is developed by a small group of people who work together in an office, and they just happen to release the resulting code for free. But I think that&#8217;s the exception: most of the time in open source, the development work is split between paid and volunteer developers, and even the software&#8217;s paid developers can be split among different organizations. (Also, developers often work remotely, saving on office expenses &#8211; though that&#8217;s happening more and more for propriety software as well.) All of that serves to keep development costs much lower for software of what I think is comparable quality.</p>
<p>Beyond that, the nature of marketing software in 2011 is almost another world from marketing software in, say, 1995. Back then, the success of the Netscape browser in getting market share through free internet downloads pointed the way of the future; but for the most part, software was sold in stores or through third-party sellers, and people learned about new software from their acquaintances, or through a network of salespeople, or by reading trade publications. These days all of those still exist, but we also have tech blogs, Twitter feeds, and web searches. And in the case of web software, people can instantly check out examples of the software in action. And in the case of <em>open-source</em> web software, they can also download it themselves and try it out for free. (Though proprietary software can also have free evaluation periods and the like.) Which means that, unlike 15 years ago, lots of people can find out about, and use, your software, without a single sales call having to be made (even if people still called on the phone, which apparently <a href="http://www.nytimes.com/2011/03/20/fashion/20Cultural.html">no one does any more</a>).</p>
<p>(Finally, there&#8217;s a third major difference, which is that much of the software used these days is hosted directly on web sites &#8211; or &#8220;in the cloud&#8221;, as people like to say. And WikiWorks is in that business too, with the <a href="http://referata.com">Referata</a> wiki-hosting service. But my main topic here is Semantic MediaWiki, which has to be downloaded.)</p>
<p>With all that said, I think the book is still relevant. Human nature hasn&#8217;t changed in the last 20 years; most people still won&#8217;t switch to using software until they know that other people in their situation are using it. Which means that, given the choice, it&#8217;s probably better for one&#8217;s future success to have 100 people from the same industry or niche using one&#8217;s software, than to have 100 people randomly distributed in different careers around the world.</p>
<hr />
<p>So where does that leave <a href="http://semantic-mediawiki.org">Semantic MediaWiki</a>? (You could ask the same thing about MediaWiki as a whole, which is another interesting question, but for the sake of simplicity here I&#8217;ll just assume that the ideal installation of MediaWiki always involves SMW, and thus that the two are synonymous.) Our usage is right now essentially random, with some interesting pockets of adoption in different markets but no real pattern to it. There&#8217;s definitely an argument that we&#8217;d be better off focusing our marketing efforts. By &#8220;marketing&#8221; in this case, I mean the wording we use to describe the software, the kind of marketing documents we create, the types of conferences we attend, the blogs and publications we pitch to, and even potentially the kinds of peripheral software created.</p>
<p>The obvious next question, then, is which market, or markets, should be targeted. Interestingly, pharmaceutical companies &#8211; the niche Documentum started with &#8211; might be a good choice for us too. Pfizer already uses SMW, and another one, I&#8217;ve heard indirectly, almost started to use it for a major project, backed out a few months ago, but still may end up using it later. Pharmaceuticals have a combination of massive amounts of data; an always-changing data structure (because the concepts being discussed are always in flux), which makes creating industry-specific applications difficult; and massive amounts of money. The first two make SMW a good tool to use, and the third makes it definitely worth our while to get involved.</p>
<p>Another interesting niche is biotech companies, for much the same reason.</p>
<p>Another strong possibility is one or more sectors within the U.S. Government. There, too, there are massive amounts of data, and, for better or worse, massive amounts of money (at least at the federal level). WikiWorks has already done Semantic MediaWiki-related setup work for some U.S. federal agencies, and we hope to do more.</p>
<p>So those are some potential niches; what about a branding strategy? To the extent that there&#8217;s a single, identifiable competitor, it seems like it would have to be <a href="http://en.wikipedia.org/wiki/Microsoft_SharePoint">Microsoft SharePoint</a>. So what&#8217;s SMW&#8217;s one advantage over SharePoint? Is it like SharePoint, but open-source? That&#8217;s certainly catchy, but there are already <a href="http://reddevnews.com/blogs/data-driver/2009/04/bring-on-the-open-source-alternatives-to-sharepoint.aspx">various other applications</a> that bill themselves that way &#8211; which doesn&#8217;t mean, of course, that SMW can&#8217;t join them. (Very interestingly, the main application listed in that article, Alfresco, is, from what I understand, an open-source update of Documentum, produced by some of the same people. It&#8217;s all come full circle! Somewhat less interestingly, I once met the guy from Alfresco quoted in that article.)</p>
<p>SMW could also be &#8220;like SharePoint, but Semantic Web-enabled&#8221;, which is undeniably true, but maybe not very compelling at this point. And it could be &#8220;like SharePoint, but a wiki&#8221;, which is, I think, easier to understand, and possibly more compelling.</p>
<p>Any thoughts from the crowd? Comments, as always, are welcome.</p>
<p><strong>Update:</strong> I just want to clarify that I&#8217;m in no way dismissive of all the many varied and interesting uses that Semantic MediaWiki has gotten so far, including among our clients and including wikis run personally by various WikiWorks members. I hope SMW continues to get lots of usage in all different sort of fields &#8211; all I&#8217;m trying to discuss here is where to focus future marketing efforts.</p>
]]></content:encoded>
			<wfw:commentRss>http://wikiworks.com/blog/2011/03/28/can-semantic-mediawiki-cross-the-chasm/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Notes from the Wikimedia Data Summit</title>
		<link>http://wikiworks.com/blog/2011/02/08/notes-from-the-wikimedia-data-summit/</link>
		<comments>http://wikiworks.com/blog/2011/02/08/notes-from-the-wikimedia-data-summit/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 00:44:39 +0000</pubDate>
		<dc:creator>Yaron Koren</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wikiworks.com/blog/?p=60</guid>
		<description><![CDATA[Update: See the comments below for some important corrections/clarifications from Erik Möller.
On Friday I attended the &#8220;Wikimedia Data Summit&#8221;, which was held at the O&#8217;Reilly Media offices in Sebastopol, California. It was a one-day event, that was actually more like three summits, on three different topics. The first, and the one I was involved with, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update:</strong> See the comments below for some important corrections/clarifications from Erik Möller.</p>
<p>On Friday I attended the &#8220;Wikimedia Data Summit&#8221;, which was held at the <a href="http://oreilly.com/">O&#8217;Reilly Media</a> offices in Sebastopol, California. It was a one-day event, that was actually more like three summits, on three different topics. The first, and the one I was involved with, was meant to discuss plans for making the Wikimedia projects, mostly Wikipedia, more data-focused: essentially, the &#8220;Semantic Wikipedia&#8221; dream that some people have had for a long time. The second was a discussion on how to improve the web analytics of Wikimedia sites: improving the info and visualizations gathered about page views, editing statistics and all that. And the third was a smaller discussion about improving MediaWiki&#8217;s wiki-text parser.</p>
<p>The day started with everyone in the same room, first with an introductory talk by <a href="http://en.wikipedia.org/wiki/Erik_M%C3%B6ller">Erik Möller</a> and then with 10-minute talks by various people related to each of the three main topics. Six of them were related in some way to <a href="http://semantic-mediawiki.org/wiki/Semantic_MediaWiki">Semantic MediaWiki</a>:</p>
<ul>
<li>I was tasked with explaining all of SMW and its family of extensions in 10 minutes (which I sort of managed to do, barely)</li>
<li>Denny Vrandecic talked about <a href="http://shortipedia.org/index.php/Main_Page">Shortipedia</a>, his new-ish SMW-based research project</li>
<li>Michael Erdmann from ontoprise talked about <a href="http://www.ontoprise.de/en/solutions/smw-plus/">SMW+</a></li>
<li>Christian Becker, best known as one of the DBpedia people, talked about his work on the <a href="http://smwforum.ontoprise.com/smwforum/index.php/SMW%2BLDE">SMW+ Linked Data Extension</a></li>
<li>Mark Greaves from Vulcan talked about <a href="http://wiking.vulcan.com/up/">Ultrapedia</a>, Vulcan&#8217;s demonstration of an SMW-annotated subset of Wikipedia</li>
<li>Michael Dale talked about the <a href="http://metavid.org/">MetaVid</a> extension and website</li>
</ul>
<p>You can see the notes from that first session <a href="http://eiximenis.wikimedia.org/DataSummit">here</a>; and, if you&#8217;re curious, you can see the slides from my talk <a href="http://wikiworks.com/SMW-WikimediaDataSummit.pdf">here</a>.</p>
<p>We then split up into three groups, and I joined the &#8220;Semantic Wikipedia&#8221; group, which was led by Erik, and included the six SMW-related people, as well as people from Google, Freebase (although that&#8217;s technically Google too), DBpedia and some other groups. I volunteered to be the note-taker for the discussion, and you can see my notes <a href="http://eiximenis.wikimedia.org/DataSummitSMW">here</a>.</p>
<p>The basic goal, as Erik defined it, is that they want to create a &#8220;Wikimedia Data Commons&#8221;, in the spirit of <a href="http://commons.wikimedia.org/wiki/Main_Page">Wikimedia Commons</a> &#8211; a single site that would serve as a data repository for all the different language Wikipedias. Facts would be entered there in the form of semantic triples, although really they would include more than three things &#8211; besides the fact itself, there would be data like the source (which might include a URL), the date, the language that the information is in, etc. Every Wikipedia could then somehow query that data in order to display it within infoboxes; and the data could also be queried by outside applications.</p>
<p>Ultimately, this project is Erik&#8217;s own, and it became obvious early on that his preferred approach was to use Denny&#8217;s Shortipedia as a basis; actually, it turned out that Shortipedia had originally been developed, about five months ago, after discussions with Erik. If I can give my own perspective on Shortipedia: it&#8217;s a fact-based approach to data, as opposed to Semantic MediaWiki&#8217;s generally page-based approach. As far as I know, Shortipedia uses SMW mainly for its pre-existing database tables, as opposed to making use of much of the logic in the SMW code. Actually, Shortipedia reminds me more than anything (as I told Denny when he first showed it to me) of other semantic wiki applications I&#8217;ve seen, like <a href="http://attempto.ifi.uzh.ch/acewiki/">AceWiki</a> and <a href="http://ontowiki.net/Projects/OntoWiki">OntoWiki</a>. In the non-SMW semantic wikis, the semantic stuff is generally kept separate from the other content, and there&#8217;s usually some sort of mini-form that lets you keep adding triples to a page. That approach generally, from my experience, works poorly for individual wikis; but for a massive data repository like the &#8220;Wikimedia Data Commons&#8221;, it may well be the right way to go. So there you have it: if you want to see the future of data on Wikipedia, <a href="http://shortipedia.org/index.php/Main_Page">Shortipedia </a>might be it.</p>
<p>As far as the event itself: if I had planned it, I would have done various things differently. The major issue was that I didn&#8217;t think all three events should have been held together. The three topics are rather discrete, and I didn&#8217;t think there was much &#8220;synergy&#8221; generated by putting them all under one roof. Worse than that, it meant that various people who ideally would have taken part in two or all three of the meetings (like many of the Wikimedia development staff) could only be in one.</p>
<p>As for the the semantic/data part of things, advance notice that Shortipedia was the way things would probably go would have been helpful &#8211; I would have spent more time beforehand thinking about the ramifications of it, something I only really started doing today. As it was, the most helpful thing I contributed at the time was probably my note-taking skills (which I&#8217;m proud of, by the way!)</p>
<p>Anyway, the big takeaway from the meeting wasn&#8217;t my somewhat underwhelming experience, but rather the fact that there now appears to be at least the beginnings of a path forward for data on Wikipedia. That&#8217;s probably the more important news, in the greater scheme of things. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://wikiworks.com/blog/2011/02/08/notes-from-the-wikimedia-data-summit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

