Skip to main content

Posts

Showing posts with the label Tech

Redis Message Queue - Implementation - Commands

In this blog post, I will discuss the Redis Message Queue, Stream type of Redis. Redis has introduced a new data type called Stream type since 5.0, which is specially designed for message queues. There are many more message queues such as RabbitMQ, Kafka but here we will just discuss how to implement Redis as a message queue.

Docker Compose file vs Dockerfile - Differences - Explained

The Dockerfile is used to build a custom image and does not directly generate a container. It’s just that you can run the container while running the image. The container orchestration to deploy the environment is done using the docker-compose.yml file, which may require a Dockerfile.

Node Js Router (With Express.js) - Explained

Node Js Router module is used to create endpoints for applications for handling client requests. A route is a chunk of Express code that links an HTTP verb (GET, POST, PUT, DELETE, etc.) to a URL path/pattern and a function that handles that pattern. Routes may be created in a variety of ways. We’ll be using the npm module express in this lesson. Router middleware is useful since it allows us to aggregate route handlers for a certain section of a website and accesses them using a single route prefix. We’ll store all of our library-related routes in a “catalogue” module, and we’ll maintain them separated if we add routes for managing user accounts or other tasks. Node Js Router module In a module called Login.js, we first construct Login routes. The code imports the Express application object uses it to acquire a Router object, and then uses the get() function to add a handful of routes to it. Finally, the Router object is exported by the module. v

How to make a Graphql API in Express Framework - Easily

Graphql is booming up! It is growing very fast. Even I am using it in almost all of my projects and I am loving the design pattern. In this post I am going to show you how you can make a Graphql API using express(popular nodejs web framework) and will be using popular Apollo Graphql tools to make the thing happen.

Scaling and Securing WebSockets with HAProxy - Explained

In this article, I will discuss Websockets and how to Scale and Secure WebSockets with HAProxy, Coding and many more.

Rhino JS vs Node JS - Key differences and more - Explained

In this article, I will discuss the difference between Rhino JS vs Node JS. Even I am new to Rhino JS. I have read from different sources and have put them in this Blog. 

Software Development Life Cycle SDLC - Phase by Phase

Software Development Life Cycle (SDLC Life Cycle) SDLC Life cycle is the process of creating a software development structure. There are different stages in the SDLC, and each stage has its own different activities. It enables development teams to design, create and deliver high-quality products. The requirement is transformed into the design, design is transformed into development, and development is transformed into testing; after testing, it is provided to the client. The phases of SDLC life cycle are Requirement Phase, Design Phase, Implementation Phase, Testing Phase, Deployment/ Deliver Phase, Maintenance. 1. Requirement Phase For development teams and project managers, this is the most critical stage in the software development life cycle. At this stage, the customer states requirements, specifications, expectations, and any other special requirements related to the product or software. All of t

Netflix Premium Cookies 2024 - Netflix free Premium Cookies

As streaming services continue to dominate our entertainment landscape, Netflix still remains a top streaming service. But Netflix is not free. But what if I told you there’s a free way to access Netflix’s premium content without paying any money. 

ChatGPT plus Cookies 2024 - ChatGPT premium Cookies Free

Do you enjoy using ChatGPT? Do you want to use ChatGPT plus for free? Then this article is for you. In this article we will share with you ChatGPT premium cookies for free.  We'll even share a secret way for you to get premium ChatGPT cookies without paying anything.

How to Create PayPal account in Bangladesh - PayPal Bangladesh account

If you are Bangladeshi and looking for how to legally create a PayPal account in Bangladesh without getting limited , then I have written this tutorial for you. 

How to Convert Image to Text - Copy Text from Image

By following this article, you will be able to copy text from images. You will be able to extract text from images. In this article, I will mention two websites and two apps through which you can copy text from images.

9d Virtual Reality Chair - Features, Uses, Experiences and Prices

9D Virtual Reality Chair is developed by Owatch for the best virtual reality experiences for games and other entertainments. This cutting-edge technology takes the concept of virtual reality based gaming and experiences to an entirely new level, offering users an unique virtual reality experience unlike any other. 

CORS Tutorial in Depth | Complete Guide

In this article, I will cover CORS Tutorial in Depth by considering various examples. You will learn how to resolve the various errors that you usually get in the browser. CORS stands for Cross-Origin Resource Sharing.