Andrew Farrell
Andrew Farrell
@zreisman could you paste a snippet of the code you used to get [break](https://github.com/gsamokovarov/break) to work? It would help those folks like me who've run into this problem to get...
@tknickman I'd be interested in reading that
oh, wow. I just realized what this is. This is the issue I was thinking we would run into when we decided to do things like explorer.continuum.io/ddt/ rather than ddt.explorer.continuum.io...
Nope, that sets the filesystem location which nginx looks in for static file responses. We need http://wiki.nginx.org/HttpSubModule
This app serves a js page “dataaccess.js” and on line 128 or that page, it calls runQuery('/getAvailableCrawlers', {}, onAvailableCrawlersLoaded); which is defined as var runQuery = function(query, args, onCompletion, doneCb)...
@kriehl What is the deadline for when DARPA wants a single-container deploy?
@mreschke I've updated @jessekrubin's PR to remove the conflicts with master, in case you find it useful.
I imagine the interface could look like: ``` $ chrome-cli list profiles [Default] [Profile 2] $ chrome-cli open https://xkcd.com/ -p 'Profile 2' ``` And be based on the profile folders...
I too would like to be able to either filter out really long lines or to have that be the default and to be able to include them again.
One way to get around this is something like `ag '.csv' | awk '{ if (length($0) < 2028) print }'`, but it removes ag's nice formatting.