Adam Warski

Results 740 comments of Adam Warski

As we are getting first PRs for the bounties, I've published our ["How to prepare a good PR" guide](https://softwaremill.community/t/how-to-prepare-a-good-pr-to-a-library/448). I should have probably done this right away, sorry! :)

@varshith257 thanks for the PR - I think it would be good to `/attempt` the bounty so that people know there are others working on it. No idea how to...

@sergiuszkierat Thanks for letting us know, I've sent Algora info that there's some problem with the bot

@sergiuszkierat according to Algora, `it happened because the developer was not logged in on Algora when clicking the link.`

@ghostbuster91 maybe I'll archive the project then? would be great to see it going, but resources are limited

The problem here is that Tapir is quite simplistic in how it handles query parameters: a `?date=` query parameter has the value of `""` (an empty string). So it's there,...

@fmeriaux I think this is related to https://github.com/softwaremill/tapir/issues/3890, maybe the third option (query attribute) would fix your problem? Then an empty query parameter value could be treated the same as...

Yes, you're right that there's a couple of gotchas when using actors - exposing mutable state to the actor, or exposing mutable state from the actor, or calculating parameters. Some...

Yes, I like the idea of separating the method & parameters, indeed it solves a couple of problems. As for running global actors - it's an "axiom" of Ox that...