<?xml version="1.0"?>
<?xml-stylesheet type="text/xml" href="presenter.xsl"?>
<slideshow>
	<title> Semantic Blogging </title>
	<slide><!--{{{--> <title />
		<body>
			<h1 style="position:absolute;left:0;padding-left:1em;font-size:48pt;padding-bottom:3px;width:70%;border-bottom:2px solid black">Semantic Blogging</h1>
			<h3 style="position:absolute;left:0;padding-top:5em;padding-left:10em">Making the Web more machine-digestable</h3>
			<h4 style="padding-top:5in;width:90%;text-align:right;">
			<div style="position:absolute;width:60%;border-top:1px solid black;right:0" />
			Presented by:<br/>
			Jordan Sissel
			</h4>
		</body>
	</slide><!--}}}-->

	<slide><!--{{{--> <title> Ye Olde Web </title>
		<body>
			Organization:
			<ul>
				<li> Contains individual and community websites </li>
				<li> Linked together using URLs (web links) </li>
				<li> Web pages are designed for human consumption </li>
			</ul>

			Problems:
			<ul>
				<li> Content cannot describe itself (What am I about?) </li>
				<li> Viewing designed for human consumption only </li>
				<li> Search engines required to hackishly reprocess data </li>
				<li> Little-to-no context surrounding data </li>
				<li> Searching requires human input to define context </li>
				<li> Massive amounts of information become difficult to process </li>
				<li> Not all data comes in the form of web pages (email, images, etc)</li>
			</ul>
		</body>
	</slide><!-- }}} -->

	<slide><title> Problem example </title><!-- {{{ -->
		<body>
			Example of searching problem:
			<ul>
				<li> Search for information about the rock band: Live. </li>
				<li> <a href="http://www.google.com/search?q=live">Google: "live"</a> </li>
				<li> <a href="http://www.google.com/search?q=live+rock">Google: "live rock"</a> </li>
				<li> <a href="http://www.google.com/search?q=live+rock+group+music+band">Google: "live rock group music band"</a> </li>
			</ul>

			Conclusion:
			<ul>
				<li>Context is critical. Burden of context provision is on the user.</li>
			</ul>
		</body>
	</slide><!--}}}-->

	<slide><title> Web Logging Explosion </title><!--{{{-->
		<body>
			Blogging:
			<ul>
				<li> Self-publication online has grown dramatically </li>
				<li> Individually-maintained "Blogs" are very common </li>
				<li> Allows users to publish with greater ease and speed </li>
				<li> Blog information will still need to be categorized by machines </li>
			</ul>

			Results:
			<ul>
				<li> Faster propogation of memes </li>
				<li> Constantly changing the structure of the Web </li>
				<li> More individual-oriented websites than ever before </li>
			</ul>
		</body>
	</slide><!--}}}-->

	<slide><title> Enter: Semantic Web </title><!--{{{-->
		<body>
			<pre style="text-align:center">se&#x0B7;man&#x0B7;tic: of or relating to the study of meaning</pre>

			Metadata processing:
			<ul>
				<li> Humans can inference information pieces to form new information</li>
				<li> "I drive a Tahoe." -- What does that mean? </li>
				<li> What does Google say? <a href="http://www.google.com/search?q=tahoe+drive">Find Out</a> </li>
				<li> Machines are not as "smart" as we are. </li>
			</ul>

			Machines need help:
			<ul>
				<li> Data needs a way to describe itself in a way meaningful to a computer</li>
				<li> Metadata: Data about data </li>
				<li> Some protocols already exist for metadata description </li>
				<li> Solution: Resource Description Framework (RDF) </li>
				<!--
				<li> Web pages (data) need more help describing themselves </li>
				<li> Gives meaningful metadata to processing machines </li>
				-->
			</ul>

			End result:
			<ul>
				<li> Higher levels of human-digestable information</li>
			</ul>
		</body>
	</slide><!--}}}-->

	<slide><title> RDF: Metadata Defined </title><!--{{{-->
		<body>
			What is RDF?
			<ul>
				<li> An general framework for the description of any Internet-based resource. </li>
				<li> Subject, Predicate, and Object </li>
				<li> Subject: Resource being described </li>
				<li> Predicate: Trait or relationship </li>
				<li> Object: Value of trait or object of relationship </li>
				<li> Results: directed graph showing relationships of objects in the world</li>
			</ul>
		</body>
	</slide><!--}}}-->

	<slide><title> RDF Example </title><!--{{{-->
		<body>
			<center>
				<img src="images/f1.jpg" />
			</center>
		</body>
	</slide><!--}}}-->

	<slide><title> RDF Continued </title>
		<body>
			RDF supports extensible vocabularies, or metadata term sets, to aid in data description. Extends and improves languages to describe data:<br/>
			"Semantic Blogging" is an <i>article</i> whose <i>author</i> is a <i>person</i> with the <i>name</i> "Jordan Sissel" and <i>major</i> "Computer Science"
			<p/>

			Many vocabularies exist, for example:
			<ul>
				<li>RSS: describes blog entries and can specify: channels, items, images, links, and descriptions.</li>
				<li>Dublin Core: describes published work attributes: creator, date published, subject, contributors, language, publisher, etc.</li>
				<li>PRISM: also for describing published works, terms include: byte count, edition, createion date, industy, ISSN, modification date, rights agent, etc.  </li>
			</ul>
		</body>
	</slide>
	
	<slide><title> What now? What Next? </title>
		<body>
			Blogs have been a driving force in blogging software development. As a
			result, blogging software has adapted to include these RDF metadata
			publishing features.
			<p/>

			Why? Bloggers want to let users read content with less effort.

			<p/>

			The future of Semantic Web:
			<ul>
				<li> Greater personal information consumption satisfaction </li>
				<li> Less time spent searching </li>
				<li> More consumable information </li>
				<li> Google search in the future </li>
			</ul>
		</body>
	</slide>

	<slide><title> Questions </title>

	</slide>

	<slide><title> References </title><!--{{{-->
		<body>
			<ul>
				<li> Cayzer, Steve. Semantic blogging and decentralized knowledge management. <i>Communications of the ACM Vol 47, No 12 </i>(April 2004), 47-52
				</li>
				<li>
					<a href="http://www.w3.org/RDF">RDF Standard (http://www.w3.org/RDF)</a>
				</li>
				<li> 
					<a href="http://en.wikipedia.org/wiki/Blog#Blogging_begins">Blogging History (http://en.wikipedia.org/wiki/Blog#Blogging_begins)</a>
				</li>
				<li>
					<a href="http://dublincore.org/documents/dcmi-terms/">Dublin Core Metadata Terms (http://dublincore.org/documents/dcmi-terms/)</a>
				</li>
				<li>
					<a href="http://www.prismstandard.org/resources/mod_prism.html">PRISM Metadata Standard</a>
				</li>
			</ul>
		</body>
	</slide><!--}}}-->
</slideshow>
