Коренберг Марк

Results 101 issues of Коренберг Марк

Document watch callbacks are called from different thread. It's VERY important

I use Fedora 33 and rpmlint from the distro (rpmlint-1.11-12.fc33.noarch) Fragment of .spec file how I build my GO sources: ```sh %build export GOPATH=/usr/share/gocode export GOBUILDFLAGS="%gobuildflags" export CGO_ENABLED=0 mkdir bin...

In Python RPMS: ``` $ xxd usr/lib/python3.10/site-packages/pyrad-2.4-py3.10.egg-info/zip-safe 00000000: 0a . $ xxd usr/lib/python3.10/site-packages/pyrad-2.4-py3.10.egg-info/dependency_links.txt 00000000: 0a ``` These two files both contain just one empty newline. It's not a bug to...

I think if ``` %pre %sysusers_create_package ``` is used, `Requires(pre): /usr/bin/systemd-sysusers` must also be used. See https://bugzilla.redhat.com/show_bug.cgi?id=1972026 as an example of such bug.

This is a bug. `BuildRequires: libnl3-devel` is not an error actually.

``` cat ~/.s3cfg [default] access_key = XXXXXX-YYYYYYYYYYYYY secret_key = tPVsgEQuKnVjknvr6dBvieVrsJK2afudeh1-GGu5 bucket_location = ru-central1 host_base = storage.yandexcloud.net host_bucket = %(bucket)s.storage.yandexcloud.net website_endpoint = http://%(bucket)s.website.yandexcloud.net ``` s3cmd works. s4cmd: ``` (D)s4cmd:662 read S3...

`binascii.b2a_base64(os.urandom(24))[:-1]` is faster and much secure since: 1. does not involve uuid, that is not suitable for secure token generations 2. use OS provided much more secure random as opposed...

Well, you have convertor ANY -> technically_correct/ It will be nice if you write ANY -> human_readable i.e. ANY -> normalized -> human_readable. Human-readable mean (idna -> unicode) + unscape...

enhancement

now: `_ECT = Callable[[Optional[Type[_CData]], _FuncPointer, Tuple[_CData, ...]], _CData]` should be: `_ECT = Callable[[Optional[_CData], _FuncPointer, Tuple[_CData, ...]], _CData]` Because, at least, the return type of this function must be the same...

size-small