Results 30 comments of Makarov Andrey

Is it possible to make service available on one computer only? I'd like to create localhost aliases so I can register Docker container hostnames (with .local postfix) and connect to...

I was investigating why Flower container in eScriptorium prints a lot of "connection refused" errors and found this issue. The answer: we run Flower the wrong way! It's stated in...

This code doesn't format text, it just puts field contents into square brackets and parses `}}` as expected. Just an idea of algorithm. ``` def formats(pt, *args, **kw): ret =...

Ok, I created a file `test.py`: ``` def partial2(a1, a2, *args, **kwargs): print(a1, a2) print(args) print(kwargs) print('--') def main(): partial2(3, 4, 5, 6, foo=3, bar=4) main() partial2(3, 4, 5) ```...

> Try adding `PersistentKeepalive = 25` to the `Peer` section of your wireguard configuration on the server? But from the log we can see that it keeps sending keepalive packets...

Ok, I see now that it's a network issue. I've copied wireproxy app with my config to a different machine located in a different place and it works as expected....

Боюсь, что в Mikrotik есть [ограничение](https://forum.mikrotik.com/viewtopic.php?t=38167) 4Кб для переменных

> Unfortunately, this will run all sessions that have the specified Python version, even when they are not listed in `nox.options.sessions` I've just checked with Nox 2022.11.21 (on Windows); `nox...

Yes, I don't need a system-wide proxy at all, because I use Proxy SwitchyOmega browser extension, which can connect to a specified port. Now, I just switch off system proxy...

When we use `--lib` uv creates a folder `src/` and adds hatchling build system. In hatchling docs i read that by default [it searches for a package](https://hatch.pypa.io/latest/plugins/builder/wheel/#default-file-selection) in ``, `src/`,...