Alexandr Zarubkin

Results 63 issues of Alexandr Zarubkin

Partially fixes #4 (backtrace decoding). Registers decoding is not done yet. Signed-off-by: Alexandr Zarubkin

For example, nicegui package currently requires justpy

The NiceGUI reference mentions `ui.on_page_ready` handler at https://nicegui.io/reference#lifecycle But I couldn't find it in the IntelliSense hints when I type `ui.`. Are you sure this handler exists? Other handlers are...

documentation

Could you please provide access to websocket instance in generator-style pages? Because `on_page_ready` handler has websocket optional argument, whereas generator-style page can't access websocket after the page is ready (after...

Hello, I know NiceGUI works by utilizing Quasar framework Vue components and it has Vue application under the hood, communicating with Python over websocket. Is it possible to use other...

documentation

This is a new version of #14 fix. Now it doesn't break existing code.

The library uses its own variable for settings storage, at least in fvignoredversions.cpp (autoupdate branch). When an application uses the library, it might end up storing settings in two different...

Hello, Anycubic 4Max Pro v2 is out. Is it tricky to add its support?

### Description I could convert nlohmann::json to a std::variant implicitly with version 3.10.2, but with the latest version, I can't. With the latest version, the code doesn't build. I don't...

kind: bug

Suppose I want to list the routes. The code ``` for record in ndb.routes.summary().format('csv'): print(record) ``` works, whereas ``` for key in ndb.routes: try: print(ndb.routes[key]) except KeyError: print(f'Offending key: {key._as_dict()}')...