<?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>Marc Hibbins &#187; semanticweb</title>
	<atom:link href="http://blog.marchibbins.com/category/semanticweb/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.marchibbins.com</link>
	<description>RIAs, Web standards and the Semantic Web</description>
	<lastBuildDate>Mon, 08 Feb 2010 11:25:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>You&#8217;ve Got a Friend in Me</title>
		<link>http://blog.marchibbins.com/2009/07/29/youve-got-a-friend-in-me/</link>
		<comments>http://blog.marchibbins.com/2009/07/29/youve-got-a-friend-in-me/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 09:53:57 +0000</pubDate>
		<dc:creator>Marc Hibbins</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[linkeddata]]></category>
		<category><![CDATA[openstandards]]></category>
		<category><![CDATA[rdfa]]></category>
		<category><![CDATA[semanticweb]]></category>

		<guid isPermaLink="false">http://blog.marchibbins.com/?p=735</guid>
		<description><![CDATA[Inspired by Mark Birbeck's talk on RDFa and the Semantic Web earlier this month I decided to take some of my own advice and add RDFa to my site. I've now created a FOAF profile here on my blog.]]></description>
			<content:encoded><![CDATA[<p>Inspired by <a title="» Thinking Out Loud Marc Hibbins" href="http://blog.marchibbins.com/2009/07/15/thinking-out-loud/" target="_blank">Mark Birbeck&#8217;s talk on RDFa and the Semantic Web</a> earlier this month I decided to take some of my own advice and add RDFa to my site. I&#8217;ve now created a FOAF profile here on my blog.</p>
<p>Reading through Mark&#8217;s <a title="Mark Birbeck's blog | webBackplane" href="http://webbackplane.com/mark-birbeck/blog" target="_blank">articles at webBackplane</a>, I noticed he has a very simple tutorial on <a title="Getting started with RDFa: Creating a basic FOAF profile | webBackplane" href="http://webbackplane.com/mark-birbeck/blog/2009/04/getting-started-with-rdfa" target="_blank">how to create a basic FOAF profile</a>. Being so straightforward, as RDFa is meant to be, and seeing how I wrote about FOAF in my dissertation almost three years ago now, as well as now having full control of my blog (now that it&#8217;s a Wordpress.org installation rather than the free option) &#8211; I&#8217;ve no excuse.</p>
<p>In my last post I discussed RDF vocabularies, sets of agreed-upon and unambiguous terms that allow developers to structure otherwise &#8216;mundane&#8217; structureless content by inserting definitions and making references to which machines and applications can follow to infer meaning and <em>understand</em> topics of any kind. There I gave <a title="» Thinking Out Loud Marc Hibbins" href="http://blog.marchibbins.com/2009/07/15/thinking-out-loud/#An_example" target="_blank">an example</a> that pointed to a specification used to structure book reviews.</p>
<p>FOAF is the <a title="FOAF (software) - Wikipedia, the free encyclopedia" href="http://en.wikipedia.org/wiki/FOAF_(software)" target="_blank">Friend of a Friend</a> vocabulary, an RDF and <a title="Web Ontology Language - Wikipedia, the free encyclopedia" href="http://en.wikipedia.org/wiki/Web_Ontology_Language" target="_blank">OWL ontology</a>, used in the same way, but specificially to describe people, their activities, interests and their relationships to other people.</p>
<p>Created around mid-2000, it is now maintained by <a title="The Friend of a Friend (FOAF) project | FOAF project" href="http://www.foaf-project.org/" target="_blank">The FOAF Project</a>, which is considered to be one of the earliest &#8211; if not the first &#8211; Semantic Web application.</p>
<p>The idea is that given that anyone can put RDF(a) on their Web site, equally, anyone can describe themselves using FOAF. By doing this they are creating themselves a FOAF profile, thus have joined the linked network of people who have already done the same. These people can then begin to create links to each others FOAF profiles and start to create a social network of friends, without the need for a centralised database or website to do it for them.</p>
<p>Then here&#8217;s where RDFa steps in, which now allows developers to implement structured data straight into their HTML mark-up, wrapping existing or new content with an extended set of attributes, meaning they no longer have to host a separate RDF file and rely on either applications indexing that file or creating a link to it from another page to point to it.</p>
<h3><a name="Creating_a_FOAF_profile" class="anchor">Creating a FOAF profile</a></h3>
<p>I already have an <a title="» About Marc Hibbins" href="http://blog.marchibbins.com/about/" target="_blank">&#8216;About&#8217; page</a> on this blog &#8211; a bit of blurb about who I am and what I do. So it&#8217;s here that I&#8217;m implementing my FOAF information.</p>
<p>As said, there&#8217;s no need to link to a separate RDF file if you use RDFa, so really you can add the metadata anywhere, in your headers or footers for example, but that About page is the most relevant place for me and already contains the information and links I want to share anyway.</p>
<p>Firstly I wrap the text in a div tag that defines the FOAF namespace and declares that this div is a &#8216;Person object&#8217;, that the contents of this div describes a person. This is done by referring to the <strong>foaf:Person</strong> type of the FOAF vocabulary:</p>
<blockquote><p>&lt;div <strong>xmlns:foaf=&#8221;http://xmlns.com/foaf/0.1/&#8221; about=&#8221;#me&#8221;<br />
<span style="padding-left:30px;">typeof=&#8221;foaf:Person&#8221;</strong>&gt;</span><br />
<span style="padding-left:30px;">&lt;p&gt;Hello.&lt;/p&gt;</span><br />
<span style="padding-left:30px;">&lt;p&gt;My name is Marc Hibbins.&lt;/p&gt;</span><br />
<span style="padding-left:30px;">&#8230;</span><br />
&lt;/div&gt;</p></blockquote>
<p>I also use the <strong>about</strong> attribute with the value <strong>#me</strong> which is a useful convention to easily enable people to create links to me, more on this later.</p>
<p>The FOAF Person object contains a lot of properties to describe you personally, what kinds of activities you are involved in and terms that create connections to sites or documents relating to you.</p>
<p>Now that my object is created I can start annotating the text with some of these terms, for example my name:</p>
<blockquote><p>&lt;div <strong>xmlns:foaf=&#8221;http://xmlns.com/foaf/0.1/&#8221; about=&#8221;#me&#8221;<br />
<span style="padding-left:30px;">typeof=&#8221;foaf:Person&#8221;</strong>&gt;</span><br />
<span style="padding-left:30px;">&lt;p&gt;Hello.&lt;/p&gt;</span><br />
<span style="padding-left:30px;">&lt;p&gt;My name is <strong>&lt;span property=&#8221;foaf:name&#8221;&gt;</strong>Marc Hibbins<strong>&lt;/span&gt;</strong>.&lt;/p&gt;</span><br />
<span style="padding-left:30px;">&#8230;</span><br />
&lt;/div&gt;</p></blockquote>
<p>And then some links, FOAF has terms for to define your blog and homepage URLs:</p>
<blockquote><p>&lt;a <strong>rel=&#8221;foaf:weblog&#8221;</strong> href=&#8221;http://blog.marchibbins.com/&#8221;&gt;My blog&lt;/a&gt;<br />
&lt;a <strong>rel=&#8221;foaf:homepage&#8221;</strong> href=&#8221;http://www.marchibbins.com&#8221;&gt;My site&lt;/a&gt;</p></blockquote>
<p>It&#8217;s also common to have an image, so likewise if I had I would attach the <strong>foaf:img</strong> term. The full A-Z index of terms can be found on the specification: <a title="FOAF Vocabulary Specification" href="http://xmlns.com/foaf/spec/" target="_blank">http://xmlns.com/foaf/spec/</a>.</p>
<p>FOAF allows you to connect to other online accounts that you own. Mark&#8217;s tutorial has the following example to attach his Twitter account to his person object:</p>
<blockquote><p>&lt;span <strong>rel=&#8221;foaf:holdsAccount&#8221;</strong>&gt;<br />
<span style="padding-left:30px;">&lt;span <strong>typeof=&#8221;foaf:OnlineAccount&#8221;</strong>&gt;</span><br />
<span style="padding-left:60px;">&lt;a <strong>rel=&#8221;foaf:accountServiceHomepage&#8221;</strong></span><br />
<span style="padding-left:80px;">href=&#8221;http://twitter.com/&#8221;&gt;Twitter&lt;/a&gt;</span><br />
<span style="padding-left:60px;">&lt;span <strong>property=&#8221;foaf:accountName&#8221;</strong> &gt;markbirbeck&lt;/span&gt;</span><br />
<span style="padding-left:30px;">&lt;/span&gt;</span><br />
&lt;/span&gt;</p></blockquote>
<p>The <strong>foaf:holdsAccount</strong> definition creates a relationship between the <strong>typeof=&#8221;foaf:Person&#8221;</strong> object and the <strong>typeof=&#8221;foaf:OnlineAccount&#8221;</strong> object that follows (the above mark-up would be contained within said Person object). Note the <strong>foaf:holdsAccount span</strong> allows for multiple <strong>foaf:OnlineAccount</strong> objects inside. The <strong>foaf:accountServiceHomepage</strong> term defines the service homepage, Twitter&#8217;s home page in this case and the <strong>foaf:accountName</strong> property declares Mark&#8217;s username.</p>
<p>As you&#8217;ll notice (as he does, too) although its machine-readable it isn&#8217;t particularly human-readable. Well it <em>is</em>, but it&#8217;s not all that nice. So instead he uses this formatting:</p>
<blockquote><p><strong>His inane comments are available on his</strong><br />
&lt;span rel=&#8221;foaf:holdsAccount&#8221;&gt;<br />
<span style="padding-left:30px;">&lt;span typeof=&#8221;foaf:OnlineAccount&#8221;&gt;</span><br />
<span style="padding-left:60px;">&lt;a rel=&#8221;foaf:accountServiceHomepage&#8221;</span><br />
<span style="padding-left:80px;">href=&#8221;http://twitter.com/&#8221;&gt;<strong>Twitter</strong>&lt;/a&gt;</span><br />
<span style="padding-left:60px;"><strong> account. His ID is &#8216;</strong></span><br />
<span style="padding-left:60px;">&lt;span property=&#8221;foaf:accountName&#8221;&gt;markbirbeck&lt;/span&gt;</span><br />
<span style="padding-left:60px;"><strong> &#8216;.</strong></span><br />
<span style="padding-left:30px;">&lt;/span&gt;</span><br />
&lt;/span&gt;</p></blockquote>
<p>This is better for human reading, though I still think a little convoluted. All I want is a single link, just like I already have. As I&#8217;ve said, RDFa should have no effect on my content &#8211; its workings should be hidden to the reader.</p>
<p>So in my mark-up, rather than the <strong>rel</strong> attribute on <strong>a</strong> tags and using in-line values (values found immediately between the <strong>a</strong> tags), I use the <strong>property</strong> and <strong>content</strong> attributes on <strong>spans</strong>:</p>
<blockquote><p>&lt;span rel=&#8221;foaf:holdsAccount&#8221;&gt;<br />
<span style="padding-left:30px;">&lt;span typeof=&#8221;foaf:OnlineAccount&#8221; <strong></span><br />
<span style="padding-left:70px;">property=&#8221;foaf:accountServiceHomepage&#8221;</span><br />
<span style="padding-left:70px;">content=&#8221;http://delicious.com/&#8221;</strong>&gt;</span><br />
<span style="padding-left:60px;">&lt;span <strong>property=&#8221;foaf:accountName&#8221; content=&#8221;marchibbins&#8221;</strong>&gt;</span><br />
<span style="padding-left:90px;">&lt;a href=&#8221;http://delicious.com/marchibbins&#8221;&gt;View my Delicious</span><br />
<span style="padding-left:110px;">bookmarks&lt;/a&gt; – most things are about the Semantic Web&#8230;</span><br />
<span style="padding-left:60px;">&lt;/span&gt;</span><br />
<span style="padding-left:30px;">&lt;/span&gt;</span><br />
&lt;/span&gt;</p></blockquote>
<p>This allows me to keep my existing prose and is still machine-accessible.</p>
<p>I mentioned being able to connect to other people&#8217;s FOAF profiles, this is done by attaching the <strong>foaf:knows</strong> term to a link to someone&#8217;s similar such page:</p>
<blockquote><p>&lt;a <strong>rel=&#8221;foaf:knows&#8221;</strong> href=&#8221;http://www.w3.org/People/Ivan/<strong>#me</strong>&#8220;&gt;Ivan Herman&lt;/a&gt;</p></blockquote>
<p>Note here that Ivan Herman has employed the <strong>#me</strong> mechanism in his FOAF URI to connect directly to his profile information, rather than to the whole page which contains that information.</p>
<p>I&#8217;ve decided not to connect to friends or colleagues here in this way, again it wasn&#8217;t in my original content and also I use a similar technology instead, called XFN, in the footer of my blog pages. <a title="XFN: Introduction and Examples" href="http://gmpg.org/xfn/intro" target="_blank">XFN</a> deserves a blog post to itself (that hopefully I&#8217;ll get time for), have a look a the source and you&#8217;ll see similar <strong>rel</strong> attributes there for now.</p>
<h3><a name="My_FOAF_profile" class="anchor">My FOAF profile</a></h3>
<p>So here it is, abridged but with all the RDFa shown:</p>
<blockquote><p>&lt;div <strong>xmlns:foaf=&#8221;http://xmlns.com/foaf/0.1/&#8221; about=&#8221;#me&#8221;</span><br />
<span style="padding-left:15px;">typeof=&#8221;foaf:Person&#8221;</strong>&gt;</span></p>
<p><span style="padding-left:15px;">&lt;p&gt;Hello.&lt;/p&gt;</span><br />
<span style="padding-left:15px;">&lt;p&gt;My name is &lt;span <strong>property=&#8221;foaf:name&#8221;</strong>&gt;Marc Hibbins&lt;/span&gt;.&lt;/p&gt;</span><br />
<span style="padding-left:15px;">&lt;p&gt;I&#8217;m an interactive and digital media developer, I build Web applications and</span><br />
<span style="padding-left:40px;">RIAs primarily with tools like Flash, Flex and AIR.&lt;/p&gt;</span></p>
<p><span style="padding-left:15px;">&lt;p&gt;</span><br />
<span style="padding-left:30px;">&lt;span <strong>rel=&#8221;foaf:holdsAccount&#8221;</strong>&gt;</span><br />
<span style="padding-left:60px;">&lt;span <strong>typeof=&#8221;foaf:OnlineAccount&#8221;</span><br />
<span style="padding-left:100px;">property=&#8221;foaf:accountServiceHomepage&#8221;</span><br />
<span style="padding-left:100px;">content=&#8221;http://delicious.com/&#8221;</strong>&gt;</span><br />
<span style="padding-left:90px;">&lt;span <strong>property=&#8221;foaf:accountName&#8221;</span><br />
<span style="padding-left:130px;">content=&#8221;marchibbins&#8221;</strong>&gt;</span><br />
<span style="padding-left:120px;">&lt;a href=&#8221;http://delicious.com/marchibbins&#8221;&gt;View my Delicious</span><br />
<span style="padding-left:140px;">bookmarks&lt;/a&gt; &#8211; most things are about the Semantic Web,</span><br />
<span style="padding-left:140px;">gathered as dissertation research&#8230;</span><br />
<span style="padding-left:90px;">&lt;/span&gt;</span><br />
<span style="padding-left:60px;">&lt;/span&gt;</span><br />
<span style="padding-left:30px;">&lt;/span&gt;</span><br />
<span style="padding-left:15px;">&lt;/p&gt;</span></p>
<p><span style="padding-left:15px;">&lt;p&gt;</span><br />
<span style="padding-left:30px;">&lt;span <strong>rel=&#8221;foaf:holdsAccount&#8221;</strong>&gt;</span><br />
<span style="padding-left:60px;">&lt;span <strong>typeof=&#8221;foaf:OnlineAccount&#8221;</span><br />
<span style="padding-left:100px;">property=&#8221;foaf:accountServiceHomepage&#8221;</span><br />
<span style="padding-left:100px;">content=&#8221;http://friendfeed.com/&#8221;</strong>&gt;</span><br />
<span style="padding-left:90px;">&lt;span <strong>property=&#8221;foaf:accountName&#8221; content=&#8221;hibbins&#8221;</strong>&gt;</span><br />
<span style="padding-left:120px;">I use &lt;a href=&#8221;http://friendfeed.com/hibbins&#8221;&gt;FriendFeed&lt;/a&gt;</span><br />
<span style="padding-left:90px;">&lt;/span&gt;</span><br />
<span style="padding-left:60px;">&lt;/span&gt;,</span></p>
<p><span style="padding-left:60px;">&lt;span <strong>typeof=&#8221;foaf:OnlineAccount&#8221;</span><br />
<span style="padding-left:100px;">property=&#8221;foaf:accountServiceHomepage&#8221;</span><br />
<span style="padding-left:100px;">content=&#8221;http://twitter.com/&#8221;</strong>&gt;</span><br />
<span style="padding-left:90px;">&lt;span <strong>property=&#8221;foaf:accountName&#8221;</span><br />
<span style="padding-left:130px;">content=&#8221;marchibbins&#8221;</strong>&gt;</span><br />
<span style="padding-left:120px;">&lt;a href=&#8221;http://twitter.com/marchibbins&#8221;&gt;Twitter&lt;/a&gt;</span><br />
<span style="padding-left:90px;">&lt;/span&gt;</span><br />
<span style="padding-left:60px;">&lt;/span&gt; and</span></p>
<p><span style="padding-left:60px;">&lt;span <strong>typeof=&#8221;foaf:OnlineAccount&#8221;</span><br />
<span style="padding-left:100px;">property=&#8221;foaf:accountServiceHomepage&#8221;</span><br />
<span style="padding-left:100px;">content=&#8221;http://last.fm/&#8221;</strong>&gt;</span><br />
<span style="padding-left:90px;">&lt;span <strong>property=&#8221;foaf:accountName&#8221;</span><br />
<span style="padding-left:130px;">content=&#8221;marchibbins&#8221;</strong>&gt;</span><br />
<span style="padding-left:120px;">&lt;a href=&#8221;http://www.last.fm/user/marchibbins&#8221;&gt;Last.fm&lt;/a&gt;</span><br />
<span style="padding-left:90px;">&lt;/span&gt;</span><br />
<span style="padding-left:60px;">&lt;/span&gt; etc etc..</span><br />
<span style="padding-left:30px;">&lt;/span&gt;</span><br />
<span style="padding-left:15px;">&lt;/p&gt;</span></p>
<p><span style="padding-left:15px;">&lt;p&gt;</span><br />
<span style="padding-left:30px;">&lt;a <strong>rel=&#8221;foaf:homepage&#8221;</strong></span><br />
<span style="padding-left:50px;">href=&#8221;http://www.marchibbins.com&#8221;&gt;www.marchibbins.com&lt;/a&gt;</span><br />
<span style="padding-left:15px;">&lt;/p&gt;</span><br />
&lt;/div&gt;</p></blockquote>
<p>Notice that I&#8217;m actually using two <strong>foaf:holdsAccount</strong> blocks &#8211; you can, of course, contain all <strong>foaf:OnlineAccount</strong> objects within a single relation, but it seems that Wordpress won&#8217;t allow me to do so. When I hit return to start a new paragraph it automatically closes the wrapping <strong>span</strong> and <strong>p</strong> and starts a new paragraph &#8211; so I&#8217;ve had to use two. Otherwise the <strong>p</strong> tags would be inside the <strong>span</strong> (rather than the other way round) but again, the MCE doesn&#8217;t show <strong>p</strong> tags in order for me to edit them in that way.</p>
<p>Similarly, Wordpress will wipe clean all your <strong>span</strong> tags if you switch from HTML to Visual mode &#8211; so watch out for that. It also doesn&#8217;t output nice, clean indented HTML in the final page, which is a shame.</p>
<p><a title="» About Marc Hibbins" href="http://blog.marchibbins.com/about/" target="_blank">Find the full version here</a>.</p>
<h3><a name="Validating_RDFa" class="anchor">Validating RDFa</a></h3>
<p>How do you know that any of your metadata is correct &#8211; that it is machine-readable?</p>
<p>I took Mark Birbeck&#8217;s recommendation and used the <a title="Install the Ubiquity RDFa checker" href="http://ubiquity-rdfa.googlecode.com/svn/trunk/install-checker.html" target="_blank">Ubiquity parser bookmarklet</a> to validate my RDFa. Simply publish your mark-up and hit the button and you&#8217;ll see what an RDFa parser sees.</p>
<p>Hopefully it is in fact all correct. I wasn&#8217;t too sure if multiple <strong>foaf:holdsAccount</strong> blocks would be acceptable, but the Ubiquity parser shows the same results nethertheless &#8211; likewise with my use of <strong>property</strong> and <strong>content spans</strong> over <strong>rel</strong> attributes. That said, if anyone has opinions otherwise &#8211; let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.marchibbins.com/2009/07/29/youve-got-a-friend-in-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dear Science</title>
		<link>http://blog.marchibbins.com/2009/03/05/dear-science/</link>
		<comments>http://blog.marchibbins.com/2009/03/05/dear-science/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 16:37:34 +0000</pubDate>
		<dc:creator>Marc Hibbins</dc:creator>
				<category><![CDATA[semanticweb]]></category>

		<guid isPermaLink="false">http://hibbins.wordpress.com/?p=477</guid>
		<description><![CDATA[In the latest Nodalities podcast, Paul Miller talks to Dame Wendy Hall, Professor of Computer Science at the University of Southampton and a founding Director of the Web Science Research Initiative.]]></description>
			<content:encoded><![CDATA[<p>In <a title="Nodalities - Blog Archive - Dame Wendy Hall talks about Web Science and the Semantic Web" href="http://blogs.talis.com/nodalities/2009/03/dame-wendy-hall-talks-about-web-science-and-the-semantic-web.php" target="_blank">the latest Nodalities podcast</a>, Paul Miller talks to <a title="Professor Wendy Hall- Home" href="http://users.ecs.soton.ac.uk/wh/" target="_blank">Dame Wendy Hall</a>, Professor of Computer Science at the University of Southampton and a founding Director of the Web Science Research Initiative.</p>
<p>The <a title="Creating a Science of the Web | Web Science Research Initiative" href="http://webscience.org/" target="_blank">Web Science Research Initiative</a> (WSRI) is a joint venture between MIT and the University of Southampton to teach the literal academic &#8217;science&#8217; of the web.</p>
<p>Founded in 2006 alongside Sir Tim Berners-Lee, Professor Nigel Shadbolt and Daniel J. Weitznerby, Dame Wendy talks with Paul about some of the thinking she and Sir Tim shared that eventually resulted in the conception of the project.</p>
<p>They recognised there are many determining factors <em>outside </em>of pure technology that shape the evolution of the Web. That as a human construct, there is a need for new ways of thinking about the Web, that we need to understand as much about how and what effects humans have on its evolution as much as how the Web effects our society.</p>
<p>The Web is one of the most (if not the most) transformative applications in the history of computing and communications. It&#8217;s changed how we teach, publish, govern and do business, studied in anthropology, sociology, psychology, economics &#8211; needless to say a lengthy list &#8211; and the Web Science is to consider the Web in all these fields (and more) not only as a computer science.</p>
<p>It&#8217;s also to intended to anticipate future developments, forsee the good and bad consequences of its change.</p>
<p>They&#8217;ve been working with the Web for a long time &#8211; since the earliest days of hypertext and hypermedia and with such experience have recognised the cyclical nature of Web trends, that every five years or so sees great advances in the Web&#8217;s evolution. Think Web 2.0 for the latest phase &#8211; the next (apparently) being Web 3.0 (or the &#8216;Data Web&#8217; or the &#8216;Web of Linked Data&#8217;) or the Semantic Web &#8211; whatever buzzword you want to ply it with. The WSRI, in part, stands to find out what&#8217;s likely to come, to inform us and our decisions.</p>
<p>Of course, it was also in part founded to evangelise the Semantic Web. The Semantic Web was and is still Berners-Lee&#8217;s <em>original </em>vision for the Web that he had back as early as <a title="First WWW Conference" href="http://www94.web.cern.ch/WWW94/" target="_blank">WWW94</a> (though &#8216;unnamed&#8217;). These small phases add up to the larger realisation of this original dream &#8211; and with that, Dame Wendy discusses her thoughts on how this will continue in its future. She talks about the WSRI&#8217;s efforts to create a wide network of key Web Science labs across the globe and their work with curriculum developers and government agencies, also of their training of university teachers and educators to inject Web science into higher education as recognised academia.</p>
<p>Paul Miller also shares some thoughts <a title="Dame Wendy Hall talks about Web Science | The Semantic Web | ZDNet.com" href="http://blogs.zdnet.com/semantic-web/?p=256" target="_blank">on his ZDNet blog</a> - at first he was sceptical, suggesting that we really don’t need yet another academic subject just to &#8216;permit&#8217; us to study the Web, that we’re perfectly well served by enough areas of study (those listed above) that already seek to understand both the Web and its impact upon all of us. But he too, can&#8217;t deny that Web Science as a &#8216;label&#8217; can be beneficial to the Semantic cause in both the evangelistic sense but also by providing &#8216;institutional credibility&#8217; to their area of research.</p>
<p>I collected a number of Web Science and the WSRI related bookmarks during my thesis research, for further reading:</p>
<p><a title="marchibbins's wsri Bookmarks on Delicious" href="http://delicious.com/marchibbins/wsri" target="_blank">http://delicious.com/marchibbins/wsri</a><br />
<a title="marchibbins's webscience Bookmarks on Delicious" href="http://delicious.com/marchibbins/webscience" target="_blank">http://delicious.com/marchibbins/webscience</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.marchibbins.com/2009/03/05/dear-science/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>That&#8217;s the Way</title>
		<link>http://blog.marchibbins.com/2009/01/09/thats-the-way/</link>
		<comments>http://blog.marchibbins.com/2009/01/09/thats-the-way/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 15:53:28 +0000</pubDate>
		<dc:creator>Marc Hibbins</dc:creator>
				<category><![CDATA[semanticweb]]></category>

		<guid isPermaLink="false">http://hibbins.wordpress.com/?p=319</guid>
		<description><![CDATA[Not to be outdone by Google’s efforts this week, Ask.com have also expanded their search technology to return specific ‘direct’ answers to searches, where possible, by means of semantic language processing.]]></description>
			<content:encoded><![CDATA[<p>Not to be outdone by Google&#8217;s <a title="Is This It - Marc Hibbins" href="http://hibbins.wordpress.com/2009/01/07/is-this-it" target="_blank">efforts this week</a>, Ask.com have also expanded their search technology to return specific &#8216;direct&#8217; answers to searches, where possible, by means of semantic language processing.</p>
<p>Fortunately far more public than Google, Ask.com <a title="The Ask.com Blog - Semantic Search Technology Advances from Ask.com" href="http://blog.ask.com/2009/01/semantic-search.html" target="_blank">announced on their blog</a> yesterday that they&#8217;ve been developing proprietry semantic analysis technology since October of last year in their efforts of advancing the next generation of search tools.</p>
<blockquote><p>DADS(SM) (Direct Answers from Databases), DAFS(SM) (Direct Answers from Search), and AnswerFarm(SM) technologies, which are breaking new ground in the areas of semantic, web text, and answer farm search technologies. Specifically, the increasing availability of structured data in the form of databases and XML feeds has fueled advances in our proprietary DADS technology. With DADS, we no longer rely on text-matching simple keywords, but rather we parse users’ queries and then we form database queries which return answers from the structured data in real time. Front and center. Our aspiration is to instantly deliver the correct answer no matter how you phrased your query.</p></blockquote>
<p>The results aren&#8217;t returned as explicitly as Google&#8217;s, mainly due to the amount of adverts above the page fold, but they work. Try searching for &#8216;<a title="Football on TV this weekend - Ask.com Search" href="http://www.ask.com/web?qsrc=2417&amp;o=20036&amp;l=dir&amp;q=Football+on+TV+this+weekend" target="_blank">Football on TV this weekend</a>&#8216; or &#8216;<a title="Movies on TV now - Ask.com Search" href="http://www.ask.com/web?qsrc=2417&amp;o=20036&amp;l=dir&amp;q=movies+on+TV+now" target="_blank">Movies on TV now</a>&#8216; and you&#8217;ll see the results in accordingly custom-formatted sections.</p>
<p>Unfortunately the results are still only returned in HTML, so again &#8211; the term &#8217;semantics&#8217; here describes the form of processing Ask.com are doing beind the scenes rather than depicting this as their first outright foray in to the Semantic Web (capital S).</p>
<p>This though is proprietary technology and presumably it&#8217;ll stay that way. So I&#8217;m unsure whether to celebrate their realisation of the importance of semantics (in search at least) or in realising their more &#8216;closed source&#8217; ethos, consider this to be almost <em>against </em>the idea of the Semantic Web &#8211; portability, sharing, transparency &#8211; as they hold these advances close to their chest in order to gain an edge over their competitors, causing others in the future to understandably do too.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.marchibbins.com/2009/01/09/thats-the-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is This It</title>
		<link>http://blog.marchibbins.com/2009/01/07/is-this-it/</link>
		<comments>http://blog.marchibbins.com/2009/01/07/is-this-it/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 10:53:38 +0000</pubDate>
		<dc:creator>Marc Hibbins</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[semanticweb]]></category>

		<guid isPermaLink="false">http://hibbins.wordpress.com/?p=303</guid>
		<description><![CDATA[Quite out of the blue and without notification of it’s launch as far as I’ve been able to find, Google seem to be exposing semantic data in their global search results.]]></description>
			<content:encoded><![CDATA[<p>Quite out of the blue and without notification of it&#8217;s launch as far as I&#8217;ve been able to find, Google seem to be exposing semantic data in their global search results.</p>
<p>Try searching for &#8216;What is the capital city of England?&#8217; or &#8216;Who is Bill Clinton&#8217;s wife?&#8217; and you&#8217;ll see sourced direct answers returned at the top of your search results.</p>
<p>It&#8217;s hard to tell if these direct results are actually semantic expressions or just presented to appear that way &#8211; in the expected Semantic triple of subject-predicate-object. The list of sources definitely don&#8217;t structure their information with semantic expression, so perhaps quite an amount of logic and natural language processing is being done on Google&#8217;s part to process non- or semi-structured data.</p>
<p>I&#8217;ve <a title="I Know There's an Answer - Marc Hibbins" href="http://hibbins.wordpress.com/2008/11/24/i-know-theres-an-answer/" target="_blank">tried to find out before</a> what Google have been up to concerning semantic technology but found little. The <a title="Did Google Just Expose Semantic Data in Search Results? - ReadWriteWeb" href="http://www.readwriteweb.com/archives/google_semantic_data.php" target="_blank">coverage over at ReadWriteWeb</a> reports that neither they or their Semantic Web contacts had heard or seen anything about this before, but the community feedback suggests there&#8217;s been variations of this for some time &#8211; including a three year old Google program called &#8216;Direct Answers&#8217; &#8211; but none of the coverage of that program offers the kind of examples we&#8217;re seeing here.</p>
<p>Marshall Kirkpatrick points to a blog post of Matt Cutts, Google search algorithm engineer, but it seems to be a dead link now. Though trailing through Google&#8217;s caches, it seems to find him quote:</p>
<blockquote><p>Many of the data points are being pulled in from the structured part of Wikipedia entries, which is interesting. Other sources are wide ranging, from a license plate website to Jason Calacanis&#8217;s Mahalo.</p></blockquote>
<p>If Google are constructing semantic data from semi-structured or non-structured source data, then there&#8217;s undoubtedly some quite powerful semantic processing technology in place. I highly doubt this will be the final product of their development with such technologies, simply the first we&#8217;ve noticed &#8211; most likely why it&#8217;s slipped under most people&#8217;s notice.</p>
<p>The inaccuracy is also an issue. Try searching &#8216;Who is Bob Dylan&#8217;s wife?&#8217; &#8211; and you&#8217;ll see Sara Lownds (his ex-wife) returned. Seeing these direct answers reminds me of <a title="[true knowledge] - home" href="http://www.trueknowledge.com/" target="_blank">True Knowledge</a>.</p>
<p>Even their example questions though, are far more complex &#8211; for example, &#8216;<a title="True Knowledge" href="http://beta.trueknowledge.com/answer.php?input=Who+owns+Universal+Studios%3F" target="_blank">Who owns Universal Studios?</a>&#8216;, &#8216;<a title="True Knowledge" href="http://beta.trueknowledge.com/answer.php?input=Is+the+Chrysler+building+taller+than+the+Eiffel+Tower%3F" target="_blank">Is the Chrysler building taller than the Eiffel Tower?</a>&#8216;, &#8216;<a title="True Knowledge" href="http://beta.trueknowledge.com/answer.php?input=What+is+the+half+life+of+plutonium+239%3F" target="_blank">What is the half life of plutonium 239?</a>&#8216;.</p>
<p>More importantly, if it doesn&#8217;t know that answer, it won&#8217;t &#8216;guess&#8217; &#8211; it&#8217;ll tell you it doesn&#8217;t know and ask you to deconstruct your query in order to expand it&#8217;s knowledge base so it <em>can </em>find the answer later.</p>
<p>As Marshall says, this is all speculation based on limited observation &#8211; and low visibility of Google&#8217;s development. Hopefully there&#8217;ll be more soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.marchibbins.com/2009/01/07/is-this-it/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Connect</title>
		<link>http://blog.marchibbins.com/2008/12/17/connect/</link>
		<comments>http://blog.marchibbins.com/2008/12/17/connect/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 13:07:47 +0000</pubDate>
		<dc:creator>Marc Hibbins</dc:creator>
				<category><![CDATA[facebook]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[semanticweb]]></category>

		<guid isPermaLink="false">http://hibbins.wordpress.com/?p=252</guid>
		<description><![CDATA[For some time I’ve been meaning to write about Facebook Connect and Google Friend Connect, two potentially huge social web developments that have been gathering speed and popularity over the past few weeks.]]></description>
			<content:encoded><![CDATA[<p>For some time I&#8217;ve been meaning to write about <a title="Facebook Developers | Resources" href="http://developers.facebook.com/connect.php" target="_blank">Facebook Connect</a> and <a title="Add social features to your site" href="http://www.google.com/friendconnect/" target="_blank">Google Friend Connect</a>, two potentially huge social web developments that have been gathering speed and popularity over the past few weeks.</p>
<p>Both services are very similar. Essentially, each functions to simplify the connection between social and non-social websites by offering connectivity (and some functionality) of each&#8217;s proprietary central platform on 3rd party websites.</p>
<p>The idea is that a user can &#8216;Connect&#8217; with whichever service the site has employed and find users with whom they&#8217;ve already connected with on the other services &#8211; rather than creating a new account, profile, repeat the steps of entering information to then find the friends you&#8217;ve already added over and over again with every other social-enabled web app you&#8217;ve used previously.</p>
<p>I first saw Facebook Connect in August with their demonstration service  <a title="The Run Around" href="http://www.somethingtoputhere.com/therunaround/" target="_blank">The Run Around</a>. There, you could &#8216;Connect with Facebook&#8217; to initially join the site and immediately see who else (of your Facebook friends) has joined too. This is all outside of the Facebook chrome, not on the Facebook domain. What&#8217;s more, as well as interacting with the linked data pulled from Facebook, the website could push data back in. The actual site intended to track your running routes and times, so when you submitted a new &#8216;run&#8217;, it would publish to your live newsfeed on your Facebook profile.</p>
<p>The idea is simple, the effect could be game-changing. It&#8217;s been met with both <a title="Facebook Connect Will Be Game-Changing...and Dangerous - ReadWriteWeb" href="http://www.readwriteweb.com/archives/facebook_connect_will_be_gamec.php" target="_blank">cautious optimism</a> and <a title="The Social Networking Arms Race - ReadWriteWeb" href="http://www.readwriteweb.com/archives/the_social_networking_arms_race.php" target="_blank">healthy skepticism</a>.</p>
<p>If this becomes as <em>massive </em>as it could be, we could see a single sign-in that abolishes the need to register and re-register for every newly launched social app. We&#8217;re already experiencing social fatigue within that process as consumers and as developers, we&#8217;re having to build whole registration and authentication systems from scratch every time. Plugging into a platform like this &#8211; that we assume to be secure and trusted &#8211; could offer a means to develop and deploy services much easier and faster.</p>
<p>But can we trust &#8211; or do we want to trust &#8211; a propriety platform to do this for us? The idea of a single social graph isn&#8217;t new, but I don&#8217;t know if I want Facebook to offer it. I&#8217;d much prefer <a title="The Friend of a Friend (FOAF) project | FOAF project" href="http://www.foaf-project.org/" target="_blank">FOAF</a> <img src='http://blog.marchibbins.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  &#8211; but how many people outside of the development world have heard of it?</p>
<p style="text-align:left;">I feel I need to write another post entirely about <a title="OpenID - What is OpenID?" href="http://openid.net/what/" target="_blank">OpenID</a>, <a title="OpenSocial - Google Code" href="http://code.google.com/apis/opensocial/" target="_blank">OpenSocial</a> and <a title="Introduction" href="http://oauth.net/about" target="_blank">OAuth</a> entirely &#8211; services that can&#8217;t go unmentioned here &#8211; but Marshall Kirkpatrick at ReadWriteWeb wrote a direct comparison of <a title="Who Will Emerge Victorious? - ReadWriteWeb" href="http://www.readwriteweb.com/archives/facebook_connect_vs_open_id.php" target="_blank">Facebook Connect and OpenID</a> that asks some interesting questions as well as offering a good introduction to the open source services anyway. Although he started by discussing as to which of the two should website owners use to authenticate and learn about their users, the community expanded his initial mindmap to cover pretty much every angle in the comparison &#8211; and it&#8217;s very detailed, <a title="The Benefits of FB Connect vs. OpenID - MindMeister" href="http://www.mindmeister.com/8784099" target="_blank">see it here</a>.</p>
<p style="text-align:left;">He also asks, even if it doesn&#8217;t become the dominant identifier online, will Facebook&#8217;s challenge breathe new life into the movement for open source, standards based, federated user identity?</p>
<p>Then there&#8217;s Google Friend Connect &#8211; launched in public beta the same day as Facebook Connect went public for 3rd party sites. This does use a blend of the open source services, but although integrating the open standards might suggest a weightier development process, the first thing to notice is a far less developer-oriented implementation than Facebook Connect.</p>
<p>Using Facebook Connect is down to the site creator to construct and integrate an interface to facilitate the connection &#8211; Google Friend Connect is widgety, with pretty much zero coding other than cutting and pasting directed portions. Similarly with the functionality, Google offer widgets for simple commenting on pages, media sharing, or rating content. With Facebook Connect you have to write that yourself &#8211; although admittedly, you then have full reign on design and interaction.</p>
<p>There&#8217;s a <a title="YouTube - Introducing Google Friend Connect" href="http://uk.youtube.com/watch?v=N94s7ix0JPo" target="_blank">demonstration video</a> on the Google blog&#8217;s <a title="now available" href="http://googleblog.blogspot.com/2008/12/google-friend-connect-now-available.html" target="_blank">announcement of the beta launch</a>.</p>
<p>It&#8217;s not like this is just a two-horse race though, or that someone won&#8217;t work out a way two use both anyway. Google and Facebook are in direct competition, but attempting to open the Web in this way extends far beyond them.</p>
<p>What I find interesting is the interoperability. These technologies aren&#8217;t semantic, but do push the exposure and interoperation on a user&#8217;s social graph with ideas akin to the Semantic Web &#8211; utilising data to extend single-site online identities and networking social connections.</p>
<p>They&#8217;re not Semantic Web efforts but they have similar aims. Friend Connect&#8217;s goal is an open <em>social </em>web, the Semantic Web is &#8211; quite simply <img src='http://blog.marchibbins.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  &#8211; a fully understood, <em>completely </em>open web, not only it&#8217;s social domain.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.marchibbins.com/2008/12/17/connect/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>I Know There&#8217;s an Answer</title>
		<link>http://blog.marchibbins.com/2008/11/24/i-know-theres-an-answer/</link>
		<comments>http://blog.marchibbins.com/2008/11/24/i-know-theres-an-answer/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 22:24:52 +0000</pubDate>
		<dc:creator>Marc Hibbins</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[semanticweb]]></category>

		<guid isPermaLink="false">http://hibbins.wordpress.com/?p=158</guid>
		<description><![CDATA[Just lately I’ve been really interested in finding out Google’s position on semantic technologies and their view on the Semantic Web. So I asked.]]></description>
			<content:encoded><![CDATA[<p>Just lately I&#8217;ve been really interested in finding out Google&#8217;s position on semantic technologies and their view on the <a title="Semantic Web - Marc Hibbins" href="http://hibbins.wordpress.com/semantic-web/" target="_blank">Semantic Web</a>.</p>
<p>I&#8217;d been <a title="Everybody's Talkin' - Marc Hibbins" href="http://hibbins.wordpress.com/2008/10/20/everybodys-talkin/" target="_blank">asked before</a> whether Google were making any efforts in developing semantic technology, but I couldn&#8217;t really say. Then <a title="Chat and Business - Marc Hibbins" href="http://hibbins.wordpress.com/2008/10/22/chat-and-business/" target="_blank">I attended the Googleworld debate</a>, at London&#8217;s ICA, but couldn&#8217;t really find the chance to pose any technical questions.</p>
<p>In an attempt to satisfy my curiosity &#8211; and anyway, to investigate something I believe to be of interest that, as far as I can find, hasn&#8217;t received any real attention to date &#8211; I wrote an open letter, of sorts, forwarded to Google and Semantic Web researchers I&#8217;ve found connected to Google, simply asking:</p>
<p>What&#8217;s the deal?</p>
<blockquote><p>Dear Google,</p>
<p>My name is Marc Hibbins, I write a blog I&#8217;m sure you wouldn&#8217;t have read, I tend to cover new web technologies, online trends, my own development issues, but I&#8217;m also extremely interested in the Semantic Web.</p>
<p>Over the past couple of weeks I&#8217;ve become increasing interested in finding out Google&#8217;s position, or just their ideas even, on the Semantic Web and semantic technologies. I recently wrote about the increase in tech blogs covering the subject over the past couple of weeks, and I&#8217;ve been asked a few times &#8211; what&#8217;s Google up to?</p>
<p>I also recently attended a debate called &#8216;Googleworld&#8217; &#8211; it covered, generally, the past ten years of Google and what&#8217;s to come. I wrote about it, and the chair of the meeting replied that he too, is unaware of Google&#8217;s position.</p>
<p>Could you shed any light on the topic? Having had a thorough look around online, I&#8217;ve found next to nothing. I&#8217;m extremely intrigued to find out if Google have any plans with semantic technology &#8211; or even if there&#8217;s any in place already that just might not be so visible?</p>
<p>If you&#8217;ve no plans, do you have any comments? Do you think it&#8217;ll even ever happen?</p>
<p>Kindest regards,</p>
<p>Marc Hibbins</p></blockquote>
<p>I wasn&#8217;t sure what kind of response I&#8217;d get, if any at all. Or if anybody I did get in touch would be wary of offering any insight that might be misinterpreted as any &#8216;official&#8217; position.</p>
<p>To my surprise, my first response came from executive &#8216;Google Fellow&#8217; <a title="Corporate Information - Google Management - Jeff Dean" href="http://www.google.com/corporate/execs.html#jeffdean" target="_blank">Jeff Dean</a>. He works in the Systems Infrastructure Group (crawling, indexing and query systems &#8211; <a title="Jeffrey Dean" href="http://research.google.com/people/jeff/index.html" target="_blank">full bio here</a>), but he couldn&#8217;t initially offer any real strong thoughts on the issue. He did say however, that he wasn&#8217;t sure if Google even had any real position on the subject at all. If nothing, at least this confirmed that my lack of findings wasn&#8217;t down to only an absence of research published externally from Google &#8211; or poor investigative work on my part.</p>
<p>My second reply was from <a title="Stefan Decker's Homepage - Home" href="http://www.stefandecker.org/" target="_blank">Stefan Decker</a>, professor at the National University of Ireland, Galway and director of the <a title="Home" href="http://www.deri.ie/" target="_blank">Digital Enterprise Research Institute</a>, an internationally recognised institute in Semantic Web and web science research. He co-presented a very interesting <a title="YouTube - Semantic Web" href="http://uk.youtube.com/watch?v=CSM_iUWg9AY" target="_blank">Google Tech Talk last year</a>, and worked in Stanford at the same group as Sergey Brin and Larry Page.</p>
<p>He said, very explicitly, that:</p>
<blockquote><p>In short: The Google management does not believe in meta-data.</p>
<p>Craig Silverstein is on record several times negatively of talking about the topic, as well as Sergey Brin. It is very clear that they are not proactive &#8211; a serious mistake from my point of view.</p></blockquote>
<p>Interesting. I got in touch with his co-speakers, <a title="Eyal Oren - Personal Web page" href="http://www.eyaloren.org/" target="_blank">Eyal Oren</a> and <a title="Sebastian Kruk - Welcome" href="http://www.sebastiankruk.com/pages/Welcome.html" target="_blank">Sebastian Kruk</a>. Both said they have contacts at Google still, but neither are aware of any public developments.</p>
<p>Eyal pointed me toward <a title="Sindice - The semantic web index" href="http://sindice.com/" target="_blank">Sindice</a>, a semantic search engine and index as perhaps (though only speculatively &#8211; as likely any search engine), might one day receive interest from Google. Perhaps to incorporate their infrastructure for RDF and semantic data consumption. But as he said, there&#8217;s absolutely no evidence of it right now.</p>
<p>Sebastian on the other hand described the lack of address specifically as:</p>
<blockquote><p>[Their] &#8216;anti-semantic&#8217; approach.</p></blockquote>
<p>An increasing trend he&#8217;s recognised. Suggesting an almost concious movement <em>against </em>any such development. He also expressed his disappointment at the very low turn out at the Tech Talk, that literally only <em>one</em> attendee showed any real interest.</p>
<p>My final response was initially the most exciting &#8211; from <a title="http://www.guha.com/" href="http://www.guha.com/" target="_blank">Ramanathan V. Guha</a>, who leads development of Google Custom Search. He said he&#8217;d be happy to comment on what&#8217;s going on, although could only offer his own personal opinion and nothing official &#8211; but I&#8217;ve not received any correspondence from him since.</p>
<p>All in all, at least I know I&#8217;ve not overlooked anything major. Fingers crossed I get a response back from Guha, but otherwise I guess I&#8217;m left keeping a close eye out for any other developments.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.marchibbins.com/2008/11/24/i-know-theres-an-answer/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Chat and Business</title>
		<link>http://blog.marchibbins.com/2008/10/22/chat-and-business/</link>
		<comments>http://blog.marchibbins.com/2008/10/22/chat-and-business/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 08:54:15 +0000</pubDate>
		<dc:creator>Marc Hibbins</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[semanticweb]]></category>

		<guid isPermaLink="false">http://hibbins.wordpress.com/?p=118</guid>
		<description><![CDATA[Picked up a spare ticket to the ‘Googleworld’ debate at the the Institute of Contemporary Arts yesterday evening. Bill Thompson chaired a pleasantly ‘warm’ chat between New York Times columnist Randall Stross and Independent columnist Andrew Keen.]]></description>
			<content:encoded><![CDATA[<p>Picked up a spare ticket to the <a title="Googleworld" href="http://www.ica.org.uk/Googleworld+18150.twl" target="_blank">&#8216;Googleworld&#8217; debate</a> at the the Institute of Contemporary Arts yesterday evening. <a title="Bill Thompson's home on the Web" href="http://www.andfinally.com/" target="_blank">Bill Thompson</a> chaired a pleasantly &#8216;warm&#8217; chat between New York Times columnist <a title="Randall Stross" href="http://www.randallstross.com/" target="_blank">Randall Stross</a> and Independent columnist <a title="The Great Seduction" href="http://andrewkeen.typepad.com/" target="_blank">Andrew Keen</a>.</p>
<p>Initially I wasn&#8217;t sure what to expect, billed as a look back over the past ten years of Google and forward to whatever might come next, it wasn&#8217;t as technically oriented as I&#8217;d hoped it&#8217;d be. It more focused on social and philanthropical interest &#8211; as a well as being a bit of a sell for both their new books.</p>
<p>I would have liked the opportunity to open up discussion to Semantic technologies, perhaps to pose the question, What are Google&#8217;s intentions? &#8211; if they even have any &#8211; of introducing any Semantic Web technologies to their platform. It&#8217;s something I was <a title="Everybody's Talkin' - Marc Hibbins (Comments)" href="http://hibbins.wordpress.com/2008/10/20/everybodys-talkin/#comments" target="_blank">recently asked</a> about after writing <a title="Everybody's Talkin' - Marc Hibbins" href="http://hibbins.wordpress.com/2008/10/20/everybodys-talkin/" target="_blank">my last post</a>, but it wasn&#8217;t really the right crowd.</p>
<p>In other news, Semantic start-up <a title="Twine - Organize, Share, Discover Information Around Your Interests | Twine" href="http://www.twine.com/" target="_blank">Twine</a> goes public today. Founder Nova Spivack, <a title="User Engagement Trending Up | Twine" href="http://www.twine.com/item/11kv3p6qf-6l/some-interesting-twine-stats-user-engagement-trending-up" target="_blank">posted some interesting stats</a> yesterday about user engagement on the site over the last eight months during it&#8217;s semi-public, semi-beta phase.</p>
<p>It seems their users queue up some lengthy sessions on the site, longer even, he now predicts, than Delicious and MySpace.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.marchibbins.com/2008/10/22/chat-and-business/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Everybody&#8217;s Talkin&#8217;</title>
		<link>http://blog.marchibbins.com/2008/10/20/everybodys-talkin/</link>
		<comments>http://blog.marchibbins.com/2008/10/20/everybodys-talkin/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 22:29:48 +0000</pubDate>
		<dc:creator>Marc Hibbins</dc:creator>
				<category><![CDATA[semanticweb]]></category>

		<guid isPermaLink="false">http://hibbins.wordpress.com/?p=114</guid>
		<description><![CDATA[It’s been hard not to notice the influx of tech blog posts over the past week or so covering all things Semantic Web. I’ve not had a decent chance to talk about the Semantic Web for a while, so I thought I’d take this as a good opportunity to do so.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been hard not to notice the influx of tech blog posts over the past week or so covering all things Semantic Web. I&#8217;ve not had a decent chance to talk about the Semantic Web since I wrote <a title="Semantic Web - Marc Hibbins" href="http://hibbins.wordpress.com/semantic-web/" target="_blank">my thesis</a> last year, so I thought I&#8217;d take this as a good opportunity to do so and collect some of the best of those links in the process.</p>
<p>It&#8217;s staggering how much the Semantic idea has grown since I wrote my dissertation. In it I discussed mainly the social, technical and theoretical concepts of the Semantic Web &#8211; when I wrote it there was little else around to write about. There were no public start-ups or beta platforms &#8211; the community was small and extended little outside a designated group at the <a title="World Wide Web Consortium - Web Standards" href="http://www.w3.org/" target="_blank">W3C</a> and a handful of tech bloggers &#8211; their efforts too, were mostly spent on translating Tim Berners-Lee&#8217;s very technical, comparatively abstract, <a title="The Semantic Web" href="http://www.ryerson.ca/~dgrimsha/courses/cps720_02/resources/Scientific%20American%20The%20Semantic%20Web.htm" target="_blank">web dream</a> across to the mainstream reader.</p>
<p>At that point the W3C were rapidly beginning to develop technologies like <a title="Web 2.0 Meet the Semantic Web - O'Reilly XML Blog" href="http://www.oreillynet.com/xml/blog/2005/09/sparql_web_20_meet_the_semanti.html" target="_blank">SPARQL</a> and <a title="Web Ontology Language - Wikipedia, the free encyclopedia" href="http://en.wikipedia.org/wiki/Web_Ontology_Language" target="_blank">OWL</a>, while others were under varied debate, such as <a title="Resource Description Framework - Wikipedia, the free encyclopedia" href="http://en.wikipedia.org/wiki/Resource_Description_Framework" target="_blank">RDF</a> and <a title="Microformat - Wikipedia, the free encyclopedia" href="http://en.wikipedia.org/wiki/Microformat" target="_blank">Microformats</a>. Not having a background in hard computer sciences, my interest was more in exploring the ubiquity, connectivity, of a Semantic Web, investigating what forces we would need to drive the paradigm &#8211; how our ideas of the Web were already changing with coming to grips with terms like (the then brand-new) &#8216;Web 2.0&#8242; and embracing the Social Web phenomenon.</p>
<p>Nova Spivack is a leading voice, CEO of Radar Networks, founder of Semantic start-up <a title="Twine - Organize, Share, Discover Information Around Your Interests | Twine" href="http://www.twine.com/" target="_blank">Twine</a> &#8211; an information storage and knowledge sharing service. He writes frequently at his <a title="Minding the Planet" href="http://novaspivack.typepad.com/" target="_blank">Minding the Planet</a> blog, full of optimism and colourful metaphor. He recently gave a talk at the <a title="GRID 08 | Ideas. Stories. Innovation." href="http://www.bonnier.com/gridmeeting/index.html" target="_blank">Bonnier GRID &#8216;08</a> conference in Stockholm &#8211; basically &#8216;the TED conference of Scandinavia&#8217;, about what he terms the future of the Web, &#8216;<a title="The Global Brain is Coming! | Twine" href="http://www.twine.com/item/11xg3g873-xs/watch-my-best-talk-the-global-brain-is-coming" target="_blank">the Semantic Web and the Global Brain</a>&#8216;. Whilst worrying me by using many of the buzzing memes and science fiction references that I think actually harm those trying to invest in his optimism and adopt the Semantic idea &#8211; an all-knowing, understanding, artificially <em>intelligent </em>Web just <em>sounds </em>too good &#8211; it&#8217;s exciting how immediate he predicts the true impact of the Semantic Web impending.</p>
<p>Then it&#8217;s even more so to read popular &#8216;mainstream&#8217; &#8211; or at least the more general &#8211; tech blogs giving more and more coverage to Semantic web, that the technology and abstract concepts are becoming commonplace and frequently in normal interest.</p>
<p>ReadWriteWeb, ever popular for polls and predictions favour Semantic technologies in various recent top ten-style looks into <a title="10 Future Web Trends - ReadWriteWeb" href="http://www.readwriteweb.com/archives/10_future_web_trends.php" target="_blank">future web trends</a> (and <a title="10 More Future Web Trends - ReadWriteWeb" href="http://www.readwriteweb.com/archives/10_more_future_web_trends.php" target="_blank">more here</a>), but too, see the oncoming breakthrough as more immediate. Richard MacManus puts Semantic apps at number one on his hit-list of <a title="2008 Web Predictions - ReadWriteWeb" href="http://www.readwriteweb.com/archives/2008_web_predictions.php" target="_blank">Web Predictions for 2008</a>.</p>
<p>But while predictions continue to be made, the true killer-app remains allusive. Some do extremely well though. <a title="an open, shared database of the world's knowledge" href="http://www.freebase.com/" target="_blank">Freebase</a> went public around the end of 2007, essentially a semantic Wikipedia, hasn&#8217;t gained the popularity I though it would&#8217;ve by now. <a title="[true knowledge] - home" href="http://www.trueknowledge.com/" target="_blank">True Knowledge</a> natural language search is still in beta, though the platform I&#8217;ve tested so far is as impressive as their <a title="[true knowledge] - demo video" href="http://www.trueknowledge.com/technology/video/" target="_blank">promotional video</a>.</p>
<p>But then kinda out of the blue for me came two Yahoo! developments. <a title="SearchMonkey - YDN" href="http://developer.yahoo.com/searchmonkey/" target="_blank">SearchMonkey</a>, not exclusively a Semantic Web app, is a search engine that promotes semantic data standards by making use of Microformats and embedded RDF as searchable metadata &#8211; definitely <a title="SearchMonkey and the Semantic Web" href="http://developer.yahoo.com/searchmonkey/smguide/faq.html" target="_blank">read the FAQ</a> &#8211; and at the recent <a title="Welcome to Web 3.0" href="http://www.web3event.com/index.php" target="_blank">Web 3.0 Conference and Expo</a>, announced the consumer release of <a title="Introducing the Yahoo! Open Strategy (Yahoo! Developer Network Blog)" href="http://developer.yahoo.net/blog/archives/2008/04/introducing_the_1.html" target="_blank">Yahoo! Open Strategy</a> (Y!OS), &#8216;blowin’ the doors wide open&#8217; to the &#8216;open source, hacker attitude&#8217; &#8211; basically, &#8216;rewiring&#8217; Yahoo! to make all data service-wide openly available to developers and consumers alike, granting the opportunity for complete data portability &#8211; with the intent to extend even further in the future.</p>
<p>I concluded my thesis in suggesting a new drive would be necessary for consumers Web-wide to understand and willingly adopt the Semantic Web change. At that point the <a title="Creating a Science of the Web | Web Science Research Initiative" href="http://www.webscience.org/" target="_blank">Web Science Research Initiative</a> (WSRI) had just been launched, a joint venture between MIT and the University of Southampton to teach the literal academic <em>science </em>of the web &#8211; it was unclear whether this would be enough. Molly Holzschlag <a title="Three Circles of Hell" href="http://www.alistapart.com/articles/webstandards2008" target="_blank">wrote a recent article at A List Apart</a>, believing the &#8216;Ivory tower&#8217; perception of the W3C to be discouraging to everyone independent of the organisation &#8211; that they&#8217;ve no real outreach. I agree, but think efforts like the newly founded <a title="Welcome to the World Wide Web Foundation - World Wide Web Foundation" href="http://www.webfoundation.org/news/2008/09/welcome-to-the-world-wide-web-foundation.html" target="_blank">World Wide Web Foundation</a> are a direct result of their awareness of that, but they will fulfil their principle objective and speed the technological advancement faster than she may expect &#8211; I hope they do, at least.</p>
<p>For even more reading (and listening) material, subscribe to the <a title="Nodalities" href="http://blogs.talis.com/nodalities/" target="_blank">Nodalities</a> blog and podcasts. There&#8217;s <a title="Nodalities - Blog Archive - David Provost talks with Talis about his report of a Semantic Web industry 'On the Cusp'" href="http://blogs.talis.com/nodalities/2008/10/david-provost-talks-with-talis-about-his-report-of-a-semantic-web-industry-on-the-cusp.php" target="_blank">a good interview with David Provost</a> I recommend, discussing many of the things I&#8217;ve spoken about here, but also his recently published report on the Semantic Web industry as a whole.</p>
<p>It&#8217;s called, &#8216;On the cusp&#8217;. <img src='http://blog.marchibbins.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.marchibbins.com/2008/10/20/everybodys-talkin/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
