SlideShare a Scribd company logo
WTF is the Semantic WebJuan F. SequedaSemantic Web AustinOct 1, 2011
WTF is the Semantic Web?
Internet != Web
WTF is the Semantic Web
What is the Web?“… the Web, is a system of interlinked hypertext documents accessed via the Internet. With a web browser, one can view web pages that may contain text, images […] and navigate between them via hyperlinks”http://en.wikipedia.org/wiki/World_Wide_Web
Current Web = internet + links + docs
History of the WebCreated by Tim Berners-Lee at CERN in 1989Mosaic browser in 1993W3C created in 1994Exponential growth mid 90sAmazon, Ebay – 1995Search engines – Google 1998Dot-com boom 1997 – 2001Web 2.0 – blogs, Facebook, Twitter, etc
What is the problem?
WHAT’S THE WEATHER IN AUSTIN TODAY?http://www.flickr.com/photos/jamieca/31631256/
WTF is the Semantic Web
WTF is the Semantic Web
WTF is the Semantic Web
What is the problem?The web is full of documentsWe aren’t always interested in documentsWe are interested in THINGSThese THINGS might be in documentsWe can read a HTML document rendered in a browser and find what we are searching forThis is hard for computers. Computers have to guess (even though they are pretty good at it)
The Web is a Data ShredderStructured DataUnstructured DataThanks Martin Hepp
What would we like?Make it easy for computers/software to find THINGSDo you SEARCH or do you FIND?
Search forFootball Players who went to the University of Texas at Austin, played for the Dallas Cowboys as Cornerback
WTF is the Semantic Web
WTF is the Semantic Web
WTF is the Semantic Web
Why can’t we just FIND it…
WTF is the Semantic Web
WTF is the Semantic Web
Guess how I FOUND out?
On a Semantic WebBesides publishing documents on the webwhich computers can’t understand easilyLet’s publish on the web something that computers can understandDATA
The Semantic Web is aweb of dataThe current web is aweb of documents
But wait… doesn’t the web already have data?
Current Data on the WebRelational DatabasesAPIsXMLCSVXLS…Can’t computers and applications already consume that data on the web?
Yes! But it is all in different formats and data models!
This makes it hard to integrate data
The data in different data sources aren’t linked
For example, how do I know that the Juan Sequeda in Facebook is the same as Juan Sequeda in Twitter
Or if I create a mashup from different services, I have to learn different APIs and I get different formats of data back
Data is Siloed
Wouldn’t it be great if we had a standard way of publishing data on the Web?
We have a standardized way of publishing documents on the web, right?HTML
Then why can’t we have a standard way of publishing data on the Web?
Good question! And the answer is YES. There is!RDF
Resource Description Framework (RDF)Data Model = a way to model datai.e. Relational databases use relational data modelRDF is a graph data model
Key Value vs GraphKey ValuesfirstName JuanlastName SequedalivesIn Austinknows StephaneCorlosquetBut what are these key/values describing?ME!
RDF is a GraphLet’s group the Key/Values together<JuanSequeda> <firstName> “Juan”<JuanSequeda> <lastName> “Sequeda”<JuanSequeda> <livesIn> “Austin”<JuanSequeda> <knows> <StephaneCorlosquet>..<StephaneCorlosquet> <firstName> “Stephane”<StephaneCorlosquet> <lastName> “Corlosquet”<StephaneCorlosquet> <livesIn> “Boston”
RDF is a GraphLet’s group the Key/Values together<JuanSequeda> <firstName> “Juan”<JuanSequeda> <lastName> “Sequeda”<JuanSequeda> <livesIn> “Austin”<JuanSequeda> <knows> <StephaneCorlosquet>..<StephaneCorlosquet> <firstName> “Stephane”<StephaneCorlosquet> <lastName> “Corlosquet”<StephaneCorlosquet> <livesIn> “Boston”Identifier for the “group”Key/Value
RDF can be serialized in different waysRDF/XMLRDFa (RDF in HTML)N3TurtleJSON
WTF is the Semantic Web
RDFa
RDF/XML
RDF/N-triples
RDF/Turtle
So does that mean that I have to publish my data in RDF now?
You don’t have to… but we would like you to Schema.orgRich Snippets…
An example
Document on the Web
Databases back up documentsTHINGS have PROPERTIES:A Book as a Title, an author, …This is a THING:A book title “Programming the Semantic Web” by Toby Segaran, …
Lets represent the data in RDFProgramming the Semantic WebtitleauthorbookToby Segaranisbn978-0-596-15381-6publishernamePublisherO’Reilly
Remember that we are on the webEverything on the web is identified by a URI
And now let’s link the data to other dataProgramming the Semantic Webtitleauthorhttp://…/isbn978Toby Segaranisbn978-0-596-15381-6publishernamehttp://…/publisher1O’Reilly
And now consider the data from Revyu.comhasReviewhttp://…/review1http://…/isbn978descriptionreviewerAwesome Bookhttp://…/reviewernameJuan Sequeda
Let’s start to link datahasReviewhttp://…/review1http://…/isbn978Programming the Semantic WebtitledescriptionsameAshasReviewerAwesome Bookauthorhttp://…/isbn978Toby Segaranhttp://…/reviewernameisbn978-0-596-15381-6Juan Sequedapublishernamehttp://…/publisher1O’Reilly
Juan Sequeda publishes data toohttp://juansequeda.com/idhttp://dbpedia.org/AustinlivesInnameJuan Sequeda
Let’s link more datahasReviewhttp://…/review1http://…/isbn978descriptionhasReviewerAwesome Bookhttp://…/reviewernameJuan SequedasameAshttp://juansequeda.com/idhttp://dbpedia.org/AustinlivesInnameJuan Sequeda
And morehasReviewhttp://…/review1http://…/isbn978Programming the Semantic WebtitledescriptionsameAshasReviewerAwesome Bookauthorhttp://…/isbn978Toby Segaranhttp://…/reviewernameisbn978-0-596-15381-6Juan SequedapublishersameAshttp://…/publisher1nameO’Reillyhttp://juansequeda.com/idhttp://dbpedia.org/AustinlivesInnameJuan Sequeda
Data on the Web that is in RDF and is linked to other RDF data isLINKED DATA
Linked Data PrinciplesUse URIs as names for thingsUse HTTP URIs so that people can look up (dereference) those names.When someone looks up a URI, provide useful information.Include links to other URIs so that they can discover more things.
Linked Data makes the web appear as ONEGIANTHUGEGLOBALDATABASE!
I can query a database with SQL. Is there a way to query Linked Data with a query language?
Yes! There is actually a standardize language for thatSPARQL
FIND all the reviews on the book “Programming the Semantic Web” by people who live in Austin
SELECT ?review ?commentWHERE {  isbn:978 ex:hasReview ?review .  ?review ex:description ?comment .  ?review ex:hasReviewer ?person .  ?person ex:livesdbpedia:Austin .} SPARQL
SELECT ?review ?commentWHERE {isbn:978 ex:hasReview ?review .?review ex:description ?comment .?review ex:hasReviewer ?person .?person ex:livesdbpedia:Austin .}hasReviewhttp://…/review1http://…/isbn978Programming the Semantic WebtitledescriptionsameAshasReviewerAwesome Bookauthorhttp://…/isbn978Toby Segaranhttp://…/reviewernameisbn978-0-596-15381-6Juan SequedapublishersameAsnamehttp://…/publisher1O’Reillyhttp://juansequeda.comhttp://dbpedia.org/AustinlivesInnameJuan Sequeda
This looks cool, but let’s be realistic. What is the incentive to publish Linked Data?
What was your incentive to publish an HTML page in 1990?
1) Share data in documents2) Because you neighbor was doing it… later on …3) Marketing, Advertising, …, SEO
So why should we publish Linked Data in 2011?
1) Share data as data2) Because you neighbor is doing it…3) Marketing, Advertising, SEO ++
Linked Data PublishersUK GovernmentUS GovernmentBBCOpen Calais – Thomson ReutersFreebase/GoogleNY TimesBest BuySearsKmartOverstock.comCNETDbpediaO’Reilly Media…
May 2007
Oct 2007
Nov 2007
Feb 2008
Mar 2008
Sept 2008
Mar 2009 (1)
Mar 2009 (2)
July 2009
September 2010
September 2011Linking Open Data cloud diagram, by Richard Cyganiak and AnjaJentzsch.http://lod-cloud.net/
YOU GET THE PICTUREITS BIG and getting BIGGER andBIGGER
QUESTIONS?

More Related Content

PPTX
WTF is the Semantic Web and Linked Data
PPTX
Linked Data tutorial at Semtech 2012
PDF
The Single Power of Link - Richard Wallis
KEY
Semantic Web: A web that is not the Web
PPTX
Beyond Google: Advanced Internet Search Tips and Tricks
PPTX
NCompass Live: RDA: Are We There Yet?
PPTX
Name That Graph !
PDF
The Simple Power of the Link
WTF is the Semantic Web and Linked Data
Linked Data tutorial at Semtech 2012
The Single Power of Link - Richard Wallis
Semantic Web: A web that is not the Web
Beyond Google: Advanced Internet Search Tips and Tricks
NCompass Live: RDA: Are We There Yet?
Name That Graph !
The Simple Power of the Link

What's hot (20)

PDF
Beyond Google: Advanced Search
ZIP
Dagstuhl FOAF history talk
PPTX
Hacking with Semantic Web
PDF
Serendipity in Linked Open Data
PDF
Linked Data Challenge and Opportunity
PDF
Publishing and Using Linked Data
PPT
Are You Internet Savvy or an Internet Sucker?
PPTX
NCompass Live: Linked Data and Libraries: What? Why? How?
PPTX
Creating Linked Data 2/5 Semtech2011
PPT
Academic Research on the Internet is New Library in Rural America
PDF
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs - Front in Bahia...
KEY
The Simple Power of the Link
PDF
Searching tricks and tips
PPTX
Jim Hendler's Presentation at SSSW 2011
PPTX
Exploiter le Web Semantic, le comprendre et y contribuer
PDF
Linked Data and Tools
PPT
Search engine-optimization-tips
PDF
Harith Alani's presentation at SSSW 2011
PDF
Linked open data
PDF
Ted Talk
Beyond Google: Advanced Search
Dagstuhl FOAF history talk
Hacking with Semantic Web
Serendipity in Linked Open Data
Linked Data Challenge and Opportunity
Publishing and Using Linked Data
Are You Internet Savvy or an Internet Sucker?
NCompass Live: Linked Data and Libraries: What? Why? How?
Creating Linked Data 2/5 Semtech2011
Academic Research on the Internet is New Library in Rural America
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs - Front in Bahia...
The Simple Power of the Link
Searching tricks and tips
Jim Hendler's Presentation at SSSW 2011
Exploiter le Web Semantic, le comprendre et y contribuer
Linked Data and Tools
Search engine-optimization-tips
Harith Alani's presentation at SSSW 2011
Linked open data
Ted Talk
Ad

Viewers also liked (20)

PDF
Virtualizing Relational Databases as Graphs: a multi-model approach
PDF
Consuming Linked Data by Humans - WWW2010
PPTX
Conclusions - Linked Data
PPTX
Drupal 7 and Semantic Web Hands-on Tutorial
PDF
Linked Data Applications - WWW2010
PDF
Welcome to Consuming Linked Data tutorial WWW2010
PPTX
Free Money (a.k.a Fellowships)
PPTX
Introduccion a la Web Semantica
PPTX
Welcome to Linked Data 0/5 Semtech2011
PDF
Introduction to Linked Data - WWW2010
PDF
Consuming Linked Data by Machines - WWW2010
PPTX
What is the Semantic Web
PDF
Graph Query Languages: update from LDBC
PDF
Do I need a Graph Database?
PDF
Open Research Problems in Linked Data - WWW2010
PPTX
Publishing Linked Data 3/5 Semtech2011
PPTX
Introduction to Linked Data 1/5
PPTX
Consuming Linked Data 4/5 Semtech2011
PDF
How to Get My Paper Accepted at Top Software Engineering Conferences
PPTX
Consuming Linked Data SemTech2010
Virtualizing Relational Databases as Graphs: a multi-model approach
Consuming Linked Data by Humans - WWW2010
Conclusions - Linked Data
Drupal 7 and Semantic Web Hands-on Tutorial
Linked Data Applications - WWW2010
Welcome to Consuming Linked Data tutorial WWW2010
Free Money (a.k.a Fellowships)
Introduccion a la Web Semantica
Welcome to Linked Data 0/5 Semtech2011
Introduction to Linked Data - WWW2010
Consuming Linked Data by Machines - WWW2010
What is the Semantic Web
Graph Query Languages: update from LDBC
Do I need a Graph Database?
Open Research Problems in Linked Data - WWW2010
Publishing Linked Data 3/5 Semtech2011
Introduction to Linked Data 1/5
Consuming Linked Data 4/5 Semtech2011
How to Get My Paper Accepted at Top Software Engineering Conferences
Consuming Linked Data SemTech2010
Ad

Similar to WTF is the Semantic Web (20)

PPTX
Introduction to Linked Data
PPT
Future of Web 2.0 & The Semantic Web
PPTX
Semantic web
PPTX
Introduction to the Semantic Web
PPTX
Linked data HHS 2015
PDF
WebGUI And The Semantic Web
ODP
State of the Semantic Web
ODP
Web 3.0 The Semantic Web
PPTX
Get on the Linked Data Web!
PPTX
Hack U Barcelona 2011
PPT
Web 3 Mark Greaves
PPTX
SWT Lecture Session 1 - Introduction
ODP
Building a semantic website
PPT
Semantic Web
PPT
Corrib.org - OpenSource and Research
PPT
JahiaOne - Semantic Web with Jahia
PPTX
semantic web.pptxThe Semantic Web is an extension of the WWW
ODP
Linked Data
PPSX
Semantic web
PPTX
CSHALS 2010 W3C Semanic Web Tutorial
Introduction to Linked Data
Future of Web 2.0 & The Semantic Web
Semantic web
Introduction to the Semantic Web
Linked data HHS 2015
WebGUI And The Semantic Web
State of the Semantic Web
Web 3.0 The Semantic Web
Get on the Linked Data Web!
Hack U Barcelona 2011
Web 3 Mark Greaves
SWT Lecture Session 1 - Introduction
Building a semantic website
Semantic Web
Corrib.org - OpenSource and Research
JahiaOne - Semantic Web with Jahia
semantic web.pptxThe Semantic Web is an extension of the WWW
Linked Data
Semantic web
CSHALS 2010 W3C Semanic Web Tutorial

Recently uploaded (20)

PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Electronic commerce courselecture one. Pdf
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Encapsulation theory and applications.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
cuic standard and advanced reporting.pdf
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
Cloud computing and distributed systems.
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Unlocking AI with Model Context Protocol (MCP)
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
DOCX
The AUB Centre for AI in Media Proposal.docx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Electronic commerce courselecture one. Pdf
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Encapsulation theory and applications.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
Reach Out and Touch Someone: Haptics and Empathic Computing
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Building Integrated photovoltaic BIPV_UPV.pdf
cuic standard and advanced reporting.pdf
NewMind AI Weekly Chronicles - August'25 Week I
Review of recent advances in non-invasive hemoglobin estimation
Cloud computing and distributed systems.
Chapter 3 Spatial Domain Image Processing.pdf
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Digital-Transformation-Roadmap-for-Companies.pptx
Unlocking AI with Model Context Protocol (MCP)
“AI and Expert System Decision Support & Business Intelligence Systems”
Diabetes mellitus diagnosis method based random forest with bat algorithm
The AUB Centre for AI in Media Proposal.docx

WTF is the Semantic Web

  • 1. WTF is the Semantic WebJuan F. SequedaSemantic Web AustinOct 1, 2011
  • 2. WTF is the Semantic Web?
  • 5. What is the Web?“… the Web, is a system of interlinked hypertext documents accessed via the Internet. With a web browser, one can view web pages that may contain text, images […] and navigate between them via hyperlinks”http://en.wikipedia.org/wiki/World_Wide_Web
  • 6. Current Web = internet + links + docs
  • 7. History of the WebCreated by Tim Berners-Lee at CERN in 1989Mosaic browser in 1993W3C created in 1994Exponential growth mid 90sAmazon, Ebay – 1995Search engines – Google 1998Dot-com boom 1997 – 2001Web 2.0 – blogs, Facebook, Twitter, etc
  • 8. What is the problem?
  • 9. WHAT’S THE WEATHER IN AUSTIN TODAY?http://www.flickr.com/photos/jamieca/31631256/
  • 13. What is the problem?The web is full of documentsWe aren’t always interested in documentsWe are interested in THINGSThese THINGS might be in documentsWe can read a HTML document rendered in a browser and find what we are searching forThis is hard for computers. Computers have to guess (even though they are pretty good at it)
  • 14. The Web is a Data ShredderStructured DataUnstructured DataThanks Martin Hepp
  • 15. What would we like?Make it easy for computers/software to find THINGSDo you SEARCH or do you FIND?
  • 16. Search forFootball Players who went to the University of Texas at Austin, played for the Dallas Cowboys as Cornerback
  • 20. Why can’t we just FIND it…
  • 23. Guess how I FOUND out?
  • 24. On a Semantic WebBesides publishing documents on the webwhich computers can’t understand easilyLet’s publish on the web something that computers can understandDATA
  • 25. The Semantic Web is aweb of dataThe current web is aweb of documents
  • 26. But wait… doesn’t the web already have data?
  • 27. Current Data on the WebRelational DatabasesAPIsXMLCSVXLS…Can’t computers and applications already consume that data on the web?
  • 28. Yes! But it is all in different formats and data models!
  • 29. This makes it hard to integrate data
  • 30. The data in different data sources aren’t linked
  • 31. For example, how do I know that the Juan Sequeda in Facebook is the same as Juan Sequeda in Twitter
  • 32. Or if I create a mashup from different services, I have to learn different APIs and I get different formats of data back
  • 34. Wouldn’t it be great if we had a standard way of publishing data on the Web?
  • 35. We have a standardized way of publishing documents on the web, right?HTML
  • 36. Then why can’t we have a standard way of publishing data on the Web?
  • 37. Good question! And the answer is YES. There is!RDF
  • 38. Resource Description Framework (RDF)Data Model = a way to model datai.e. Relational databases use relational data modelRDF is a graph data model
  • 39. Key Value vs GraphKey ValuesfirstName JuanlastName SequedalivesIn Austinknows StephaneCorlosquetBut what are these key/values describing?ME!
  • 40. RDF is a GraphLet’s group the Key/Values together<JuanSequeda> <firstName> “Juan”<JuanSequeda> <lastName> “Sequeda”<JuanSequeda> <livesIn> “Austin”<JuanSequeda> <knows> <StephaneCorlosquet>..<StephaneCorlosquet> <firstName> “Stephane”<StephaneCorlosquet> <lastName> “Corlosquet”<StephaneCorlosquet> <livesIn> “Boston”
  • 41. RDF is a GraphLet’s group the Key/Values together<JuanSequeda> <firstName> “Juan”<JuanSequeda> <lastName> “Sequeda”<JuanSequeda> <livesIn> “Austin”<JuanSequeda> <knows> <StephaneCorlosquet>..<StephaneCorlosquet> <firstName> “Stephane”<StephaneCorlosquet> <lastName> “Corlosquet”<StephaneCorlosquet> <livesIn> “Boston”Identifier for the “group”Key/Value
  • 42. RDF can be serialized in different waysRDF/XMLRDFa (RDF in HTML)N3TurtleJSON
  • 44. RDFa
  • 48. So does that mean that I have to publish my data in RDF now?
  • 49. You don’t have to… but we would like you to Schema.orgRich Snippets…
  • 52. Databases back up documentsTHINGS have PROPERTIES:A Book as a Title, an author, …This is a THING:A book title “Programming the Semantic Web” by Toby Segaran, …
  • 53. Lets represent the data in RDFProgramming the Semantic WebtitleauthorbookToby Segaranisbn978-0-596-15381-6publishernamePublisherO’Reilly
  • 54. Remember that we are on the webEverything on the web is identified by a URI
  • 55. And now let’s link the data to other dataProgramming the Semantic Webtitleauthorhttp://…/isbn978Toby Segaranisbn978-0-596-15381-6publishernamehttp://…/publisher1O’Reilly
  • 56. And now consider the data from Revyu.comhasReviewhttp://…/review1http://…/isbn978descriptionreviewerAwesome Bookhttp://…/reviewernameJuan Sequeda
  • 57. Let’s start to link datahasReviewhttp://…/review1http://…/isbn978Programming the Semantic WebtitledescriptionsameAshasReviewerAwesome Bookauthorhttp://…/isbn978Toby Segaranhttp://…/reviewernameisbn978-0-596-15381-6Juan Sequedapublishernamehttp://…/publisher1O’Reilly
  • 58. Juan Sequeda publishes data toohttp://juansequeda.com/idhttp://dbpedia.org/AustinlivesInnameJuan Sequeda
  • 59. Let’s link more datahasReviewhttp://…/review1http://…/isbn978descriptionhasReviewerAwesome Bookhttp://…/reviewernameJuan SequedasameAshttp://juansequeda.com/idhttp://dbpedia.org/AustinlivesInnameJuan Sequeda
  • 60. And morehasReviewhttp://…/review1http://…/isbn978Programming the Semantic WebtitledescriptionsameAshasReviewerAwesome Bookauthorhttp://…/isbn978Toby Segaranhttp://…/reviewernameisbn978-0-596-15381-6Juan SequedapublishersameAshttp://…/publisher1nameO’Reillyhttp://juansequeda.com/idhttp://dbpedia.org/AustinlivesInnameJuan Sequeda
  • 61. Data on the Web that is in RDF and is linked to other RDF data isLINKED DATA
  • 62. Linked Data PrinciplesUse URIs as names for thingsUse HTTP URIs so that people can look up (dereference) those names.When someone looks up a URI, provide useful information.Include links to other URIs so that they can discover more things.
  • 63. Linked Data makes the web appear as ONEGIANTHUGEGLOBALDATABASE!
  • 64. I can query a database with SQL. Is there a way to query Linked Data with a query language?
  • 65. Yes! There is actually a standardize language for thatSPARQL
  • 66. FIND all the reviews on the book “Programming the Semantic Web” by people who live in Austin
  • 67. SELECT ?review ?commentWHERE { isbn:978 ex:hasReview ?review . ?review ex:description ?comment . ?review ex:hasReviewer ?person . ?person ex:livesdbpedia:Austin .} SPARQL
  • 68. SELECT ?review ?commentWHERE {isbn:978 ex:hasReview ?review .?review ex:description ?comment .?review ex:hasReviewer ?person .?person ex:livesdbpedia:Austin .}hasReviewhttp://…/review1http://…/isbn978Programming the Semantic WebtitledescriptionsameAshasReviewerAwesome Bookauthorhttp://…/isbn978Toby Segaranhttp://…/reviewernameisbn978-0-596-15381-6Juan SequedapublishersameAsnamehttp://…/publisher1O’Reillyhttp://juansequeda.comhttp://dbpedia.org/AustinlivesInnameJuan Sequeda
  • 69. This looks cool, but let’s be realistic. What is the incentive to publish Linked Data?
  • 70. What was your incentive to publish an HTML page in 1990?
  • 71. 1) Share data in documents2) Because you neighbor was doing it… later on …3) Marketing, Advertising, …, SEO
  • 72. So why should we publish Linked Data in 2011?
  • 73. 1) Share data as data2) Because you neighbor is doing it…3) Marketing, Advertising, SEO ++
  • 74. Linked Data PublishersUK GovernmentUS GovernmentBBCOpen Calais – Thomson ReutersFreebase/GoogleNY TimesBest BuySearsKmartOverstock.comCNETDbpediaO’Reilly Media…
  • 85. September 2011Linking Open Data cloud diagram, by Richard Cyganiak and AnjaJentzsch.http://lod-cloud.net/
  • 86. YOU GET THE PICTUREITS BIG and getting BIGGER andBIGGER