Alexander Clouter

Results 105 comments of Alexander Clouter

My advice is to treat the `webRequest` filter as a first-pass filter that only triggers your callback function when there is something of interest. This filter covers 99%+ of requests...

For others to discover, I have noticed that if the Redis backend drops the broken (by design) panics immediately and dies which is perfect. For an actual status URL `/.well-known/openid-configuration`...

Agreeing with @stephank as I do not think any actual development work needs to be done here. What is needed is official advice in the documentation on what the administrator...

Try instead from the project directory cloned on your workstation: ``` cp config.toml.dist config.toml docker run -it --rm -v "$PWD":/data:ro portier/broker /data/config.toml ```

What is the official method to preload a script here? I cannot find anything obvious: ``` alex@aineko:~/src/adloox/Prebid.js$ git grep "'preload'" modules/ src/ modules/adlooxAnalyticsAdapter.js: link.setAttribute('rel', 'preload'); modules/cleanioRtdProvider.js: linkElement.rel = 'preload'; modules/geoedgeRtdProvider.js:...

> @jimdigriz we don't have a preload method. Is it providing some advantage to you to preload the script a couple js dozen lines before you load it? It would...

> Our reading of the code suggests it isn't, as the preload might not occur until the module is loaded. At the time I was looking for a suitable preload,...

I used `compress` to avoid having to create a API call so then the application can tell *what* to put in its headers (today we support `deflate`/`gzip` simply as it...

Finally found the time to improve the `compress` flag support; I moved the functionality from `hackney_http` into `hackney_response` which seems more appropriate as Content-Encoding is application layer feature rather than...

I have a shim wrapper for this that works for default/gzip and even when calling `stream_body/1` that I can put up here if or anyone wants to see the moving...