Dan Davis

Results 113 comments of Dan Davis

I can envision an application that solves this by having 2-3 tables: - configurations - configvars for these configurations (1 configuration to many vars) - crawls (each crawl has a...

So, I've thought more about this, and I'm thinking that a GUI is not the right way to go, at least not initially. It would be better to do this...

The API exposed would enable this sort of output: ```python progress.finish() count = progress.index duration = progress.duration tput = count / duration print(f'\nProcessed {count} records in {duration:.1f} seconds ({tput:.1f} per...

Wow, I missed your update. It helps, but it isn't enough. Blocking the output of a line based on a number of chunks to save performance when showing progress is...

Just finished: ```` ............................................................ 1662000 ............................................................ 1668000 .............. 1669411 ``` The above illustrates what I guess I mean by a type of bar based on infinite, and t would be...

I will try to submit a pull request without tests to illustrate what I am thinking about later tonight. Feel free to reject, and I can add tests and resubmit...

+1 - I now have https://github.com/HHS/lodestar synced to the 1.4 branch, and would prefer to follow master rather than 1.4.

OK - Well, I have been unable to extrapolate. If you can tell me how I can configure ssl in my `karate-config.js`, I'll contribute to the examples. I've searched over...

This would actually help a lot - the CI/CD pipeline sends me the keystore password as an environment variable from Jenkins credentials, and since I'm doing the SSL configuration in...

My personal preference would be to raise an exception, but it is *not* either or. You could raise a warning and then fallback to wrap in a threadpool. Users who...