Stéphane Lavergne
Stéphane Lavergne
From what I can tell, it's been removed from Google Play entirely. 😕
I can confirm this with Nginx 1.19.6 as well: adding `POSITION_AUX=true` to the build environment causes the resulting binary to go into an endless loop when attempting to start. Errors...
My main use for it would've been to restore mod_headers_more's ability to suppress Nginx's native `Server:` header. I guess I'm one of very few people who care to go that...
I just dug a little deeper and actually ngx_pagespeed is removing all our custom headers from our responses, both those set with `add_header` and `more_set_headers`. This means when PageSpeed is...
I tested it with plain image URLs when pagespeed is on. My work-around for now (which turned out to work quite well) is to have Nginx proxy into itself to...
Thanks for the hint, but actually this example doesn't help users of semantic-ui-css per se. What we need is a way to remove not only the `@import`, but also all...
It doesn't have to be at the beginning of a line. I have two mid-line examples of this: * `"cut:x%"` is displayed as `"cut:x%!"(MISSING)` * `/^\s*cut:\s*([0-9.,]+)\s*(%)\s*$/;` is displayed as `/^\s*cut:\s*([0-9.,]+)\s*(%!)(MISSING)\s*$/;`...
Thanks @rgburke for looking into this. Is there any chance this fixed version could be released? I don't have a Go compilation environment.
Oh, yes indeed, since we'd be storing to a single output instead of one per Protobuf message. As for the second part, basically I'd like to offer users the option...
For nested types, that's the caveat I noted (3rd paragraph of "encoding" section): I'll want to calculate the size of every message exactly once. Some kind of temporary memoization at...