Vikash Rathee

Results 37 issues of Vikash Rathee

I want to check some conditions on DB, before making a redirect to proxy. Any suggestion on code below. All, I need is get the worker URL from database using...

I am trying to download all products from my store with limited fields and pagination. But even when I am using the `fields` property to see the comma-separated fields name....

stale

How to insert dynamic / ExpendoObject to LiteDb. The BsonMapper throw an `Null exception` `Object reference not set to an instance of an object.` ``` dynamic myObj = new ExpandoObject();...

Is there any event I can subscribe to know when my task is completed? For example, I have 1000 URLs queued with maxConcurrency : `3`, which will capture screenshot and...

When I test the puppeteer-cluster with `puppeteer-extra`. It doesn't work with adblocker plugin. I am testing the [screenshot example](https://github.com/thomasdondorf/puppeteer-cluster/blob/master/examples/express-screenshot.js) ``` const puppeteer = require('puppeteer-extra'); const { Cluster } = require('puppeteer-cluster');...

help wanted

I see you are working on new [query the status](https://github.com/thomasdondorf/puppeteer-cluster/issues/8#issuecomment-421307994) API. Can we use that to get how many jobs in queue and cancel the job? 1. I am using...

enhancement

Any way to send X headers in every call response to tell clients about their limitation? As [implemented in asp.core version](https://github.com/stefanprodan/WebApiThrottle/issues/30) ``` "X-RateLimit-Limit": "5000", "X-RateLimit-Remaining": "4966", "X-RateLimit-Reset": "1372700873" ```

The `var policy = policyRepository.FirstOrDefault(ThrottleManager.GetPolicyKey());` is always null Here is my code : //Rate Limits ``` public static class WebApiConfig { public static void Register(HttpConfiguration config) { config.MessageHandlers.Add(new MyThrottlingHandler() {...

I have an `ObjectID` field and it's value set in my `dynamic` type, but Aloglia still throw error saying ``The type T must have an ObjectID property or a JsonPropertyAttribute...

Discussion

Expressjs default template has `.bin/www` to start the node js app. But `bin` folder is never committed to github (I can't find anyway until now). So my codeCommit pipeline fails...

question