Dejaime Antônio de Oliveira Neto

Results 4 comments of Dejaime Antônio de Oliveira Neto

> Oh right, the concern is with the model names, not the file names. Sorry! > Maybe we could change the `SequelizeAuto` API to allow you to pass a function...

Had this problem as well as detailed in discord thread: https://discord.com/channels/691052431525675048/749690364792668301/983133065834532884 Using `AMD_VULKAN_ICD=RADV` did indeed solve my issue. I'm using just a 5700G CPU with its iGPU. Thanks bjorn3 and...

I also needed to know how to use encrypted pem keys. Have you ever found out how to use them?

No, apparently not. Check [this other issue](https://github.com/rzcoder/node-rsa/issues/185) . You're probably better off using standard **crypto** anyway. ```javascript const crypto = require('crypto'); const MyEncryptedPrivKey = require('fs').readFileSync('./keys/enc_private.pem').toString(); const EncryptedData = [...]; let...