Sitsofe Wheeler
Sitsofe Wheeler
The problem with always initializing everything to zero is that unitialized memory checkers can't help you. Tools like valgrind can warn you if you use a variable before setting it...
On macOS 10.13 I have a piece of code doing this: ``` [working connection that successfully does read capacity 16] iscsi_set_reconnect_max_retries(ifd->iscsi, 0); iscsi_set_timeout(ifd->iscsi, 3); ret = iscsi_logout_sync(ifd->iscsi); ``` Sometimes after...
Sometimes you find python escape characters are accepted (and decoded) where they shouldn't be. E.g. something that only accepts alphanumerics goes on to accept \60 because unescaped it turns into...
Google Authenticator on Android rejects QR codes generated by MacPass because the algorithm isn't in capitals. The algorithm text appears to come from [stringForAlgorithm in KPKOTPGenerator.m ](https://github.com/MacPass/KeePassKit/blob/982490cfc26e011e593174b387707a57bec91265/KeePassKit/Cryptography/KPKOTPGenerator.m#L64C15-L75) . Additionally it...
### Is this a docs issue? - [x] My issue is about the documentation content or website ### Type of issue Information is incorrect ### Description On https://docs.docker.com/build/building/multi-platform/#prerequisites there is...
### Is this a docs issue? - [x] My issue is about the documentation content or website ### Type of issue Information is incorrect ### Description The `io_uring_*` syscalls are...
### Question Hello, I have the following `test.py`: ```python import docker from docker.types import Ulimit docker.types.Ulimit(name='nproc', soft=1024) Ulimit(name='nproc', soft=1024) ``` and I have `docker==7.1.0` installed in an activte venv. When...