Tagged Questions

Extension of the World Wide Web architecture giving well defined meaning to data, thus enabling machines to reason on data and use them more effectively.

learn more… | top users | synonyms

24
votes
8answers
2k views

What is the semantic web?

I've heard a lot about the semantic web but I'm still not exactly sure what it is. How will it be different to the web we know now?
22
votes
9answers
2k views

Semantic HTML5. Back to the 1990s?

I am taking a peek at Dive Into HTML5. It seems nice and interesting, but I am puzzled. In the 1990s, at the time when Netscape was the browser and HTML was HTML2 or HTML3, there were a lot of tags: ...
20
votes
10answers
8k views

In CSS, how do I get a left-side fixed-width column with a right-side table that uses the rest of the width?

So I've tried to work with the pure-CSS, never-use-tables-for-layout gospel, I really have. But after an incredible amount of pain and anguish, I'm just about ready to give up. I'm willing to go to ...
13
votes
3answers
388 views

Is semantic web a dead on arrival project?

Does anybody use semantic techniques (RDF, OWL, machine reasoning, etc.) in comercial apps or is it still an academia's toy?
13
votes
2answers
10k views

how to tag a photo to be used as a thumbnail when page is linked to on facebook

When a person posts a link on facebook, facebook automatically finds a photo to be used as a thumbnail that shows up in the news feed. Is there some sort of (html) markup to surround a photo you'd ...
12
votes
2answers
563 views

Swi prolog in Semantic Web

I would like to listen from people who have real world programming experience in using swi-prolog's semantic library. Edit: The reason for this question is, among the many people I talked to with ...
11
votes
10answers
1k views

Recommend a Semantic Web book?

I've looked around but most books seem to fall into one of two categories: Either the book talks about SW technologies but doesn't teach you how to use them Or the book is geared for very complex ...
10
votes
4answers
763 views

RDFa vs. microformats

What do you think is best? RDFa or microformats? In the future what do you think: Will prevail both (using tools like GRRDL to make them "talk") or only one (like what happen with HD-DVD and ...
10
votes
11answers
2k views

Examples of using semantic web technologies in real world applications

Are you working on a (probably commercial) product which uses RDF/OWL/SPARQL technologies? If so, can you please describe your product?
9
votes
6answers
983 views

Is there any killer application for Ontology/semantics/OWL/RDF yet?

I got interested in semantic technologies after reading a lot of books, blogs and articles on the net saying that it would make data machine-understandable, allow intelligent agents make great ...
9
votes
12answers
1k views

Semantic value of span

The span element would seem to be exactly like a div, but at the in-line level rather than at the block level, however I can't seem to think of any beneficial logical divisions that the span element ...
9
votes
8answers
1k views

What is the best way to learn about RDF / OWL?

What references offer a good summary/tutorial for using RDF/OWL? There seem to be enough tools (Protege, Topbraid, Jena, etc.) that knowing the syntax of the markup languages is not necessary, but ...
7
votes
2answers
408 views

Most common way of writing a HTML table with vertical headers?

Hi all it's been a while since I've asked something, this is something that has been bothering me for a while, the question itself is in the title: What's your preferred way of writing HTML tables ...
7
votes
6answers
412 views

Semantics and Structure of Name-Value Pairs

This is a question I have been struggling with for a while. What is the proper way to mark up name/value pairs? I'm fond of the <dl> element, but it presents a problem: There is no way to ...
7
votes
6answers
5k views

What is the difference between RDF and OWL?

I am trying to grasp the concept of Semantic Web. I am finding it hard to understand what exactly is the difference between RDF and OWL. Is OWL an extension of RDF or these two are totally different ...
7
votes
6answers
1k views

What is the benefit of tableless design if you need clearing blocks everywhere?

I understand that the goal of moving towards <div> tags from <table> makes sense since it is more semantic. However, I don't understand the benefit gained if you still need a clearing ...
7
votes
4answers
3k views

What is a good RDF library for .net?

I'm looking for a library that can deal with RDF and OWL data. So far I have found: semweb (no owl support for all I know) rowlex (more of a 'browser' application) Your recommendations: ...
7
votes
4answers
624 views

Do you leverage Semantic Web technologies? Why or why not?

I'm interested in understanding why people choose to leverage technology built on the W3C Semantic Web standards. How did you make the decision to use the technology you chose and what does it enable ...
7
votes
7answers
1k views

Semantic Web Framework

What semantic web frameworks are there, and what are the advantages / disadvantages of each? I've made extensive use of Jena, and I have looked at Sesame briefly. Are there others I should consider as ...
7
votes
2answers
1k views

Are there any tools to visualize a RDF graph? (please include a screenshot)

I'm looking for a tool that will render a RDF graph in a reasonably useful graphic format. The primary purpose of the graphic format being inclusion into a PowerPoint slide or printing on a large ...
6
votes
3answers
70 views

What's the preferred RDF toolset for Ruby?

What's the best Ruby library for working with RDF and SPARQL? I saw some other related questions but they were over two years old.
6
votes
1answer
323 views

Querying dbpedia with SPARQL

I'm querying dbpedia.org for a description of Big Ben with this SPARQL query: select ?desc where { <http://dbpedia.org/resource/Big_Ben> <http://www.w3.org/2000/01/rdf-schema#comment> ...
6
votes
1answer
753 views

Should I use <meta name=“author” content=“Your Name” /> or <link rel=“author” href=“http://mysite.com/about/” />?

In html 5, rel="author" is used to link to information about the author of the page. This can be a mailto: address, though it doesn't have to be. It could simply link to a contact form or "about the ...
6
votes
3answers
746 views

Is there a Python library to handle OWL?

It could be something as big as Jena or something smaller. Do you know anything?
6
votes
11answers
3k views

Visualize Friend of a Friend (foaf) graph

I wrote a script to export twitter friends as foaf rdf description. Now I'm looking for a tool to visualize the friend networks. I tried http://foafscape.berlios.de/ but for 300+ Nodes it is really ...
5
votes
1answer
182 views

How to create a basic semantic search in python

I want to write a basic semantic web crawler using python, I know that semantic apps use rdf files, but what else? I have some python rdf modules installed and I started learning how they work, would ...
5
votes
4answers
116 views

Is there any web semantic framework who doesn't represent triple like a tri-node structure?

In my work we are building a huge aplication that will use billions of triples, to optmize the space required to store these triples I've been searching for a different way to represent them, any way ...
5
votes
2answers
355 views

Html: Should the h1 tag be used for the site title or the page title?

In the past I have often put the site title in an <h1> tag, and then the main page title in an <h2>. Is this considered correct, or should the main page title be in the <h1> tag? If ...
5
votes
3answers
403 views

Understanding what SPARQL is

This is a terribly beginner series of questions, but after reading through a good 30 SPARQL tutorials I can't seem to wrap my head around what SPARQL is or how to begin using it. Is it executed on ...
5
votes
4answers
788 views

Semantically Correct HTML Checkbox lists

I've got an HTML checkbox list that I would like to display in the following format: Click all that apply: Title A Title B Option 1 [ ...
5
votes
5answers
564 views

Is there an RDF ontology for blogs?

I'm setting up a blog, and I'm fascinated by RDF and the idea of the sematic web. I'd like to use RDFa to embed sematic data into my blog. There are several well know semantic web ontologies like FOAF ...
5
votes
7answers
506 views

Is there a semantic version of <u>?

In XHTML Strict, it seems that you're not allowed to use the <u> tag any more. Is there a semantic equivalent like there is for <b> and <i>? If not, is there any convention for how ...
4
votes
2answers
35 views

Intregating with another Semantic Web source

I want to try and integrate my rdf data which is in an .rdf file format with dbpedia so i can build make semantic knowledge of my rdf data. Does anyone know how I would go about doing this within ...
4
votes
2answers
61 views

Semantic web resources for a new web site?

I want to implement a web site from scratch using semantic web as much as possible. My website will be for a Scientific Institution, I have no model but I recognize there are entities/objects like ...
4
votes
2answers
132 views

Is it possible to use RDF storage also as a document-oriented database?

Suppose I have a large ammount of heterogeneous JSON documents (i.e. named key-value mappings) and a hierarchy of classes (i.e. named sets) that these documents are attached to. I need to set up a ...
4
votes
1answer
152 views

Haskell data structure for SKOS (semantic web)

Introduction I am programming a semantic web application in haskell. With hsparql http://hackage.haskell.org/package/hsparql I can access my Tripple Store. Currently I use http://4store.org/ (mainly ...
4
votes
2answers
82 views

Incrementally Trainable Entity Recognition Classifier

I'm doing some semantic-web/nlp research, and I have a set of sparse records, containing a mix of numeric and non-numeric data, representing entities labeled with various features extracted from ...
4
votes
3answers
67 views

Measuring distances among classes in RDF/OWL graphs

Maybe someone could give me a hint. Is it possible to measure the distance between 2 concepts/classes that belong to the same ontology? For example, let's suppose I have an ontology with the ...
4
votes
1answer
224 views

How to query RDF/OWL using SWI-Prolog's Semantic Web Library?

How can I use the SWI-Prolog Semantic Web Library to make a query into the OWL/RDF file and extract some information? The OWL/RDF file is having information about all the Debian packages so I need to ...
4
votes
4answers
134 views

Semantic store and entity hub

I am working on a content platform that should provide semantic features such as querying with SPARQL and providing rdf documents for the contained content. I would be very thankful for some ...
4
votes
1answer
149 views

What does “reify” and “reification” mean in relation to RDF?

I do think I understand the meaning of these words in programming languages, but it is not clear in regards to RDF and triples. Is there an example that will help me to understand? Thank you
4
votes
4answers
297 views

open source semantic web project

I am looking for an open source semantic web project, i know there are jena and Sesame but i looking for another open source semantic web project Any help would be appreciated
4
votes
3answers
146 views

What use cases for OWL?

I've read about OWL - Web Ontology Language (few pages only), but what are some real-world use cases/implementations for it?
4
votes
4answers
350 views

How does Semantic web works?

I have read a lot of semantic web but there are some things not clear. I have read that the machines can "understand" a content through metadata ( RDF rules ) but I haven't understood WHO write these ...
4
votes
5answers
560 views

suitable languages for a semantic web project

Currently I am thinking and searching for the adequate programming languages for a project (more than one programming language will be used). Questions: Is there a big mistake presented in my list ...
4
votes
5answers
177 views

What are the practical benefits of using microformats for every possible thing?

What practical benefits can my client get if I use microformats on his site for every possible thing? How can I explain these benefits to a non-technical client?
4
votes
3answers
600 views

Correct way to write lists

This is something I've pondered over for a while, as I've seen both used in practise. Method 1 <ol> <li>List item 1</li> <li>List item 2 <ol> ...
4
votes
6answers
530 views

Do you use Microformats, RDF, Dublin Core or another type of sematic markup?

Do you use any of these technologies? Which ones are current and hence sensible to include in a site? Documentation on any seems to be relatively sparse, and usage of any of them limited, as search ...
4
votes
2answers
468 views

For your semantic web type application, do you use RDF or a proprietary model for the internal representation?

If you've worked on a project that stores data for use with the semantic web, do you use RDF or even OWL as the internal data format or do you have your own data model/ontology that you map to RDF for ...
3
votes
1answer
19 views

SPARQL Querying Transitive different versions of arq

Basically I got a SPARQL query below which works with the arq 2.8.8 but doesn't work with arq2.8.4 as it doesnt recognise the + symbol. I really want a query which can work on the arq 2.8.4 version ...

1 2 3 4 5