Henry Story

Results 422 comments of Henry Story

In the above it looks like essentially I bypass the need for the [acp:AccessControl](https://github.com/solid/authorization-panel/blob/731965e1aa9fef8a23eaece31d6b1e8f2e75e4e5/proposals/acp/solid-acp.ttl#L51) class, defined as: ```Turtle acp:AccessControl a rdfs:Class ; rdfs:comment "Access Control statements associate an AccessControlResource with...

Thanks for the feedback @emmettownsend. I'll move aside the question about whether [ACRs should have ACRs](https://github.com/solid/authorization-panel/issues/151) to issue 151 as that is a topic by itself, and is confusing things...

The `Link` header is a lot longer but has the advantage of not needing a special parser or new header field. `Link` headers can be conceived as RDF triples (indeed...

```bash $ curl -s http://www.w3.org/ns/auth/acl | grep accessControl --after-context=8 acl:accessControl a rdf:Property; :comment """The Access Control file for this information resource. This may of course be a virtual resource implemented...

I made a few clarifying changes @TallTed . There is indeed a legacy issue with naming these ACL's for Access Control Lists, as 1) there are no lists and 2)...

Am I right to think @emmettownsend that the `wac:authorizes` I defined above is the same as `acp:access`, ie. the following holds: ```Turtle wac:authorizes owl:equivalentProperty acp:access . ``` If that is...

@emmettownsend I just answered my question above [in a comment on acp:apply* relations](https://github.com/solid/authorization-panel/issues/143#issuecomment-739496841). `wac:authorizes` is not the same as `acp:access`. Instead ```Turtle acp:access owl:inverseOf wac:accessTo . ```

That table is a very good idea. I found an interesting Description Logic based Access Control Model called RelBAC which I describe in [issue 150](https://github.com/solid/authorization-panel/issues/150). * It is extremely simple...

I also wanted to integrate cats-effect with my Akka project [Reactive Solid](https://github.com/co-operating-systems/Reactive-SoLiD). But I was wondering: how do they tie together? For example are you running your cats-effect fibres inside...

Thanks. That is very interesting example. I am implementing the IETF's "Signing HTTP Messages" (in [httpSig repo](https://github.com/bblfish/httpSig)) using [typelevel bobcats](https://github.com/typelevel/bobcats/pull/48) (perhaps that is of interest to evolution-gaming?) So I'll go...