Ayush

Results 24 issues of Ayush

The widget template macro seems to generate `impl Deref` for the root widget. This means in some cases, it might be needed to use `*` or `deref` when the custom...

Saving the window state is a fairly common use case in applications since GTK does not provide this by default. The gtk-rs docs contain an [example](https://gtk-rs.org/gtk4-rs/stable/latest/book/saving_window_state.html) of doing this. Initially,...

Here is a list of TODOs that I think would be useful to make the codebase easier to work with - [ ] Use a standard formatter (anything automated is...

Since PEP 621, pyproject.toml is the standard way of specifying project metadata. This patch simply migrates everything in setup.py to pyproject.toml Link: https://peps.python.org/pep-0621/ PEP 621

Ran autopep8 using the following command $ find . -name '*.py' -exec autopep8 --in-place '{}' \; Related to #57 Signed-off-by: Ayush Singh

### What does the feature solve? The EDK II Python Development Process Specification recommends using `Flake8` for checking Python files. However, the current Basetools fails a lot of `Flake8` checks....

enhancement

- Add pin layout described here: https://openbeagle.org/beagleconnect/zephyr/arduino-core/-/commit/1ce0b0bfca16ffc9eb781f263525347e0b42cef5 - Also remove LED_BUILTIN. Seems the dts entry is sufficient.

The rust example has 2 major problems: 1. The Login request method uses a different API than documented [here](https://nova.iiflsecurities.com/dev-docs/user-authentication-system/login). 2. The encryption is completely broken since the methods/crates it uses...

- Allows reading and writing to socket simultaneously, i.e. allow subscribing to new stuff while reading stream

review

Starting with PEP 621, `pyproject.toml` is the standard way of specifying project metadata. Also switch to using the version from `pyproject.toml` instead of having a west.version python module. Adjust documentation...