rahulblog.comJava Garbage Collection Explained: What You Need to KnowIntroduction In Java, memory management is an important aspect of application performance. One of the key features for managing memory automatically is Garbage Collection (GC). It eliminates the need for developers to manually manage memory allocatio...Jan 10, 2025·7 min read
rahulblog.comBackend: Quick StartupWhat do we mean by Backend? In simple words, as frontend is what we see on the webpage, backend is simply "what happens under the hood". eg: when we see a login or register form on any site, how do we get authenticated? The answer is "Backend code". ...Feb 21, 2024·4 min read
rahulblog.comCross-Origin Resource SharingIf you are a front-end developer or API developer, you have come across this term many times, so let's discuss it. CORS stands for "Cross-Origin Resource Sharing." In simple words, it is a security mechanism that is implemented by web browsers to mak...Jun 29, 2023·2 min read
rahulblog.comBoost Your Web Development Efficiency: 5 Advantages of SCSS over Plain CSSWhat is Scss? Scss stands for sassy CSS. It is a superset of CSS same as Typescript, a superset of javascript. More formally it is a CSS preprocessor. Now what is this Preprocessor? A CSS preprocessor is a language or tool that enhances the functiona...Jun 1, 2023·3 min read
rahulblog.comEvent Handling in ReactEvent Handling is almost the same in React and vanilla JavaScript.But before understanding about EventHandles we need to learn about React Props. Reading Props in React What is Prop? Prop is the short form for Properties & refers to the data that is ...Apr 1, 2023·2 min read