lucas

Results 7 comments of lucas

The default user has a password in the redis config file. The log appeared with an user and the default user. Removing the password from URL doesn't enable connection. Removing...

`redis.conf.template`: ``` requirepass {PASSWORD} ``` `dockerfile`: ``` FROM redis:6.0-alpine ARG password ENV PASSWORD=$password COPY redis.conf.template / CMD sed -e "s/{PASSWORD}/$PASSWORD/g" < redis.conf.template 1> /usr/local/etc/redis/redis.conf && redis-server /usr/local/etc/redis/redis.conf ``` `index.js`: ```...

I am facing the same problem but with React Native. I don't understand.

Ok I figured it out , with this random answer found on stackoverflow: ![image](https://user-images.githubusercontent.com/36278347/210189473-ba6a35ca-9823-4260-b59c-c25466e040fa.png) Here is my js code : ```js const forge = require('node-forge'); const fs = require('fs'); const...

FYI : The buffer slices of 430 and 512 is because it is a RSA key of 4096-Bit. In case of large messages.

Same bug on macOS 10.15.7 With zed version 0.132.3 I noticed that it does that on the window size or for sure on characters count displayed in the window

Maybe that can fix : ```js const block = (/*args*/) => { const vnode = typeof fn === 'function' && !!fn.prototype?.isReactComponent ? new fn(HOLE_PROXY).render() : fn(HOLE_PROXY); //... }; ``` With...