Markus Unterwaditzer
Markus Unterwaditzer
I just set up a oranda page, and it didn't work out of the box on github pages. So I had to install the preview build to get it working...
@jan-auer briefly mentioned this during RustFest: Their rust FFI returns Fails instead of Errors. * Determine whether it's generally good enough for everybody to just wrap that into an Error,...
Currently we have a few problems: 1. Exporting metadata through the `.h` file is nice (because it uses existing setup) but quite a hack. 2. Keeping Python "client" library and...
It should be trivial to add Favorites support to this app (i.e. export favorites as another RSS feed), the question is whether anybody needs it. if so, please :+1: this...
the volume of transactions that pytest-sentry sends is a lot, and potentially not worth the price point especially for small teams. we can buffer up the `n` slowest transactions and...
pytest-sentry does not set its own hub as the current one. that leads to the unfortunate situation that all test code will create spans, but those spans go to the...
Given an incident in sentry I think it would be nice if hitting deploy would send an email to all commit's authors *before* executing, to give them a little bit...
We have a schema definition with two fields, `foo_required` and `foo_optional`. ``` {"properties": {"foo_required": {}, "foo_optional": {}}, "required": ["foo_required"]} ``` Now consider this code: ``` x["foo_optional"] ``` VSCode/pyright does error...