ASAnuj Singhinanujsingh.hashnode.dev·Oct 20, 2023 · 3 min readHow to send emails via Gmail in NestJsRecently, I've been working on an application that required the integration of an email service. Typically, I've used SendGrid for such integrations, but this time I had different requirements, and I needed to utilize Gmail and its SMTP server. So, I...00
ASAnuj Singhinanujsingh.hashnode.dev·Oct 15, 2023 · 2 min readAn underrated feature of CSSLet me ask you a question, How are you going to make a circle with green filled inside it? And probably your answer to that question would be something like this .container { height: 100px; width: 100px; border-radius: 50%; background-color: ...01K
ASAnuj Singhinanujsingh.hashnode.dev·Oct 10, 2023 · 3 min readDatabase triggers Or TypeORM subscribersDatabase Tiggers Let's establish a few things first I have worked only with the Postgres database so things might be a little different with other databases. Before we begin, let me explain a little about triggers, In simple terms it is just a functi...00