#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/elements/1.1/>.

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>. 

#My believe
foaf:isPrimaryTopicOf rdfs:subPropertyOf rdfs:seeAlso.
#=>
I rdfs:seeAlso <http://people.csail.mit.edu/kennyluck/wiki/myself>.
I rdfs:seeAlso <http://dig.csail.mit.edu/2007/wiki/Kenny>.
<http://people.csail.mit.edu/kennyluck/CV> dc:creator I.
	 
