Anthon Pang
Anthon Pang
https://github.com/subgraph/Vega/wiki/Vega-Proxy#ca-certificate
@meshinator The link should work when Vega is running.
* Set your browser to use the Vega proxy * Turn on the proxy in Vega * Enter the magic URL http://vega/ca.crt in your browser to be presented with the...
YAML is inherently markup while JSON is a serialization format. To preserve the YAML layout, the JSON schema would have to include hints to the editor on how to handle...
I actually work with yaml extensively for config files and we don't make much use of multiline strings. The biggest concern for us in using an editor like json-editor is...
An alternative to #11 might be to use Cloudflare's DNS over HTTPS lookup instead of gethostbyaddr(). Pros: * mitigates again MITM * might be faster given Cloudflare infrastructure and caching...
@strugee It sounds more like you didn't have `debian-security` in your apt sources list, e.g., ``` deb http://security.debian.org/debian-security/ jesse/updates main ``` Looking at the Debian page https://packages.debian.org/jessie/php5, I see it...
The mbstring.func_overload ini setting can't be changed at run-time; also, I've run into systems where the mbstring extension isn't enabled. How about prefixing strlen() and substr() calls with '_', and...
The Extensions support looks incomplete. In Extensions/example.php, I see: ``` 'functions' => getFunctions(array('Compass','Own')), 'extensions' => array('Compass','Own') ``` I would expect to use $options['extensions'] -- instead of $options['functions'] and getFunctions() --...