Steffan Sluis
Steffan Sluis
As can be seen [here](https://github.com/oleksiyk/kafka/blob/b3c47be27e7ac8d95afa24391cd57d17e40a5e9f/lib/simple_consumer.js#L67), the function `commitOffset` is present on the SimpleConsumer. However, it is [commented out](https://github.com/oleksiyk/kafka/blob/480e19d3856ec5bce2f508c03350c2af5fc7d02c/types/simple_consumer.d.ts#L10) in the types for SimpleConsumer.
I noticed that language tagged strings are already supported internally in Cayley. It would be nice to be able to use this functionality through the HTTP APIs somehow (mostly Gizmo...
I'm doing the following: - Select 1000 subjects matching a particular predicate and object using `g.V("object").In("").Limit(1000).All()` - Map the result to quads in JSON - POST the stringified JSON array...
I'm aiming to process a lot of data as quickly as possible, and I'm finding the Postgres connection limit backing my Cayley is being the bottleneck. I started thinking: I...
`node-oauth2-server` offers an `options`-parameter to its Response constructor. I think `express-oauth-server` should pass (some) of the properties of the express response object via the `options` parameter, so that they are...
I'm using an external library to generate part of my schema. The library support async resolvers but isn't aware they are allowed to be AsyncIterators/Observables, and as such I end...
Hi! A couple of things: really like the library! I also saw you are on vacation until 2018 (enjoy!), so no expectations of urgency here. So I've been using you're...
I want to run an express server on port 80. When I start the server with `sudo node index.js`, it starts fine. However, when I use `sudo devtool index.js`, I...
Express exposes a `locals` property on the response object that it meant to be used to pass data between middlewares for the current request only. I think this property should...
# Context I have a package dependency in the form of `my-repository = {git = "ssh://[email protected]/myorganization/my-repository.git",ref = "feature/my-feature"}` in my Pipfile, which gets translated into an `install_requires` dependency in the...