GithubHelp home page GithubHelp logo

Hi there ๐Ÿ‘‹

  • ๐Ÿ“ซ How to reach me: @kidehen.twitter (Twitter), @kidehen.linkedin (LinkedIn), @kidehen.email (Email)

  • ๐Ÿ’ฌ Ask me about ... Knowledge Graph, Linked Data, ODBC, JDBC, Data Connectivity, WebID, Privacy-By-Design, Solid, Read-Write Web

  • ๐Ÿ”ญ Iโ€™m currently working on the free flow of data across personal and enterprise data spaces, without comprising platform independence, performance, or privacy.

  • โšก #SHA256 Fingerprint:1649D46C7664C563A0ADCFCDA2DB697037B376376964C0F8822CDF394AEECA5A

  • โšก #SHA1 Fingerprint:C80773380FA5E0D510667D8A4C3BFCC47C2434F4

  • โšก #SHA1 Fingerprint:๐Ÿšฌ๐Ÿœ๐Ÿ‡ฎ๐Ÿ’จ๐Ÿ’ˆ๐Ÿ‘‰โ›บ๐ŸŒป๐Ÿ›โœ”๐Ÿ’„๐ŸŽน๐Ÿ’พ๐Ÿถโœ–๐Ÿ˜ช๐Ÿ‹๐Ÿฑ๐Ÿ˜ข๐ŸŽป

  • โšก #SHA1 Fingerprint:๐Ÿ’‰๐ŸŒโš“โ„ขโœ–๐ŸšŽ๐Ÿ”ฎ๐ŸŒด๐Ÿ’ฐ๐Ÿ”ฌ๐Ÿ—ฟโ˜‚๐Ÿ‘ช๐Ÿ”ฅ๐Ÿ’ฐ๐Ÿ”ช๐Ÿท๐Ÿญ๐Ÿฐ๐Ÿš€

  • โšก #SHA1 Fingerprint:๐Ÿจ๐Ÿ”จ๐Ÿ‘บ๐Ÿ•ถ๐Ÿ‹๐Ÿ”“๐Ÿ’‹๐Ÿš๐Ÿ›‚๐Ÿ™Š๐Ÿ˜บ๐Ÿ”ชโ™ฆโ˜•โ˜€๐Ÿ—๐Ÿš€๐Ÿ’ฅโžฐ๐Ÿ‡จ๐Ÿ‡ณ

Profile views

Here is an example of a personal profile document, using JSON-LD Notation that's crucial to that effort. For maximum effect, you are encouraged to install the OpenLink Structured Data Sniffer Browser Extension (for Chrome and other Web Extensions compliant Browsers) or Firefox.

## JSON-LD Start ##

  {
    "@context": {
      "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
      "foaf": "http://xmlns.com/foaf/0.1/",
      "schema": "http://schema.org/",
      "cert": "http://www.w3.org/ns/auth/cert#",
      "dcterms": "http://purl.org/dc/terms/",
      "xsd": "http://www.w3.org/2001/XMLSchema#",
      "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
      "schema": "http://schema.org/"
    },
    "@graph": [
      {
        "@id": "",
        "@type": "foaf:PersonalProfileDocument",
        "foaf:maker": {
          "@id": "https://github.com/kidehen#netid"
        },
        "foaf:primaryTopic": {
          "@id": "https://github.com/kidehen#netid"
        }
      },
      {
        "@id": "https://github.com/kidehen#netid",
        "@type": [
          "foaf:Person",
          "schema:Person"
        ],
        "cert:key": {
          "@id": "https://github.com/kidehen#PublicKey"
        },
        "foaf:name": "Kingsley Uyi Idehen (Github Profile)"
      },
      {
        "@id": "https://github.com/kidehen#PublicKey",
        "@type": "cert:RSAPublicKey",
        "dcterms:created": {
          "@type": "xsd:dateTime",
          "@value": "2021-10-27T21:23:54.201Z"
        },
        "dcterms:title": "Created by YouID",
        "rdfs:label": "Kingsley Uyi Idehen (Github Profile)",
        "cert:exponent": {
          "@type": "xsd:int",
          "@value": "65537"
        },
        "cert:modulus": {
          "@type": "xsd:hexBinary",
          "@value": "E26D626260C288E2E3D16B24D4C98D99D51706CC4225A3DEC836ABD81E8A0E2B3F5B477DA035D3BC102BD28326795F49D13C8038C7F2F827520B6CA147CEDE3B846644052ED682BEA64459BD1315C5A5E607ED090EB55A7779292DE472C1602637307D067988DC901E8DA8B809F3AA0450B8F699BF74F34FD9372E643C5D2A1EBC00FDF80CF76B44B1CA22DF494472FBED6F4F15362D9549305D3E490E1D38D0326035216F3323DA726EDA8B1EA617A02357C84D249F0A47A527FCCE929AE8435875B8247EA6455B79CB5390B7AB3509865FC3198AB02BBA7A749FB4F327826E336B4CA8C2E6310EF7B6AC907AAE649DB9F2804126A763084522D3FA067E860D"
        }
      }
    ]
  }
  
## JSON-LD End ##

Here is the same Profile Information using RDF-Turtle Notation.

## Turtle Start ##

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema: <http://schema.org/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix cert: <http://www.w3.org/ns/auth/cert#> . 
@prefix : <#> . 

# Profile Document Metadata
<> rdf:type foaf:Document, foaf:PersonalProfileDocument, schema:WebPage, schema:CreativeWork .
<> foaf:maker :i .
<> foaf:primaryTopic :i .
<> schema:mainEntity :i .
<> schema:dateCreated "2020-07-12"^^xsd:dateTime .
<> schema:creator :i .
<> schema:name "Kingsley Uyi Idehen's Profile Document" .

# Personal Information 
:i schema:mainEntityOfPage <> .
:i schema:mainEntityOfPage <https://www.facebook.com/kidehen/> .
:i schema:mainEntityOfPage <https://www.linkedin.com/in/kidehen/> .
:i schema:mainEntityOfPage <https://www.twitter.com/kidehen/> .
:i schema:mainEntityOfPage <https://community.openlinksw.com/u/kidehen/> . 
:i schema:mainEntityOfPage <https://stackoverflow.com/users/213503/kingsley-uyi-idehen/> . 
:i schema:mainEntityOfPage <https://www.quora.com/profile/Kingsley-Uyi-Idehen/> . 
:i schema:mainEntityOfPage <https://stackexchange.com/users/74272/kingsley-uyi-idehen/> . 
:i schema:mainEntityOfPage <https://golden.com/wiki/Kingsley_Uyi_Idehen-VVGXYE/> . 
:i schema:mainEntityOfPage <https://glitch.com/~kidehen/> . 
:i schema:mainEntityOfPage <https://kidehen.disha.page/> . 
:i schema:mainEntityOfPage <https://kidehen.carrd.co/> . 
:i rdf:type schema:Person, foaf:Person .
:i schema:name "Kingsley Uyi Idehen" .
:i owl:sameAs <https://www.facebook.com/kidehen#this> .
:i owl:sameAs <https://www.linkedin.com/in/kidehen#this> .
:i owl:sameAs <https://www.twitter.com/kidehen#this> .
:i owl:sameAs <https://community.openlinksw.com/u/kidehen#this> . 
:i owl:sameAs <https://stackoverflow.com/users/213503/kingsley-uyi-idehen#this> . 
:i owl:sameAs <https://www.quora.com/profile/Kingsley-Uyi-Idehen#this> . 
:i owl:sameAs <https://stackexchange.com/users/74272/kingsley-uyi-idehen#this> . 
:i owl:sameAs <https://golden.com/wiki/Kingsley_Uyi_Idehen-VVGXYE#identity> . 
:i owl:sameAs <https://glitch.com/~kidehen#identity> . 
:i owl:sameAs <https://kidehen.disha.page/#this> . 
:i owl:sameAs <https://kidehen.carrd.co/#netid> . 

# Crypto Information for Encoding Information that can only be read by me 

  @prefix : <#>.
  @prefix cert: <http://www.w3.org/ns/auth/cert#>.
  @prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
  @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
  @prefix dcterms: <http://purl.org/dc/terms/>.
  @prefix foaf: <http://xmlns.com/foaf/0.1/>.
  @prefix schema: <http://schema.org/>.

  <>
    a foaf:PersonalProfileDocument ;
    foaf:maker <https://github.com/kidehen#netid> ;
    foaf:primaryTopic <https://github.com/kidehen#netid> .

  <https://github.com/kidehen#netid>
    a foaf:Person ;
    a schema:Person ;
    foaf:name "Kingsley Uyi Idehen (Github Profile)" ;
    cert:key <https://github.com/kidehen#PublicKey>.


  <https://github.com/kidehen#PublicKey>
    a cert:RSAPublicKey;
    dcterms:created "2021-10-27T21:23:54.201Z"^^xsd:dateTime;
    dcterms:title "Created by YouID";
    rdfs:label "Kingsley Uyi Idehen (Github Profile)";
    cert:exponent "65537"^^xsd:int;
    cert:modulus "E26D626260C288E2E3D16B24D4C98D99D51706CC4225A3DEC836ABD81E8A0E2B3F5B477DA035D3BC102BD28326795F49D13C8038C7F2F827520B6CA147CEDE3B846644052ED682BEA64459BD1315C5A5E607ED090EB55A7779292DE472C1602637307D067988DC901E8DA8B809F3AA0450B8F699BF74F34FD9372E643C5D2A1EBC00FDF80CF76B44B1CA22DF494472FBED6F4F15362D9549305D3E490E1D38D0326035216F3323DA726EDA8B1EA617A02357C84D249F0A47A527FCCE929AE8435875B8247EA6455B79CB5390B7AB3509865FC3198AB02BBA7A749FB4F327826E336B4CA8C2E6310EF7B6AC907AAE649DB9F2804126A763084522D3FA067E860D"^^xsd:hexBinary.
  
## Turtle End ##
## JSON-LD Start ##

  {
    "@context": {
      "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
      "foaf": "http://xmlns.com/foaf/0.1/",
      "schema": "http://schema.org/",
      "cert": "http://www.w3.org/ns/auth/cert#",
      "dcterms": "http://purl.org/dc/terms/",
      "xsd": "http://www.w3.org/2001/XMLSchema#",
      "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
      "schema": "http://schema.org/"
    },
    "@graph": [
      {
        "@id": "",
        "@type": "foaf:PersonalProfileDocument",
        "foaf:maker": {
          "@id": "https://github.com/kidehen/kidehen#i"
        },
        "foaf:primaryTopic": {
          "@id": "https://github.com/kidehen/kidehen#i"
        }
      },
      {
        "@id": "https://github.com/kidehen/kidehen#i",
        "@type": [
          "foaf:Person",
          "schema:Person"
        ],
        "cert:key": {
          "@id": "https://github.com/kidehen/kidehen#PublicKey"
        },
        "foaf:name": "Kingsley Uyi Idehen's Profile Document (Github)"
      },
      {
        "@id": "https://github.com/kidehen/kidehen#PublicKey",
        "@type": "cert:RSAPublicKey",
        "dcterms:created": {
          "@type": "xsd:dateTime",
          "@value": "2020-08-07T19:30:10.534Z"
        },
        "dcterms:title": "Created by YouID",
        "rdfs:label": "Kingsley Uyi Idehen's Profile Document (Github)",
        "cert:exponent": {
          "@type": "xsd:int",
          "@value": "65537"
        },
        "cert:modulus": {
          "@type": "xsd:hexBinary",
          "@value": "a75b75af5eae39f046af56364c558376ccd1edd4e99ca7ec96565c1f6441acfafa60071aa4799fe67aa76e5064c866cc8d7d47b4ce64fbeb58a97fff61443d868a8e017ffd766614086c51c4ea412b276ddf61adebd7962a0d0f8c5d6ff1d565ed31005ce78ec7733013a34477185d671f5dbcc2b6e93086929b3dee10748194c33a4af8f3535776546d4647b78c4366c8814deff466258a6e1797e4c0ef4902ec35b5cf38693c255045bc4efc7c0ce6d0757d29ac4ec2382ed052eeca19fe09db2f804aa339dffd18906071e23079c36a4c2fe0a075b96d934f5119abcb31b109ebaf1de1aefde0d1bb415e80eb7e321d8caf3bff457eb6ad31c55f3a992217"
        }
      }
    ]
  }

## JSON-LD End ##

Delegate Credentials for WebID-TLS+Delegation Authentication Protocol

## JSON-LD Start ##

{
  "@context": {
    "acl": "http://www.w3.org/ns/auth/acl#",
    "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
    "cert": "http://www.w3.org/ns/auth/cert#",
    "xsd": "http://www.w3.org/2001/XMLSchema#"
  },
  "@graph": [
    {
      "@id": "_:b2_b1",
      "@type": "cert:RSAPublicKey",
      "cert:exponent": {
        "@type": "xsd:int",
        "@value": "65537"
      },
      "cert:modulus": {
        "@type": "xsd:hexBinary",
        "@value": "951eb7b237add2009db7113bfa676b3f4141902191cab8b0824903b9ca90c138f46568d0248d075e496dd684487dc34a7f02c66b7d60ee4cd2c14a0043b66272257de50df06e1a4a3ccf102666fff235f5e3c65ae0e066c712773d2fad2cb89f4aad092c9dd767ecdfb3f9ef2af709bfe52590ca795d52c48992ff0162919d809890f43b2e73fae52a3347dd1a3b5e2a752a5e3c068367f9c379a26055ff60139058274a02a682c351e8685af84e4c1f5d700941d92dc3054f5f1533c1117decf0e12b4086390bbe3623aec2a7d25814ccd423cbb3c61fb2c3bbdc30efa9d557658fa243b6fa0f23848d864793cc199c95b2c83e7bb9d2449e1576ea0c6861c1"
      }
    },
    {
      "@id": "https://kidehen5.solid.openlinksw.com:8444/profile/card#me",
      "cert:key": {
        "@id": "_:b2_b1"
      }
    },
    {
      "@id": "https://github.com/kidehen#i",
      "acl:delegates": {
        "@id": "https://kidehen5.solid.openlinksw.com:8444/profile/card#me"
      }
    }
  ]
}
## JSON-LD End ##

Another Credentials Chunk

## JSON-LD Start ##

  {
    "@context": {
      "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
      "foaf": "http://xmlns.com/foaf/0.1/",
      "schema": "http://schema.org/",
      "cert": "http://www.w3.org/ns/auth/cert#",
      "dcterms": "http://purl.org/dc/terms/",
      "xsd": "http://www.w3.org/2001/XMLSchema#",
      "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
      "schema": "http://schema.org/"
    },
    "@graph": [
      {
        "@id": "",
        "@type": "foaf:PersonalProfileDocument",
        "foaf:maker": {
          "@id": "https://github.com/kidehen#i"
        },
        "foaf:primaryTopic": {
          "@id": "https://github.com/kidehen#i"
        }
      },
      {
        "@id": "https://github.com/kidehen#i",
        "@type": [
          "foaf:Person",
          "schema:Person"
        ],
        "cert:key": {
          "@id": "https://github.com/kidehen#PublicKey"
        },
        "foaf:name": "Kingsley Uyi Idehen's Profile Document (Github Personal)"
      },
      {
        "@id": "https://github.com/kidehen#PublicKey",
        "@type": "cert:RSAPublicKey",
        "dcterms:created": {
          "@type": "xsd:dateTime",
          "@value": "2020-08-20T00:14:35.717Z"
        },
        "dcterms:title": "Created by YouID",
        "rdfs:label": "Kingsley Uyi Idehen's Profile Document (Github Personal)",
        "cert:exponent": {
          "@type": "xsd:int",
          "@value": "65537"
        },
        "cert:modulus": {
          "@type": "xsd:hexBinary",
          "@value": "840dda2d95e5b3eb6f84d9a113a8f7838810a3b03d517291ddafc82a1fa7fbf92bab96ce1065354060d23a1c03e450f802800ff52142b3931ed64d2dc6f300bf27ef87cfcba7695799bb5683f350f4b9f3e3ba1f5d8cac89f7b07eb92f3ba25e00df9f92e5fffb77e27db3a74659fda70e9b20789f8a21a0a4d2e797c353abe5f178ad850f4fa2a2d9f4a9d1763c6ce897f667e3926ea66e570d8ebac78f1c8eedd0d40f2b889b81a769992d044b5f25a52677d0ef15b31eb17de5ecc25d09a1ca694614d040098441860ca5e784e2b8907766298baf6c3edc153bf6bc95944b86833c22e87b6d09278f6c05b69696e13f7e2347c1461024061bc887df088461"
        }
      }
    ]
  }
## JSON-LD End ##

Kingsley Idehen's Projects

Kingsley Idehen doesnโ€™t have any public repositories yet.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.