Alexander Kondratskiy

Results 19 issues of Alexander Kondratskiy

Hi! First of all, thank you for the library, it's a great help. I've been using your library, and at one point I needed a Pixel type that held 3...

Similar to how https://en.cppreference.com/w/cpp/memory/shared_ptr/shared_ptr has a constructor (9) that participates in overload resolution if `Y*` is compatible with `T*`, that can work for `box`. E.g. something like: ```cpp struct A...

enhancement

First of all, thanks for the tool! I am wondering if it would be possible to have a commandline parameter that makes bear update the output compile_commands.json incrementally during the...

enhancement

It should be equivalent to what's already in setup.py, but should simplify developer onboarding and reproducibility. `poetry.lock` ensures anyone installing from scratch will get the exact same versions of dependencies...

Hey @0xPhaze ! Good stuff! I ran a deploy script without the `US_DRY_RUN=true` option, but also without the `--broadcast`, which gave a simulation of the transactions. However it did create...

Hi Andrzej, Previously, all wrong entries in `SRCS` would be silently filtered out. This change aims to keep Rules.mk files accurate, and easier to debug. Thanks!

Hi Andrzej, it's me again :) I came upon another use case that I couldn't express, and those were unittests. In a directory that looks like: ``` . ├── include...

**🧐 Motivation** We have been using custom errors for over a year in our contracts and have found some beneficial usage patterns. The most important is splitting out just the...

When using real timestamps for like `1709591365`, the python event loop gets stuck forever in await: ```py import pytest import asyncio from aiotools import VirtualClock @pytest.mark.asyncio async def test_stuck_forever(): clock...

At the moment when using this project, `mypy` complains that there is not typing information available. In my test file I did ``` from aiotools import VirtualClock ``` And got...