I've been using a partial `MANPATH` for many years without problems. I cannot reproduce #14273 (and I would have noticed many years ago if I could, as would others, apparently):
```
MANPATH=/usr/local/opt/findutils/libexec/gnuman:/usr/local/opt/coreutils/libexec/gnuman: /usr/bin/man git
```
works just fine. Removing the trailing colon in `MANPATH` would land me in trouble, but that's now what #14273 claims. Could you please provide a working repro?
Add Homebrew installation instructions
======================================
I just added insect to Homebrew (Homebrew/homebrew-core#14928). It would be nice to mention it on README, seeing that the AUR package has also been mentioned.
The link http://braumeister.org/formula/insect isn't live yet at the time of this PR; that's because it takes an hour or two for Braumeister to pick up changes.
Okay, you can generate `output/` by installing purescript and pulp, pulling in all bower deps, and finally running pulp to build the JS. The npm package is essentially the build artifact.
@ilovezfs You can't npm install from the repo directly, since it's lacking an `output` directory which is generated somehow (didn't look into how it's generated, but I got that same error when I first started with the release tarball on GitHub).
I have added it to my `github-release-monitor` though, so I should be able to take care of updates.
insect 4.6.0 (new formula)
==========================
- [x] Have you followed the [guidelines for contributing](https://github.com/Homebrew/homebrew-core/blob/master/CONTRIBUTING.md)?
- [x] Have you checked that there aren't other open [pull requests](https://github.com/Homebrew/homebrew-core/pulls) for the same formula update/change?
- [x] Have you built your formula locally with `brew install --build-from-source <formula>`, where `<formula>` is the name of the formula you're submitting?
- [x] Does your build pass `brew audit --strict <formula>` (after doing `brew install <formula>`)?
-----
insect is a high precision scientific calculator with support for physical units. It was recently [HN'ed](https://news.ycombinator.com/item?id=14625795), and has 689 stars on [GitHub](https://github.com/sharkdp/insect) at the time of submission. Looks like this will be a more productive replacement for Mathematica/MathKernel for some of my physics calculations, especially on machines where I don't want to install Mathematica or can't have it licensed.
Note to self: submit a PR to sharkdp/insect to add `brew install insect` to their README.
More proxy stuff: clean up after #190 and improve upon that
===========================================================
- Fix the mistakes of #190:
- Logic was screwed up: what's `if proxy.find('@')`? -1 is truthy.
- User and password not percent-decoded.
- Bring proxy spec up to par with curl: `[http://][user:password@]proxyhost[:port]`;
- Update docs. Notably, we were talking about HTTPS proxies while we never supported HTTPS connections to proxies (my fault I believe — I was confusing various terms when I first implemented proxy support); that has been fixed — now we only talk about HTTP proxies, and an explicit `https://` scheme even results in a `NotImplementedError`.