My Learnings

Explore my blog posts documenting the insights and solutions I've gained from overcoming challenges over the past three years. Dive into a range of topics and lessons that showcase my continuous growth and expertise.

Bunny API Docs

List API Keys URL: Credentials: Accesskey To get this Accesskey: Response: List Video Libraries This API used to get Library details like LibraryAPIKey and LibraryID...
Continue reading

Create a Custom WordPress Block

Creating custom blocks in WordPress unlocks the full power of the Gutenberg editor, allowing you to design reusable content elements tailored to your website’s needs....
Continue reading

MongoDB using Mongoose

Mongoose is an Object Data Modeling (ODM) library for MongoDB and Node.js. It provides a schema-based solution to model your application data and includes built-in...
Continue reading

MongoDB without Mongoose

MongoDB is a popular NoSQL database that stores data in flexible, JSON-like documents. While many developers use Mongoose as an ODM (Object Document Manper) for...
Continue reading

Sequelize in Node.js

In the world of Node.js development, managing databases effectively can be a significant challenge, especially when dealing with relational databases. Writing raw SQL queries while...
Continue reading

SQL in Node.js

Setting Up a Database Connection The most common packages for MySQL connections in Node.js is mysql2. Here’s how to set it up: Using a connection...
Continue reading

MVC Architecture in Node.js

MVC (Model-View-Contoller) is a software design pattern that separates the application logic into three interconnected components: MVC in a Node.js App A typical folder structure...
Continue reading

Node.js Templating Engines

Templating engines are powerful tools that allow you to generate dynamic HTML content in Node.js application. templating engines provide a clean syntax for injecting data...
Continue reading

Express.js a complete Guide

Getting Started with Express.js Advanced Express.js Features What is Express.js Express.js is a minimal and flexible web application framwork that provides a robust set of...
Continue reading

Node.js debugging in VS Code

Useful resources: Debugging Node in Visual Studio Code: https://code.visualstudio.com/docs/nodejs/nodejs-debugging More on debugging Node.js: https://nodejs.org/en/docs/guides/debugging-getting-started/
Continue reading

Node JS Core Concepts

Node.js is an open-source, cross-platform runtime envionment built on the V8 JavaScript engine from Google Chrome. It enables the execution of JavaScript on the server...
Continue reading

Promises in JavaScript

JavaScript is inherently single-threaded, but it needs to handle time-consuming operation like network requests, file reading, and database queries without blocking the main thread. This...
Continue reading

Database in GCP

Google Cloud Platform (GCP) offers a wide array of database services tailored to meet various workload needs, form relational databases like Cloud SQL and Cloud...
Continue reading

Cloud IAM

Google Cloud Identity and Access Management (IAM) is a critical component of the Google Cloud Platform (GCP) that enables administrators to manage access to cloud...
Continue reading