Skip to content

Commit 9df052f

Browse files
Update README.md
1 parent 368893c commit 9df052f

File tree

1 file changed

+123
-78
lines changed

1 file changed

+123
-78
lines changed

README.md

Lines changed: 123 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -2,87 +2,111 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6-
<title>Atharva Joshi | Resume</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Atharva Sandip Joshi - Resume</title>
77
<style>
88
body {
99
font-family: sans-serif;
10-
line-height: 1.6;
11-
background: #fdfdfd;
12-
color: #333;
13-
padding: 20px;
1410
margin: 0;
11+
padding: 2rem;
12+
background-color: white;
13+
color: #1a202c;
1514
}
16-
1715
.container {
18-
max-width: 900px;
19-
margin: auto;
20-
background: white;
21-
padding: 30px;
22-
box-shadow: 0 0 10px rgba(0,0,0,0.1);
16+
max-width: 800px;
17+
margin: 0 auto;
18+
position: relative;
2319
}
24-
2520
header {
2621
text-align: center;
2722
margin-bottom: 2rem;
2823
}
29-
3024
h1 {
31-
font-size: 2rem;
32-
margin-bottom: 0.2rem;
33-
}
34-
35-
a {
36-
color: #1a73e8;
37-
text-decoration: none;
25+
font-size: 2.5rem;
26+
font-weight: bold;
3827
}
39-
4028
section {
4129
margin-bottom: 2rem;
4230
}
43-
44-
ul {
45-
padding-left: 1.2rem;
31+
h2 {
32+
font-size: 1.25rem;
33+
font-weight: 600;
34+
border-bottom: 1px solid #ccc;
35+
padding-bottom: 0.25rem;
36+
margin-bottom: 0.5rem;
4637
}
47-
48-
ul ul {
49-
margin-top: 0.5rem;
38+
h3 {
39+
font-weight: bold;
40+
}
41+
.italic {
42+
font-style: italic;
43+
}
44+
.list {
45+
list-style-type: disc;
46+
padding-left: 1.25rem;
47+
font-size: 0.95rem;
48+
}
49+
a {
50+
color: #2563eb;
51+
text-decoration: none;
52+
}
53+
a:hover {
54+
text-decoration: underline;
55+
}
56+
p, li {
5057
margin-bottom: 0.5rem;
5158
}
59+
#downloadBtn {
60+
position: absolute;
61+
top: 1rem;
62+
right: 1rem;
63+
padding: 0.5rem 1.5rem;
64+
background-color: #6b7280;
65+
color: white;
66+
font-weight: bold;
67+
border: none;
68+
border-radius: 9999px;
69+
cursor: pointer;
70+
}
71+
#downloadBtn:hover {
72+
background-color: #4b5563;
73+
}
5274
</style>
5375
</head>
5476
<body>
55-
<main class="container">
77+
<main class="container" id="resumeContent">
78+
<button id="downloadBtn">Download as PDF</button>
5679
<header>
5780
<h1>Atharva Sandip Joshi</h1>
5881
<p>Mumbai, India · <a href="mailto:atharvajoshi2520@gmail.com">atharvajoshi2520@gmail.com</a></p>
59-
<p>
60-
<a href="https://linkedin.com/in/atharva20">LinkedIn</a> |
61-
<a href="https://github.com/atharva20-coder">GitHub</a>
62-
</p>
82+
<p><a href="https://linkedin.com/in/atharva20">LinkedIn</a> | <a href="https://github.com/atharva20-coder">GitHub</a></p>
6383
</header>
6484

6585
<section>
6686
<h2>✨ Summary</h2>
67-
<p>Engineer with a strong foundation in full-stack development, real-time embedded systems, and applied ML. Built and deployed tools in AI diagnostics, automation, and social media. Solved 255+ LeetCode problems and currently mentoring beginners via YouTube to clarify core DSA concepts.</p>
87+
<p>
88+
Engineer with a strong foundation in full-stack development, real-time embedded systems, and applied ML. Built and deployed tools in AI diagnostics, automation, and social media. Solved 255+ LeetCode problems and currently mentoring beginners via YouTube to clarify core DSA concepts.
89+
</p>
6890
</section>
6991

7092
<section>
7193
<h2>💼 Experience</h2>
72-
<ul>
73-
<li><strong>Web Developer</strong> – MechHelp, Nagpur (Sept 2024 – March 2025)
74-
<ul>
75-
<li>Developed and deployed company website with Firebase integration.</li>
76-
<li>Automated deployments using Git and shell scripting.</li>
77-
</ul>
78-
</li>
79-
<li><strong>Research Intern</strong> – RCOEM, Nagpur (Dec 2023 – May 2024)
80-
<ul>
81-
<li>Built a PyTorch-based leaf disease classifier with Django UI.</li>
82-
<li>Achieved 94%+ classification accuracy using MobileNetV2.</li>
83-
</ul>
84-
</li>
85-
</ul>
94+
<div>
95+
<h3>Web Developer – MechHelp, Nagpur</h3>
96+
<p class="italic">Sept 2024 – March 2025</p>
97+
<ul class="list">
98+
<li>Developed and deployed the official company website with Firebase integration.</li>
99+
<li>Automated deployment workflows using Git and shell scripts, reducing manual updates by 80%.</li>
100+
</ul>
101+
</div>
102+
<div>
103+
<h3>Research Intern – RCOEM, Nagpur</h3>
104+
<p class="italic">Dec 2023 – May 2024</p>
105+
<ul class="list">
106+
<li>Built and deployed PyTorch-based leaf disease classifier with Django web UI.</li>
107+
<li>Achieved 94%+ classification accuracy using MobileNetV2 and real-time inference.</li>
108+
</ul>
109+
</div>
86110
</section>
87111

88112
<section>
@@ -96,57 +120,78 @@
96120

97121
<section>
98122
<h2>📚 Projects</h2>
99-
<ul>
100-
<li><a href="https://swoopin.vercel.app">Swoopin – AI Social Media Automation Tool</a>
101-
<ul>
102-
<li>Full-stack SaaS using OpenAI + Instagram API.</li>
103-
<li>Stripe billing + server caching reduced latency 40%.</li>
104-
</ul>
105-
</li>
106-
<li><a href="https://github.com/atharva20-coder/cyberGrid">CyberGrid Guardian</a>
107-
<ul>
108-
<li>Java Swing app monitoring SPI sensor data in real-time.</li>
109-
<li>Data visualization with jFreeChart + MySQL backend.</li>
110-
</ul>
111-
</li>
112-
<li><a href="https://colab.research.google.com/drive/172facR1dMm7p9kZMLFWLLiNpj-mZDgsh">Apple Leaf Disease Classifier</a>
113-
<ul>
114-
<li>94%+ accurate PyTorch MobileNetV2 model with real-time inference.</li>
115-
</ul>
116-
</li>
117-
<li><a href="https://devatharvajoshi.vercel.app/solalign">SolAlign – Solar Tilt App</a>
118-
<ul>
119-
<li>Android GPS-based app used in 4+ districts by installers.</li>
120-
</ul>
121-
</li>
122-
</ul>
123+
<div>
124+
<a href="https://swoopin.vercel.app" target="_blank"><strong>Swoopin – AI-Powered Social Media Automation Tool</strong></a>
125+
<ul class="list">
126+
<li>Built a full-stack SaaS integrating OpenAI and Instagram APIs to automate content workflows.</li>
127+
<li>Integrated Stripe billing and caching to reduce latency by 40%.</li>
128+
</ul>
129+
</div>
130+
<div>
131+
<a href="https://github.com/atharva20-coder/cyberGrid" target="_blank"><strong>CyberGrid Guardian – Real-Time Fault Monitoring</strong></a>
132+
<ul class="list">
133+
<li>Java Swing app to monitor SPI data from Arduino sensors and visualize anomalies.</li>
134+
<li>Stored logs in MySQL using JDBC and visualized via jFreeChart.</li>
135+
</ul>
136+
</div>
137+
<div>
138+
<a href="https://colab.research.google.com/drive/172facR1dMm7p9kZMLFWLLiNpj-mZDgsh" target="_blank"><strong>Apple Leaf Disease Classifier</strong></a>
139+
<ul class="list">
140+
<li>Trained MobileNetV2 model for 94%+ accurate disease classification.</li>
141+
<li>Deployed with Django for real-time inference UI.</li>
142+
</ul>
143+
</div>
144+
<div>
145+
<a href="https://devatharvajoshi.vercel.app/solalign" target="_blank"><strong>SolAlign – Solar Tilt Calculator</strong></a>
146+
<ul class="list">
147+
<li>Android app for computing solar panel tilt using GPS and seasonal factors.</li>
148+
<li>Used by field engineers in 4+ districts.</li>
149+
</ul>
150+
</div>
123151
</section>
124152

125153
<section>
126154
<h2>🎓 Education</h2>
127-
<p><strong>B.Tech – Electrical Engineering</strong><br/>
128-
Shri Ramdeobaba College of Engineering, Nagpur<br/>
129-
Graduated: May 2024 | CGPA: 9.66 / 10 (Dean’s Topper)</p>
155+
<p>
156+
<strong>B.Tech – Electrical Engineering</strong><br />
157+
Shri Ramdeobaba College of Engineering, Nagpur<br />
158+
Graduated: May 2024 | CGPA: 9.66 / 10 (Dean’s Topper)
159+
</p>
130160
</section>
131161

132162
<section>
133163
<h2>🏆 Achievements</h2>
134-
<ul>
164+
<ul class="list">
135165
<li>Solved 255+ LeetCode problems in Trees, Graphs, and DP.</li>
136-
<li>Created YouTube channel teaching DSA to beginners.</li>
166+
<li>Created a YouTube channel teaching DSA to beginners.</li>
137167
<li>Dean’s Scholar 4 years in a row.</li>
138168
<li>Selected for state-level tech exhibitions (AI, automation).</li>
139169
</ul>
140170
</section>
141171

142172
<section>
143173
<h2>📖 Certifications</h2>
144-
<ul>
174+
<ul class="list">
145175
<li>TensorFlow for Deep Learning – Google/Udacity</li>
146176
<li>Cloud App Dev with Node.js and React – IBM</li>
147177
<li>Data Analysis Fundamentals – LT EduTech</li>
148178
</ul>
149179
</section>
150180
</main>
181+
182+
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.1/html2pdf.bundle.min.js"></script>
183+
<script>
184+
document.getElementById("downloadBtn").addEventListener("click", function () {
185+
const element = document.body; // Capture full body instead of just resumeContent
186+
const opt = {
187+
margin: 0.2,
188+
filename: "Atharva_Joshi_Resume.pdf",
189+
image: { type: "jpeg", quality: 0.98 },
190+
html2canvas: { scale: 2, useCORS: true },
191+
jsPDF: { unit: "in", format: "a4", orientation: "portrait" }
192+
};
193+
html2pdf().set(opt).from(element).save();
194+
});
195+
</script>
151196
</body>
152197
</html>

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy