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)
I am just seeing I have a refactoring PR left open here solid/solid-panes#268
Someone able to review? Any objections against merging?
I keep my WebID Profile Document and CV as separate resources (one FYN path: <https://csarven.ca/#i> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <https://csarven.ca/cv> .
) -- Usually the profile is 'high traffic'.. CV is less so but of course depends on UCs.. So, makes sense to have a "More.." leading to the full resume/CV. The other reason is to give different access controls - although I keep everything public -- well mostly my 20s+ activities.
My CV went through a number of different resume/cv vocabs/ontologies.. including those that help describe agents/events and those that describe a template and then a profile gets associated to it. Currently I just use schemaorg - mostly rooted in foaf/vcard and ical
In rdflib I can find all statements of a subject via statementsMatching. Is there something similar, for getting everything grouped by predicate?
So that instead of:
[
{s, p1, o1},
{s, p1, o2},
{s, p2, o1},
]
I will get
[
{s, p1, [o1, o2]},
{s, p2, [o1]},
]
?