Alexandr Zarubkin

Results 63 issues of Alexandr Zarubkin

Hello, I see you have `library.json` in the source tree of the library, but the search by name for WDT_T4 at registry.platformio.org returns nothing. Did something happen?

I get the following output when installing: ``` debian@beaglebone:~$ sudo apt install libmodbuspp-dev libmodbuspp-doc Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will...

I propose https://github.com/modm-io/avr-libstdcpp to be added to PlatformIO registry. It's libstdc++ implementation for AVR chips. There is already a similar library - StandardCplusplus, but its headers are rather incomplete (i.e....

If more tabs need to be reloaded, please place them into queue

I have the following `.vscode/launch.json` file: ``` { "version": "0.2.0", "configurations": [ { "name": "(gdb) Запустить", "type": "cppdbg", "request": "launch", "program": "helloworld2", "args": [], "stopAtEntry": false, "cwd": "~", "environment": [],...

If possible, please make it work even when user clicks "Reload all tabs" in the tab context menu.

The official name order in Russia is Last First Middle without comma. This pull request hopefully fixes #85, but some corner cases may remain. It is enabled by additional configuration...

**Describe the bug** Vermin doesn't catch changes introduced in Python 3.12 to f-strings. Specifically, f-string nesting. See https://docs.python.org/3/whatsnew/3.12.html#pep-701-syntactic-formalization-of-f-strings **To Reproduce** I had the following line in my source: `Paragraph(f'{split_fio_birthdate(visitor['fio'])[0]}', normal_style),`...

pending

It seems the code given at https://ru.algorithmica.org/cs/graph-traversals/cycle/ incorrectly finds a cycle in the following directed graph: 1->2->3 1->4->3 It goes into `dfs`, passes the first branch 1->2->3, marks these nodes...

How do I get ZonedDateTime instance seconds since midnight properly? I currently use `zdt.localDateTime().localTime().toSeconds()`, but I think it will return incorrect result if the time zone daylight saving changes on...