Derek Kulinski

Results 138 comments of Derek Kulinski

@aragaer, So here's how I do it: ### create SOCKS proxy through SSH (this opens socks on localhost:1080) ```sh ssh -vND 1080 ``` ### configure privoxy (this opens http proxy...

@paravoid I made a small PR illustrating that we can add types without breaking any compatibility. It passes all unit tests and adds enough type information so my code passes...

@brian-brazil type hints can still be added using `# type:` comments, here's more: https://mypy.readthedocs.io/en/stable/python2.html (this is another alternative: https://mypy.readthedocs.io/en/stable/stubs.html, but it is worse since types get easilly out of sync...

> Hi @brancz we have similar situation, is there any documentation to read about it? Yes, this project looks great, but documentation absolutely sucks. It's here and there but you...

I similarly wanted to mock asyncio, and followed recommendation in https://github.com/MagicStack/asyncpg/issues/589. And actually perhaps that's more reliable test as it also can somewhat test correctness of my SQL. I also...

@garbas any luck with it? I think what they suggested in PYPA would be satiable. If you would allow `--index-url` to overwrite location or `--extra-index-url` to provide additional sources and...

@mhihasan despite repo's name it's not some kind of official Amazon AWS repo. Just somebody who created docker images that replicate AWS lambda environment. mlupin/docker-lambda is as official as this...

`nix develop --profile dev-profile -c true` doesn't seem to include all shell dependencies. After pushing and garbage collecting there were still many packages being rebuilt. This is just a guess,...

@priyanshu-panwar the https://github.com/yuval9313/FastApi-RESTful mentioned 2 years ago seems to be still active (as of writing, last commit was 4 days ago). Why are you creating another project and what makes...

Looks like a while time has passed since you asked that question, so I don't know if it is still relevant. Not an expert in this, but I see you...