Thom
Thom
Might be nice to index the tags/topics as well, so people can explore projects easier
I was thinking of the github/gitlab tags/topics, since this issue mentions getting a count from them. I have no idea how maven works internally.
It's a basic ActiveRecord model, so in, for example, `CommentsController` you can put a `destroy` method: ``` # DELETE /arguments/1/comments/1 def destroy @comment = Comment.find_by_id params[:id] authorize @comment, :destroy? respond_to...
Would be useful to be able to read the gitlab DSN to set-up error reporting automatically.
`chrome:theSession` is a named graph (so `NamedNode`). It is used as the default _named graph_ (`NamedNode`), not to be confused with the RDF _default graph_ (`DefaultGraph`). > Should we change...
> I also don't understand why rdflib.js doesn't just use an instance of `DefaultGraph` All downstream code will have to account for an additional `termType`, client code, parsers, serializers will...
Oh, I've caused a circular dependency
The conflict has been resolved, I've also added the LDP namespace which was missing The problem of Node#toJS was fixed in https://github.com/linkeddata/rdflib.js/commit/62da35e6b2518c345b580cc517d77ef89f26ce8b, though that created a circular dependency by a...
So, I've created a turtle parsing benchmark, and [the results](https://gist.github.com/fletcher91/7d2b06546369b1e47449976bf29e30a1) show about a 40% decrease in memory usage (~55% after garbage collection), and an 8% reduction in processing time. Looking...
`Collection` still is missing from memoization since, due to its mutable nature, it might require a different strategy. Giving it a store index (should be system index? since the class...