Milan Cermak
Milan Cermak
**Description:** Using a `!Ref` in `AutoPublishAlias` throws an error when running `sam validate`. This is a duplicate of awslabs/cfn-python-lint#582 but it looks like it's a SAM error and not a...
This is a feature request to "do something like `AutoPublishAlias`, but better." Basically, I would like SAM to support **exactly** the process that is described in #298 and #304. Before...
The website is already a great reference for service policies. I use it all the time when specifying IAM roles or policies. It would be great to extend it with...
As mentioned [in discord](https://canary.discord.com/channels/793094838509764618/964116575387021413/994337657842839653), I'd like to import my own python functions in hints. This is currently not straightforward because I have to manipulate `sys.path`. What I've currently settled on...
pytest has a ton of useful CLI options. One of my most used ones is `--lf, --last-failed` to "rerun only the tests that failed at the last run (or all...
This contract compiles without any issue (with 0.10.1 toolchain): ```cairo %lang starknet from starkware.cairo.common.cairo_builtins import HashBuiltin from starkware.cairo.common.math import assert_nn @storage_var func balance() -> (amount: felt) { } @external func...
I have a table that acts as a job queue. I want to read the first row where `processed_at` is null. There can be multiple workers reading from the same...
Use Scarb [workspaces](https://docs.swmansion.com/scarb/docs/reference/workspaces.html) to split the lib into packages. **🧐 Motivation** The library is already pretty broad (in terms of functionality) and sure to grow. There are times were a...
In the light of the recent Vyper issue, I was checking if this repo has a safe and trusted way to report security issues. The good thing is there is...
# Bug Report **Cairo version:** eaf16c6eb **Current behavior:** Trying to assign the result of a function call to a tuple of `mut` variables results in a compilation error. ```rust fn...