Ishaan Gandhi
Ishaan Gandhi
Anecdotally, having the wrong sys.path entry leads to one program having a module not found exception. This would be very good to have fixed for me at least.
Also, please note that the current way of tracking the nested levels of double parenthesis might not be complete. For example, `$(( ((2 + 1) * 3) + 4 ))`...
Does this work atomically? For example, I have the following code: ``` const user = await prisma.user.upsert({ where: { id: userId }, update: {}, create: { id: userId, name: name...
I don't think that's possible. I can see in the video that its using a pretty wide screen the whole time.
This is what I have: ``` import brevo from "@getbrevo/brevo"; let brevoApi = new brevo.TransactionalEmailsApi(); const apiKey = process.env.BREVO_API_KEY; if (!apiKey) throw new Error("Missing BREVO_API_KEY"); brevoApi.setApiKey(brevo.TransactionalEmailsApiApiKeys.apiKey, apiKey); ``` And this...