DNS and AWS Route53 explainedBasic flow for DNS resolution When you type a domain name like marketplace.easy-games.xyz in your browser this is what happens - The browser and OS check their local DNS cache to see if the DNS record is present. If not found, a query is sent to a ...Jan 18, 2026·4 min read
Redis Cache in NodejsA cache is a fast, in-memory data store that can be used on top of an existing database. Caching reduces the load on your database and significantly improves the performance of read operations. Redis cache is an in-memory data store. Redis also provi...Jul 16, 2023·5 min read
Middlewares in Express jsIn this blog I talk about middleware, what they are and how to implement them in express js. What is middleware? Middlewares are functions, the reason they are called "middleware" is because they are functions that are executed after a request is mad...Jul 9, 2023·6 min read
Algorithms : Finding Connected Components in a GraphOverview In a graph, all nodes might not be connected with each other. Let's take an example of a graph with 5 nodes- Here you can see that 1-2-3 are connected and 4-5 are connected. Here , 1-2-3 is called one connected component. How to determine i...Jul 4, 2023·3 min read
Community Support System - Manage Events . Donations. Sell local artworkThe following is our submission to the [Appwrite] [Hashnode] Hackathon. Team Details: Aditya Bisht - Aditya Bisht Vaishnavi Kale - Vaishnavi Kale Suruchi Kumari - Suruchi Kumari Project Goal The inspiration behind our project is the desire to su...Jun 14, 2023·4 min read
Building a Backend with Appwrite CloudIn this tutorial I will be building the backend of a simple blog website using Appwrite cloud. I will be covering user authentication and sessions, databases and file storage. Do note that Appwrite cloud is currently in public beta. Instead of going ...Jun 9, 2023·6 min read
Authentication using JWT - Advantages, Disadvantages and Structure explained.In this blog I will be talking about authentication using JSON Web Tokens. I will be covering the structure of a JWT, along with some advantages and disadvantages of using JWTs. Why simple Authentication doesn't work Dynamic websites such as blog web...May 30, 2023·6 min read