Skip to main content

About Me

 Welcome to Raw Learning!

My name is Dhruv Patel, and I'm a second-year Bachelor of Computer Applications (BCA) student with a deep passion for programming, problem-solving, and everything tech.

My Mission

I started this blog as a way to document my own learning journey and to help simplify complex computer science topics. My goal is to break down subjects like Data Structures, Algorithms, and C++ into clear, practical, and easy-to-understand tutorials.

This blog is for fellow students, aspiring developers, and anyone who wants to build a solid foundation in their coding skills. If that sounds like you, you're in the right place!

Here, you'll find step-by-step guides, project walkthroughs, and tips that have helped me succeed in my studies.

Thank you for stopping by. Let's learn and grow together!

You can follow my journey and connect with me on:

Comments

Popular posts from this blog

Mastering the CSS position Property: A Developer's Guide

Mastering CSS Positioning: Take Control of Your Web Layouts  Ever wondered how some elements on a webpage seem to float effortlessly, stick to the top as you scroll, or precisely overlap other content? The secret often lies in the powerful, yet sometimes perplexing, CSS position property. Understanding how to use position effectively is a game-changer for any web developer looking to create dynamic and pixel-perfect layouts. CSS position Property The Five Flavors of Position At its core, the position property dictates how an element is placed on the page. It has five main values, each with its own distinct behavior: static (The Default): Every HTML element starts with position: static; . This means it flows naturally within the document, and top , bottom , left , right properties have no effect. Think of it as an element content to stay put in its designated spot. relative (Offset from Normal): When you set position: relative; , the element is positioned according to the no...