love-to-code108.hashnode.devConnecting Your Linux Machine to GitHub Using SSHIn this blog, I’ll guide you step-by-step on how to connect your Linux machine to GitHub using SSH. This method allows for secure, password-free authentication, making your Git operations more seamless. Whether you are cloning, pushing, or pulling re...Oct 13, 2024·4 min read
love-to-code108.hashnode.devRecoil Basics: What You Need to KnowWhat is an Atom in Recoil? An atom in Recoil is a unit of state that can be read and written by any React component. When the value of an atom changes, all components that use that atom will automatically re-render to reflect the new value. Steps to ...Sep 16, 2024·4 min read
love-to-code108.hashnode.devUnderstanding Selectors in RecoilWhat Are Selectors? A selector is a pure function in Recoil that derives or computes state based on atoms or other selectors. It’s similar to the concept of "computed properties" in other frameworks (like Vue.js), where the value of the selector chan...Sep 16, 2024·5 min read
love-to-code108.hashnode.devHow to name CSS Classes and ID'sOk so whatever i am about to write in this blog is with the focus for me to understand late when i revisit this blog and for no one else , ok so now with this understanding lets get started . After making a react component we make divs and try to sel...Jul 28, 2024·2 min read
love-to-code108.hashnode.devUnderstanding SCSSSCSS (Sassy CSS) is a preprocessor scripting language that is interpreted or compiled into CSS. It allows you to use variables, nested rules, mixins, functions, and more. Let's start with the basics and gradually move to more advanced concepts. 1. Va...Jul 28, 2024·2 min read