Patrick Hochstenbach
Patrick Hochstenbach
@jeswr I would love to see this code in N3. I have immediate plans to use this in some webapps I have in mind. Do you have in the reasoner...
@jeswr thanks this works. I see that the `reason` method inline updates the N3Store. Would it be possible to also support that the reason method returns a new N3Store (with...
In academic libraries we have the inverse use-case where the metadata of a non-RDF resource might be public available, but the non-RDF resource itself can be protected. E.g. one is...
Is there any progress on this? I've seen mentions of Penny in other projects (e.g. https://github.com/solid/community-server/discussions/894) but it is not mentioned in the Solid Apps list. As new user of...
This can be done with a marc_each and add_to_exporter trick. E.g. given a MARC file camel.mrc and a fix test.fix like: marc_map("001",x.id) do marc_each() if marc_has(650a) marc_map("650a",x.test) add_to_exporter(x,CSV) end end...
@danfowler Ok will do, and will try to join you on the chat later today
Is there a good plan how to maintain these man pages? I see still people contributing to the Wiki page. What is needed is that we need to decide to...
@vpeil Yes, but I am a but uncomfortable with the naming convention. Catmandu::Exporter::Datacite that uses Catmandu::Exporter::Webservice as base class is ok for me. But be aware, I have issues with...
Sure. For now all exporters are Catmandu::Exporter:: nothing deeper.
Can in this case the sort in the to_array() feature be deleted? It would be a much cleaner to do something like: ``` Catmandu->importer(...)->select(...)->sort(...)->to_array; ``` then ``` Catmandu->importer(...)->select(...)->to_array(sort => ....);...