Völgyes, David

Results 31 comments of Völgyes, David

Hi, I also got stuck with other problems, but i think there are two parts, one is the queueing system, and one is the transformation time. I have no specific...

Hi, About my implementation: yeah, i am not sure about it, but at the current stage, it is quite messy. I will make a new, cleaned up version, which will...

Loguru: that is simple: it is not my project. It is very confusing if a project used multiple logging mechanisms, or only one subproject suddenly starts emitting log messages. Logging...

For the sake of completeness, PEP-570 about positional-only arguments should also be kept in mind. https://www.python.org/dev/peps/pep-0570/ ``` def name(positional_only_parameters, /, positional_or_keyword_parameters, *, keyword_only_parameters): ``` I prefer the keywords-only signatures for...

Maybe 'Iterable'? String is also iterable, but you can define new contract to rule out strings. It is not too nice, maybe it a negation in contract would be useful,...

Well, there are a lot of technical issues here. First, there is no way to actually prevent a git commit. Period. It happens on the user's side, he/she can do...

I have no useful idea for cleaning up PRs, but there is one for the enforcement part. There is a tool called precommit-hooks. (See pre-commit.com and https://github.com/pre-commit/pre-commit-hooks ). This is...

By the way, here is a longer list of hooks. I did not find astyle hook, but it shouldn't be too complicated. https://pre-commit.com/hooks.html

If clang-format, or any other formatter is used, then i would strongly suggest introducing a pre-commit hook too, e.g. for clang-format: https://github.com/doublify/pre-commit-clang-format Pre-commit is awesome, and i highly recommend it...

For my use case it would be crucial to have some multiband feature. For instance, I would like to perform stand based statistics on vector values, e.g. pixel brightness (combination...