#Kenny's URI place holder
#People ought to have URI.
#But I don't want to put the declaration of my URI in a FOAF document.
#People who are interested in me may not be interested in my data.
#So I think all unneccesary data should be distributed and let the browser or data analyzer decide
#how rdfs:seeAlso or subPropertyOf it would be retrieved.

@keywords a, is, of.
@prefix : <http://dig.csail.mit.edu/People/kennyluck#>.
@prefix foaf:  <http://xmlns.com/foaf/0.1/>.
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#>.
@prefix dc: <http://purl.org/dc/terms/>.

I a	foaf:Person;   #what am I?
  	rdfs:label "KangHao Lu"@en  #who am I?
	          ,"呂康豪"@zh-tw;
	#Some info for identification
	foaf:mbox <mailto:kennylu@mit.edu>,
		  <mailto:kennyluck@csail.mit.edu>;
	foaf:birthday "09-18";
	
	#data about me.	You are free to write anything about myself.
	foaf:isPrimaryTopicOf 
          <http://people.csail.mit.edu/kennyluck/wiki/myself>, 
          <http://linkeddata.jp/People/kennyluck/basic> .

#My believe
foaf:isPrimaryTopicOf rdfs:subPropertyOf rdfs:seeAlso.
#=>
I rdfs:seeAlso <http://people.csail.mit.edu/kennyluck/wiki/myself>, # INFERRED
               <http://dig.csail.mit.edu/2007/wiki/Kenny>, 
               <http://linkeddata.jp/People/kennyluck/basic>. # INFERRED 

<http://people.csail.mit.edu/kennyluck/CV> dc:creator I.
#<http://semwebtw.openfoundry.org/tutorial/examples/ntu.n3> dc:creator I.
<http://linkeddata.jp/People/kennyluck/basic> dc:creator I.

	 
