nmoreaud
nmoreaud
For example with this program: ``` program.add_description("Compute"); program.add_argument("input").help("input file"); program.add_argument("-o").required(); program.add_argument("-r").required(); program.parse_args(m_argc, m_argv); ``` I obtain: ``` -o: required. ``` Could we be able to choose the priority of parameter...
Hello, While searching on the web, I have seen no mention for mongoengine support of current version of mongo UUID fields (binary subtype 0x04). When I use the following definition...
DBeaver displays huge size for dolt tables (70GB). I tried this query and it reports huge size too: ```sql SELECT TABLE_NAME AS `Table`, ROUND((DATA_LENGTH + INDEX_LENGTH) / 1024 / 1024)...
Hello, I use zalando spectral ruleset, and I wish to have better error locations in case of $rel objects. Do you think it can be improved? For example: ```yaml openapi:...
Hello, I wonder if it is possible, to serialize a class to a dict using a generator. It could help to reduce memory allocations when serializing dataclasses with `__slots__`. I...
SQLAlchemy recommends a new way of writing ORM queries, using select(): https://docs.sqlalchemy.org/en/14/changelog/migration_20.html Could you update this library to support it? Currently, it triggers errors such as: `'Select' object has no...
With the latest version, when the mouse leaves the SVG element, the movement is stopped. This is a weird user interaction. There was already a ticket about this but it...
When compiling bindings output with `g++ --std=c++17 -Wall -Werror -pedantic-errors`, generated header is not conformant: ``` project/bindings.cpp:168:55: error: ISO C++11 requires at least one argument for the "..." in a...
Hello, I may have a wrong configuration, but can't see what it is. I have two firewalls, one for the website and the other for a rest API : ```...
Currently, argparse distinguishes "positional arguments" and "optional arguments". I wonder if "optional arguments" should be splitted into 2 separate categories: "named arguments" and "optional arguments", so that required arguments are...