|
1 |
| -import React from "react"; |
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> |
| 6 | + <title>Atharva Joshi | Resume</title> |
| 7 | + <style> |
| 8 | + body { |
| 9 | + font-family: sans-serif; |
| 10 | + line-height: 1.6; |
| 11 | + background: #fdfdfd; |
| 12 | + color: #333; |
| 13 | + padding: 20px; |
| 14 | + margin: 0; |
| 15 | + } |
2 | 16 |
|
3 |
| -export default function ResumeWebsite() { |
4 |
| - return ( |
5 |
| - <main className="min-h-screen bg-white text-gray-900 font-sans p-8"> |
6 |
| - <section className="max-w-4xl mx-auto"> |
7 |
| - <header className="text-center mb-8"> |
8 |
| - <h1 className="text-4xl font-bold">Atharva Sandip Joshi</h1> |
9 |
| - <p className="mt-2">Mumbai, India · <a className="text-blue-600" href="mailto:atharvajoshi2520@gmail.com">atharvajoshi2520@gmail.com</a></p> |
10 |
| - <p> |
11 |
| - <a href="https://linkedin.com/in/atharva20" className="text-blue-600">LinkedIn</a> | |
12 |
| - <a href="https://github.com/atharva20-coder" className="text-blue-600"> GitHub</a> |
13 |
| - </p> |
14 |
| - </header> |
| 17 | + .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); |
| 23 | + } |
15 | 24 |
|
16 |
| - <Section title="✨ Summary"> |
17 |
| - <p> |
18 |
| - 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. |
19 |
| - </p> |
20 |
| - </Section> |
| 25 | + header { |
| 26 | + text-align: center; |
| 27 | + margin-bottom: 2rem; |
| 28 | + } |
21 | 29 |
|
22 |
| - <Section title="💼 Experience"> |
23 |
| - <Experience |
24 |
| - role="Web Developer" |
25 |
| - company="MechHelp, Nagpur" |
26 |
| - duration="Sept 2024 – March 2025" |
27 |
| - bullets={[ |
28 |
| - "Developed and deployed the official company website with Firebase integration.", |
29 |
| - "Automated deployment workflows using Git and shell scripts, reducing manual updates by 80%." |
30 |
| - ]} |
31 |
| - /> |
32 |
| - <Experience |
33 |
| - role="Research Intern" |
34 |
| - company="RCOEM, Nagpur" |
35 |
| - duration="Dec 2023 – May 2024" |
36 |
| - bullets={[ |
37 |
| - "Built and deployed PyTorch-based leaf disease classifier with Django web UI.", |
38 |
| - "Achieved 94%+ classification accuracy using MobileNetV2 and real-time inference." |
39 |
| - ]} |
40 |
| - /> |
41 |
| - </Section> |
| 30 | + h1 { |
| 31 | + font-size: 2rem; |
| 32 | + margin-bottom: 0.2rem; |
| 33 | + } |
42 | 34 |
|
43 |
| - <Section title="💡 Skills"> |
44 |
| - <Skill title="Languages" items={["Java", "Python", "C++", "SQL", "JavaScript"]} /> |
45 |
| - <Skill title="Web/Backend" items={["Next.js", "Django", "Node.js", "Prisma", "Firebase"]} /> |
46 |
| - <Skill title="AI/ML" items={["PyTorch", "TensorFlow", "Keras", "OpenCV"]} /> |
47 |
| - <Skill title="Databases" items={["MySQL", "PostgreSQL", "Firebase"]} /> |
48 |
| - <Skill title="Systems & Tools" items={["Embedded C", "Arduino", "Multithreading", "Git", "Docker"]} /> |
49 |
| - </Section> |
| 35 | + a { |
| 36 | + color: #1a73e8; |
| 37 | + text-decoration: none; |
| 38 | + } |
50 | 39 |
|
51 |
| - <Section title="📚 Projects"> |
52 |
| - <Project |
53 |
| - title="Swoopin – AI-Powered Social Media Automation Tool" |
54 |
| - link="https://swoopin.vercel.app" |
55 |
| - bullets={[ |
56 |
| - "Built a full-stack SaaS integrating OpenAI and Instagram APIs to automate content workflows.", |
57 |
| - "Integrated Stripe billing and caching to reduce latency by 40%." |
58 |
| - ]} |
59 |
| - /> |
60 |
| - <Project |
61 |
| - title="CyberGrid Guardian – Real-Time Fault Monitoring" |
62 |
| - link="https://github.com/atharva20-coder/cyberGrid" |
63 |
| - bullets={[ |
64 |
| - "Java Swing app to monitor SPI data from Arduino sensors and visualize anomalies.", |
65 |
| - "Stored logs in MySQL using JDBC and visualized via jFreeChart." |
66 |
| - ]} |
67 |
| - /> |
68 |
| - <Project |
69 |
| - title="Apple Leaf Disease Classifier" |
70 |
| - link="https://colab.research.google.com/drive/172facR1dMm7p9kZMLFWLLiNpj-mZDgsh" |
71 |
| - bullets={[ |
72 |
| - "Trained MobileNetV2 model for 94%+ accurate disease classification.", |
73 |
| - "Deployed with Django for real-time inference UI." |
74 |
| - ]} |
75 |
| - /> |
76 |
| - <Project |
77 |
| - title="SolAlign – Solar Tilt Calculator" |
78 |
| - link="https://devatharvajoshi.vercel.app/solalign" |
79 |
| - bullets={[ |
80 |
| - "Android app for computing solar panel tilt using GPS and seasonal factors.", |
81 |
| - "Used by field engineers in 4+ districts." |
82 |
| - ]} |
83 |
| - /> |
84 |
| - </Section> |
| 40 | + section { |
| 41 | + margin-bottom: 2rem; |
| 42 | + } |
85 | 43 |
|
86 |
| - <Section title="🎓 Education"> |
87 |
| - <p> |
88 |
| - <strong>B.Tech – Electrical Engineering</strong> |
89 |
| - <br/>Shri Ramdeobaba College of Engineering, Nagpur |
90 |
| - <br/>Graduated: May 2024 | CGPA: 9.66 / 10 (Dean’s Topper) |
91 |
| - </p> |
92 |
| - </Section> |
| 44 | + ul { |
| 45 | + padding-left: 1.2rem; |
| 46 | + } |
93 | 47 |
|
94 |
| - <Section title="🏆 Achievements"> |
95 |
| - <ul className="list-disc list-inside"> |
96 |
| - <li>Solved 255+ LeetCode problems in Trees, Graphs, and DP.</li> |
97 |
| - <li>Created a YouTube channel teaching DSA to beginners.</li> |
98 |
| - <li>Dean’s Scholar 4 years in a row.</li> |
99 |
| - <li>Selected for state-level tech exhibitions (AI, automation).</li> |
100 |
| - </ul> |
101 |
| - </Section> |
| 48 | + ul ul { |
| 49 | + margin-top: 0.5rem; |
| 50 | + margin-bottom: 0.5rem; |
| 51 | + } |
| 52 | + </style> |
| 53 | +</head> |
| 54 | +<body> |
| 55 | + <main class="container"> |
| 56 | + <header> |
| 57 | + <h1>Atharva Sandip Joshi</h1> |
| 58 | + <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> |
| 63 | + </header> |
| 64 | + |
| 65 | + <section> |
| 66 | + <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> |
| 68 | + </section> |
102 | 69 |
|
103 |
| - <Section title="📖 Certifications"> |
104 |
| - <ul className="list-disc list-inside"> |
105 |
| - <li>TensorFlow for Deep Learning – Google/Udacity</li> |
106 |
| - <li>Cloud App Dev with Node.js and React – IBM</li> |
107 |
| - <li>Data Analysis Fundamentals – LT EduTech</li> |
| 70 | + <section> |
| 71 | + <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> |
108 | 83 | </ul>
|
109 |
| - </Section> |
110 |
| - </section> |
111 |
| - </main> |
112 |
| - ); |
113 |
| -} |
| 84 | + </li> |
| 85 | + </ul> |
| 86 | + </section> |
114 | 87 |
|
115 |
| -function Section({ title, children }) { |
116 |
| - return ( |
117 |
| - <div className="mb-8"> |
118 |
| - <h2 className="text-xl font-semibold border-b border-gray-300 pb-1 mb-2">{title}</h2> |
119 |
| - {children} |
120 |
| - </div> |
121 |
| - ); |
122 |
| -} |
| 88 | + <section> |
| 89 | + <h2>💡 Skills</h2> |
| 90 | + <p><strong>Languages:</strong> Java, Python, C++, SQL, JavaScript</p> |
| 91 | + <p><strong>Web/Backend:</strong> Next.js, Django, Node.js, Prisma, Firebase</p> |
| 92 | + <p><strong>AI/ML:</strong> PyTorch, TensorFlow, Keras, OpenCV</p> |
| 93 | + <p><strong>Databases:</strong> MySQL, PostgreSQL, Firebase</p> |
| 94 | + <p><strong>Systems & Tools:</strong> Embedded C, Arduino, Multithreading, Git, Docker</p> |
| 95 | + </section> |
123 | 96 |
|
124 |
| -function Experience({ role, company, duration, bullets }) { |
125 |
| - return ( |
126 |
| - <div className="mb-4"> |
127 |
| - <h3 className="font-bold">{role} – {company}</h3> |
128 |
| - <p className="text-sm italic mb-1">{duration}</p> |
129 |
| - <ul className="list-disc list-inside text-sm"> |
130 |
| - {bullets.map((b, i) => <li key={i}>{b}</li>)} |
| 97 | + <section> |
| 98 | + <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> |
131 | 122 | </ul>
|
132 |
| - </div> |
133 |
| - ); |
134 |
| -} |
| 123 | + </section> |
135 | 124 |
|
136 |
| -function Skill({ title, items }) { |
137 |
| - return ( |
138 |
| - <p><strong>{title}:</strong> {items.join(", ")}</p> |
139 |
| - ); |
140 |
| -} |
| 125 | + <section> |
| 126 | + <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> |
| 130 | + </section> |
| 131 | + |
| 132 | + <section> |
| 133 | + <h2>🏆 Achievements</h2> |
| 134 | + <ul> |
| 135 | + <li>Solved 255+ LeetCode problems in Trees, Graphs, and DP.</li> |
| 136 | + <li>Created YouTube channel teaching DSA to beginners.</li> |
| 137 | + <li>Dean’s Scholar 4 years in a row.</li> |
| 138 | + <li>Selected for state-level tech exhibitions (AI, automation).</li> |
| 139 | + </ul> |
| 140 | + </section> |
141 | 141 |
|
142 |
| -function Project({ title, link, bullets }) { |
143 |
| - return ( |
144 |
| - <div className="mb-4"> |
145 |
| - <a href={link} target="_blank" rel="noopener noreferrer" className="text-blue-600 font-bold">{title}</a> |
146 |
| - <ul className="list-disc list-inside text-sm"> |
147 |
| - {bullets.map((b, i) => <li key={i}>{b}</li>)} |
| 142 | + <section> |
| 143 | + <h2>📖 Certifications</h2> |
| 144 | + <ul> |
| 145 | + <li>TensorFlow for Deep Learning – Google/Udacity</li> |
| 146 | + <li>Cloud App Dev with Node.js and React – IBM</li> |
| 147 | + <li>Data Analysis Fundamentals – LT EduTech</li> |
148 | 148 | </ul>
|
149 |
| - </div> |
150 |
| - ); |
151 |
| -} |
| 149 | + </section> |
| 150 | + </main> |
| 151 | +</body> |
| 152 | +</html> |
0 commit comments