Dobes Vandermeer

Results 152 issues of Dobes Vandermeer

I'm pretty sure Chrome sends the cookies registered for a site along with each request. However, it isn't evident which cookies it is sending by looking at the "Request Headers"...

When mobile clients use the platform SDK to authenticate, they can just send a resulting one-time-use token to the server for the server to use for authentication. See https://developers.google.com/+/mobile/android/sign-in This...

Does this automatically wait and retry if you are hitting rate limits?

A handy way to wait for an event with node.js is to use the `once` function in the `events` module. e.g. `await once(bottleneck, 'empty');` to wait for the bottleneck `empty`...

EventEmitter instances are expected to return the event emitter itself from `on` and `once`. Bottleneck does this already, but the TypeScript definitions did not reflect this. Fixes https://github.com/SGrondin/bottleneck/issues/164

The ability to trigger a manual flush of any remaining rows is needed when you reach the end of a data set and there will be no more rows coming....

If we use the batcher to operate on a bunch of items and we reach the end, it would be useful to "flush" the batcher if there are rows remaining....

I believe the PlanOut language expects that if you don't `return false` then the experiment is considered active. Currently the interpreter only sets `_inExperiment = true` if you explicitly `return...

It would be nice if `--clean` were a bit more smart and only deleted output files with no matching input.

### Is this a bug report? If the client disconnects before the remote server, the entire server process can be killed by an unhandled I/O error. The code in https://github.com/chimurai/http-proxy-middleware/blob/master/src/handlers.ts#L52...