Alexey Zakhlestin
Alexey Zakhlestin
I am not completely sure about form this can take, but I see this as a very important direction. Basic functionality I expect is `SPIN SPARQL` conversion ([spec is here](http://spinrdf.org/sp.html))....
Right now, sparqlwrapper uses urllib2, which doesn't reuse http connections opening/closing them each time. In cases when there is a need to execute several queries in row connection reusage might...
`SPARQLWrapper` takes `endpoint` and `updateEndpoint` URLs as [parameters of constructor](https://github.com/RDFLib/sparqlwrapper/blob/master/SPARQLWrapper/Wrapper.py#L110) separately, [it has method](https://github.com/RDFLib/sparqlwrapper/blob/master/SPARQLWrapper/Wrapper.py#L248) named `setCredentials` which allows to specify login/password which are used for [Basic Authentication](https://github.com/RDFLib/sparqlwrapper/blob/master/SPARQLWrapper/Wrapper.py#L398). There are 2...
Currently, result of `QueryResult.convert` depends on the input type: - SPARQL_XML results in DOM object - SPARQL_JSON results in associative array (decoded json) - RDF_N3 results in string - RDF_XML...
We're writing majority of code using async/await these days. So our first thought was to use it for kue-tasks too. Something like this: ``` js queue.process('hello', async (job) => {...
Some commands do not need full initialization of context and could run/return instantly. `rmapi version` is an obvious example. `rmapi help` is another one is it possible to delay initialization...
It would be great if something like this worked: `rmapi help put` and gave information about arguments and options (if any)
uncss can not do requests in "authorized" mode to the website and that's just what I need it to do. I know about #176 and #186. This one is smaller...
Currently, react-inform has `forceValidate()` which exposes snapshot of errors to the props. We found ourselves in a situation when we need to get full list of current errors synchronously. Do...
We should upgrade to React 18.0. https://reactjs.org/blog/2022/03/29/react-v18.html It might result in better performance