Mike Ellertson

Results 18 comments of Mike Ellertson

> I just followed this steps. (https://www.npmjs.com/package/react-native-crypto). I don't use expo. but I don't think so, this issue not about expo. > > ``` > npm i --save react-native-crypto >...

> I have solved the issue by installing crypto-js (npm install crypto-js@latest) and adding the following code to the metro.config.js: > > resolver: { extraNodeModules: { crypto: './node_modules/crypto-js', }, }...

> hm, I've had a different error that is kind of related to your solution, but was able to solve it: https://stackoverflow.com/a/71865318/7871458 > > Though I ran into react native...

Great info, thanks! I just wanted to add the `$ref` section from the [Swagger 3.0 docs](https://swagger.io/docs/specification/using-ref/): ```markdown # $ref Syntax According to RFC3986, the $ref string value (JSON Reference) should...

I have also received the message you describe after placing an order. However, I just pause and then check again a moment later and it works for me. It seems...

Out of curiosity, is it something amiss in the C-bindings? I ask so that in the future I know better where to look and hopefully lend more of a hand...

I too am encountering this issue. In my case, I have the two services in the same `docker-compose.yaml` file: ```yaml services: server: image: registry.mydomain.com/algos_server:latest build: context: ./ dockerfile: algos_server.dockerfile target:...

I found a work around, which is to describe my two docker services in two separate `docker-compose.yaml` files. After I put `algos_server` into `algos-server-base.yaml` and `algos_celery` into `algos-celery-base.yaml` I get...

I am working on resurrecting this project. I have two servers in a data center, which we can use to run PyTrader on, inside docker containers. Additionally, I see there...

> solution : add --privileged to docker run Seems like a potentiall risky thing to do, because using `--priviledged` will do the following, quoting from the [docs](https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities): >>The --privileged flag...