Pavel Kaluhin

Results 11 comments of Pavel Kaluhin

Hi, +1 for that issue. I changed node-sass to sass package in my project and receive similar warnings. Looks like the main repository fixed it already https://github.com/carbon-design-system/carbon/issues/8746

@danvk You can you `_.times` instead. https://lodash.com/docs/4.17.15#times ``` _.range(0, nPoints).map(i => { _.times(nPoints, i => { ```

@Oigen43 why did you close this 😿

I see. Have a suggestion though. To store mongo volumes inside the workspace and not in external volumes ``` services: mongo: volumes: - /var/run/docker.sock:/var/run/docker.sock - type: volume source: mongodb target:...

Reopen mb to keep track of? @Oigen43

@stefanprodan @bluemalkin +1

I also faced this issue but in my case, the problem was caused by [koa-qs](https://www.npmjs.com/package/koa-qs) package. Internally it uses descriptors set/get to manage `ctx.request.query`. I replaced it with my own...

+1 for this feature. In my case, I'd like to receive a slack notification every time a new version of a secret is created. For monitoring purposes (big team)

Let me clarify the use case. I have a `cards` collection. It represents debit cards that I order from a 3rd party. It has a unique field `cardProxy` which is...