Results 14 comments of eduhenke

If anyone wants a quick workaround to lower ZSH startup time, and postpone this NVM setup time to the command execution(lazy-loading) you could do something like: ``` alias nvm_lazy="source /usr/share/nvm/init-nvm.sh...

Same thing is happening to me, Dockerfile: ```Dockerfile FROM node:14.16-alpine # Create and change to the app directory. WORKDIR /usr/src/app # Copy application dependency manifests to the container image. #...

Hi, I'm also still learning a ton of stuff, but I'm almost finished reading TaPL, and when you read it you'll recognize a ton of terms/concepts that are applied in...

> > I tried the middleware solution and it seems to do the job. > > I did not do advanced tests on that. > > ```ts > > rlsMiddleware...

I'd just like to provide a complex policy that we've described in our system, in case it helps designing with these use-cases in mind(SELECTing from other tables, transforming the data...

I think a quick fix is to copy/paste the folder having the older version in a soap-1.5 and the newer one in a soap-1.6 folder, or something in that regard

The only thing is, it'll break support for SOAP in version 1.5, it updates its version to 1.6, which is non backwards-compatible with 1.5, right? We don't want to break...

The json_encode file was auto-generated based on the OCPP JSON Schema, it also validates required properties, timestamp formats, etc. I also see that it doesn't correctly handle empty fields(even though...

If anyone's interested in a plug-in solution, I've used this fix and rebased it with the current repo and packaged it into a docker image: https://github.com/eduhenke/bigquery-emulator/pkgs/container/bigquery-emulator. Just use `ghcr.io/eduhenke/bigquery-emulator:0.6.7`