@prefix foaf:   <http://xmlns.com/foaf/0.1/> .
@prefix solid:  <http://www.w3.org/ns/solid/terms#> .
@prefix schema: <https://schema.org/> .
@prefix vcard:  <http://www.w3.org/2006/vcard/ns#> .
@prefix rdfs:   <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd:    <http://www.w3.org/2001/XMLSchema#> .
@prefix owl:    <http://www.w3.org/2002/07/owl#> .

# PROFILE DOCUMENT
<> a foaf:PersonalProfileDocument ;
   foaf:maker <#me> ;
   foaf:primaryTopic <#me> .

# PERSON
<#me> a foaf:Person, schema:Person ;

  # Identiteit
  foaf:name        "Henri Goudezeune" ;
  foaf:givenName   "Henri" ;
  foaf:familyName  "Goudezeune" ;
  schema:birthDate "2006-11-24"^^xsd:date ;

  # Locatie
  schema:homeLocation [
    a schema:Place ;
    schema:name           "Bikschote" ;
    schema:addressCountry "BE"
  ] ;

  # Contact
  foaf:mbox  <mailto:henrigoudezeune@gmail.com> ;
  foaf:phone <tel:+32470770378> ;

  # Website
  foaf:homepage <https://henri-goudezeune.be/> ;
  rdfs:seeAlso  <https://henri-goudezeune.be/en/> ;

  # Solid
  solid:oidcIssuer <https://solid.henri-goudezeune.be/> ;

  # Sociale profielen
  foaf:account [
    a foaf:OnlineAccount ;
    foaf:accountServiceHomepage <https://www.linkedin.com/> ;
    foaf:accountName "henrigoudezeune-ab63bb290"
  ] ;
  foaf:account [
    a foaf:OnlineAccount ;
    foaf:accountServiceHomepage <https://github.com/> ;
    foaf:accountName "HenriGoudezeune"
  ] ;

  # ONDERWIJS
  schema:alumniOf [
    a schema:EducationalOrganization ;
    schema:name          "Universiteit Gent" ;
    schema:alternateName "Ghent University" ;
    schema:url           <https://www.ugent.be/>
  ] ;
  schema:alumniOf [
    a schema:EducationalOrganization ;
    schema:name "College Ieper"
  ] ;

  schema:hasOccupation [
    a schema:Occupation ;
    schema:name          "Bachelorstudent Informatica" ;
    schema:alternateName "Computer Science Student" ;
    schema:occupationLocation [
      a schema:Organization ;
      schema:name "Universiteit Gent" ;
      schema:url  <https://www.ugent.be/>
    ]
  ] ;

  # VAARDIGHEDEN - programmeertalen
  schema:knowsAbout "Java" ;
  schema:knowsAbout "Python" ;
  schema:knowsAbout "C" ;
  schema:knowsAbout "C++" ;
  schema:knowsAbout "JavaScript" ;
  schema:knowsAbout "SQL" ;
  schema:knowsAbout "Bash" ;
  schema:knowsAbout "Haskell" ;

  # VAARDIGHEDEN - concepten & domeinen
  schema:knowsAbout "Algorithms & data structures" ;
  schema:knowsAbout "Software engineering" ;
  schema:knowsAbout "Databases" ;
  schema:knowsAbout "Web development" ;
  schema:knowsAbout "Android development" ;
  schema:knowsAbout "Computer networks" ;
  schema:knowsAbout "Computer architecture" ;
  schema:knowsAbout "Functional programming" ;

  # TALEN
  schema:knowsLanguage [
    a schema:Language ;
    schema:name          "Dutch" ;
    schema:alternateName "Nederlands"
  ] ;
  schema:knowsLanguage [
    a schema:Language ;
    schema:name "English"
  ] ;
  schema:knowsLanguage [
    a schema:Language ;
    schema:name          "French" ;
    schema:alternateName "Francais"
  ] ;

  # ERVARING
  schema:worksFor [
    a schema:Organization ;
    schema:name "Yolomi-food"
  ] ;

  # ENGAGEMENT
  schema:memberOf [
    a schema:Organization ;
    schema:name     "Studentenvereniging Moeder Baekelandt" ;
    schema:roleName "Penningmeester"
  ] ;
  schema:memberOf [
    a schema:Organization ;
    schema:name     "KSA Bikschote" ;
    schema:roleName "Leiding"
  ] ;

  # BESCHRIJVING
  schema:description "Second-year Computer Science student at Ghent University. Strong technical foundation in algorithms, Java, and software engineering. Practical experience in web and Android development. Open to internships and student positions in software development." ;
  rdfs:comment       "Persoonlijk profiel van Henri Goudezeune - henri-goudezeune.be" .
