"DOM : Adding JavaScript to Web Pages1) Introduction Till now I've been learning about Javascript and using it inside the Chrome Developer tools console. Now that was the purest form of Javascript as we saw the code as it is and saw what it does. But there is no use in learning about it...Sep 6, 2023·4 min read
Taking the Second Step for Full Stack Web Development: Starting CSSPart 1 - Introduction I started my journey into full-stack web development by diving headfirst into the foundational language of HTML. It provided me by served as the building blocks for my web pages with the necessary tools to structure and present ...Jul 14, 2023·9 min read
Starting the journey of DevOps Bootcamp : How I Learned YAMLPart 1: Introduction: When I started my DevOps journey, as a first step I search for "what is DevOps". I got lots of different results but one line that repeated itself was "DevOps has emerged as a crucial practice for efficient and collaborative wor...Jul 10, 2023·10 min read
Diving Headfirst into Full-Stack Development: Building My First HTML WebsitePart 1: Introduction I started my full stack web development journey with web development and as a first step, I start HTML. When I decided to embark on my journey into full-stack development, I knew I had to start at the beginning: HTML. My guide in...Jul 1, 2023·4 min read
Binary SearchAlgorithm: int[] arr = { 1, 3, 4, 6, 7, 9}; int target = 7 1) Make an array element in ascending or descending order. 2) Find the middle element 3) If ( ascending order) target > middle element then search in right else search in left. if ( descendin...Dec 11, 2022·2 min read
Linear Search in JavaSearching: It is a process of finding a given value position in a list of values Linear / Sequential Search: It is a basic and simple search algorithm. In a sequential search, we compare the target value with all the elements given in the list eg:- i...Dec 2, 2022·1 min read