Results 66 comments of simevo

makes sense! BTW `ts-uscan` requires node >=15 because it uses the [webcrypto.subtle API](https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto) which is only available from node 15 onwards (I tried downgrading and launching the tests with `jest`...

anyway I got this far: https://github.com/simevo/adx/tree/issue-110-containerization and now I know why the "register bob" step keeps failing: because the hostname of the `did-network` is hardwired to `localhost` here: https://github.com/bluesky-social/adx/blob/main/common/src/network/util.ts#L43 this...

aaah there's env var `DID_NETWORK_URL` for that ! now it works

that's easy to do in the `docker-compose.yaml`, see https://github.com/simevo/adx/commit/7a91cb3058c98085b08391dc2dbc259b35d5c4c5

AFAICT the tentative fix works. As we wait for it to land here, you can get it by patching your `requirements.txt` like this: ```diff -django-wkhtmltopdf +git+https://github.com/simevo/django-wkhtmltopdf.git@bugfix/issue-193-smart_text ``` I am not...

I have the same on Debian 11/bullseye (stable). I filed the bug to the distribution maintainers here: https://bugs.debian.org/1016050

Thanks for your suggestions. To fix the original issue, I have tried the approach to override your default value of `NO` for `WARN_AS_ERROR` and change it to `YES`; this will...

BTW I noticed that you can exec into django container if you prefix your command with `/entrypoint` as in: ```sh docker-compose exec django /entrypoint python3 manage.py createsuperuser ``` on my...

@lamarquevs thanks for the hint; this is what I have, seems legit: ```sh $ ls -l /dev/nvidiactl crw-rw-rw- 1 root root 195, 255 20 dic 09.11 /dev/nvidiactl $ ls -l...

This works: ```html ``` and: ```js Vue.component('vue-plotly', window['vue-plotly'].Plotly); ``` you may want to mention this in the docs / provide an example