Mongodb
Understanding TTL Indexes in MongoDB comprehensively
Mongodb

Time to Live (TTL) indexes are special single-field indexes in MongoDB that help delete documents from a collection after a specific amount of time or at a given clock time. Data expiration is useful for certain types of information like machine generated event data, shopping carts, logs, and session information etc that only need to persist in a database for a finite amount of time.

Mongodb
Enhance MongoDB Aggregation Experience with MongoDB Compass Queries
Mongodb

MongoDB Compass, as of 2018, comes with an aggregation pipeline builder to help make prototyping and debugging easier. This feature allows developers to export their aggregations into different programming languages and use the code in their applications.

Mongodb
Deploy EC2 in Private Subnet & Securely Enable Internet Communication
Mongodb

Enterprise-grade security architectures demand that critical infrastructure like databases, application servers etc must be deployed securely in AWS and deploying ec2 instances in private subnet is a must. Instances launched in a private subnet have only private ip address (No public IP) and hence these instances are completely isolated from direct internet access. This architectural pattern creates a robust security perimeter that effectively eliminates the attack surface for external threats while maintaining the flexibility to establish controlled outbound connectivity when required.

Javascript
The Complete MacBook Setup Guide for Web Development
Javascript

Setting up your development environment correctly is crucial for productivity and efficiency in web development. This comprehensive guide will walk you through setting up your MacBook with all the essential tools and configurations needed for modern web development. Whether you’re a beginner or an experienced developer, these recommendations will help you create a robust development environment.

Nodejs
A One Time Password (OTP) generator npm library based on nanoid
Nodejs

Mobile number has become the defacto user authentication mechanism in India and hence, OTP generation is a very common use case. otp-gen-agent is a Nano ID based small utility lib to generate OTP (one time password).