Rafael

Results 143 comments of Rafael

I am locked out of chakra templates... not working on any of my browsers. Also getting grey boxes.

Same problem in Ubuntu appimage.... was working last week... and updating to 1.7.8 did not help...

Maybe my mistake is to expect a similar experience to nodejs npm package.json

@insanetheta I have made some progress Here is what I have learned, that seems to be working for me: ``` mkdir project cd project luarocks init ``` this will setup...

@NingLin-P and @arkpar I am testing this. I can see the effect in memory but I can not query more than 4096 blocks still, I have filled https://github.com/paritytech/polkadot/issues/6378 while trying...

![Screenshot from 2024-04-11 08-04-40](https://github.com/polkadot-js/apps/assets/412837/dfcb8847-a24c-433e-8896-3b8290e8b284) You see, I just disabled keep alive, I cannot select reap account because the warning sign blocks it, needs to be removed after disabling keep alive.

@evilrobot-01 I find your approach very good, simple and elegant. I am going to try to use it for my project to. @dzmitry-lahoda I dont understand what nix adds to...

@evilrobot-01 I can reproduce your problem. While trying to debug it I accidentally made it work with the following Dockerfile: ``` FROM node:18 RUN curl -sL -o polkadot https://github.com/paritytech/polkadot/releases/download/v0.9.42/polkadot \...

@evilrobot-01 I ended adjusting a bit the Dockerfile, ``` ARG POLKADOT_VERSION=latest ARG PARACHAIN_VERSION=latest FROM parity/polkadot:$POLKADOT_VERSION as relaybuilder FROM parity/polkadot-parachain:$PARACHAIN_VERSION as parabuilder FROM node:18 ENV DEBIAN_FRONTEND=noninteractive COPY --from=relaybuilder /usr/bin/polkadot /usr/local/bin COPY...

That actually seems like a very cool feature of PyXB! So for the following element: ``` ``` I would be specializing the class generated for TEMPLATE, instead of anyType itself,...