SlideShare una empresa de Scribd logo
1 de 22
Descargar para leer sin conexión
1                                                      eLiberatica – May 2007




                   Are you afraid of
                    Semantic Web?
                Dr. Sabin-Corneliu Buraga
                  Faculty of Computer Science
             “A.I.Cuza” University of Iaşi, România
               http://www.infoiasi.ro/~busaco/


Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
2                                                      eLiberatica – May 2007



    Attention, please… a first question for you:




            What is Semantic Web?


                                                        Any opinions?


Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
3                                                      eLiberatica – May 2007


             Some (possible) answers

      Semantic Web is…
          – A vision of Sir Tim Berners-Lee
            (the creator of World Wide Web)
          – A transition from “classical” Web to
            a more structured and flexible one
          – A way of describing data, in terms of
            metadata (data about data) and explain
            certain relations between resources

Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
4                                                      eLiberatica – May 2007


          They could told you that…

    …Semantic Web is:
       – Just hype – YABW (Yet Another Buzz Word)
       – Nothing but the Web 2.0 in disguise
       – About “strange” and complex formalisms
         (e.g., description logic)
       – A field of study for “mad” scientists and their
         flying ideas
       – Not applicable in practice
         (e.g., not interesting for industry)

Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
5                                                      eLiberatica – May 2007




                  Wrong!

Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
6                                                      eLiberatica – May 2007


                             The truth

      Semantic Web is already among us!
      Semantic Web is a misnomer – in fact,
      Data Web is a more suitable term
          – From “opaque” documents to
            machine understandable data
            (resources + links between them)
          – A plenty of tools, applications, services,
            expertise available

Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
7                                                      eLiberatica – May 2007


                           Ingredients

    RDF (Resource Description Framework)
       – Defining & describing data and
         relations among data
       – Suitable to attach metadata to certain resources
       – Data modeling must make the implicit explicit:
          “PHP is a programming language.”
          “pOWL is an application written in PHP.”
          “PHP is easy than C++.”
                     Some people can understand these assertions.
                                        How about the machines?

Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
8                                                      eLiberatica – May 2007


                           Ingredients

    RDF (Resource Description Framework)
       – A triple {subject, property, object} model
         hasWebsite (quot;#phpquot;, quot;http://www.php.net/quot;)
         isA (quot;#phpquot;, quot;#languagequot;)
         isWrittenIn (quot;http://powl.sf.net/quot;, quot;#phpquot;)
       – It’s all about triples of URIs
         (Uniform Resource Identifiers)
       – Many syntactic representations,
         including XML (Extensible Markup Language)

Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
9                                                      eLiberatica – May 2007


                           Ingredients

    RDF (Resource Description Framework)
       <rdf:RDF>
         <rdf:Description rdf:about=quot;http://powl.sf.net/quot;>
            <s:Title>PHP-based ontological Web platform.</s:Title>
            <s:Version s:major=quot;1quot; s:minor=quot;0quot; />
         </rdf:Description>
       </rdf:RDF>
                           Our defined metadata vocabulary

Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
10                                                     eLiberatica – May 2007


                           Ingredients

     OWL (Web Ontology Language)
       – Structuring and characterizing
         resources/relations
         (e.g., “PHP” is an instance of “Language” class)
       – Defining logical relationships among resources
         and the relationships (1-to-1, 1-to-many,…)
       – Based on RDF
       – Used to denote taxonomies, thesauri, ontologies

Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
11                                                     eLiberatica – May 2007


                    Other ingredients

     Metadata vocabularies
       – DCMI (Dublin Core Metadata Initiative)
       – FOAF (Friend Of A Friend)
       – DOAP (Description Of A Project)
       – SIOC (Semantically-Interlinked
         Online Communities)

       – …and many others

Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
12                                                     eLiberatica – May 2007


                    Other ingredients
     <foaf:Person rdf:ID=quot;lucianquot;>
       <foaf:name>Lucian Savluc</foaf:name>
     </foaf:Person>
     <foaf:Person rdf:ID=quot;sabinquot;>
       <foaf:name>Sabin Buraga</foaf:name>
       <foaf:homepage rdf:resource=quot;http://www.infoiasi.ro/~busacoquot; />
       <foaf:knows rdf:ID=quot;#lucianquot; />
     </foaf:Person>
     <foaf:Image rdf:about=quot;http://eliberatica.ro/2007/photos/part.jpgquot;>
       <dc:title>eLiberatica participants</dc:title>
       <foaf:depicts rdf:resource=quot;#lucianquot; />
       <foaf:depicts rdf:resource=quot;#sabinquot; />
     </foaf:Image>

Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
13                                                     eLiberatica – May 2007


                    Other ingredients
     Web syndication via RSS/Atom
       – Metadata about blog entries, wiki changes,…
       – Syndication as Web service
     Query via SPARQL
      SELECT ?name ?url
       WHERE {
         ?person foaf:name ?name.
         OPTIONAL{ ?person foaf:homepage ?url. }
       }
      ORDER BY DESC (?name)

Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
14                                                     eLiberatica – May 2007


                    Other ingredients
     Microformats
       – Embedding semantic constructs into XHTML
         documents
       – Using XHTML markups and CSS classes
       – Representative: hCard, hCalendar, hReview, hResume,
         geo, rel-tag,…
       – Useful for semantic tagging (folksonomies)
       – Suitable to create mash-ups, too

     More: RDFa, XHTML 2.0, ontologies for
     Web services, RIF (Rules Interchange Format) etc.
Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
15                                                     eLiberatica – May 2007


                    Other ingredients
     Microformats




Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
16                                                     eLiberatica – May 2007


                                  Tools
     • Firefox extensions for retrieving metadata:
       PiggyBank, Operator, Semantic Radar, Tails
     • Editors: Protégé, SWOOP, vi
     • Semantic platforms: Jena, KAON, pOWL,
       Redland
     • Semantic wikis: IkeWiki, Semantic
       MediaWiki, XWiki
     • Search for ontologies: Swoogle
Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
17                                                     eLiberatica – May 2007


                          Applications
     • Portals: Harper’s Online magazine,
       Sun’s SwordFish, Vodafone’s Live Mobile Portal
     • Agent systems: ADF, Zeus
     • Web services: WSMX
     • Biology: BioPAX, Haystack, Gene Ontology

     • Current directions: Health Care & Life Sciences,
       Public Administration, Engineering
     • Other initiatives: semantic search, semantic
       desktop, semantic mash-ups, semantic grid,…
     • Semantic anything?!
Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
18                                                     eLiberatica – May 2007



        Layered
      architecture
         of the
     Semantic Web
     (Berners-Lee,
         2006)




Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
19                                                     eLiberatica – May 2007


         This is just the beginning…




Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
20                                                     eLiberatica – May 2007


                      Places to visit…
     •   Web Consortium: www.w3.org
     •   PlanetRDF: www.planetrdf.com
     •   Microformats: www.microformats.org
     •   BabelFish: http://blogs.sun.com/bblfish/
     •   List of 250 Semantic Web tools:
         www.mkbergman.com/?p=347



Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
21                                                     eLiberatica – May 2007



     Attention, please… a second question for you:




 Are you afraid of Semantic Web?


                                                            Thank you!


Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
22                                                     eLiberatica – May 2007


                     Acknowledgment
     This presentation is based on many books,
     articles, and presentations regarding
     semantic Web technologies.




                    Thanks to Lenuta Alboaie, Sergiu Dumitriu,
                Laurian Gridinoc, Marta Girdea, Catalin Hritcu,
                            Anca-Paula Luca and many others...

Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/

Más contenido relacionado

La actualidad más candente

Web Technologies (4/12): Web Application Development in PHP
Web Technologies (4/12): Web Application Development in PHPWeb Technologies (4/12): Web Application Development in PHP
Web Technologies (4/12): Web Application Development in PHPSabin Buraga
 
Web Technologies (7/12): XML & HTML Data Processing. Document Object Model
Web Technologies (7/12): XML & HTML Data Processing. Document Object Model Web Technologies (7/12): XML & HTML Data Processing. Document Object Model
Web Technologies (7/12): XML & HTML Data Processing. Document Object Model Sabin Buraga
 
Towards 5-star Data in the E-university
Towards 5-star Data in the E-universityTowards 5-star Data in the E-university
Towards 5-star Data in the E-universitySabin Buraga
 
Web Technologies (12/12): Web Application Security
Web Technologies (12/12): Web Application SecurityWeb Technologies (12/12): Web Application Security
Web Technologies (12/12): Web Application SecuritySabin Buraga
 
Harith Alani's presentation at SSSW 2011
Harith Alani's presentation at SSSW 2011Harith Alani's presentation at SSSW 2011
Harith Alani's presentation at SSSW 2011sssw2011
 
Web Technologies (6/12): Data Modeling. Data Extraction with XPath. XML Valid...
Web Technologies (6/12): Data Modeling. Data Extraction with XPath. XML Valid...Web Technologies (6/12): Data Modeling. Data Extraction with XPath. XML Valid...
Web Technologies (6/12): Data Modeling. Data Extraction with XPath. XML Valid...Sabin Buraga
 
Web Technologies (8/12): XML & HTML Data Processing. Simple API for XML. Simp...
Web Technologies (8/12): XML & HTML Data Processing. Simple API for XML. Simp...Web Technologies (8/12): XML & HTML Data Processing. Simple API for XML. Simp...
Web Technologies (8/12): XML & HTML Data Processing. Simple API for XML. Simp...Sabin Buraga
 
Webinar: Semantic web for developers
Webinar: Semantic web for developersWebinar: Semantic web for developers
Webinar: Semantic web for developersSemantic Web Company
 
Lecture: Ontologies and the Semantic Web
Lecture: Ontologies and the Semantic WebLecture: Ontologies and the Semantic Web
Lecture: Ontologies and the Semantic WebMarina Santini
 
Linking Open Data with Drupal
Linking Open Data with DrupalLinking Open Data with Drupal
Linking Open Data with Drupalemmanuel_jamin
 
The Impact of Linked Data in Digital Curation and Application to the Catalogu...
The Impact of Linked Data in Digital Curation and Application to the Catalogu...The Impact of Linked Data in Digital Curation and Application to the Catalogu...
The Impact of Linked Data in Digital Curation and Application to the Catalogu...Ian Bigelow
 
Summarize Your Archival Holdings With MementoMap
Summarize Your Archival Holdings With MementoMapSummarize Your Archival Holdings With MementoMap
Summarize Your Archival Holdings With MementoMapSawood Alam
 
Web science AI and IA
Web science AI and IAWeb science AI and IA
Web science AI and IAFabien Gandon
 
MementoMap: A Web Archive Profiling Framework for Efficient Memento Routing
MementoMap: A Web Archive Profiling Framework for Efficient Memento RoutingMementoMap: A Web Archive Profiling Framework for Efficient Memento Routing
MementoMap: A Web Archive Profiling Framework for Efficient Memento RoutingSawood Alam
 
The Web We Mix - benevolent AIs for a resilient web
The Web We Mix - benevolent AIs for a resilient webThe Web We Mix - benevolent AIs for a resilient web
The Web We Mix - benevolent AIs for a resilient webFabien Gandon
 
The Semantic Web
The Semantic WebThe Semantic Web
The Semantic Webostephens
 
Realizing a Semantic Web Application - ICWE 2010 Tutorial
Realizing a Semantic Web Application - ICWE 2010 TutorialRealizing a Semantic Web Application - ICWE 2010 Tutorial
Realizing a Semantic Web Application - ICWE 2010 TutorialEmanuele Della Valle
 
Introduction to the Semantic Web
Introduction to the Semantic WebIntroduction to the Semantic Web
Introduction to the Semantic WebTomek Pluskiewicz
 

La actualidad más candente (20)

Web Technologies (4/12): Web Application Development in PHP
Web Technologies (4/12): Web Application Development in PHPWeb Technologies (4/12): Web Application Development in PHP
Web Technologies (4/12): Web Application Development in PHP
 
Web Technologies (7/12): XML & HTML Data Processing. Document Object Model
Web Technologies (7/12): XML & HTML Data Processing. Document Object Model Web Technologies (7/12): XML & HTML Data Processing. Document Object Model
Web Technologies (7/12): XML & HTML Data Processing. Document Object Model
 
Towards 5-star Data in the E-university
Towards 5-star Data in the E-universityTowards 5-star Data in the E-university
Towards 5-star Data in the E-university
 
Web Technologies (12/12): Web Application Security
Web Technologies (12/12): Web Application SecurityWeb Technologies (12/12): Web Application Security
Web Technologies (12/12): Web Application Security
 
Harith Alani's presentation at SSSW 2011
Harith Alani's presentation at SSSW 2011Harith Alani's presentation at SSSW 2011
Harith Alani's presentation at SSSW 2011
 
Web Technologies (6/12): Data Modeling. Data Extraction with XPath. XML Valid...
Web Technologies (6/12): Data Modeling. Data Extraction with XPath. XML Valid...Web Technologies (6/12): Data Modeling. Data Extraction with XPath. XML Valid...
Web Technologies (6/12): Data Modeling. Data Extraction with XPath. XML Valid...
 
Web Technologies (8/12): XML & HTML Data Processing. Simple API for XML. Simp...
Web Technologies (8/12): XML & HTML Data Processing. Simple API for XML. Simp...Web Technologies (8/12): XML & HTML Data Processing. Simple API for XML. Simp...
Web Technologies (8/12): XML & HTML Data Processing. Simple API for XML. Simp...
 
Webinar: Semantic web for developers
Webinar: Semantic web for developersWebinar: Semantic web for developers
Webinar: Semantic web for developers
 
Lecture: Ontologies and the Semantic Web
Lecture: Ontologies and the Semantic WebLecture: Ontologies and the Semantic Web
Lecture: Ontologies and the Semantic Web
 
Linking Open Data with Drupal
Linking Open Data with DrupalLinking Open Data with Drupal
Linking Open Data with Drupal
 
Why 5-Star Data?
Why 5-Star Data?Why 5-Star Data?
Why 5-Star Data?
 
The Impact of Linked Data in Digital Curation and Application to the Catalogu...
The Impact of Linked Data in Digital Curation and Application to the Catalogu...The Impact of Linked Data in Digital Curation and Application to the Catalogu...
The Impact of Linked Data in Digital Curation and Application to the Catalogu...
 
Summarize Your Archival Holdings With MementoMap
Summarize Your Archival Holdings With MementoMapSummarize Your Archival Holdings With MementoMap
Summarize Your Archival Holdings With MementoMap
 
Web science AI and IA
Web science AI and IAWeb science AI and IA
Web science AI and IA
 
MementoMap: A Web Archive Profiling Framework for Efficient Memento Routing
MementoMap: A Web Archive Profiling Framework for Efficient Memento RoutingMementoMap: A Web Archive Profiling Framework for Efficient Memento Routing
MementoMap: A Web Archive Profiling Framework for Efficient Memento Routing
 
The Web We Mix - benevolent AIs for a resilient web
The Web We Mix - benevolent AIs for a resilient webThe Web We Mix - benevolent AIs for a resilient web
The Web We Mix - benevolent AIs for a resilient web
 
Jarrar: RDFa
Jarrar: RDFaJarrar: RDFa
Jarrar: RDFa
 
The Semantic Web
The Semantic WebThe Semantic Web
The Semantic Web
 
Realizing a Semantic Web Application - ICWE 2010 Tutorial
Realizing a Semantic Web Application - ICWE 2010 TutorialRealizing a Semantic Web Application - ICWE 2010 Tutorial
Realizing a Semantic Web Application - ICWE 2010 Tutorial
 
Introduction to the Semantic Web
Introduction to the Semantic WebIntroduction to the Semantic Web
Introduction to the Semantic Web
 

Destacado

Using Semantic Web Technologies to Discover Resources within the Intranet of ...
Using Semantic Web Technologies to Discover Resources within the Intranet of ...Using Semantic Web Technologies to Discover Resources within the Intranet of ...
Using Semantic Web Technologies to Discover Resources within the Intranet of ...Sabin Buraga
 
Telemon - SOA-based e-health system
Telemon - SOA-based e-health systemTelemon - SOA-based e-health system
Telemon - SOA-based e-health systemSabin Buraga
 
Retele ed4 tanenbaum(romana)
Retele ed4 tanenbaum(romana)Retele ed4 tanenbaum(romana)
Retele ed4 tanenbaum(romana)Cornel Bubu
 
Semantic Web Semantic Web-based Agent Applications based Agent Applications –...
Semantic Web Semantic Web-based Agent Applications based Agent Applications –...Semantic Web Semantic Web-based Agent Applications based Agent Applications –...
Semantic Web Semantic Web-based Agent Applications based Agent Applications –...Sabin Buraga
 
Sabin Buraga: Open Web Application Development, Mozilla, and You
Sabin Buraga: Open Web Application Development, Mozilla, and YouSabin Buraga: Open Web Application Development, Mozilla, and You
Sabin Buraga: Open Web Application Development, Mozilla, and YouSabin Buraga
 
Any Colour You Like
Any Colour You LikeAny Colour You Like
Any Colour You LikeSabin Buraga
 
Dezvoltarea aplicaţiilor Web la nivel de client (cursul #5): Data Visualizati...
Dezvoltarea aplicaţiilor Web la nivel de client (cursul #5): Data Visualizati...Dezvoltarea aplicaţiilor Web la nivel de client (cursul #5): Data Visualizati...
Dezvoltarea aplicaţiilor Web la nivel de client (cursul #5): Data Visualizati...Sabin Buraga
 
L. Alboaie, S. Buraga: "Servicii Web. Concepte de bază și implementări" (2006)
L. Alboaie, S. Buraga: "Servicii Web. Concepte de bază și implementări" (2006)L. Alboaie, S. Buraga: "Servicii Web. Concepte de bază și implementări" (2006)
L. Alboaie, S. Buraga: "Servicii Web. Concepte de bază și implementări" (2006)Sabin Buraga
 
Cu codul în "nori"
Cu codul în "nori"Cu codul în "nori"
Cu codul în "nori"Sabin Buraga
 
Dezvoltator Web?! – ...în 2016
Dezvoltator Web?! – ...în 2016Dezvoltator Web?! – ...în 2016
Dezvoltator Web?! – ...în 2016Sabin Buraga
 
HTML5 în XXX de minute
HTML5 în XXX de minuteHTML5 în XXX de minute
HTML5 în XXX de minuteSabin Buraga
 
Foi de stiluri CSS – concepte esențiale (...și puțin mai mult)
Foi de stiluri CSS – concepte esențiale (...și puțin mai mult)Foi de stiluri CSS – concepte esențiale (...și puțin mai mult)
Foi de stiluri CSS – concepte esențiale (...și puțin mai mult)Sabin Buraga
 
Sabin Buraga: 'Tehnologii XML'
Sabin Buraga: 'Tehnologii XML'Sabin Buraga: 'Tehnologii XML'
Sabin Buraga: 'Tehnologii XML'Sabin Buraga
 

Destacado (16)

Using Semantic Web Technologies to Discover Resources within the Intranet of ...
Using Semantic Web Technologies to Discover Resources within the Intranet of ...Using Semantic Web Technologies to Discover Resources within the Intranet of ...
Using Semantic Web Technologies to Discover Resources within the Intranet of ...
 
Telemon - SOA-based e-health system
Telemon - SOA-based e-health systemTelemon - SOA-based e-health system
Telemon - SOA-based e-health system
 
Retele ed4 tanenbaum(romana)
Retele ed4 tanenbaum(romana)Retele ed4 tanenbaum(romana)
Retele ed4 tanenbaum(romana)
 
Semantic Web Semantic Web-based Agent Applications based Agent Applications –...
Semantic Web Semantic Web-based Agent Applications based Agent Applications –...Semantic Web Semantic Web-based Agent Applications based Agent Applications –...
Semantic Web Semantic Web-based Agent Applications based Agent Applications –...
 
Sabin Buraga: Open Web Application Development, Mozilla, and You
Sabin Buraga: Open Web Application Development, Mozilla, and YouSabin Buraga: Open Web Application Development, Mozilla, and You
Sabin Buraga: Open Web Application Development, Mozilla, and You
 
Web - CGI
Web - CGIWeb - CGI
Web - CGI
 
Web - PHP
Web - PHPWeb - PHP
Web - PHP
 
Any Colour You Like
Any Colour You LikeAny Colour You Like
Any Colour You Like
 
Dezvoltarea aplicaţiilor Web la nivel de client (cursul #5): Data Visualizati...
Dezvoltarea aplicaţiilor Web la nivel de client (cursul #5): Data Visualizati...Dezvoltarea aplicaţiilor Web la nivel de client (cursul #5): Data Visualizati...
Dezvoltarea aplicaţiilor Web la nivel de client (cursul #5): Data Visualizati...
 
L. Alboaie, S. Buraga: "Servicii Web. Concepte de bază și implementări" (2006)
L. Alboaie, S. Buraga: "Servicii Web. Concepte de bază și implementări" (2006)L. Alboaie, S. Buraga: "Servicii Web. Concepte de bază și implementări" (2006)
L. Alboaie, S. Buraga: "Servicii Web. Concepte de bază și implementări" (2006)
 
25 de ani de Web
25 de ani de Web 25 de ani de Web
25 de ani de Web
 
Cu codul în "nori"
Cu codul în "nori"Cu codul în "nori"
Cu codul în "nori"
 
Dezvoltator Web?! – ...în 2016
Dezvoltator Web?! – ...în 2016Dezvoltator Web?! – ...în 2016
Dezvoltator Web?! – ...în 2016
 
HTML5 în XXX de minute
HTML5 în XXX de minuteHTML5 în XXX de minute
HTML5 în XXX de minute
 
Foi de stiluri CSS – concepte esențiale (...și puțin mai mult)
Foi de stiluri CSS – concepte esențiale (...și puțin mai mult)Foi de stiluri CSS – concepte esențiale (...și puțin mai mult)
Foi de stiluri CSS – concepte esențiale (...și puțin mai mult)
 
Sabin Buraga: 'Tehnologii XML'
Sabin Buraga: 'Tehnologii XML'Sabin Buraga: 'Tehnologii XML'
Sabin Buraga: 'Tehnologii XML'
 

Similar a Are You Afraid of Semantic Web?

Web13 Semantic Web: Retrospective si perspective
Web13 Semantic Web: Retrospective si perspectiveWeb13 Semantic Web: Retrospective si perspective
Web13 Semantic Web: Retrospective si perspectiveSabin Buraga
 
Web09 Semantic Web: Inginerie Ontologica (II)
Web09 Semantic Web: Inginerie Ontologica (II)Web09 Semantic Web: Inginerie Ontologica (II)
Web09 Semantic Web: Inginerie Ontologica (II)Sabin Buraga
 
Why libraries should embrace Linked Data
Why libraries should embrace Linked DataWhy libraries should embrace Linked Data
Why libraries should embrace Linked Dataeby
 
Semantic Web-based Knowledge Management in Distributed Systems
Semantic Web-based Knowledge Management in Distributed SystemsSemantic Web-based Knowledge Management in Distributed Systems
Semantic Web-based Knowledge Management in Distributed SystemsSabin Buraga
 
BOA - How To Integrate Your Language
BOA - How To Integrate Your LanguageBOA - How To Integrate Your Language
BOA - How To Integrate Your LanguageDaniel Gerber
 
Semantic Social Web
Semantic Social WebSemantic Social Web
Semantic Social WebSabin Buraga
 
Orizonturi Web (Web Horizons)
Orizonturi Web (Web Horizons)Orizonturi Web (Web Horizons)
Orizonturi Web (Web Horizons)Sabin Buraga
 
Linked data and semantic wikis
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikisSören Auer
 
Metadata for researchers
Metadata for researchers Metadata for researchers
Metadata for researchers Getaneh Alemu
 
Hello Open World - The Web of Data for the Pragmatic Developer
Hello Open World - The Web of Data for the Pragmatic DeveloperHello Open World - The Web of Data for the Pragmatic Developer
Hello Open World - The Web of Data for the Pragmatic DeveloperAlexandre Passant
 
WebGUI And The Semantic Web
WebGUI And The Semantic WebWebGUI And The Semantic Web
WebGUI And The Semantic WebWilliam McKee
 
GDG Meets U event - Big data & Wikidata - no lies codelab
GDG Meets U event - Big data & Wikidata -  no lies codelabGDG Meets U event - Big data & Wikidata -  no lies codelab
GDG Meets U event - Big data & Wikidata - no lies codelabCAMELIA BOBAN
 
Semantic Web 2.0: Creating Social Semantic Information Spaces
Semantic Web 2.0: Creating Social Semantic Information SpacesSemantic Web 2.0: Creating Social Semantic Information Spaces
Semantic Web 2.0: Creating Social Semantic Information SpacesJohn Breslin
 
Information Extraction and Linked Data Cloud
Information Extraction and Linked Data CloudInformation Extraction and Linked Data Cloud
Information Extraction and Linked Data CloudDhaval Thakker
 

Similar a Are You Afraid of Semantic Web? (20)

Web13 Semantic Web: Retrospective si perspective
Web13 Semantic Web: Retrospective si perspectiveWeb13 Semantic Web: Retrospective si perspective
Web13 Semantic Web: Retrospective si perspective
 
World Wide Web
World Wide WebWorld Wide Web
World Wide Web
 
Web09 Semantic Web: Inginerie Ontologica (II)
Web09 Semantic Web: Inginerie Ontologica (II)Web09 Semantic Web: Inginerie Ontologica (II)
Web09 Semantic Web: Inginerie Ontologica (II)
 
Why libraries should embrace Linked Data
Why libraries should embrace Linked DataWhy libraries should embrace Linked Data
Why libraries should embrace Linked Data
 
Semantic Web-based Knowledge Management in Distributed Systems
Semantic Web-based Knowledge Management in Distributed SystemsSemantic Web-based Knowledge Management in Distributed Systems
Semantic Web-based Knowledge Management in Distributed Systems
 
ITWS Capstone Lecture (Spring 2013)
ITWS Capstone Lecture (Spring 2013)ITWS Capstone Lecture (Spring 2013)
ITWS Capstone Lecture (Spring 2013)
 
The Semantic Web: RPI ITWS Capstone (Fall 2012)
The Semantic Web: RPI ITWS Capstone (Fall 2012)The Semantic Web: RPI ITWS Capstone (Fall 2012)
The Semantic Web: RPI ITWS Capstone (Fall 2012)
 
BOA - How To Integrate Your Language
BOA - How To Integrate Your LanguageBOA - How To Integrate Your Language
BOA - How To Integrate Your Language
 
Connecting the Dots: Constellations in the Linked Data Universe
Connecting the Dots: Constellations in the Linked Data UniverseConnecting the Dots: Constellations in the Linked Data Universe
Connecting the Dots: Constellations in the Linked Data Universe
 
Semantic Social Web
Semantic Social WebSemantic Social Web
Semantic Social Web
 
Orizonturi Web (Web Horizons)
Orizonturi Web (Web Horizons)Orizonturi Web (Web Horizons)
Orizonturi Web (Web Horizons)
 
Linked data and semantic wikis
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikis
 
Metadata for researchers
Metadata for researchers Metadata for researchers
Metadata for researchers
 
Hello Open World - The Web of Data for the Pragmatic Developer
Hello Open World - The Web of Data for the Pragmatic DeveloperHello Open World - The Web of Data for the Pragmatic Developer
Hello Open World - The Web of Data for the Pragmatic Developer
 
When?
When?When?
When?
 
WebGUI And The Semantic Web
WebGUI And The Semantic WebWebGUI And The Semantic Web
WebGUI And The Semantic Web
 
Biodiversity Informatics on the Semantic Web
Biodiversity Informatics on the Semantic WebBiodiversity Informatics on the Semantic Web
Biodiversity Informatics on the Semantic Web
 
GDG Meets U event - Big data & Wikidata - no lies codelab
GDG Meets U event - Big data & Wikidata -  no lies codelabGDG Meets U event - Big data & Wikidata -  no lies codelab
GDG Meets U event - Big data & Wikidata - no lies codelab
 
Semantic Web 2.0: Creating Social Semantic Information Spaces
Semantic Web 2.0: Creating Social Semantic Information SpacesSemantic Web 2.0: Creating Social Semantic Information Spaces
Semantic Web 2.0: Creating Social Semantic Information Spaces
 
Information Extraction and Linked Data Cloud
Information Extraction and Linked Data CloudInformation Extraction and Linked Data Cloud
Information Extraction and Linked Data Cloud
 

Más de Sabin Buraga

Web 2020 01/12: World Wide Web – aspecte arhitecturale
Web 2020 01/12: World Wide Web – aspecte arhitecturaleWeb 2020 01/12: World Wide Web – aspecte arhitecturale
Web 2020 01/12: World Wide Web – aspecte arhitecturaleSabin Buraga
 
Web 2020 02/12: Programare Web – HTTP. Cookie-uri. Sesiuni Web
Web 2020 02/12: Programare Web – HTTP. Cookie-uri. Sesiuni WebWeb 2020 02/12: Programare Web – HTTP. Cookie-uri. Sesiuni Web
Web 2020 02/12: Programare Web – HTTP. Cookie-uri. Sesiuni WebSabin Buraga
 
Web 2020 03/12: Programare Web – Arhitectura aplicaţiilor Web. Inginerie Web
Web 2020 03/12: Programare Web – Arhitectura aplicaţiilor Web. Inginerie WebWeb 2020 03/12: Programare Web – Arhitectura aplicaţiilor Web. Inginerie Web
Web 2020 03/12: Programare Web – Arhitectura aplicaţiilor Web. Inginerie WebSabin Buraga
 
Web 2020 04/12: Programare Web – Dezvoltarea aplicaţiilor Web în PHP
Web 2020 04/12: Programare Web – Dezvoltarea aplicaţiilor Web în PHP Web 2020 04/12: Programare Web – Dezvoltarea aplicaţiilor Web în PHP
Web 2020 04/12: Programare Web – Dezvoltarea aplicaţiilor Web în PHP Sabin Buraga
 
Web 2020 05/12: Modelarea datelor. Familia XML. Extragerea datelor cu XPath. ...
Web 2020 05/12: Modelarea datelor. Familia XML. Extragerea datelor cu XPath. ...Web 2020 05/12: Modelarea datelor. Familia XML. Extragerea datelor cu XPath. ...
Web 2020 05/12: Modelarea datelor. Familia XML. Extragerea datelor cu XPath. ...Sabin Buraga
 
Web 2020 06/12: Procesarea datelor XML & HTML. Document Object Model
Web 2020 06/12: Procesarea datelor XML & HTML. Document Object ModelWeb 2020 06/12: Procesarea datelor XML & HTML. Document Object Model
Web 2020 06/12: Procesarea datelor XML & HTML. Document Object ModelSabin Buraga
 
Web 2020 07/12: Procesarea datelor XML & HTML – Simple API for XML. Procesări...
Web 2020 07/12: Procesarea datelor XML & HTML – Simple API for XML. Procesări...Web 2020 07/12: Procesarea datelor XML & HTML – Simple API for XML. Procesări...
Web 2020 07/12: Procesarea datelor XML & HTML – Simple API for XML. Procesări...Sabin Buraga
 
Web 2020 08/12: Servicii Web. De la arhitecturi orientate spre servicii la SO...
Web 2020 08/12: Servicii Web. De la arhitecturi orientate spre servicii la SO...Web 2020 08/12: Servicii Web. De la arhitecturi orientate spre servicii la SO...
Web 2020 08/12: Servicii Web. De la arhitecturi orientate spre servicii la SO...Sabin Buraga
 
Web 2020 09/12: Servicii Web. Paradigma REST
Web 2020 09/12: Servicii Web. Paradigma RESTWeb 2020 09/12: Servicii Web. Paradigma REST
Web 2020 09/12: Servicii Web. Paradigma RESTSabin Buraga
 
Web 2020 10/12: Servicii Web. Micro-servicii. Serverless. Specificarea API-ur...
Web 2020 10/12: Servicii Web. Micro-servicii. Serverless. Specificarea API-ur...Web 2020 10/12: Servicii Web. Micro-servicii. Serverless. Specificarea API-ur...
Web 2020 10/12: Servicii Web. Micro-servicii. Serverless. Specificarea API-ur...Sabin Buraga
 
Web 2020 11/12: Interacţiune Web asincronă. Aplicaţii Web de tip mash-up. JAM...
Web 2020 11/12: Interacţiune Web asincronă. Aplicaţii Web de tip mash-up. JAM...Web 2020 11/12: Interacţiune Web asincronă. Aplicaţii Web de tip mash-up. JAM...
Web 2020 11/12: Interacţiune Web asincronă. Aplicaţii Web de tip mash-up. JAM...Sabin Buraga
 
Web 2020 12/12: Securitatea aplicaţiilor Web. Aspecte esenţiale
Web 2020 12/12: Securitatea aplicaţiilor Web. Aspecte esenţialeWeb 2020 12/12: Securitatea aplicaţiilor Web. Aspecte esenţiale
Web 2020 12/12: Securitatea aplicaţiilor Web. Aspecte esenţialeSabin Buraga
 
STAW 01/12: Arhitectura aplicaţiilor Web
STAW 01/12: Arhitectura aplicaţiilor WebSTAW 01/12: Arhitectura aplicaţiilor Web
STAW 01/12: Arhitectura aplicaţiilor WebSabin Buraga
 
STAW 02/12: Programare Web: Limbajul JavaScript. Aspecte esenţiale
STAW 02/12: Programare Web: Limbajul JavaScript. Aspecte esenţialeSTAW 02/12: Programare Web: Limbajul JavaScript. Aspecte esenţiale
STAW 02/12: Programare Web: Limbajul JavaScript. Aspecte esenţialeSabin Buraga
 
STAW 03/12: Programare Web: Limbajul JavaScript. Aspecte moderne: ES6 et al.
STAW 03/12: Programare Web: Limbajul JavaScript. Aspecte moderne: ES6 et al.STAW 03/12: Programare Web: Limbajul JavaScript. Aspecte moderne: ES6 et al.
STAW 03/12: Programare Web: Limbajul JavaScript. Aspecte moderne: ES6 et al.Sabin Buraga
 
STAW 04/12: Programare Web: Node.js
STAW 04/12: Programare Web: Node.jsSTAW 04/12: Programare Web: Node.js
STAW 04/12: Programare Web: Node.jsSabin Buraga
 
STAW 05/12: Arhitectura navigatorului Web
STAW 05/12: Arhitectura navigatorului WebSTAW 05/12: Arhitectura navigatorului Web
STAW 05/12: Arhitectura navigatorului WebSabin Buraga
 
STAW 06/12: JavaScript în navigatorul Web. De la DOM la Ajax şi mash-up-uri
STAW 06/12: JavaScript în navigatorul Web. De la DOM la Ajax şi mash-up-uriSTAW 06/12: JavaScript în navigatorul Web. De la DOM la Ajax şi mash-up-uri
STAW 06/12: JavaScript în navigatorul Web. De la DOM la Ajax şi mash-up-uriSabin Buraga
 
STAW 07/12: Ingineria dezvoltării aplicaţiilor JavaScript
STAW 07/12: Ingineria dezvoltării aplicaţiilor JavaScriptSTAW 07/12: Ingineria dezvoltării aplicaţiilor JavaScript
STAW 07/12: Ingineria dezvoltării aplicaţiilor JavaScriptSabin Buraga
 
STAW 08/12: Programare Web. Suita de tehnologii HTML5
STAW 08/12: Programare Web. Suita de tehnologii HTML5STAW 08/12: Programare Web. Suita de tehnologii HTML5
STAW 08/12: Programare Web. Suita de tehnologii HTML5Sabin Buraga
 

Más de Sabin Buraga (20)

Web 2020 01/12: World Wide Web – aspecte arhitecturale
Web 2020 01/12: World Wide Web – aspecte arhitecturaleWeb 2020 01/12: World Wide Web – aspecte arhitecturale
Web 2020 01/12: World Wide Web – aspecte arhitecturale
 
Web 2020 02/12: Programare Web – HTTP. Cookie-uri. Sesiuni Web
Web 2020 02/12: Programare Web – HTTP. Cookie-uri. Sesiuni WebWeb 2020 02/12: Programare Web – HTTP. Cookie-uri. Sesiuni Web
Web 2020 02/12: Programare Web – HTTP. Cookie-uri. Sesiuni Web
 
Web 2020 03/12: Programare Web – Arhitectura aplicaţiilor Web. Inginerie Web
Web 2020 03/12: Programare Web – Arhitectura aplicaţiilor Web. Inginerie WebWeb 2020 03/12: Programare Web – Arhitectura aplicaţiilor Web. Inginerie Web
Web 2020 03/12: Programare Web – Arhitectura aplicaţiilor Web. Inginerie Web
 
Web 2020 04/12: Programare Web – Dezvoltarea aplicaţiilor Web în PHP
Web 2020 04/12: Programare Web – Dezvoltarea aplicaţiilor Web în PHP Web 2020 04/12: Programare Web – Dezvoltarea aplicaţiilor Web în PHP
Web 2020 04/12: Programare Web – Dezvoltarea aplicaţiilor Web în PHP
 
Web 2020 05/12: Modelarea datelor. Familia XML. Extragerea datelor cu XPath. ...
Web 2020 05/12: Modelarea datelor. Familia XML. Extragerea datelor cu XPath. ...Web 2020 05/12: Modelarea datelor. Familia XML. Extragerea datelor cu XPath. ...
Web 2020 05/12: Modelarea datelor. Familia XML. Extragerea datelor cu XPath. ...
 
Web 2020 06/12: Procesarea datelor XML & HTML. Document Object Model
Web 2020 06/12: Procesarea datelor XML & HTML. Document Object ModelWeb 2020 06/12: Procesarea datelor XML & HTML. Document Object Model
Web 2020 06/12: Procesarea datelor XML & HTML. Document Object Model
 
Web 2020 07/12: Procesarea datelor XML & HTML – Simple API for XML. Procesări...
Web 2020 07/12: Procesarea datelor XML & HTML – Simple API for XML. Procesări...Web 2020 07/12: Procesarea datelor XML & HTML – Simple API for XML. Procesări...
Web 2020 07/12: Procesarea datelor XML & HTML – Simple API for XML. Procesări...
 
Web 2020 08/12: Servicii Web. De la arhitecturi orientate spre servicii la SO...
Web 2020 08/12: Servicii Web. De la arhitecturi orientate spre servicii la SO...Web 2020 08/12: Servicii Web. De la arhitecturi orientate spre servicii la SO...
Web 2020 08/12: Servicii Web. De la arhitecturi orientate spre servicii la SO...
 
Web 2020 09/12: Servicii Web. Paradigma REST
Web 2020 09/12: Servicii Web. Paradigma RESTWeb 2020 09/12: Servicii Web. Paradigma REST
Web 2020 09/12: Servicii Web. Paradigma REST
 
Web 2020 10/12: Servicii Web. Micro-servicii. Serverless. Specificarea API-ur...
Web 2020 10/12: Servicii Web. Micro-servicii. Serverless. Specificarea API-ur...Web 2020 10/12: Servicii Web. Micro-servicii. Serverless. Specificarea API-ur...
Web 2020 10/12: Servicii Web. Micro-servicii. Serverless. Specificarea API-ur...
 
Web 2020 11/12: Interacţiune Web asincronă. Aplicaţii Web de tip mash-up. JAM...
Web 2020 11/12: Interacţiune Web asincronă. Aplicaţii Web de tip mash-up. JAM...Web 2020 11/12: Interacţiune Web asincronă. Aplicaţii Web de tip mash-up. JAM...
Web 2020 11/12: Interacţiune Web asincronă. Aplicaţii Web de tip mash-up. JAM...
 
Web 2020 12/12: Securitatea aplicaţiilor Web. Aspecte esenţiale
Web 2020 12/12: Securitatea aplicaţiilor Web. Aspecte esenţialeWeb 2020 12/12: Securitatea aplicaţiilor Web. Aspecte esenţiale
Web 2020 12/12: Securitatea aplicaţiilor Web. Aspecte esenţiale
 
STAW 01/12: Arhitectura aplicaţiilor Web
STAW 01/12: Arhitectura aplicaţiilor WebSTAW 01/12: Arhitectura aplicaţiilor Web
STAW 01/12: Arhitectura aplicaţiilor Web
 
STAW 02/12: Programare Web: Limbajul JavaScript. Aspecte esenţiale
STAW 02/12: Programare Web: Limbajul JavaScript. Aspecte esenţialeSTAW 02/12: Programare Web: Limbajul JavaScript. Aspecte esenţiale
STAW 02/12: Programare Web: Limbajul JavaScript. Aspecte esenţiale
 
STAW 03/12: Programare Web: Limbajul JavaScript. Aspecte moderne: ES6 et al.
STAW 03/12: Programare Web: Limbajul JavaScript. Aspecte moderne: ES6 et al.STAW 03/12: Programare Web: Limbajul JavaScript. Aspecte moderne: ES6 et al.
STAW 03/12: Programare Web: Limbajul JavaScript. Aspecte moderne: ES6 et al.
 
STAW 04/12: Programare Web: Node.js
STAW 04/12: Programare Web: Node.jsSTAW 04/12: Programare Web: Node.js
STAW 04/12: Programare Web: Node.js
 
STAW 05/12: Arhitectura navigatorului Web
STAW 05/12: Arhitectura navigatorului WebSTAW 05/12: Arhitectura navigatorului Web
STAW 05/12: Arhitectura navigatorului Web
 
STAW 06/12: JavaScript în navigatorul Web. De la DOM la Ajax şi mash-up-uri
STAW 06/12: JavaScript în navigatorul Web. De la DOM la Ajax şi mash-up-uriSTAW 06/12: JavaScript în navigatorul Web. De la DOM la Ajax şi mash-up-uri
STAW 06/12: JavaScript în navigatorul Web. De la DOM la Ajax şi mash-up-uri
 
STAW 07/12: Ingineria dezvoltării aplicaţiilor JavaScript
STAW 07/12: Ingineria dezvoltării aplicaţiilor JavaScriptSTAW 07/12: Ingineria dezvoltării aplicaţiilor JavaScript
STAW 07/12: Ingineria dezvoltării aplicaţiilor JavaScript
 
STAW 08/12: Programare Web. Suita de tehnologii HTML5
STAW 08/12: Programare Web. Suita de tehnologii HTML5STAW 08/12: Programare Web. Suita de tehnologii HTML5
STAW 08/12: Programare Web. Suita de tehnologii HTML5
 

Último

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 

Último (20)

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 

Are You Afraid of Semantic Web?

  • 1. 1 eLiberatica – May 2007 Are you afraid of Semantic Web? Dr. Sabin-Corneliu Buraga Faculty of Computer Science “A.I.Cuza” University of Iaşi, România http://www.infoiasi.ro/~busaco/ Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 2. 2 eLiberatica – May 2007 Attention, please… a first question for you: What is Semantic Web? Any opinions? Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 3. 3 eLiberatica – May 2007 Some (possible) answers Semantic Web is… – A vision of Sir Tim Berners-Lee (the creator of World Wide Web) – A transition from “classical” Web to a more structured and flexible one – A way of describing data, in terms of metadata (data about data) and explain certain relations between resources Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 4. 4 eLiberatica – May 2007 They could told you that… …Semantic Web is: – Just hype – YABW (Yet Another Buzz Word) – Nothing but the Web 2.0 in disguise – About “strange” and complex formalisms (e.g., description logic) – A field of study for “mad” scientists and their flying ideas – Not applicable in practice (e.g., not interesting for industry) Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 5. 5 eLiberatica – May 2007 Wrong! Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 6. 6 eLiberatica – May 2007 The truth Semantic Web is already among us! Semantic Web is a misnomer – in fact, Data Web is a more suitable term – From “opaque” documents to machine understandable data (resources + links between them) – A plenty of tools, applications, services, expertise available Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 7. 7 eLiberatica – May 2007 Ingredients RDF (Resource Description Framework) – Defining & describing data and relations among data – Suitable to attach metadata to certain resources – Data modeling must make the implicit explicit: “PHP is a programming language.” “pOWL is an application written in PHP.” “PHP is easy than C++.” Some people can understand these assertions. How about the machines? Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 8. 8 eLiberatica – May 2007 Ingredients RDF (Resource Description Framework) – A triple {subject, property, object} model hasWebsite (quot;#phpquot;, quot;http://www.php.net/quot;) isA (quot;#phpquot;, quot;#languagequot;) isWrittenIn (quot;http://powl.sf.net/quot;, quot;#phpquot;) – It’s all about triples of URIs (Uniform Resource Identifiers) – Many syntactic representations, including XML (Extensible Markup Language) Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 9. 9 eLiberatica – May 2007 Ingredients RDF (Resource Description Framework) <rdf:RDF> <rdf:Description rdf:about=quot;http://powl.sf.net/quot;> <s:Title>PHP-based ontological Web platform.</s:Title> <s:Version s:major=quot;1quot; s:minor=quot;0quot; /> </rdf:Description> </rdf:RDF> Our defined metadata vocabulary Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 10. 10 eLiberatica – May 2007 Ingredients OWL (Web Ontology Language) – Structuring and characterizing resources/relations (e.g., “PHP” is an instance of “Language” class) – Defining logical relationships among resources and the relationships (1-to-1, 1-to-many,…) – Based on RDF – Used to denote taxonomies, thesauri, ontologies Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 11. 11 eLiberatica – May 2007 Other ingredients Metadata vocabularies – DCMI (Dublin Core Metadata Initiative) – FOAF (Friend Of A Friend) – DOAP (Description Of A Project) – SIOC (Semantically-Interlinked Online Communities) – …and many others Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 12. 12 eLiberatica – May 2007 Other ingredients <foaf:Person rdf:ID=quot;lucianquot;> <foaf:name>Lucian Savluc</foaf:name> </foaf:Person> <foaf:Person rdf:ID=quot;sabinquot;> <foaf:name>Sabin Buraga</foaf:name> <foaf:homepage rdf:resource=quot;http://www.infoiasi.ro/~busacoquot; /> <foaf:knows rdf:ID=quot;#lucianquot; /> </foaf:Person> <foaf:Image rdf:about=quot;http://eliberatica.ro/2007/photos/part.jpgquot;> <dc:title>eLiberatica participants</dc:title> <foaf:depicts rdf:resource=quot;#lucianquot; /> <foaf:depicts rdf:resource=quot;#sabinquot; /> </foaf:Image> Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 13. 13 eLiberatica – May 2007 Other ingredients Web syndication via RSS/Atom – Metadata about blog entries, wiki changes,… – Syndication as Web service Query via SPARQL SELECT ?name ?url WHERE { ?person foaf:name ?name. OPTIONAL{ ?person foaf:homepage ?url. } } ORDER BY DESC (?name) Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 14. 14 eLiberatica – May 2007 Other ingredients Microformats – Embedding semantic constructs into XHTML documents – Using XHTML markups and CSS classes – Representative: hCard, hCalendar, hReview, hResume, geo, rel-tag,… – Useful for semantic tagging (folksonomies) – Suitable to create mash-ups, too More: RDFa, XHTML 2.0, ontologies for Web services, RIF (Rules Interchange Format) etc. Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 15. 15 eLiberatica – May 2007 Other ingredients Microformats Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 16. 16 eLiberatica – May 2007 Tools • Firefox extensions for retrieving metadata: PiggyBank, Operator, Semantic Radar, Tails • Editors: Protégé, SWOOP, vi • Semantic platforms: Jena, KAON, pOWL, Redland • Semantic wikis: IkeWiki, Semantic MediaWiki, XWiki • Search for ontologies: Swoogle Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 17. 17 eLiberatica – May 2007 Applications • Portals: Harper’s Online magazine, Sun’s SwordFish, Vodafone’s Live Mobile Portal • Agent systems: ADF, Zeus • Web services: WSMX • Biology: BioPAX, Haystack, Gene Ontology • Current directions: Health Care & Life Sciences, Public Administration, Engineering • Other initiatives: semantic search, semantic desktop, semantic mash-ups, semantic grid,… • Semantic anything?! Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 18. 18 eLiberatica – May 2007 Layered architecture of the Semantic Web (Berners-Lee, 2006) Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 19. 19 eLiberatica – May 2007 This is just the beginning… Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 20. 20 eLiberatica – May 2007 Places to visit… • Web Consortium: www.w3.org • PlanetRDF: www.planetrdf.com • Microformats: www.microformats.org • BabelFish: http://blogs.sun.com/bblfish/ • List of 250 Semantic Web tools: www.mkbergman.com/?p=347 Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 21. 21 eLiberatica – May 2007 Attention, please… a second question for you: Are you afraid of Semantic Web? Thank you! Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/
  • 22. 22 eLiberatica – May 2007 Acknowledgment This presentation is based on many books, articles, and presentations regarding semantic Web technologies. Thanks to Lenuta Alboaie, Sergiu Dumitriu, Laurian Gridinoc, Marta Girdea, Catalin Hritcu, Anca-Paula Luca and many others... Dr. Sabin-Corneliu Buraga – www.infoiasi.ro/~busaco/