SolidOS for devs: https://github.com/solidos/solidos SolidOS Pod: https://solidos.solidcommunity.net/
github-actions[bot] on gh-pages
deploy: 6dd19a2832f44262a0a827d… (compare)
bourgeoa on main
update dependencies 1.8.3 (compare)
bourgeoa on v1.8.3
github-actions[bot] on gh-pages
deploy: a8f173949d2bc7ed32e107e… (compare)
timea-solid on main
Update README.md (compare)
bourgeoa on jeff-zucker-loginStatusBox-1
github-actions[bot] on gh-pages
deploy: d32aa1cd126aa0cdf6f9eef… (compare)
theRealImy on main
Mention changed loginStatusBox Merge pull request #163 from So… (compare)
jeff-zucker on jeff-zucker-loginStatusBox-1
Mention changed loginStatusBox (compare)
github-actions[bot] on gh-pages
deploy: 1be528cabe05436b8eeb666… (compare)
some var <= this.some_other_var
in javascript is then 1 assigned to 2 or 2 assigned to one ? guess some_other_var in this case is assigned to some_var ? other way around ? a digital world ?
console.log( [1,2,3].filter($_ => $_ < 3) );
// prints [1,2]
:id1629189983448
a solid:CurrentRole;
schema:description "I work on SolidOS";
schema:startDate "2021-08-02"^^xsd:date;
vcard:role "Software Engineer";
org:member :me;
org:organization :id1629189994814 .
:id1629189994814 a schema:Corporation; schema:name "Inrupt".
:id1629189983448
is not under :me (it is not linked with any prediacate)
store.connectedStatements(me)
you will get it
:me is org:member of [ a solid:CurrentRole;
schema:description "I work on SolidOS";
schema:startDate "2021-08-02"^^xsd:date;
vcard:role "Software Engineer";
org:organization [ a schema:Corporation; schema:name "Inrupt”]].
so the “is .. of’ syntax for reverse links allws you to write it in the file in the order whre everythng is ‘under’ me. Unforuntately the people who wrote the turtle standard left that out against my better judgement.