Hitesh Mishrahiteshmishra.hashnode.dev·Jul 8, 2024Understanding Load BalancersWhat is a Load Balancer? A load balancer is a device or software that distributes incoming network traffic across multiple servers (targets). This helps ensure that no single server becomes overwhelmed with too much traffic, which can lead to slow pe...Discussloadbalancer
Hitesh Mishrahiteshmishra.hashnode.dev·Jul 7, 2024Understanding Docker Volumes: A Beginner's Guide with super easy ExamplesWhat is a Docker Volume? In Docker, a volume is a mechanism for persisting data generated by and used by Docker containers. Unlike the container's writable layer, which is removed when the container is deleted, volumes are designed to persist data be...Discuss·10 likesDocker
Hitesh Mishrahiteshmishra.hashnode.dev·Jul 7, 2024Understanding Docker Networks: A Guide with ExamplesWhy Containers Can't Talk Without a Network Default Isolation: Docker containers are isolated by default. This means each container runs separately from others, similar to how different houses on the same street are separate. No Common Network: Jus...DiscussDocker
Hitesh Mishrahiteshmishra.hashnode.dev·Jul 3, 2024AWS BasicsWhat is Amazon Virtual Private Cloud? Amazon Virtual Private Cloud (Amazon VPC) is a service that lets you provision a logically isolated section of the AWS Cloud where you can launch AWS resources in a virtual network that you define. Here are some ...Discuss·1 likeAWS
Hitesh Mishrahiteshmishra.hashnode.dev·May 28, 2024Beginner's Guide to NestJs FrameworkIntroduction Among the myriad of options available, NestJS has emerged as a standout choice for building efficient, reliable, and scalable server-side applications. This article will explore what NestJS is, its core features, and why developers shoul...DiscussWeMakeDevs
Hitesh Mishrahiteshmishra.hashnode.dev·May 26, 2024Class Components vs. Functional Components: Key Differences ExplainedClass components were once the primary way to manage state and lifecycle methods in React. Functional components, initially considered stateless, could only return JSX without managing state or lifecycle methods. However, with the introduction of Hoo...Discuss·1 likeJavaScript
Abhay Mauryapearlthoughts.hashnode.dev·Feb 27, 2024Object Oriented Programming in JavaClasses and Objects: Class: A class is a named group of properties (fields/attributes) and functions (methods). It serves as a template for creating objects. A class creates a new data type that can be used to instantiate objects. It defines the ...Discuss@WeMakeDevs @hashnode
Dhanjeet Kumar Thakurdhanjitthakur.hashnode.dev·Feb 25, 2024A Beginner's Guide to Core Java 8 FeaturesGlimpse in the History: Throughout Java's history, from JDK 1.0 released in 1996 to J2SE 1.4 released in 2002, the primary focus was building APIs. However, between Java 5.0 (also known as Java 1.5) and Java 8 (or Java 1.8), the focus shifted to the ...Discuss·10 likes·105 readsjava8
Mayank Aggarwalblogsbymayank.hashnode.dev·Feb 5, 2024Mastering React: A Guide to Props, Rendering, Styling, and Developer Tools || Lesson - 2Welcome to the exciting world of React, a JavaScript library that has revolutionized the way we build dynamic and interactive user interfaces. Whether you're a seasoned developer or just stepping into the realm of front-end development, this comprehe...Discuss·34 likes·18.7K readsMERNmayank
Nakul Bhardwajnakulsblog.hashnode.dev·Jan 28, 2024What are Interfaces in golang ?I had a hard time understanding Interfaces in go because I had never wrote a Interface before in my life. Interfaces in go are very simple and easy to understand they are slightly different from other programming language because go is not fully obje...Discuss·30 readsgolang