Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Wikipedia-based online resource declaration and retrieval
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  4 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Yao Ziyuan  
View profile  
 More options Dec 24 2011, 9:48 pm
Newsgroups: comp.infosystems.www.misc
From: Yao Ziyuan <yaoziy...@gmail.com>
Date: Sat, 24 Dec 2011 18:48:37 -0800 (PST)
Local: Sat, Dec 24 2011 9:48 pm
Subject: Wikipedia-based online resource declaration and retrieval
Could develop a program or browser extension that helps put such a
"resource declaration" on a web page, blog post, etc. to declare a
resource to facilitate its retrieval by people interested in the same
topic and resource type.

/////////////////////////////////////////////////////////////////////////// ///////////////////
// Topic-ID: http://en.wikipedia.org/wiki/Mobile_phone
// Resource-Type: product
// Title: Galaxy Nexus
// Description: Touchscreen slate Android smartphone by Samsung and
Google
/////////////////////////////////////////////////////////////////////////// ///////////////////

This will be "the Semantic Web done right", I think.

For one thing, Wikipedia has the largest, most comprehensive ontology
on the Web (even larger than academia-produced WordNet and Cyc). For
another thing, people really like Wikipedia and use it every day.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Yao Ziyuan  
View profile  
 More options Dec 24 2011, 10:55 pm
Newsgroups: comp.infosystems.www.misc
From: Yao Ziyuan <yaoziy...@gmail.com>
Date: Sat, 24 Dec 2011 19:55:24 -0800 (PST)
Local: Sat, Dec 24 2011 10:55 pm
Subject: Re: Wikipedia-based online resource declaration and retrieval
On Dec 25, 10:48 am, Yao Ziyuan <yaoziy...@gmail.com> wrote:

Let me make a more complex example. Suppose I'm a professor interested
in hiring a PhD student to research "father-bother merger". I could
post such a resource manifest on my blog:

/////////////////////////////////////////////////////////////////////////// ///////////////////
// Topic-ID: http://en.wikipedia.org/wiki/Phonological_history_of_English_low_back...
// Resource-Type: job
// Title: PhD Student
// Description: Looking for a PhD student to research the phonological
phenomenon of "father-bother merger".
/////////////////////////////////////////////////////////////////////////// ///////////////////

Perspective PhD students interested in this specific topic ("father-
bother merger") will use a program to automatically search the web or
the blogsphere for any new resource manifests whose Topic-ID is
"http://en.wikipedia.org/wiki/
Phonological_history_of_English_low_back_vowels#Father.E2.80.93bother_merge r"
and whose Resource-Type is "job". Of course they can further filter
manifests whose Title contains "PhD".


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Yao Ziyuan  
View profile  
 More options Dec 24 2011, 11:34 pm
Newsgroups: comp.infosystems.www.misc
From: Yao Ziyuan <yaoziy...@gmail.com>
Date: Sat, 24 Dec 2011 20:34:35 -0800 (PST)
Local: Sat, Dec 24 2011 11:34 pm
Subject: Re: Wikipedia-based online resource declaration and retrieval
On Dec 25, 11:55 am, Yao Ziyuan <yaoziy...@gmail.com> wrote:

Note that a manifest can have more than one Topic-ID. For example, in
the above example, we can add two Topic-IDs:

/////////////////////////////////////////////////////////////////////////// ///////////////////
// Topic-ID: http://en.wikipedia.org/wiki/Phonological_history_of_English_low_back...
// Topic-ID: http://en.wikipedia.org/wiki/English_phonology
// Topic-ID: http://en.wikipedia.org/wiki/Phonology
// Resource-Type: job
// Title: PhD Student
// Description: Looking for a PhD student to research the phonological
phenomenon of "father-bother merger".
/////////////////////////////////////////////////////////////////////////// ///////////////////


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "DBpedia, SPARQL, and online metadata" by Ivan Shmakov
Ivan Shmakov  
View profile  
 More options Dec 27 2011, 4:19 am
Newsgroups: comp.infosystems.www.misc
From: Ivan Shmakov <oneing...@gmail.com>
Date: Tue, 27 Dec 2011 16:19:42 +0700
Local: Tues, Dec 27 2011 4:19 am
Subject: DBpedia, SPARQL, and online metadata

>>>>> Yao Ziyuan <yaoziy...@gmail.com> writes:

[…]

 > Perspective PhD students interested in this specific topic ("father-
 > bother merger") will use a program to automatically search the web or
 > the blogsphere for any new resource manifests whose Topic-ID is
 > "http://en.wikipedia.org/wiki/
 > Phonological_history_of_English_low_back_vowels#Father.E2.80.93bother_merge r"
 > and whose Resource-Type is "job".  Of course they can further filter
 > manifests whose Title contains "PhD".

        Well, sort of, but the question is: will there be a powerful
        query language for this kind of metadata, or will it be some
        kind of a simplistic keyword search engine instead?

        FWIW, one can use SPARQL against structured data extracted from
        Wikipedia, like, right now.  Consider checking the DBpedia
        project at http://dbpedia.org/.

        E. g., one can search for all the fantasy genre fiction,
        authored by persons born in the XIX century with a SPARQL query
        like:

   SELECT DISTINCT ?author ?born ?work
   WHERE {
       ?author
           a <http://dbpedia.org/ontology/Person> ;
           <http://dbpedia.org/ontology/birthDate> ?born .
       FILTER (?born < "1901-01-01"^^<http://www.w3.org/2001/XMLSchema#date>)
       ?work
           <http://dbpedia.org/property/author> ?author ;
           <http://dbpedia.org/ontology/genre>  ?genre  .
       OPTIONAL {
           ?genre
               a <http://dbpedia.org/class/yago/FantasyGenres> .
       }
       OPTIONAL {
           ?genre
               <http://dbpedia.org/property/redirect>
                   [ a <http://dbpedia.org/class/yago/FantasyGenres> ] .
       }
       FILTER (bound (?genre)) .
   }

        Thanks to RDFa, such descriptions could readily be added to,
        e. g., XHTML-based Web pages, and then processed by a variety of
        tools, such as those associated with the Redland RDF library.

--
FSF associate member #7257


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »