<?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>Tom Heath's Displacement Activities &#187; Tom Heath</title>
	<atom:link href="http://tomheath.com/blog/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://tomheath.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 16 Jun 2010 12:33:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Why Carry the Cost of Linked Data?</title>
		<link>http://tomheath.com/blog/2010/06/why-carry-the-cost-of-linked-data/</link>
		<comments>http://tomheath.com/blog/2010/06/why-carry-the-cost-of-linked-data/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 12:33:37 +0000</pubDate>
		<dc:creator>Tom Heath</dc:creator>
				<category><![CDATA[Linked Data]]></category>
		<category><![CDATA[Semantic Web]]></category>

		<guid isPermaLink="false">http://tomheath.com/blog/?p=166</guid>
		<description><![CDATA[In his ongoing series of niggles about Linked Data, Rob McKinnon claims that &#8220;mandating RDF [for publication of government data] may be premature and costly&#8220;. The claim is made in reference to Francis Maude&#8217;s parliamentary answer to a question from Tom Watson. Personally I see nothing in the statement from Francis Maude that implies the [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>In his ongoing series of niggles about <a href="http://linkeddata.org/">Linked Data</a>, Rob McKinnon claims that &#8220;<a href="http://twitter.com/delineator/status/16242963730">mandating RDF [for publication of government data] may be premature and costly</a>&#8220;. The claim is made in reference to <a href="http://www.theyworkforyou.com/wrans/?id=2010-06-14a.1936.h&amp;s=speaker%3A11309#g1936.q0">Francis Maude&#8217;s parliamentary answer to a question from Tom Watson</a>. Personally I see nothing in the statement from Francis Maude that implies the mandating of RDF or Linked Data, only that &#8220;Where possible we will use recognised open standards including Linked Data standards&#8221;. Note the &#8220;where possible&#8221;. However, that&#8217;s not the point of this post.</p>
<p>There&#8217;s nothing premature about publishing government data as Linked Data &#8211; it&#8217;s happening on a large scale in the UK, US and elsewhere. Where I do agree with Rob (perhaps for the first time <img src='http://tomheath.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) is that it comes at a cost. However, this isn&#8217;t the interesting question, as the same applies to any investment in a nation&#8217;s infrastructure. The interesting questions are who bears that cost, and who benefits?</p>
<p>Let&#8217;s make a direct comparison between publishing a data set in raw <a href="http://en.wikipedia.org/wiki/Comma-separated_values">CSV</a> format (probably exported from a database or spreadsheet) and making the extra effort to publish it in RDF according to the <a href="http://www.w3.org/DesignIssues/LinkedData.html">Linked Data principles</a>.</p>
<p>Assuming that your spreadsheet doesn&#8217;t contain formulas or merged cells that would make the data irregularly shaped, or that you can create a nice database view that denormalises your relational database tables into one, then the cost of publishing data in CSV basically amounts to running the appropriate export of the data and hosting the static file somewhere on the Web. Dead cheap, right?</p>
<p>Oh wait, you&#8217;ll need to write some documentation explaining what each of the columns in the CSV file mean, and what types of data people should expect to find in each of these. You&#8217;ll also need to create and maintain some kind of directory so people can discover your data in the crazy haystack that is the Web. Not quite so cheap after all.</p>
<p>So what are the comparable processes and costs in the RDF and Linked Data scenario? One option is to use a tool like <a href="http://www4.wiwiss.fu-berlin.de/bizer/d2r-server/">D2R Server</a> to expose data from your relational database to the Web as RDF, but let&#8217;s stick with the CSV example to demonstrate the lo-fi approach.</p>
<p>This is not the place to reproduce an entire <a href="http://linkeddata.org/docs/how-to-publish">guide to publishing Linked Data</a>, but in a nutshell, you&#8217;ll need to decide on the format of the URIs you&#8217;ll assign to the things described in your data set, select one or more RDF schemata with which to describe your data (analogous to defining what the columns in your CSV file mean and how their contents relate to each other), and then write some code to convert the data in your CSV file to RDF, according to your URI format and the chosen schemata. Last of all, for it to be proper Linked Data, you&#8217;ll need to find a related Linked Data set on the Web and create some RDF that links (some of) the things in your data set to things in the other. Just as with conventional Web sites, if people find your data useful or interesting they&#8217;ll create some RDF that links the things in their data to the things in yours, gradually creating an unbounded Web of data.</p>
<p>Clearly these extra steps come at a cost compared to publishing raw CSV files. So why bear these costs?</p>
<p>There are two main reasons: discoverability and reusability.</p>
<p>Anyone (deliberately) publishing data on the Web presumably does so because they want other people to be able to find and reuse that data. The beauty of Linked Data is that discoverability is baked in to the combination of RDF and the Linked Data principles. Incoming links to an RDF data set put that data set &#8220;<a href="http://my.opera.com/tomheath/blog/2007/06/19/on-the-web-but-not-in-the-web">into the Web</a>&#8221; and outgoing links increase the interconnectivity further.</p>
<p>Yes, you can create an HTML link to a CSV file, but you can&#8217;t link to specific things described in the data or say how they relate to each other. <strong>Linked Data enables this</strong>. Yes, you can publish some documentation alongside a CSV file explaining what each of the columns mean, but that description can&#8217;t be interlinked with the data itself, making it self-describing. <strong>Linked Data does this</strong>. Yes, you can include URIs in the data itself, but CSV provides no mechanism that for indicating that the content of a particular cell is a link to be followed. <strong>Linked Data does this</strong>. Yes, you can create directories or catalogues that describe the data sets available from a particular publisher, but this doesn&#8217;t scale to the Web. Remember what the arrival of Google did to the Yahoo! directory? What we need is a mechanism that supports arbitrary discovery of data sets by bots roaming the Web and building searchable indices of the data they find. <strong>Linked Data enables this</strong>.</p>
<p>Assuming that a particular data set has been discovered, what is the cost of any one party using that data in a new application? Perhaps this application only needs one data set, in which case all the developer must do is read the documentation to understand the structure of the data and get on with writing code. A much more likely scenario is that the application requires integration of two or more data sets. If each of these data sets is just a CSV file then every application developer must incur the cost of integrating them, i.e. linking together the elements common to both data sets, and must do this for every new data set they want to use in their application. In this scenario the integration cost of using these data sets is proportional to their use. There are no economies of scale. It always costs the same amount, to every consumer.</p>
<p>Not so with Linked Data, which enables the data publisher to identify links between their data and third party data sets, and make these links available to every consumer of that data set by publishing them as RDF along with the data itself. Yes, there is a one-off cost to the publisher in creating the links that are most likely to be useful to data consumers, but that&#8217;s a one-off. It doesn&#8217;t increase every time a developer uses the data set, and each developer doesn&#8217;t have to pay that cost for each data set they use.</p>
<p>If data publishers are seriously interested in promoting the use of their data then this is a cost worth bearing. Why constantly reinvent the wheel by creating new sets of links for every application that uses a certain combination of data sets? Certainly as a UK taxpayer, I would rather the UK Government made this one-off investment in publishing and linking RDF data, thereby lowering the cost for everyone that wanted to use them. This is the way to build a vibrant economy around open data.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://tomheath.com/blog/2010/06/why-carry-the-cost-of-linked-data/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>The demise of community.linkeddata.org</title>
		<link>http://tomheath.com/blog/2010/03/the-demise-of-community-linkeddata-org/</link>
		<comments>http://tomheath.com/blog/2010/03/the-demise-of-community-linkeddata-org/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 19:12:33 +0000</pubDate>
		<dc:creator>Tom Heath</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tomheath.com/blog/?p=135</guid>
		<description><![CDATA[The issue of what happened to the community.linkeddata.org site came up in this thread on the public-lod mailing list. In the name of the public record I&#8217;m posting some of the messages I have related to this issue. I&#8217;ll try and get any gaps filled in in due course (let me know if there are [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>The issue of what happened to the community.linkeddata.org site came up in <a href="http://lists.w3.org/Archives/Public/public-lod/2010Mar/0234.html">this thread</a> on the <a title="public-lod" href="http://lists.w3.org/Archives/Public/public-lod/">public-lod</a> mailing list. In the name of the public record I&#8217;m posting some of the messages I have related to this issue. I&#8217;ll try and get any gaps filled in in due course (let me know if there are specific gaps of interest to you and I&#8217;ll try to fill them in); in the meantime I&#8217;m keen to get the key bits online.</p>
<p>Some background is here:<br />
<a href="http://lists.w3.org/Archives/Public/public-lod/2008Apr/0096.html">http://lists.w3.org/Archives/Public/public-lod/2008Apr/0096.html</a></p>
<hr/>
<code><br />
from    Michael Hausenblas &lt;michael.hausenblas@d...&gt;<br />
to    Ted Thibodeau Jr &lt;tthibodeau@o...&gt;<br />
cc    Kingsley Idehen &lt;kidehen@o...&gt;,Tom Heath &lt;tom.heath@t...&gt;<br />
date    <strong>9 February 2009 18:27</strong><br />
subject    Re: "powered by" logos on linkeddata.org MediaWiki<br />
<br/>MacTed,<br />
<br/>I'll likely not invest time anymore in the Wiki [<em>the MediaWiki instance at community.linkeddata.org - TH</em>]. The plan is to transfer everything to Drupal. We had a lot of hassle with the Wiki configuration and community contribution was rather low. After the spam attack we decided to close it. It only contains few valuable things (glossary and iM maybe) ..<br />
<br/>Do you have an account at linkeddata.org Drupal, yet? Otherwise, Tom, would you please be so kind?<br />
<br/>Again, sorry for the delay ... it's LDOW-paper-write-up time <img src='http://tomheath.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<br/>Cheers,<br />
Michael<br />
<br/><br />
--<br />
Dr. Michael Hausenblas<br />
DERI - Digital Enterprise Research Institute<br />
National University of Ireland, Lower Dangan,<br />
Galway, Ireland, Europe<br />
Tel. +353 91 495730<br />
<br/><br />
<br/>&gt; From: Ted Thibodeau Jr &lt;tthibodeau@o...&gt;<br />
&gt; Date: Fri, 6 Feb 2009 16:22:31 -0500<br />
&gt; To: Michael Hausenblas &lt;michael.hausenblas@d...&gt;<br />
&gt; Cc: Kingsley Idehen &lt;kidehen@o...&gt;<br />
&gt; Subject: "powered by" logos on linkeddata.org MediaWiki<br />
&gt;<br />
&gt; Hi, Michael --<br />
&gt;<br />
&gt; re: &lt;http://community.linkeddata.org/MediaWiki/index.php?Main_Page&gt;<br />
&gt;<br />
&gt; It appears that the "Powered by Virtuoso" logo that was once alongside<br />
&gt; the<br />
&gt; "Powered by Mediawiki" logo (lower right of every page) has disappeared<br />
&gt; from the main page boilerplate.  Can that get re-added, please?<br />
&gt;<br />
&gt; Please use this logo --<br />
&gt;<br />
&gt;<br />
&gt; &lt;http://boards.openlinksw.com/support/styles/prosilver/theme/images/virt_power<br />
&gt; _no_border.png<br />
&gt;&gt;<br />
&gt;<br />
&gt; -- and make it href link to --<br />
&gt;<br />
&gt;     &lt;http://virtuoso.openlinksw.com/&gt;<br />
&gt;<br />
&gt; Please let me know if there's any difficulty with this.<br />
&gt;<br />
&gt; Thanks,<br />
&gt;<br />
&gt; Ted<br />
&gt;<br />
&gt;<br />
&gt; --<br />
&gt; A: Yes.                      http://www.guckes.net/faq/attribution.html<br />
&gt; | Q: Are you sure?<br />
&gt; | | A: Because it reverses the logical flow of conversation.<br />
&gt; | | | Q: Why is top posting frowned upon?<br />
&gt;<br />
&gt; Ted Thibodeau, Jr.           //               voice +1-781-273-0900 x32<br />
&gt; Evangelism &amp; Support         //        mailto:tthibodeau@o...<br />
&gt; OpenLink Software, Inc.      //              http://www.openlinksw.com/<br />
&gt;                                   http://www.openlinksw.com/weblogs/uda/<br />
&gt; OpenLink Blogs              http://www.openlinksw.com/weblogs/virtuoso/<br />
&gt;                                 http://www.openlinksw.com/blog/~kidehen/<br />
&gt;      Universal Data Access and Virtual Database Technology Providers<br />
</code><br />
<br/></p>
<hr/>
<code><br />
from	Tom Heath <tom.heath@t...><br />
to	Michael Hausenblas <michael.hausenblas@d...><br />
date	<strong>9 March 2009 13:49</strong><br />
subject	Re: http://linkeddata.org/domains?<br />
mailed-by	talisplatform.com<br />
<br/>Hey Michael,<br />
<br/>Re 2. great! I've created this node <http://linkeddata.org/glossary><br />
and put it near the top of the primary navigation. You should be able<br />
to write to that at will <img src='http://tomheath.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<br/>Re 1. yes, good idea. I agree we should do this, just need to think<br />
through the IA a little. Can you give me a day or so to chew this<br />
over?<br />
<br/>Cheers <img src='http://tomheath.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<br/>Tom.<br />
<br/><br />
<br/><br />
2009/3/7 Michael Hausenblas <michael.hausenblas@d...>:<br />
> Tom,<br />
><br />
> As you may have gathered we're about to close down the 'old' community Wiki<br />
> [1] and move over to [2]. There is not much active (and valuable) content at<br />
> [1] and we had a lot of troubles with spammer (oh how I hate these ...).<br />
><br />
> So, basically two things would be great:<br />
><br />
> 1. I'd like to propose to add a sort of 'domain' or 'community' sub-space,<br />
> such as http://linkeddata.org/domains where I can put our interlinking<br />
> multimedia stuff [3] (and then change the redirect <img src='http://tomheath.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
><br />
> 2. The second thing would be to find a place at [2] for the glossary [4] -<br />
> seems quite helpful for people.<br />
><br />
> Any thoughts?<br />
><br />
><br />
> Cheers,<br />
>      Michael<br />
><br />
> [1] http://community.linkeddata.org/MediaWiki/index.php?Main_Page<br />
> [2] http://linkeddata.org/<br />
> [3] http://www.interlinkingmultimedia.info/<br />
> [4] http://community.linkeddata.org/MediaWiki/?Glossary<br />
><br />
> --<br />
> Dr. Michael Hausenblas<br />
> DERI - Digital Enterprise Research Institute<br />
> National University of Ireland, Lower Dangan,<br />
> Galway, Ireland, Europe<br />
> Tel. +353 91 495730<br />
> http://sw-app.org/about.html<br />
> http://webofdata.wordpress.com/<br />
</code><br />
<br/></p>
<hr/>
<p>It&#8217;s quite hard to follow the indenting in the mail exchange below, so I&#8217;ve marked <strong>my</strong> contributions in bold.</p>
<p><code><br />
from	Tom Heath <tom.heath@t...><br />
to	Kingsley Idehen <kidehen@o...><br />
cc	Michael Hausenblas <michael.hausenblas@d...><br />
date	<strong>18 June 2009 17:07</strong><br />
subject	Re: community.linkeddata.org<br />
mailed-by	talisplatform.com<br />
<br/><strong>Kingsley,<br />
<br/>Also, what news of the previous instance?<br />
<br/>Cheers,<br />
<br/>Tom.<br />
</strong><br />
2009/6/18 Tom Heath <tom.heath@t...>:<br />
<strong>> Hi Kingsley,<br />
><br />
> Would the service you envisage at the subdomains you propose provide<br />
> only a URI minting plus FOAF+SSL/OpenID service, or would other stuff<br />
> also be available at that domain? If so, what?<br />
><br />
> Tom.<br />
><br />
><br />
</strong><br />
> 2009/6/18 Kingsley Idehen <kidehen@o...>:<br />
>> Tom Heath wrote:<br />
>>><br />
<strong>>>> Hi Kingsley,</strong><br />
>>><br />
>>> 2009/6/16 Kingsley Idehen <kidehen@o...>:<br />
>>><br />
>>>><br />
>>>> Tom Heath wrote:<br />
>>>><br />
>>>>><br />
<strong>>>>>> Hi Kingsley,</strong><br />
>>>>><br />
>>>>> 2009/6/16 Kingsley Idehen <kidehen@o...>:<br />
>>>>><br />
>>>>><br />
>>>>>><br />
>>>>>> Tom Heath wrote:<br />
>>>>>><br />
>>>>>><br />
>>>>>>><br />
<strong>>>>>>>> Hi Kingsley,<br />
>>>>>>><br />
>>>>>>> According to our earlier discussions, this subdomain is deprecated in<br />
>>>>>>> favour of the main site at linkeddata.org. If you'd a like a different<br />
>>>>>>> subdomain for specific service just let me know.<br />
>>>>>>><br />
>>>>>>> Cheers,<br />
>>>>>>><br />
>>>>>>><br />
>>>>>>><br />
</strong><br />
>>>>>><br />
>>>>>> What are the options?<br />
>>>>>><br />
>>>>>><br />
>>>>><br />
<strong>>>>>> Guess that depends on the service you have in mind <img src='http://tomheath.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  My goal is to<br />
>>>>> avoid fragmentation of the presence at linkeddata.org and subdomains,<br />
>>>>> so favour only creating new subdomains that do something highly<br />
>>>>> specific and do not duplicate functionality or content available<br />
>>>>> elsewhere.<br />
>>>>><br />
>>>>> Cheers,<br />
>>>>><br />
>>>>> Tom.<br />
>>>>><br />
>>>>><br />
>>>>><br />
</strong><br />
>>>><br />
>>>> I am not quite understanding you.<br />
>>>><br />
>>>> What would you see as the scheme for an instance of ODS that gives LOD<br />
>>>> members URIs (of the FOAF+SSL variety)?<br />
>>>><br />
>>>> Personally, I have no particular interest in pushing this with you per<br />
>>>> se.<br />
>>>> If you somehow deem this unimportant, no problem, I move on etc..<br />
>>>><br />
<strong>>>><br />
>>> So the proposal is for another equivalent ODS instance, but one that<br />
>>> adds FOAF+SSL support?<br />
>>><br />
>>> If so, then this does sound important, as FOAF+SSL seems to have lots<br />
>>> to offer. The problem I'm trying to address is as follows: the<br />
>>> feedback I got from people about the previous offering at<br />
>>> community.linkeddata.org was that it was confusing. People didn't<br />
>>> understand what was going on or being offered, and the end result<br />
>>> seemed to be further fragmentation of Linked Data coverage -<br />
>>> particularly problematic for newbies. Therefore a very trimmed down<br />
>>> service offering just personal URIs with FOAF+SSL support would seem<br />
>>> to be of benefit, but I'm not sure of the value of replicating the<br />
>>> previous offering with enhancements.<br />
>>><br />
>>> Thoughts?<br />
>>><br />
>>> Incidentally, the previous instance seems to have died. Can it be<br />
>>> reinstated while we finish porting the content across?<br />
>>><br />
>>> Cheers,<br />
>>><br />
>>> Tom.<br />
>>><br />
>>><br />
</strong><br />
>><br />
>> Tom,<br />
>><br />
>> Goal is to have a place for people to easily obtain personal URIs. In a way,<br />
>> official LOD community Web IDs.<br />
>> FOAF+SSL is the most important feature here and LOD should be a launch pad.<br />
>><br />
>> Possible options:<br />
>> yourid.linkeddata.org<br />
>> webid.linkeddata.org<br />
>> me.linkeddata.org<br />
>><br />
>><br />
>> This is how it works:<br />
>><br />
>> 1. New Users open accounts<br />
>> 2. Edit profile<br />
>> 3. Click a button that makes an X.509 certificate, exports to browser, and<br />
>> writes to FOAF space<br />
>> 4. Member visits any FOAF+SSL or OpenID space on the Web and never has to<br />
>> present uid/pwd<br />
>><br />
>> For existing members, they simply perform steps 3-4.<br />
>><br />
>><br />
>> --<br />
>><br />
>><br />
>> Regards,<br />
>><br />
>> Kingsley Idehen       Weblog: http://www.openlinksw.com/blog/~kidehen<br />
>> President &#038; CEO OpenLink Software     Web: http://www.openlinksw.com<br />
>><br />
><br />
> --<br />
> Dr Tom Heath<br />
> Researcher<br />
> Platform Division<br />
> Talis Information Ltd<br />
> T: 0870 400 5000<br />
> W: http://www.talis.com/<br />
><br />
--<br />
Dr Tom Heath<br />
Researcher<br />
Platform Division<br />
Talis Information Ltd<br />
T: 0870 400 5000<br />
W: http://www.talis.com/<br />
</code></p>
<hr/>
<br/></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://tomheath.com/blog/2010/03/the-demise-of-community-linkeddata-org/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wash down the Apple tablet with a gulp of Kool Aid</title>
		<link>http://tomheath.com/blog/2010/02/wash-down-the-apple-tablet-with-a-gulp-of-kool-aid/</link>
		<comments>http://tomheath.com/blog/2010/02/wash-down-the-apple-tablet-with-a-gulp-of-kool-aid/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 15:30:54 +0000</pubDate>
		<dc:creator>Tom Heath</dc:creator>
				<category><![CDATA[Harware]]></category>
		<category><![CDATA[apple ipad hardware tablet]]></category>

		<guid isPermaLink="false">http://tomheath.com/blog/?p=130</guid>
		<description><![CDATA[I&#8217;m not in the least bit excited about the iPad, and it seems I&#8217;m not alone. The mood seems to have changed since before the launch, with countless tech journalists previously falling over themselves to declare tablets the next big thing. (Thankfully Rory Cellan-Jones from the BBC was more measured, focusing on personal projectors as [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not in the least bit excited about the iPad, and it seems I&#8217;m not alone. The mood seems to have changed since before the launch, with countless tech journalists previously falling over themselves to declare tablets <em>the next big thing</em>. (Thankfully Rory Cellan-Jones from the BBC was more measured, focusing on personal projectors as a more exciting development). The mood since is considerably more downbeat, and I think more realistic.</p>
<p>I may be missing some crucial usage context that reveals the killer characteristics of the iPad, but I&#8217;ve tried really hard and still nothing. There are many obvious practical issues with the device:</p>
<ul>
<li>it&#8217;s too big for a pocket, but not sufficiently more useful than an iPhone or an HTC Hero.</li>
<li>it&#8217;s about the same size as a compact laptop, but with less scope for comfortable rapid input.</li>
<li>it&#8217;s probably too big to cradle comfortably in my hand for prolonged periods, and sitting with one ankle on the other knee is not always practical.</li>
</ul>
<p>The only scenarios I can conjure up where I could imagine using the device are:</p>
<ul>
<li>showing people my holiday photos.</li>
<li>reviewing design proofs without needing to print them out.</li>
</ul>
<p>Neither of these, or even both, are very compelling at all. TVs are getting good for viewing photos, by including e.g. an SD card slot, and rumours of the death of paper are greatly exagerated.</p>
<p>Perhaps the most annoying thing about the scenarios used to promote the device is the one about the San Francisco to Tokyo flight, watching video all the way without running out of battery. Any airline with planes worth boarding has personal video screens. I don&#8217;t want to bring my own. I&#8217;d rather use the space to carry a decent pair of noise-canceling headphones, which I&#8217;m sure increase my enjoyment of onboard media far more than a little bit of extra screen real estate. The development I want to see is not a new device that I have to prop on the flimsy airline table, hold tight when we hit some turbulence, and stow away when my food arrives, but the capability to connect my own device to the in-built screen via USB or Bluetooth. Even a bare USB port with power but no connectivity would be a start, allowing me to run low-powered devices (that I already own) during long flights.</p>
<p>OK, so the flight reference is just a touchstone for how long the device can run without mains power, but I think it demonstrates a lack of grounding of the device in realistic scenarios.</p>
<p>Any new device has to have two key characteristics these days for me to get excited: <em>interoperability</em> and <em>convergence</em>. The iPad seems to have very little of either. You could argue that it offers some convergence between smartphones and e-readers, but that&#8217;s about as exciting as convergence between a smartphone and a wall clock.</p>
<p>I&#8217;m left wondering what the iPad is competing against? I&#8217;m guessing it&#8217;s paper, whether that&#8217;s in the form of a book, brochure, newspaper, restaurant menu or whatever. Unfortunately for Apple, paper is pretty well suited to each of these, especially when you introduce bath water, the risk of theft, or just ketchup, into the equation. Perhaps this is the end of electronic picture frames as dedicated device? Probably about time. Maybe the iPad will make an excellent Spotify console for the living room. Who knows? Whatever happens I can&#8217;t see this becoming a mass-market product worthy of even a fraction of the hype.</p>
<p>Where I wish that Apple had expended their creative talent was in addressing the power issue. Not in making sure I could watch 10 hours of back to back video, but in enabling me to spend that energy in whatever way I choose, powering whichever device I choose. It drives me crazy that I carry several batteries around, and short of running my phone off my laptop via USB there is no interoperability between these power sources. If Apple could produce a universal power supply that was sleek, sexy, efficient and interoperable, <em>then</em> I would be interested. Sadly this doesn&#8217;t seem to be the way.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://tomheath.com/blog/2010/02/wash-down-the-apple-tablet-with-a-gulp-of-kool-aid/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Putting a Conference into the Semantic Web</title>
		<link>http://tomheath.com/blog/2009/11/putting-a-conference-into-the-semantic-web/</link>
		<comments>http://tomheath.com/blog/2009/11/putting-a-conference-into-the-semantic-web/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 12:42:50 +0000</pubDate>
		<dc:creator>Tom Heath</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Linked Data]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Semantic Web]]></category>

		<guid isPermaLink="false">http://tomheath.com/blog/?p=124</guid>
		<description><![CDATA[Chris Gutteridge asked this question about semantically enabling conference Web sites, which is a subject close to my heart. It&#8217;s hard to give a meaningful response in 140 characters, so I decided to get some headline thoughts down for posterity. If you want a fuller account of some first-hand experiences, then the following papers are [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a title="Chris Gutteridge" href="http://users.ecs.soton.ac.uk/cjg/">Chris Gutteridge</a> asked <a title="this question" href="http://twitter.com/cgutteridge/status/5839876111">this question</a> about semantically enabling conference Web sites, which is a subject close to my heart. It&#8217;s hard to give a meaningful response in 140 characters, so I decided to get some headline thoughts down for posterity. If you want a fuller account of some first-hand experiences, then the following papers are a good place to start:</p>
<ul>
<li>Tom Heath, John Domingue, and Paul Shabajee (2006) <a title="User Interaction and Uptake Challenges to Successfully Deploying Semantic Web Technologies" href="http://swui.semanticweb.org/swui06/papers/Heath/Heath.pdf">User Interaction and Uptake Challenges to Successfully Deploying Semantic Web Technologies</a>. In Proceedings of <a title="The 3rd International Semantic Web User Interaction Workshop (SWUI2006)" href="http://swui.semanticweb.org/swui06/">The 3rd International Semantic Web User Interaction Workshop (SWUI2006)</a>, 5th International Semantic Web Conference (ISWC2006), November 2006, Athens, GA, USA.</li>
<li>Knud Möller, Tom Heath, Siegfried Handschuh and John Domingue (2007) <a title="Recipes for Semantic Web Dog Food - The ESWC and ISWC Metadata Projects" href="http://iswc2007.semanticweb.org/papers/795.pdf">Recipes for Semantic Web Dog Food &#8211; The ESWC and ISWC Metadata Projects</a>. In Proceedings of the 6th International Semantic Web Conference and 2nd Asian Semantic Web Conference (ISWC+ASWC2007), Busan, Korea. LNCS 4825.</li>
</ul>
<h4>Top Five Tips for Semantic Web-enabling a Conference</h4>
<p>1. Exploit Existing Workflows</p>
<p>Conferences are incredibly data-rich, but much of this richness is bound up in systems for e.g. paper submission, delegate registration, and scheduling, that aren&#8217;t native to the Semantic Web. Recognise this in advance and plan for how you intend to get the data from these systems out into the Web. The good news is that scripts now exists to handle dumps from submission systems such as EasyChair, but you may need to ensure that the conference instance of these systems is configured correctly for your needs. For example, getting dumps from these systems often comes at a price, and if you&#8217;re using one instance per track rather than the multi-track options, you may be in for a shock when you ask for the dumps. Speak to the Programme Chairs about this as soon as possible.</p>
<p>In my experience, delegate registration opens months in advance of a conference and often uses a proprietary, one-off system. As early as possible make contact with the person who will be developing and/or running this system, and agree how the registration system can be extended to collect data about the delegates and their affiliations, for example. Obviously there needs to be an opt-in process before this data is published on the public Web.</p>
<p>Collecting these types of data from existing workflows is so monumentally easier than asking people to submit it later through some dedicated means. With this in mind, have modest expectations (in terms of degree of participation) for any system you hope to deploy for people to use before, during and after the conference, whether this is a personalised schedule planner, paper annotation system or rating system for local restaurants. People have massive demands on their time always, and especially at a conference, so any system that isn&#8217;t already part of a workflow they are engaged with is likely to get limited uptake.</p>
<p>2. Publish Data Early then Incrementally Improve</p>
<p>Perhaps your goal in publishing RDF data about your conference is simply to do the right thing by eating your own dog food and providing an archival record of the event in machine-readable form. This is fine, but ideally you want people to use the published data before and during the event, not just afterwards. In an ideal world, people will use the data you publish as a foundation for demos of their applications and services and the conference, as means to enhance the event and also to promote their own work. To maximise the chances of this happening you need to make it clear in advance that you will be publishing this data, and give an indication of what the scope of this will be. The RDF available from previous events in the ESWC and ISWC series can give an impression of the shape of the data you will publish (assuming you follow the same modelling patterns), but get samples out early and basic structures in place so people have the chance to prepare. Better to incrementally enhance something than save it all up for a big bang just one week before the conference.</p>
<p>3. Attend to the details</p>
<p>Many of the recent ESWC and ISWC events have done a great job of publishing conference data, and have certainly streamlined the process considerably. However, along the way we&#8217;ve lost (or failed to attend to) some of the small but significant facts that relate to a conference, such as the location, venue, sponsors and keynote speakers. This stuff matters, and is the kind of data that probably doesn&#8217;t get recorded elsewhere. Obviously publishing data about the conference papers is important, but from an archival point of view this information is at least recorded by the publishers of the proceedings. The more tacit, historical knowledge about a conference series may be of great interest in the future, but is at risk of slipping away.</p>
<p>4. Piggy-back on Existing Infrastructure</p>
<p>As I discovered while coordinating the Semantic Web Technologies for ESWC2006, deploying event-specific services is simply making a rod for your own back. Who is going to ensure these stay alive after the event is over and everyone moves onto the next thing? The answer is probably no-one. The domain-registration will lapse, the server will get hacked or develop a fault, the person who once knew why that site mattered will take a job elsewhere, and the data will disappear in the process. Therefore it&#8217;s critical that every event uses infrastructure that is already embedded in everyday usage and also/therefore has a future. The best example of this is data.semanticweb.org, the de facto home for Linked Data from Web-related events. This service has support from SWSA, and enough buy-in from the community, to minimise the risk that it will ever go away. By all means host the data on the conference Web site if you must, but don&#8217;t dream of not mirroring it at data.semanticweb.org, with owl:sameAs links to equivalent URIs in that namespace for all entities in your data set.</p>
<p>5. Put Your Data in the Web</p>
<p>Remember that while putting your data on the Web for others to use is a great start, it&#8217;s going to be of greatest use to people if it&#8217;s also *in* the Web. This is a frequently overlooked distinction, but it really matters. No one in their right mind would dream of having a Web site with no incoming or outgoing links, and the same applies to data. Wherever possible the entities in your data set need to be linked to related entities in other data sets. This could be as simple as linking the conference venue to the town in which it is located, where the URI for the town comes from Geonames. Linking in this way ensures that consumers of the data can discover related information, and avoids you having to publish redundant information that already exists somewhere else on the Web. The really great news is that data.semanticweb.org already provides URIs for many people who have published in the Semantic Web field, and (aside from some complexities with special characters in names) linking to these really can be achieved in one line of code. When it&#8217;s this easy there really are no excuses.</p>
<p><strong>Conclusions</strong></p>
<p>Reading the above points back before I hit publish, I realise they focus on Semantic Web-enabling the conference as a whole, rather than specifically the conference Web site, which was the focus of Chris&#8217;s original question. I think we know a decent amount about <a title="publishing Linked Data on the Web" href="http://linkeddata.org/docs/how-to-publish">publishing Linked Data on the Web</a>, so hopefully these tips usefully address the more process-oriented than technical aspects.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://tomheath.com/blog/2009/11/putting-a-conference-into-the-semantic-web/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimisation for People with a Conscience</title>
		<link>http://tomheath.com/blog/2009/07/search-engine-optimisation-for-people-with-a-conscience/</link>
		<comments>http://tomheath.com/blog/2009/07/search-engine-optimisation-for-people-with-a-conscience/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 11:27:14 +0000</pubDate>
		<dc:creator>Tom Heath</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tomheath.com/blog/?p=121</guid>
		<description><![CDATA[I&#8217;ve spent a fair amount of time recently cleaning up spammy reviews on Revyu, the Linked Data/Semantic Web reviewing and rating site. The main perpetrators of these spammy reviews seem to be self-appointed Search Engine Optimisation (SEO) &#8220;experts&#8221; (who even advertise themselves as such on LinkedIn). Their main strategy appears to be polluting the Web [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent a fair amount of time recently cleaning up spammy reviews on <a title="Revyu.com" href="http://revyu.com/">Revyu</a>, the Linked Data/Semantic Web reviewing and rating site. The main perpetrators of these spammy reviews seem to be self-appointed Search Engine Optimisation (SEO) &#8220;experts&#8221; (who even advertise themselves as such on LinkedIn). Their main strategy appears to be polluting the Web with links to fairly worthless sites, in the hope of gaining some share of search engine traffic.</p>
<p>Getting a piece of the action I have no objection to <em>per se</em>. This was exactly my aim with <a title="chiip.co.uk" href="http://chiip.co.uk/">chiip.co.uk</a> my (currently somewhat on ice) shop window to Amazon &#8211; visitors could find products via search engines and, if desired, buy them through a trusted supplier, earning me enough commission on the side to pay my hosting bill for a month or two. The difference here is that I just tweaked the site layout to show off the content to search engines in its best light. I never polluted anyone else&#8217;s space to gain exposure. People that do this are getting me down.</p>
<p>Revyu has become somewhat popular as a target, presumably due to its decent ranking in the search engines. The site didn&#8217;t gain this position through spamming other sites with backlinks, but by having some simple principles baked into the site design from the start. They&#8217;re the same basic principles I&#8217;ve used on any site I&#8217;ve created, and have generally served me well. A few years ago I wrote down the principles that guide me, and I share this first draft here as a service to people who want to optimise the exposure of their site and still be able to sleep at night.</p>
<p>Before you read the tips though bear this in mind: there is something of an art to this, but it isn&#8217;t rocket science, and it certainly isn&#8217;t black magic. If you can create a Web site then you can optimise pretty well for search engines without paying a single self-appointed &#8220;expert&#8221; a single penny. This is bread and butter stuff. These approaches should be part of the core skill set of any Web developer rather than an afterthought addressed through some external process. The tips below are not guaranteed to work and may become defunct at any time (some may be defunct already &#8211; does anyone ever use frames these days?). However, follow these and you&#8217;ll be 80% of the way there.</p>
<h3>Search Engine Optimisation Tips</h3>
<ol>
<li>there&#8217;s only so much you can do, and this may change at any time</li>
<li>don&#8217;t try and trick the search engines, just be honest</li>
<li>use web standards and clean code</li>
<li>use css for styling and layout</li>
<li>put important text first in the page; let this influence your design, it&#8217;s probably what users want too, especially if they&#8217;re on non-standard browsers</li>
<li>choose page titles carefully</li>
<li>use meta tags, but only if they&#8217;re accurate</li>
<li>use robot meta tags, and robots.txt</li>
<li>use structural markup, especially headings</li>
<li>give anchors sensible text (&#8220;click here&#8221; does not qualify as sensible)</li>
<li>use link titles and alt text</li>
<li>give files and folders meaningful names</li>
<li>provide default pages in directories so people can hack your URLs</li>
<li>forge meaningful (human) links with other sites, and make technical links accordingly</li>
<li>encourage inward links to your site
<ul>
<li>make urls readable and linkable to</li>
<li>don&#8217;t break links (at least give redirects)</li>
</ul>
</li>
<li>don&#8217;t use javascript for links/popup windows that you want to be indexed</li>
<li>avoid links embedded in flash movies</li>
<li>never use frames</li>
<li>never use cookies to power navigation</li>
<li>give example searches or browse trees to open databases to search engines</li>
<li>maximise the content richness of pages</li>
<li>avoid leaf node pages (always create links back to the rest of the site)</li>
<li>limit the use of PDFs</li>
<li>take common typos into account, or spelling variations (optimisation vs optimization is a good example)</li>
<li>update the site regularly</li>
<li>don&#8217;t use hidden text or comments to try and convey spam words</li>
<li>don&#8217;t embed text in images</li>
<li>avoid writing out text using javascript</li>
<li>don&#8217;t use browser detection to alter content or restrict access</li>
<li>provide meaningful error pages</li>
<li>be realistic about what you can achieve optimsation-wise</li>
<li>establish a traffic baseline</li>
<li>use monitoring tools to track your progress</li>
</ol>
<p>At some point I hope to provide evidence backing up each of these claims. In the meantime you&#8217;ll just have to trust me, but it won&#8217;t cost you anything.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://tomheath.com/blog/2009/07/search-engine-optimisation-for-people-with-a-conscience/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m not a lawyer, but&#8230;. ISWC2009 Tutorial on Data Licensing</title>
		<link>http://tomheath.com/blog/2009/07/im-not-a-lawyer-but-iswc2009-tutorial-on-data-licensing/</link>
		<comments>http://tomheath.com/blog/2009/07/im-not-a-lawyer-but-iswc2009-tutorial-on-data-licensing/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 13:46:42 +0000</pubDate>
		<dc:creator>Tom Heath</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Data Licensing]]></category>
		<category><![CDATA[Linked Data]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[Talis]]></category>

		<guid isPermaLink="false">http://tomheath.com/blog/?p=113</guid>
		<description><![CDATA[As the Linked Data community shifts its emphasis from publishing data on the Web to consuming it in applications, one question inevitably arises: &#8220;what are the terms under which different data sets can be reused?&#8221; There&#8217;s been a considerable amount of time and money invested by Talis and others in providing some clarity in this [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>As the Linked Data community shifts its emphasis from publishing data on the Web to consuming it in applications, one question inevitably arises: &#8220;what are the terms under which different data sets can be reused?&#8221; There&#8217;s been a considerable amount of time and money invested by <a href="http://www.talis.com/">Talis</a> and others in providing some clarity in this area; work that has evolved into the <a title="Open Data Commons" href="http://www.opendatacommons.org/">Open Data Commons</a>. However, there remains a lot of confusion in this area, as evidenced by <a title="licesning thread on the Linking Open Data list" href="http://lists.w3.org/Archives/Public/public-lod/2009Jun/0275.html">this thread</a> on the Linking Open Data mailing list. Clearly there is more education and outreach work to be done about how licenses and waivers can be applied to data.</p>
<p>With this in mind <a title="Leigh Dodds" href="http://www.ldodds.com/">Leigh Dodds</a>, <a title="Jordan Hatcher" href="http://www.jordanhatcher.com/">Jordan Hatcher</a>, <a title="Kaitlin Thaney" href="http://sciencecommons.org/about/whoweare/thaney/">Kaitlin Thaney</a> and I submitted a tutorial proposal to this years <a title="2009 International Semantic Web Conference" href="http://iswc2009.semanticweb.org/">International Semantic Web Conference</a> addressing exactly these kind of issues. The good news is that our proposal has been accepted, and therefore there will be a half day tutorial on &#8220;Legal and Social Frameworks for Sharing Data on the Web&#8221; at ISWC2009 in Washington DC in October (more details online soon). With Jordan present to provide the legal perspective there&#8217;ll finally be someone taking part in the discussion who can&#8217;t prefix their statements with &#8220;I&#8217;m not a lawyer, but&#8230;&#8221;</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://tomheath.com/blog/2009/07/im-not-a-lawyer-but-iswc2009-tutorial-on-data-licensing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Semantic Web is the Cake&#8230;but the Technologies are not the Layers</title>
		<link>http://tomheath.com/blog/2009/04/the-semantic-web-is-the-cakebut-the-technologies-are-not-the-layers/</link>
		<comments>http://tomheath.com/blog/2009/04/the-semantic-web-is-the-cakebut-the-technologies-are-not-the-layers/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 16:38:32 +0000</pubDate>
		<dc:creator>Tom Heath</dc:creator>
				<category><![CDATA[Linked Data]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[layer cake]]></category>

		<guid isPermaLink="false">http://tomheath.com/blog/?p=110</guid>
		<description><![CDATA[My last post about the relationship between Linked Data, the Semantic Web and the Semantic Web technology stack seemed to create more debate and disagreement than clarity. Not to be discouraged by this, I&#8217;ve been giving some more thought to analogies that may help to illuminate the the relationship between different concepts in the Semantic [...]


Related posts:<ol><li><a href='http://tomheath.com/blog/2009/11/putting-a-conference-into-the-semantic-web/' rel='bookmark' title='Permanent Link: Putting a Conference into the Semantic Web'>Putting a Conference into the Semantic Web</a> <small>Chris Gutteridge asked this question about semantically enabling conference Web...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>My last post about the relationship between Linked Data, the Semantic Web and the Semantic Web technology stack seemed to create more debate and disagreement than clarity. Not to be discouraged by this, I&#8217;ve been giving some more thought to analogies that may help to illuminate the the relationship between different concepts in the Semantic Web space. This got me thinking about the <a title="Semantic Web layer cake" href="http://www.w3.org/2007/03/layerCake.png">Semantic Web layer cake</a>.</p>
<p>The layer cake diagram is probably one of the most used and abused images associated with the Semantic Web vision. In the diagram, each technology or concept in the Semantic Web stack is a layer, with Crypto providing some kind of irregular icing down one side. I&#8217;d like to propose a different interpretation of the Semantic Web as a cake.</p>
<p>In my view, the technologies aren&#8217;t layers in the finished cake, they&#8217;re the raw ingredients that must be mixed and baked to make the cake that is the Semantic Web itself. URIs are the grains of flour; an ingredient that is essential but by itself rather bland, and lacking form and coherence. RDF triples are the egg that can bind together this URI flour. This cake is taking shape, but it&#8217;s lacking flavour. In the Semantic Web cake these flavourings, such as FOAF, SIOC, or the Programmes Ontology, are concocted on a base of RDFS and OWL. Simple cakes based on one or two flavours can be very tasty, but for our Semantic Web cake to be truly delicious we want a wide range of flavours, with some dominating others in different parts of the cake.</p>
<p>Once we&#8217;ve baked our cake, by putting our RDF data online according to the Linked Data principles, we&#8217;ll probably want to decorate it. Perhaps some icing or cherries on top, in the form of inferred RDF triples, would make it even more delicious. With such an appealing data cake it&#8217;s inevitable that people will want to consume it, but we have to make sure that everyone can have a slice rather than letting a big data gluton run off with the cake and deprive everyone else of this treat. We need some sort of knife; preferably one like SPARQL, that allows people to help themselves to the parts of the cake they like best. Will the cake baked and decorated, and will all the tools in place, it&#8217;s time to invite some friends round (maybe even some agents) and start consuming.</p>
<p>(I see that <a title="Jim Hendler's Keynote at ESWC2009" href="http://www.eswc2009.org/program-menu/keynote-speakers/79-jim-hendler">Jim Hendler&#8217;s keynote at ESWC2009</a> will talk about the layer cake; I&#8217;m intrigued to see how he choses to serve up the analogy).</p>


<p>Related posts:<ol><li><a href='http://tomheath.com/blog/2009/11/putting-a-conference-into-the-semantic-web/' rel='bookmark' title='Permanent Link: Putting a Conference into the Semantic Web'>Putting a Conference into the Semantic Web</a> <small>Chris Gutteridge asked this question about semantically enabling conference Web...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://tomheath.com/blog/2009/04/the-semantic-web-is-the-cakebut-the-technologies-are-not-the-layers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linked Data? Web of Data? Semantic Web? WTF?</title>
		<link>http://tomheath.com/blog/2009/03/linked-data-web-of-data-semantic-web-wtf/</link>
		<comments>http://tomheath.com/blog/2009/03/linked-data-web-of-data-semantic-web-wtf/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 12:10:50 +0000</pubDate>
		<dc:creator>Tom Heath</dc:creator>
				<category><![CDATA[Linked Data]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[rdf]]></category>
		<category><![CDATA[tim berners-lee]]></category>
		<category><![CDATA[tim o'reilly]]></category>
		<category><![CDATA[weaving the web]]></category>
		<category><![CDATA[web of data]]></category>

		<guid isPermaLink="false">http://tomheath.com/blog/?p=87</guid>
		<description><![CDATA[This post was prompted by this tweet from Tim O&#8217;Reilly&#8230; People learning about Linked Data frequently ask &#8220;what&#8217;s the relationship between Linked Data and the Semantic Web?&#8221;, which is a fair and good question. One of the responses that crops up relatively frequently is that Linked Data is just an attempt to rebrand the Semantic [...]


Related posts:<ol><li><a href='http://tomheath.com/blog/2009/11/putting-a-conference-into-the-semantic-web/' rel='bookmark' title='Permanent Link: Putting a Conference into the Semantic Web'>Putting a Conference into the Semantic Web</a> <small>Chris Gutteridge asked this question about semantically enabling conference Web...</small></li><li><a href='http://tomheath.com/blog/2010/06/why-carry-the-cost-of-linked-data/' rel='bookmark' title='Permanent Link: Why Carry the Cost of Linked Data?'>Why Carry the Cost of Linked Data?</a> <small>In his ongoing series of niggles about Linked Data, Rob...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This post was prompted by <a title="tweet from Tim O'Reilly" href="https://twitter.com/timoreilly/status/1266750154">this tweet from Tim O&#8217;Reilly</a>&#8230;</p>
<p>People learning about <a href="http://linkeddata.org/">Linked Data</a> frequently ask &#8220;what&#8217;s the relationship between Linked Data and the <a title="Semantic Web" href="http://www.w3.org/2001/sw/">Semantic Web</a>?&#8221;, which is a fair and good question. One of the responses that crops up relatively frequently is that Linked Data is just an attempt to rebrand the Semantic Web. In my experience these kind of rebranding comments come mostly  from people who have a certain impression of the Semantic Web vision (which may or may not be accurate), don&#8217;t like this vision, and therefore dismiss Linked Data on this basis without actually considering what it means (i.e. a means to dismantle data silos), and without necessarily rethinking their original view of the Semantic Web concept. I prefer to see it this way&#8230;</p>
<p>Think about HTML documents; when people started weaving these together with hyperlinks we got a Web of documents. Now think about data. When people started weaving individual bits of data together with RDF triples (that expressed the relationship between these bits of data) we saw the emergence of a Web of data. Linked Data is no more complex than this &#8211; connecting related data across the Web using URIs, HTTP and RDF. Of course there are many ways to have <em>linked data</em>, but in common usage <em>Linked Data</em> refers to the <a title="Linked Data principles" href="http://www.w3.org/DesignIssues/LinkedData.html">principles</a> set out by Tim Berners-Lee in 2006.</p>
<p>So if we link data together using Web technologies, and according to these principles, the result is a Web of data. Personally I use the term <em>Web of data</em> largely interchangeably with the term <em>Semantic Web</em>, although not everyone in the Semantic Web world would agree with this. The precise term I use depends on the audience. With Semantic Web geeks I say Semantic Web, with others I tend to say Web of data &#8211; it&#8217;s not about rebranding, it&#8217;s about using terms that make sense to your audience, and <em>Web of data</em> speaks to people much more clearly than <em>Semantic Web</em>. Similarly, <em>Linked Data</em> isn&#8217;t about rebranding the Semantic Web, it&#8217;s about clarifying its fundamentals.</p>
<p>Tim Berners-Lee said several times last year, in public, that &#8220;Linked Data is the Semantic Web done right&#8221; (e.g. see <a title="TimBL Slides" href="http://www.w3.org/2008/Talks/0617-lod-tbl/#(3)">these slides</a> from Linked Data Planet in New York), and who am I to argue, it&#8217;s his vision. But to see this as a recent trend or a u-turn ignores the historical context. On page 191 of my copy of Weaving the Web (dated 2000, ISBN-13: 9781587990182) it says:</p>
<blockquote><p>The first step is putting data on the Web in a form that machines can naturally understand, or converting it to that form. This creates what I call a Semantic Web &#8211; a web of data that can be processed directly or indirectly by machines.</p></blockquote>
<p>I&#8217;m not sure this quote adequately captures the importance of links in the whole picture, but no one can claim that the Web of data label is recent marketing spin invented to make the Semantic Web palatable. This was always the deal. It&#8217;s certainly how I understood the concept (and what inspired me to do a PhD in the area).</p>
<p>If others  have somehow diverted the Semantic Web vision down some side road since Weaving the Web was written, then that&#8217;s unfortunate. (In my experience the Linking Open Data project was an attempt to reconnect the Semantic Web community with the some of the key aspects of the original vision that were being overlooked, like having a <em>real</em> Web of data as the basis for research). I certainly notice plenty of unjustified attempts at present to co-opt the term <em>Semantic Web</em>, now that it&#8217;s no longer a dirty word, and drive it off down some dodgy alleyway. Some of these products, services or companies may be applications or services that use some semantic technology and are delivered over the Web, but that doesn&#8217;t make them Semantic Web applications, services or companies. Anything claiming the Semantic Web label needs to get its hands dirty with Linked Data somewhere along the way. That&#8217;s just how it is.</p>
<p>So to return to Tim O&#8217;Reilly&#8217;s tweet, he&#8217;s not far wrong about the lack of difference between Linked Data, Semantic Web and RDF (we&#8217;ll ignore the means vs end vs technology distinction), but I&#8217;d love to know who he&#8217;s quoting about the explicit rebranding.</p>


<p>Related posts:<ol><li><a href='http://tomheath.com/blog/2009/11/putting-a-conference-into-the-semantic-web/' rel='bookmark' title='Permanent Link: Putting a Conference into the Semantic Web'>Putting a Conference into the Semantic Web</a> <small>Chris Gutteridge asked this question about semantically enabling conference Web...</small></li><li><a href='http://tomheath.com/blog/2010/06/why-carry-the-cost-of-linked-data/' rel='bookmark' title='Permanent Link: Why Carry the Cost of Linked Data?'>Why Carry the Cost of Linked Data?</a> <small>In his ongoing series of niggles about Linked Data, Rob...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://tomheath.com/blog/2009/03/linked-data-web-of-data-semantic-web-wtf/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Linked Data Tutorials at Semantic Web Austin</title>
		<link>http://tomheath.com/blog/2009/02/linked-data-tutorials-at-semantic-web-austin/</link>
		<comments>http://tomheath.com/blog/2009/02/linked-data-tutorials-at-semantic-web-austin/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 14:12:09 +0000</pubDate>
		<dc:creator>Tom Heath</dc:creator>
				<category><![CDATA[Linked Data]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[austin]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[texas]]></category>
		<category><![CDATA[the guardian]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://tomheath.com/blog/?p=82</guid>
		<description><![CDATA[I spent a few days last week in Austin, Texas, running two one-day tutorials about Linked Data. Juan was a great host, and the tutorials themselves were great fun (and significantly enhanced by the post-tutorial beers supplied by the very kind folk at The Guardian).  I was incredibly impressed by the energy, enthusiasm and foresight [...]


Related posts:<ol><li><a href='http://tomheath.com/blog/2009/11/putting-a-conference-into-the-semantic-web/' rel='bookmark' title='Permanent Link: Putting a Conference into the Semantic Web'>Putting a Conference into the Semantic Web</a> <small>Chris Gutteridge asked this question about semantically enabling conference Web...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I spent a few days last week in Austin, Texas, running <a title="Linked Data Tutorials" href="http://linkeddataaustin.eventbrite.com/">two one-day tutorials</a> about <a title="Linked Data" href="http://linkeddata.org/">Linked Data</a>. <a title="Juan Sequeda" href="http://juansequeda.com/">Juan</a> was a great host, and the tutorials themselves were great fun (and significantly enhanced by the post-tutorial beers supplied by the very kind folk at <a title="The Guardian" href="http://www.guardian.co.uk/">The Guardian</a>).  I was incredibly impressed by the energy, enthusiasm and foresight of the members of the <a title="Semantic Web Austin" href="http://www.semanticwebaustin.org/">Semantic Web Austin</a> interest group that Juan and <a title="John De Oliveira" href="http://www.linkedin.com/in/johndeo">John De Oliveira</a> kick-started. The city itself has an amazing can-do attitude, and this was reflected in the diverse group of attendees at the tutorials. It was great to see so many completely new faces, and see first hand that Linked Data appeals well beyond the traditional Semantic Web community. If Juan&#8217;s energy is anything to go by I wouldn&#8217;t be at all surprised if Austin storms to the position of Semantic Web capital of the USA by the end of 2009. The slides from the tutorial are <a title="Linked Data Tutorial Slides" href="http://tomheath.com/slides/2009-02-austin-linkeddata-tutorial.pdf">online on my site</a> (PDF, 2.8M), and the photos of work and beer are <a title="Linked Data Tutorial Photos" href="http://flickr.com/photos/tommyh/sets/72157614100829349/">on Flickr</a>.</p>


<p>Related posts:<ol><li><a href='http://tomheath.com/blog/2009/11/putting-a-conference-into-the-semantic-web/' rel='bookmark' title='Permanent Link: Putting a Conference into the Semantic Web'>Putting a Conference into the Semantic Web</a> <small>Chris Gutteridge asked this question about semantically enabling conference Web...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://tomheath.com/blog/2009/02/linked-data-tutorials-at-semantic-web-austin/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>On Snake Oil</title>
		<link>http://tomheath.com/blog/2009/02/on-snake-oil/</link>
		<comments>http://tomheath.com/blog/2009/02/on-snake-oil/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 18:27:16 +0000</pubDate>
		<dc:creator>Tom Heath</dc:creator>
				<category><![CDATA[Linked Data]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[eswc]]></category>
		<category><![CDATA[iswc]]></category>
		<category><![CDATA[seth grimes]]></category>
		<category><![CDATA[snake oil]]></category>
		<category><![CDATA[tom heath]]></category>

		<guid isPermaLink="false">http://tomheath.com/blog/?p=80</guid>
		<description><![CDATA[Greetings, from the shady corner of the marketplace, where dubious characters tell tales of substances with mystical properties, and push their wares on unsuspecting passersby&#8230; Today I had the dubious privilege of being branded a snake oil salesman, on the grounds that my &#8220;boosting&#8221; of the Semantic Web isn&#8217;t backed up by adequate eating of [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Greetings, from the shady corner of the marketplace, where dubious characters tell tales of substances with mystical properties, and push their wares on unsuspecting passersby&#8230;</p>
<p>Today I had the dubious privilege of being branded a <a title="Semantic Web Snake Oil" href="http://www.intelligententerprise.com/blog/archives/2009/02/semantic_web_sn.html">snake oil salesman</a>, on the grounds that my &#8220;boosting&#8221; of the Semantic Web isn&#8217;t backed up by adequate eating of my own Semantic Web dog food. Apparently neither my publications page, or any of my other pages on my site, have any &#8220;<span class="hpTopStoryBlurb">intelligent content tagging&#8221;, whatever that is (I assume this means RDFa).</span></p>
<p><span class="hpTopStoryBlurb">If it does mean RDFa, then true, but this does completely overlook the RDF/XML on my site, which as a whole is built according to Linked Data principles. More galling is that the claim completely overlooks the work I&#8217;ve done in the Semantic Web community that kick-started a lot of the ongoing dog food activity at ESWC and ISWC  (this was not a lone effort by any means: Knud Moeller, Sean Bechhofer, Chris Bizer, Richard Cyganiak and many, many others deserve as much or more credit as I do for ensuring it continued, as will Michael Hausenblas and Harith Alani at ESWC2009). Just to rub salt into the wound, these inaccuracies are being propagated across the Web in other people&#8217;s blog comments, e.g. <a title="http://asserttrue.blogspot.com/2009/02/semantic-web-crash-course.html" href="http://asserttrue.blogspot.com/2009/02/semantic-web-crash-course.html">here</a>.<br />
</span></p>
<p><span class="hpTopStoryBlurb">I&#8217;d like to end with some insightful meta analysis or reflection on this, but unfortunately I need to get ready for a trip to the US to run a <a title="VISSW2009" href="http://www.smart-ui.org/events/vissw2009">workshop on Visual Interfaces to the Social and Semantic Web</a> and give <a title="Linked Data Tutorial at Semantic Web Austin" href="http://www.semanticwebaustin.org/">two days worth of Linked Data tutorials</a>. Hope I don&#8217;t get stopped at US customs with that consignment of snake oil <img src='http://tomheath.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  So, no great insights for now, just a copy of my response in case it ever disappears from the original site in a puff of smoke.</span></p>
<p><span class="hpTopStoryBlurb">&#8212;&#8212;&#8211;</span></p>
<p><span class="hpTopStoryBlurb">Seth,</p>
<p>I would be the first to agree with you that the Semantic Web community has not always eaten its own dogfood to the extent that it should have. It was for exactly this reason that in 2006 I produced RDF descriptions of almost all aspects of the European Semantic Web Conference (http://www.eswc2006.org/rdf/) and coordinated the deployment of numerous Semantic Web technologies at the conference (http://www.eswc2006.org/technologies/). My aim was to learn about deploying these technologies in the wild, and feed back my findings (positive or negative) to the community. The results of my evaluation were published here: http://swui.semanticweb.org/swui06/papers/Heath/Heath.pdf</p>
<p>Regarding the production of RDF to describe Semantic Web conferences, there had been some small efforts in this direction at previous events, but nothing comprehensive. ESWC2006 changed that for good, and there have been RDF descriptions of all European and International Semantic Web conferences published ever since. This data has been published using an ontology that derives largely from the one I created for ESWC2006, with significant contributions along the way from others. There is now a regular position on the organising committee of these conferences for people charged with coordinating this effort for the event. Knud Moeller and I shared this role at ISWC2007, where we also reported back to the community on our efforts up to that point: http://iswc2007.semanticweb.org/papers/795.pdf. Many other people have contributed significantly along the way, and this combined effort has produced the repository of data at http://data.semanticweb.org/ to which RDF descriptions of ESWC2009 will also be added.</p>
<p>But as you point out, the institutions that promote the Semantic Web also need to put their money where their mouth is. Agreed. While I was a PhD student at The Open University&#8217;s Knowledge Media Institute, I argued for developer time to add RDF descriptions about all KMi members to the institute&#8217;s People pages (http://kmi.open.ac.uk/people/), and tutored the developers in how to apply their existing Web development skills to exposing Semantic Markup.</p>
<p>My PhD work included development of the reviewing and rating site Revyu.com (http://revyu.com/), which won first prize in the 2007 Semantic Web Challenge. I can&#8217;t speak for the judges, but my hunch is that a major factor in Revyu&#8217;s success in the Challenge stemmed from its strict adherence to the Linked Data principles (http://www.w3.org/DesignIssues/LinkedData.html), which have done so much to help people make the Semantic Web a reality. Revyu publishes human-readable (i.e. HTML) and machine-readable (i.e. RDF) content side by side, but humans won&#8217;t see this RDF (I assume this is what you mean by &#8220;intelligent content tagging&#8221;) unless they know where to look; this is the intended behaviour, and works according to the techniques described in the How to Publish Linked Data on the Web tutorial (http://linkeddata.org/docs/how-to-publish) that I co-authored with Chris Bizer and Richard Cyganiak.</p>
<p>My personal Web site follows the same principles and uses the same techniques. If you view the source of my homepage you will see a link tag in the header that looks like this:<br />
&amp;lt;link rel=&#8221;meta&#8221; type=&#8221;application/rdf+xml&#8221; title=&#8221;RDF&#8221; href=&#8221;http://tomheath.com/home/rdf&#8221; /&amp;gt;<br />
This is the link that tells Semantic Web crawlers to look elsewhere for the semantic markup on my site, not in the human-readable HTML page where it might get broken if I tweak the layout. If we ever meet in person I will give you one of my business cards, which doesn&#8217;t give the address of my homepage &#8211; it gives my Web URI (http://tomheath.com/id/me); humans and machines can look up this URI and retrieve information about me in a form that suits them (i.e. HTML or RDF), and follow links in that HTML or RDF to other related information. In the words of Tim Berners-Lee, this setup is &#8220;the Semantic Web done right, and the Web done right&#8221;.</p>
<p>Yes, it&#8217;s unfortunate that my publications page doesn&#8217;t have an RDF equivalent; perhaps I&#8217;ve been too busy investing time and energy in initiatives that will have an impact beyond the scope of my own Web site? But either way, your comment that &#8220;nor any of his other pages (that I saw) uses any form of intelligent content tagging&#8221; just doesn&#8217;t stack up. Before you make these sorts of claims I would ask, reasonably and politely, that you show due diligence in looking thoroughly, and in the right places, for the semantic markup on my site. For anyone who is in any doubt that it&#8217;s there, click on the small &#8220;RDF META&#8221; tile on the right hand side of pages on my site.</p>
<p>I think it&#8217;s also reasonable to expect, if you&#8217;re truly interested in how the Semantic Web community is tackling this issue, that I might be given the chance to respond to your queries in advance of this article going out, as Adrian Paschke and Alexander Wahler were. I can only hope that this response helps provide a fuller picture of the situation, with respect to my efforts and those of the community at large.</p>
<p>Lastly, a technical point. We need to remember that the Semantic Web allows anyone to say anything, anywhere (I&#8217;m borrowing from Dean Allemang and Jim Hendler here). So, while RDF data about my publications may not be available on my own site yet, you can find pieces of the jigsaw at data.semanticweb.org, and if all conferences and journals published their proceedings/tables of contents in RDF, then my job would simply be to join the pieces together, and I wouldn&#8217;t be faced with manually updating my list of publications. OK, so we&#8217;re not there quite yet. Yes, there&#8217;s work to be done, but we&#8217;re trying.</p>
<p>Tom.<br />
&#8212;&#8212;&#8211;<br />
</span></p>
<p><span class="hpTopStoryBlurb"><br />
</span></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://tomheath.com/blog/2009/02/on-snake-oil/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
