semantic

Thesis with source code or complete project for semantic web whith c# ?

hello all .. i'm looking for a semantic web thesis with source code or complete project using C# language ? so ..can you help me .. thankx advance .. ...

How exactly do the semantics of the HTML5 <header>, <section>, and <footer> tags work?

I'm a bit puzzled how I'm supposed to use the HTML5 <header>, section>, and <footer> tags. Currently, I can't work out whether to use them like this: <section id="example_section"> <header> <h1>Example Section</h1> <p>etc</p> </header> <p>Content para 1</p> <p>Content para 2</p> <p>Content para 3</p>...

Correct usage of HTML5 `figure` and `aside`

I have a chunk of a page that looks semantically this: Heading A Textual information related to heading A. Blah blah blah blah blah. [image gallery related to heading A] I can think of a couple of ways to mark this up: Method 1: <section> <h1>Heading A</h1> <p>Textual information related to heading A.<br /> ...

Do I still need to use the title attribute if my element has a `<figcaption>`?

I have a piece of code like this: <figure> <img title="An amazing image that I forgot to specify a url for"/> <figcaption>An amazing image that I forgot to specify a url for</figcaption> </figure> Is it necessary for me to specify the title attribute in addition to the figcaption element, and will not doing so result in SEO pr...

What should I call the label/field name for how often you can run into a bug in the wild?

I'm making a browser bug archive application and for each bug I want to have a field and corresponding values that identify the rarity of a bug. I could use rarity as the label and values 'high, medium/normal, low, edge-case' but when you say 'high rarity' it doesnt make much semantic sense... or is it me? If the values were something l...

semantic media wiki

what is the scripting language used in SEMANTIC MEDIA WIKI ...

Semantic Mediawiki: Using semantics in a different namespace?

I have one page (called PageA) created in the default Main namespace where I used {{#set:var=val}} syntax to set a property in the page. I'm able to see that property in the "browse properties" page. Now, I need to move this page to a different namespace called NewSpace:PageA. It seems like that semantic is now broken because I'm not ab...

HTML5 - Validation messages

What element should I use to show validation messages (errors) to the user? Which one is more semantic in HTML5? ...

What's worse: hiding text or removing text?

I'm trying to find the right balance here, so I wanted to see if anyone knows which scenario below is better in terms of semantic markup and SEO. Using this site's logo, Scenario 1: <div id="hlogo"> <a href="/">Stack Overflow</a> </div> #hlogo a { width:250px; height:61px; display:block; background-position:0 0; ...

What is the rationale behind typedef vs struct/union/enum, couldn't there be only one namespace?

In C if I declare a struct/union/enum: struct Foo { int i ... } when I want to use my structure I need to specify the tag: struct Foo foo; To loose this requirement, I have to alias my structure using typedef: typedef struct Foo Foo; Why not have all types/structs/whatever in the same "namespace" by default? What is the rati...

Class or ID on Body Tag

I've been applying an ID to the body tag of my HTML documents lately to allow greater CSS control (#9). Recently the though occurred to me that I could do exactly the same thing by applying a class to the body tag. I want to know positives and negatives of each choice. If I have multiple pages where the body tag has the same ID, is it be...

What is deckware?

I stumbled upon that word in this blog post. There is similar question in hacker news, but without a definitive answer. Google doesn't seem to be much help either. ...

When writing semantic HTML, which is better: Scoping with <h1> to <h6> tags or scoping with id attributes and <span> tags?

I am trying to write high quality semantic HTML5. Which of the following two options are better semantically: OPTION 1: Define the styles by selecting spans using IDs: %body %header#global-header %h1 My Startup Name %h2 Home of the best offers in the Motor City %section#offers %h1 Today&apos;s Of...

When to use <br> line breaks vs CSS positioning?

I've often wondered about the proper use of a <br> line break. Seems that often they are incorrectly used for positioning or clearing content where CSS should instead be used. W3schoools.org says to use <br> for blank lines, but not for creating or separating paragraphs. Looking over W3C HTML5 spec draft, it's a little clearer that...

how to add images in semantic media wiki

HI, How to add images in semantic media wiki I need some images to display on my main page in (semantic media wiki) ...

Emacs/CEDET. Multiple projects and code completion.

I've setup emacs 23.1.50.1 with CEDET 1.0 and ECB 2.40 (heavily inspired by Alex Otts setup at http://github.com/alexott/emacs-configs/blob/master/rc/emacs-rc-cedet.el and his gentle introduction to Cedet ( http://alexott.net/en/writings/emacs-devenv/EmacsCedet.html ), thanks Alex). It works quite well, but I need more understanding abou...

Difference between audio and sound settings

I have an application which has settings where user can define what file will be played on different events (complete, cancel etc.) What is the difference between words audio and sound (settings) in computer program? Or is there difference at all? In my case what would be the settings called? ...

geting semantically related keywords for a given word

Hi everyone. Is there any open source/free software available that gives you semantically related keywords for a given word. for example the word dog: it should give the keywords like: animal, mammal, ... or for the word France it should give you keywords like: country, Europe ... . basically a set of keywords related to the given word...

python semantic proxy/server, wich framework use?

Hello! This year me and a friend have to make a project for the final year of university. The plan is to make a proxy/sever that allows to store ontologies and RDF's, by this way this data is "chained" to a web, so you can make a request for that web and the proxy will send you the homepage with metadata. We have been thinking to use p...

How can I save semantic information in a MySQL table?

I wish to save some semantic information about data in a table. How can I save this information in MySQL, such that I can access data and also search for the articles using the semantic data. For example, I have a article about Apple and Microsoft. The semantic data will be like Person : Steve Jobs Person : Steve Ballmer Company : Apple...