-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio_website.html
More file actions
121 lines (114 loc) · 4.48 KB
/
Copy pathportfolio_website.html
File metadata and controls
121 lines (114 loc) · 4.48 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Arpeet Bhaisare | Portfolio</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #0078d4;
color: white;
padding: 2rem 1rem;
text-align: center;
}
section {
padding: 2rem 1rem;
max-width: 900px;
margin: auto;
}
h2 {
color: #0078d4;
border-bottom: 2px solid #0078d4;
padding-bottom: 0.25rem;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 0.5rem;
}
a {
color: #0078d4;
text-decoration: none;
}
footer {
text-align: center;
padding: 1rem;
background-color: #222;
color: white;
}
</style>
</head>
<body>
<header>
<h1>Arpeet Ashok Bhaisare</h1>
<p>Software Development Test Engineer | Cybersecurity Enthusiast | Data Science & ML Explorer</p>
</header>
<section>
<h2>About Me</h2>
<p>I am Arpeet Ashok Bhaisare, a B.Tech graduate in Electronics and Communication Engineering from IIIT Bhopal with certifications and experience in cybersecurity, data science, machine learning, and full-stack development. I have worked on IoT-based automation, software testing, and ML model deployment. My goal is to build secure and scalable systems that help solve real-world problems.</p>
</section>
<section>
<h2>Certifications & Courses</h2>
<ul>
<li>Cybersecurity Operations Associate – Cisco Networking Academy</li>
<li>Electric Vehicle Design – IETE & Pantech eLearning</li>
<li>Data Science Internship – Exposys Data Labs</li>
<li>Basics of Machine Learning – UniAthena & Cambridge International Qualifications</li>
<li>Cloud Security Knowledge – Cloud Security Alliance</li>
<li>Introduction to AI – SkillUp by Simplilearn</li>
<li>Python Essentials – Cisco Networking Academy</li>
</ul>
</section>
<section>
<h2>Projects</h2>
<ul>
<li><strong>Diabetes Prediction Model:</strong> Machine learning model using logistic regression and random forest to predict diabetes – <a href="https://github.com/Arpeet-Bhaisare/Diabetes-Prediction-Model" target="_blank">GitHub</a></li>
<li><strong>CSV to JSON API:</strong> Backend API using Node.js and PostgreSQL to convert CSV files and store data – <a href="https://github.com/Arpeet-Bhaisare/csv-to-json-postgres-api" target="_blank">GitHub</a></li>
<li><strong>Cybersecurity Packet Visualizer:</strong> Visual tool to analyze packet flow and demonstrate common cyber threats</li>
<li><strong>IoT Home Automation:</strong> Developed an IoT-based automation system using ESP32, integrated with Alexa and Google Assistant</li>
<li><strong>React-based To-Do App:</strong> Frontend project with CRUD operations and authentication system</li>
</ul>
</section>
<section>
<h2>Experience</h2>
<ul>
<li><strong>Project Coordinator – IIIT Bhopal</strong> | May 2024</li>
<li><strong>Cyber Ops Associate – Cisco Networking Academy</strong> | June – July 2023</li>
<li><strong>EV Design Intern – IETE + Pantech</strong> | June – July 2023</li>
<li><strong>Data Science Intern – Exposys Data Labs</strong> | Sep – Oct 2022</li>
</ul>
</section>
<section>
<h2>Skills</h2>
<ul>
<li>Languages: Python, C, C++, Java, SQL</li>
<li>Frameworks: Django, React, Node.js</li>
<li>Tools: Git, GitHub, VS Code, Postgres, Firebase</li>
<li>Other: CI/CD, Automation Testing, Cybersecurity, Machine Learning</li>
</ul>
</section>
<section>
<h2>Contact</h2>
<ul>
<li>📞 +91-7972723245</li>
<li>📧 <a href="mailto:arpeet.bhaisare@gmail.com">arpeet.bhaisare@gmail.com</a></li>
<li>🔗 <a href="https://www.linkedin.com/in/arpeet-bhaisare-a02a061ba" target="_blank">LinkedIn</a></li>
<li>🌐 <a href="https://github.com/Arpeet-Bhaisare" target="_blank">GitHub</a></li>
<li>📘 <a href="https://www.facebook.com/arpeet.bhaisare" target="_blank">Facebook</a></li>
<li>📸 <a href="https://www.instagram.com/arpeetbhaisare/profilecard/" target="_blank">Instagram</a></li>
</ul>
</section>
<footer>
© 2025 Arpeet Ashok Bhaisare. All rights reserved.
</footer>
</body>
</html>