DCDennis Camposindenniscampos.hashnode.dev·Apr 13, 2024 · 2 min readSoft Deleting with $extends from PrismaIf you've attempted to use prisma.$use, you may have encountered a "deprecated" message. Your initial reaction might be to consult the documentation for an alternative. However, you won't find one there. If you're interested in soft deleting a record...00
DCDennis Camposindenniscampos.hashnode.dev·Feb 25, 2023 · 2 min readSwitch from yarn / npm to pnpmWhy pnpm If you're looking for a faster alternative to package managers like npm and yarn, consider using pnpm. Not only is pnpm more performant when it comes to fetching, resolving, and storing dependencies, but it also offers an easy migration proc...01S
DCDennis Camposindenniscampos.hashnode.dev·Oct 12, 2022 · 2 min readWhy you should use CSS Modules in ReactUse the CSS Modules in React CSS Modules Stylesheet is one of React's best features, and I will tell you why you should take advantage of it. As a fan of TailwindCSS, there are times when you may not have a choice to work with your favorite tool. I ...00
DCDennis Camposindenniscampos.hashnode.dev·Oct 10, 2022 · 7 min readSet up Nodemailer with Next.js & TypescriptSet up Nodemailer with Next.js, Typescript & React Hook Form Introduction Nodemailer is a module for Node.js application to allow easy as cake email sending! Nodemailer allows services like Gmail, SendGrid, Mailgun, SendinBlue, and more. In this a...00
DCDennis Camposindenniscampos.hashnode.dev·Aug 4, 2021 · 4 min readWays to Filter Out Numbers and Strings in a Mixed Array.Introduction I think the best way to learn about certain methods is to write about them! I encountered this problem on codewars and thought to share my experience. Instructions from Codewars Simple enough this one - you will be given an array. The va...00