Mark

Results 5 comments of Mark

> Some resources, such as S3 subscriptions, cannot be included in a Cloud Formation template. Yes, this is exactly why I use `chalice deploy` for some pipelines. It's a pain....

I found a few threads about this on the Pulumi Slack but couldn't find a good workaround or solution: https://pulumi-community.slack.com/archives/CRH5ENVDX/p1695337458861349 https://pulumi-community.slack.com/archives/CRH5ENVDX/p1710520106520799 One suggestion was to use `waitForSteadyState: false`, which technically...

> Do you have any workarounds? Sorry for the slow reply but yes, the suggestion from roastedramen works for me: > [...] use `sqlalchemy.sql.func.divide` instead of `/` which sidesteps the...

To generate ```sql SELECT * FROM TableOrm WHERE not isNaN(floatField1) ``` I would think you just do something like: ```python res = session.query(TableOrm).filter(~func.isNaN(TableOrm.floatField1)).all() ``` Does this not work?

This is particularly bad for commented props. E.g. ``` Caption ``` becomes ``` // p="value" Caption ``` which can turn more deeply nested examples into something very confusing and hard...