Spaces:
Running
Running
File size: 5,167 Bytes
b4d488a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>About - Aaravind</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Sidebar Navigation -->
<div class="sidebar">
<a href="index.html">Home</a>
<a href="about.html" class="active">About</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact</a>
</div>
<!-- Main Content -->
<div class="main">
<h1>About Me</h1>
<!-- Photo Section -->
<div class="about-photo">
<img src="aravind.jpg" alt="Aravind" class="profile-pic">
</div>
<!-- Bio -->
<p>Hi! I'm <strong>Aaravind</strong>, a Python developer and web designer from India. I enjoy turning simple ideas into functional web apps using Python and Flask.
With a strong curiosity for how technology works, I began my journey by learning the basics of Python, HTML, and CSS. I love turning ideas into simple, functional applications — whether it's building smart tools with Python or crafting clean, user-friendly web pages.
I've worked on projects like an image analyzer, pet name generator, voice-based AI assistant, LangChain chatbot, and a full-stack online shopping website using Flask and MongoDB. Each project has helped me understand real-world problem-solving, backend logic, and front-end design.
I am continuously learning and improving my skills, especially in Flask, MongoDB, and UI development. I believe in building projects that are not only creative but also useful to others. My goal is to grow as a full-stack developer and work on real-world products that create impact. Whether it's automating tasks or designing simple user experiences, I enjoy every part of the journey.
Outside of coding, I enjoy learning new tech tools, exploring AI, and helping others understand programming in simple terms.</p>
<!-- Skills Section -->
<h2>Skills</h2><br>
<ul class="skills-list">
<li>✔️ Python (Basics)</li>
<li>✔️ HTML & CSS</li>
<li>✔️ Flask (Web backend)</li>
<li>✔️ MongoDB (Database)</li>
<li>✔️ BeautifulSoup (Web Scraping)</li>
<li>✔️ Simple UI Design</li>
</ul>
<!-- Learning Goals -->
<br>
<br>
<h3>1. Frontend Development</h3>
<p>
- Works on what users see in the browser. <br>
- Technologies: HTML, CSS, JavaScript, React, etc. <br>
- Builds user interfaces and makes websites interactive.
</p>
<h3>2. Backend Development</h3>
<p>
- Handles server-side logic and database operations. <br>
- Technologies: Python, Node.js, PHP, Java, etc. <br>
- Builds APIs and manages authentication and security.
</p>
<h3>3. Database Management</h3>
<p>
- Responsible for storing and retrieving data. <br>
- Tools: MySQL, MongoDB, PostgreSQL, etc. <br>
- Performs CRUD operations and optimizes queries.
</p>
<h3>4. DevOps / Deployment</h3>
<p>
- Manages servers, deployment, and CI/CD pipelines. <br>
- Tools: Docker, GitHub Actions, AWS, etc. <br>
- Ensures smooth deployment and uptime.
</p>
<h3>5. Testing and Debugging</h3>
<p>
- Ensures code works as expected and fixes bugs. <br>
- Tools: PyTest, Selenium, Jest, etc. <br>
- Writes unit and integration tests.
</p>
<h3>6. Version Control</h3>
<p>
- Tracks changes in code and supports collaboration. <br>
- Tools: Git, GitHub, GitLab, etc. <br>
- Manages branches and commits.
</p>
<h3>7. Problem Solving</h3>
<p>
- Uses algorithms and logic to solve coding problems. <br>
- Essential for writing efficient code. <br>
- Often practiced on platforms like LeetCode or HackerRank.
</p>
<h3>8. API Integration</h3>
<p>
- Connects frontend to backend or third-party services. <br>
- Technologies: REST, GraphQL, JSON, etc. <br>
- Handles data exchange and external features.
</p>
<h3>9. UI/UX Design</h3>
<p>
- Designs user interface and experience. <br>
- Tools: Figma, Adobe XD (optional for developers). <br>
- Helps improve usability and design flow.
</p>
<h3>10. Full Stack Developer</h3>
<p>
- Combines frontend, backend, and database knowledge. <br>
- Can build complete applications. <br>
- Examples: MERN stack, LAMP stack, etc.
</p>
<!-- Motto -->
<h2>My Motto</h2>
<p><em>"Code is like building a machine with your mind — clean, smart, and powerful."</em></p>
<!-- Contact Info -->
<h2>Contact</h2>
<p>Email: aravindsuamathi97@gmail.com</p>
<p>Phone: 6381122175</p>
</div>
</body>
</html> |