Ed Summers

Results 206 comments of Ed Summers

I was trying to implement support for HTTP Basic Auth, and got a simple puppeteer-cluster example working: ```javascript const { Cluster } = require('puppeteer-cluster'); (async () => { const cluster...

I think I figured out a work-around for profile creation by using the [username/password in the URL](https://danq.me/2021/09/07/http-basic-auth-urls/) for example: ``` docker run -p 9222:9222 -p 9223:9223 -v $PWD/profiles:/output/ -it webrecorder/browsertrix-crawler...

I don't think that the Basic Auth credentials are stored in the browser profile and that puppeteer will need to be [started](https://pptr.dev/api/puppeteer.page.authenticate/) up with the credentials that are supplied on...

Thanks for the feedback. I made a small update to the docs and the help text. Does that help?

Ok, I put in a guard against `to_csv()` not existing. Due to my own narrow use of Intake I hadn't really considered use cases where the container type isn't a...

It's probably inefficient but I've started by querying by hour and then exponentially increasing the span when no results come back. Then when results come back I rest the span...

It does! https://github.com/weixsong/elasticlunr.js#8-save--load-index

Is there currently no way to do this? I'm using v0.9.5 and tried resetting my `index.documentStore.docs` before persisting and halved the size of my index on disk. ```javascript index.documentStore.docs =...

An option like `storeDocuments` to control whether fields are persisted to the index would be VERY useful for me. But it doesn't seem to work in v0.9.5. Does anything like...