Tim Berners-Lee SOLID project maybe implementation with IPFS?

Hello,

I see a new which talk Tim Berners-Lee works on new project SOLID. It’s specs to propose approach on decentralized web application. The goal is permit to enduser to get ownership personal data.

I think it might be interesting to see how far IPFS can help or used to do that

what do you think ?

Regards

3 Likes

I’m still very unclear on how SOLID and IPFS compare. It seems that SOLID needs to be built on something like IPFS, but have they come up with their own version of IPFS or something? The site doesn’t have a lot of useful details…

Some quick browsing of SOLID developer resources has revealed a little more.

The technical spec makes it sound as though it does not actually compete with IPFS, since everything seems to be done in the usual single-server-over-HTTP regime, which makes me think that it should be able to be used on top of IPFS instead with minimal pain. Really the decentralized part seems to be the access to the data, not the storage of the data itself, which is a key value-add for IPFS.

One unfortunate thing is that they have come up with their own version of IPLD called Linked Data.

5 Likes

thx for your analyse about that yes Linked data can be compare at IPLD it’s my guess also.

Regards

My high level understanding of SOLID is that it explores the potential of creating a new paradigm by proposing all data for web apps should be defined and accessed through RDF from rdf end point. So there is a universal metadesignable reusable interoperable common data layer so all applications can be built from reusable components.

It is inherently distributed in the sense that it assumes rdf end points to be available and is agnostic about the topology of endpoints.
It is an application/data protocol.

I am interested myself in building out a comparable vision but all built on top of IPFS.

3 Likes

Hi gyuri,

I’m very intrestig to contributate your work to build this comparable vision on IPFS. Let me know if you intresting for bit help.

Regards

I am not sure what the protocol is for connecting on this platform, and we may have some language barriers to cross, but I would very much like to discuss things with you.
My linked in profile may give you some background https://www.linkedin.com/in/gyuri-lajos/ while I read the community guidelines

Solid is a set of protocol to build the Social application that produces Linked-Data, and it will guide developers to utilize Linked-Data in the future. So it’s an application-level protocol set.

For Linked-Data, there are two things related to IPFS:

  1. It should be stored in a storage layer, called POD, which may have many providers. As long as a storage provider follow the protocol ( providing some API, details here https://www.w3.org/TR/ldp-primer). So anybody can warp IPFS in his own way to build a POD to store linked data.
  2. Basically, we store linked-data in RDF on POD. But linked-data has many serialization formats, likes JSON-LD, which IPLD is comparable to.

This is my understanding to IPFS + Solid.

2 Likes

More reference:

https://solid.mit.edu/
https://www.w3.org/DesignIssues/CloudStorage.html



https://www.w3.org/TR/cooluris/#solutions
https://githubcom/solid/solid-spec/blob/master/solid-webid-profiles.md#public-and-private-profiles)
https://githubcom/solid/solid/blob/master/proposals/data-discovery.md)
https://www.w3.org/wiki/WebAccessControl
http://www.ruanyifeng.com/blog/2011/08/what_is_a_digital_signaturehtml)
https://docs.aws.amazoncom/zh_cn/waf/latest/developerguide/web-acl.html)
https://github.com/solid/web-access-control-spec#modes-of-access
https://www.w3.org/TR/ldp-primer/#intro-section
https://www.w3.org/2013/dwbp/wiki/RDF_AND_JSON-LD_UseCases
https://www.w3.org/TR/social-web-protocols/#subscribing
https://www.w3.org/TR/activitypub/
https://mediumcom/uport/private-data-on-public-networks-ab1086a137d8)
http://ethfans.org/posts/what-is-a-uport-identity

1 Like

I like Engelbart too. I think Solid will do a lot of good to human, and IPFS will make using Solid easier.

Also interested in Solid on top of IPFS. Solid looks good, but I’d be looking for IPFS to maybe help backup the POD data to the IPFS network?

I’m new to IPFS, for what I can understand, I agree that “more or less” SOLID could be implemented on the top of IPFS. Some features of Linked Data (that, with RDF represents the core technologies behind SOLID) rely on HTTP protocol features and standards, namely content negotiation and HTTP verbs (i.e. not only get but PUT, PATCH, DELETE, POST, etc). I’m interested to know more about this topic. Perhaps an IPFS solid implementation could introduce some limitations to the current solid specification (e.g. forcing a serialization type, for instance, turtle o json-ld for data representation)

I think that SOLID on IPFS would be problematic. RDF can use HTTP but technically doesn’t rely on it. It does rely on URI’s, how you dereference them is another matter. (you can use mailto:, tel:, etc just find in RDF). Linked data, similarly, doesn’t require HTTP even thought that’s what everyone uses.

I think the problem is going to come with IPFS being content addressable and RDF not having a canonical representation. N-triples/n-quads will be the closest you’ll get but you’d still have a problem with anonymous nodes, aka blank nodes. There are things you can do to work with them but you’ll get into all kinds of crazyness with skolomization, graph isomorphism, blah, blah, blah.

I think you’d end up making heavy use of ipns and negating much of what you want from IPFS. That being said, I’m very interested in how you could use IPFS and RDF.

Hummm… for what I can understand, you are right about RDF, but SOLID relies on HTTP. Blank nodes are just confined in resources (ie files) and cant’ be de-referenced, so they should not represent a problem. If IPFS supports all HTTP verbs, in principle it could be used to implement a sort of distributed, serverless SOLID pod. Applications need to implement a sort of RDF cache to collect data from different IPFS and making queries. Yes, you’d end up making heavy use of ipns but this should be easily cacheable.

1 Like

You let me know how that goes.

Hi guys I come from Solid and I’ve implement some tests to run ActivityPub like protocole https://forum.solidproject.org/t/discussion-solid-vs-activitypub/2685/32
and @happybeing as implented solid on Safe network…
I’m just discovering Ipfs but perhaps could help.
I’m not often of this forum, so if you want to know more , poke me on Solid forum as @smag0

1 Like

One of the ways i think you could use RDF with IPFS is IPLD => JSON-LD => RDF (because JSON-LD and RDF can be transformed back and forth i believe). Storing a JSON-LD context in IPLD is possible but you need a custom parser.

It could work but you’d have to use IPNS resources and you’d have to pubish a lot of them. What might be interesting is using IPNS resources and linked data fragments https://linkeddatafragments.org

1 Like