Skip to content

Latest commit

 

History

History
243 lines (208 loc) · 9.73 KB

File metadata and controls

243 lines (208 loc) · 9.73 KB

🚀 My Learning Journey

Banner

Welcome to my comprehensive learning repository! This is where I document my entire programming journey from absolute beginner to advanced developer. Every concept, project, and milestone will be tracked here.

📚 Learning Path Overview

🎯 Current Focus

🎯 Currently Mastering: Python for AI & ML
📊 Progress: 📈 Completed (Chapter 7)

📂 Repository Structure

📦 learning-path/
├── 📁 Python-Programming/
│   ├── 📁 1. Introduction-to-Programming-and-Python/
│   │   ├── 📖 day_1.md
│   │   └── 🐍 main.py
│   ├── 📁 2. Amazing-Python-Program/
│   │   ├── 📁 1. Jarvis Virtual Assistant
│   │   ├── 📁 2. Love Calculator
│   │   ├── 📁 3. Face Recognition
│   │   ├── 📁 4. Flappy Bird Game
│   │   ├── 📁 5. Snake Game
│   │   └── 📖 day_2.md
│   ├── 📁 3. Modules-and-Pip/
│   │   ├── 📖 day_3.md
│   │   └── 🐍 module_import.py
│   ├── 📁 4. Our First Python Program/
│   │   ├── 📖 day_4.md
│   │   ├── 🐍 first_program.py
│   │   └── 🐍 quiz_solve.py
│   ├── 📁 5. Comments, Escape Sequences & Print Statement/
│   │   ├── 📖 day_5.md
│   │   └── 🐍 main.py
│   ├── 📁 6. Variables and Data Types/
│   │   ├── 📖 day_6.md
│   │   └── 🐍 main.py
│   ├── 📁 7. Operator & Exercise/
│   │   ├── 📖 day_7.md
│   │   └── 🐍 main.py
│   ├── 📁 8. Exercise - Calculator/
│   │   ├── 📖 day_8.md
│   │   └── 🐍 calcualtor.py
│   ├── 📁 9. Typecasting in Python/
│   │   ├── 📖 day_9.md
│   │   └── 🐍 TypeCasting.py
│   ├── 📁 10. Taking User Input in Python/
│   │   ├── 📖 day_10.md
│   │   └── 🐍 UserInput.py
│   ├── 📁 11. Strings in Python/
│   │   ├── 📖 day_11.md
│   │   └── 🐍 Strings.py
│   ├── 📁 12. Strings Slicing and Operations on Strings in Python/
│   │   ├── 📖 day_12.md
│   │   └─── 🐍 main.py
│   ├── 📁 13. String Methods in Python/
│   │   ├── 📖 day_13.md
│   │   └── 🐍 String_Method.py
├── 📁 Complete_Python_For_Ai_ML/
│   ├── 📁 Chapter_1 - Installation/
│   │   └── 📖 Notes.md
│   ├── 📁 Chapter_2 - Comments & Variables/
│   │   ├── 📖 Notes.md
│   │   ├── 🐍 Comments.py
│   │   └── 🐍 Variables.py
│   ├── 📁 Chapter_3 - Data Types/
│   │   ├── 📖 Notes.md
│   │   └── 🐍 main.py
│   ├── 📁 Chapter_4 - Strings & Type Conversion/
│   │   ├── 📖 Notes.md
│   │   └── 🐍 main.py
│   ├── 📁 Chapter_5 - Input, Output & Operators/
│   │   ├── 📖 Notes.md
│   │   └── 🐍 main.py
│   ├── 📁 Chapter_6 - Conditional Statements/
│   │   ├── 📖 Notes.md
│   │   └── 🐍 main.py
│   ├── 📁 Chapter_7 - Loops/
│   │   ├── 📖 Notes.md
│   │   └── 🐍 main.py
├── 📁 PHP-Programming/
│   ├── 📖 full-notes.md
│   ├── 🐘 01_basics.php
│   ├── 🐘 02_MoreBasics.php
│   ├── 🐘 03_strings.php
│   ├── 🐘 index.php
│   ├── 🎨 style.css
│   └── 🖼️ bg.jpg
├── 📁 MySQL-Learning/
│   ├── 📁 1. SQL-Student-Database/
│   │   ├── 📖 README.md
│   │   └── 💾 student_database.sql
│   │   └── 💾 student_database2.sql
│   ├── 📁 2. SQL-Employee-Database/
│   │   ├── 📖 README.md
│   │   └── 💾 employee.sql
│   │   └── 💾 employee2.sql
│   ├── 📁 3. SQL-Employee-Table-Modification/
│   │   ├── 📖 README.md
│   │   └── 💾 alter_employee.sql
│   │   └── 💾 alter_employee2.sql
│   ├── 📁 4. SQL-Student-Marks/
│   │   ├── 📖 README.md
│   │   └── 💾 student_marks.sql
│   │   └── 💾 student_marks2.sql
│   ├── 📁 5. SQL-Student-Marks-Analysis/
│   │   ├── 📖 README.md
│   │   └── 💾 student_marks_analysis.sql
│   │   └── 💾 student_marks_analysis2.sql
├── 📁 WebDev-Learning/
│   ├── 📁 1. Installing-VS-Code-and-How-Websites-Work/
│   │   ├── 📖 notes_Tutorail1.md
│   │   ├── 🌐 index.html
│   │   └── 🎥 video1.mp4
│   ├── 📁 2. My-First-HTML-Website/
│   │   ├── 🌐 index.html
│   │   ├── 🎨 style.css
│   │   ├── 📜 script.js
│   │   └── 📖 notes_Tutorail2.md
│   ├── 📁 3. Basic-Structure-of-an-HTML-Website/
│   │   ├── 🌐 index.html
│   │   ├── 🎨 style.css
│   │   ├── 📜 script.js
│   │   └── 📖 notes_Tutorial3.md
│   ├── 📁 4. Heading-Paragraphs-and-Links/
│   │   ├── 🌐 index.html
│   │   ├── 🎨 style.css
│   │   ├── 📜 script.js
│   │   ├── 🌐 bookmarkManager.html
│   │   └── 📖 notes_Tutorial4.md
│   ├── 📁 5. Image-List-and-Tables in HTML/
│   │   ├── 🌐 index.html
│   │   ├── 🎨 style.css
│   │   ├── 🖼️ image.png
│   │   └── 📖 notes_Tutorial5.md
│   ├── 📁 6. SEO-and-Core-Web-Vitals-in-HTML/
│   │   ├── 🌐 index.html
│   │   └── 📖 notes_Tutorial6.md
│   ├── 📁 7. Forms-and-Input-tags-in-HTML/
│   │   ├── 🌐 index.html
│   │   └── 📖 notes_Tutorial7.md
│   ├── 📁 8. Inline-and-Block-Elements-in-HTML/
│   │   ├── 🌐 index.html
│   │   ├── 🌐 quiz.html
│   │   ├── 🎨 style.css
│   │   ├── 📄 Comprehensive List.txt
│   │   └── 📖 notes_Tutorial8.md
│   ├── 📁 9. ID-and-Classes-in-HTML/
│   │   ├── 🌐 index.html
│   │   ├── 🎨 style.css
│   │   └── 📖 notes_Tutorial9.md
│   ├── 📁 10. Video-Audio-and-Media-in-HTML/
│   │   ├── 🌐 index.html
│   │   ├── 🎥 video.mp4
│   │   ├── 🎵 audio.mp3
│   │   ├── 🖼️ image.jpg
│   │   └── 📖 notes_Tutorial10.md
├── ⚙️ .gitattributes
├── 📜 LICENSE
├── 🖼️ programmer.gif
├── 📖 README.md
└── 🙈 .gitignore

🛠️ Technologies & Tools

💻 Programming Languages

Python PHP MySQL HTML5 CSS3 JavaScript

🛠️ Tools & Platforms

Git GitHub VS Code

🌟 Featured Projects

🔥 Latest Project

Project Name: Complete Python for AI & ML Tech Stack: Python, AI/ML Foundation Status: 📈 Ongoing (Chapter 7)

📖 Learning Resources

📝 Blog & Notes

I document my learning journey with detailed notes and tutorials. Check out my Portfolio for more information!

🤝 Let's Connect & Collaborate

💬 Join Me on This Journey!

Facebook LinkedIn YouTube Instagram Twitter GitHub

🎯 Motivation

"The expert in anything was once a beginner." - Helen Hayes

This repository is my commitment to consistent learning and growth. Every day, I'm adding new skills, building projects, and pushing my boundaries. Follow along as I transform from beginner to expert developer!


⭐ Star this repository if you find my journey inspiring!

Let's learn and grow together! 🚀

Visitor Count