Results 965 comments of Thomas Grainger

Previously you set the host of the proxy server to an explicit 127.0.0.x IP. Is that needed?

I backported the `def _tunnel(self):` method from 3.12 and ran the tests on 3.11 and everything passed still, so I don't think any changes are needed from urllib3 for this.

note that the actual code raises `ImportError` when the ssl module cannot be found: ``` >>> import sys >>> sys.modules["ssl"] = None >>> import urllib3 >>> pool = urllib3.HTTPSConnectionPool("google.com", 443,...

this test was invalidated by [`2ec3018` (#1102)](https://github.com/urllib3/urllib3/pull/1102/commits/2ec3018926427c96914373947d06cf32ec7d61fa#r97308148)

@sethmlarson but this is a warning emitted for users of urllib3 on 3.10 and I'd like the warning fixed for those people too

@ppareit any update on this? I also have this problem

@alexk111 do you know if this will be published? I'm using https://www.npmjs.com/package/ng-img-crop-npm for now from @herpiko

`{foo && }` is buggy, if foo is `undefined` then React will warn. You need `{foo && || null}` in which case you might as well use ternary: `{foo ?...

@zbal have a look at https://github.com/6si/shipwright it automatically generates a build graph from a directory of Dockerfiles