|
| 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>Vedant Madane - Resume</title> |
| 7 | + <style> |
| 8 | + * { |
| 9 | + margin: 0; |
| 10 | + padding: 0; |
| 11 | + box-sizing: border-box; |
| 12 | + } |
| 13 | + |
| 14 | + body { |
| 15 | + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 16 | + line-height: 1.4; |
| 17 | + color: #333; |
| 18 | + background: #fff; |
| 19 | + font-size: 11px; |
| 20 | + } |
| 21 | + |
| 22 | + .container { |
| 23 | + max-width: 8.5in; |
| 24 | + margin: 0 auto; |
| 25 | + padding: 0.5in; |
| 26 | + background: white; |
| 27 | + min-height: 11in; |
| 28 | + } |
| 29 | + |
| 30 | + .header { |
| 31 | + text-align: center; |
| 32 | + border-bottom: 2px solid #2c5aa0; |
| 33 | + padding-bottom: 15px; |
| 34 | + margin-bottom: 20px; |
| 35 | + } |
| 36 | + |
| 37 | + .header h1 { |
| 38 | + font-size: 24px; |
| 39 | + font-weight: bold; |
| 40 | + color: #2c5aa0; |
| 41 | + margin-bottom: 5px; |
| 42 | + } |
| 43 | + |
| 44 | + .header h2 { |
| 45 | + font-size: 14px; |
| 46 | + color: #666; |
| 47 | + margin-bottom: 8px; |
| 48 | + } |
| 49 | + |
| 50 | + .contact-info { |
| 51 | + font-size: 10px; |
| 52 | + color: #555; |
| 53 | + } |
| 54 | + |
| 55 | + .section { |
| 56 | + margin-bottom: 18px; |
| 57 | + } |
| 58 | + |
| 59 | + .section-title { |
| 60 | + font-size: 13px; |
| 61 | + font-weight: bold; |
| 62 | + color: #2c5aa0; |
| 63 | + border-bottom: 1px solid #2c5aa0; |
| 64 | + margin-bottom: 8px; |
| 65 | + padding-bottom: 2px; |
| 66 | + } |
| 67 | + |
| 68 | + .job { |
| 69 | + margin-bottom: 12px; |
| 70 | + } |
| 71 | + |
| 72 | + .job-header { |
| 73 | + display: flex; |
| 74 | + justify-content: space-between; |
| 75 | + align-items: flex-start; |
| 76 | + margin-bottom: 4px; |
| 77 | + } |
| 78 | + |
| 79 | + .job-title { |
| 80 | + font-weight: bold; |
| 81 | + font-size: 11px; |
| 82 | + color: #333; |
| 83 | + } |
| 84 | + |
| 85 | + .job-company { |
| 86 | + font-size: 10px; |
| 87 | + color: #666; |
| 88 | + font-style: italic; |
| 89 | + } |
| 90 | + |
| 91 | + .job-duration { |
| 92 | + font-size: 10px; |
| 93 | + color: #666; |
| 94 | + text-align: right; |
| 95 | + } |
| 96 | + |
| 97 | + .job-location { |
| 98 | + font-size: 10px; |
| 99 | + color: #666; |
| 100 | + } |
| 101 | + |
| 102 | + .job-description { |
| 103 | + margin-top: 4px; |
| 104 | + } |
| 105 | + |
| 106 | + .job-description ul { |
| 107 | + margin-left: 15px; |
| 108 | + } |
| 109 | + |
| 110 | + .job-description li { |
| 111 | + margin-bottom: 2px; |
| 112 | + font-size: 10px; |
| 113 | + line-height: 1.3; |
| 114 | + } |
| 115 | + |
| 116 | + .skills-grid { |
| 117 | + display: grid; |
| 118 | + grid-template-columns: repeat(2, 1fr); |
| 119 | + gap: 10px; |
| 120 | + } |
| 121 | + |
| 122 | + .skill-category { |
| 123 | + margin-bottom: 8px; |
| 124 | + } |
| 125 | + |
| 126 | + .skill-category h4 { |
| 127 | + font-size: 10px; |
| 128 | + font-weight: bold; |
| 129 | + color: #2c5aa0; |
| 130 | + margin-bottom: 3px; |
| 131 | + } |
| 132 | + |
| 133 | + .skill-category p { |
| 134 | + font-size: 9px; |
| 135 | + line-height: 1.2; |
| 136 | + } |
| 137 | + |
| 138 | + .education-item { |
| 139 | + display: flex; |
| 140 | + justify-content: space-between; |
| 141 | + align-items: center; |
| 142 | + margin-bottom: 4px; |
| 143 | + } |
| 144 | + |
| 145 | + .education-details h4 { |
| 146 | + font-size: 11px; |
| 147 | + font-weight: bold; |
| 148 | + margin-bottom: 2px; |
| 149 | + } |
| 150 | + |
| 151 | + .education-details p { |
| 152 | + font-size: 10px; |
| 153 | + color: #666; |
| 154 | + } |
| 155 | + |
| 156 | + .education-gpa { |
| 157 | + font-size: 10px; |
| 158 | + color: #666; |
| 159 | + text-align: right; |
| 160 | + } |
| 161 | + |
| 162 | + .achievements ul { |
| 163 | + margin-left: 15px; |
| 164 | + } |
| 165 | + |
| 166 | + .achievements li { |
| 167 | + font-size: 10px; |
| 168 | + margin-bottom: 3px; |
| 169 | + line-height: 1.3; |
| 170 | + } |
| 171 | + |
| 172 | + .summary { |
| 173 | + text-align: justify; |
| 174 | + font-size: 10px; |
| 175 | + line-height: 1.4; |
| 176 | + margin-bottom: 15px; |
| 177 | + } |
| 178 | + |
| 179 | + @media print { |
| 180 | + .container { |
| 181 | + margin: 0; |
| 182 | + padding: 0.3in; |
| 183 | + box-shadow: none; |
| 184 | + } |
| 185 | + |
| 186 | + body { |
| 187 | + font-size: 10px; |
| 188 | + } |
| 189 | + |
| 190 | + .page-break { |
| 191 | + page-break-before: always; |
| 192 | + } |
| 193 | + } |
| 194 | + </style> |
| 195 | +</head> |
| 196 | +<body> |
| 197 | + <div class="container"> |
| 198 | + <div class="header"> |
| 199 | + <h1>VEDANT MADANE</h1> |
| 200 | + <h2>Full Stack Developer (Golang/Vue.js) & AI/ML Engineer</h2> |
| 201 | + <div class="contact-info"> |
| 202 | + vedantnm@gmail.com | Bandra, Mumbai | +91 9321761271 | vedantmadane.github.io |
| 203 | + </div> |
| 204 | + </div> |
| 205 | + |
| 206 | + <div class="section"> |
| 207 | + <div class="section-title">PROFESSIONAL SUMMARY</div> |
| 208 | + <div class="summary"> |
| 209 | + Experienced Full Stack Developer and AI/ML Engineer with 4+ years of expertise in developing scalable web applications using <strong>Golang backends</strong> and <strong>Vue.js frontends</strong>. Proven track record in building high-performance, AI/ML-enabled applications with event-driven architecture, microservices, and modern deployment practices. Skilled in developing RESTful APIs, implementing machine learning pipelines, and delivering business-critical solutions with exceptional performance and scalability. Strong background in leading cross-functional projects and mentoring technical teams. |
| 210 | + </div> |
| 211 | + </div> |
| 212 | + |
| 213 | + <div class="section"> |
| 214 | + <div class="section-title">PROFESSIONAL EXPERIENCE</div> |
| 215 | + |
| 216 | + <div class="job"> |
| 217 | + <div class="job-header"> |
| 218 | + <div> |
| 219 | + <div class="job-title">Senior Full Stack Developer & AI Engineer</div> |
| 220 | + <div class="job-company">Maharashtra Knowledge Corporation Limited</div> |
| 221 | + <div class="job-location">Navi Mumbai</div> |
| 222 | + </div> |
| 223 | + <div class="job-duration">Aug 2024 - Present</div> |
| 224 | + </div> |
| 225 | + <div class="job-description"> |
| 226 | + <ul> |
| 227 | + <li>Architected and developed scalable <strong>Golang microservices</strong> with <strong>Vue.js frontends</strong> for AI-enabled content generation platform, improving user engagement by 35%</li> |
| 228 | + <li>Built high-performance <strong>RESTful APIs</strong> using Golang with goroutines and channels for concurrent processing of 100,000+ requests/day</li> |
| 229 | + <li>Implemented <strong>event-driven architecture</strong> using message queues for real-time AI model inference and data processing pipelines</li> |
| 230 | + <li>Developed responsive <strong>Vue.js applications</strong> with seamless backend integration, delivering optimal user experience across devices</li> |
| 231 | + <li>Deployed conversational AI chatbot using advanced NLP techniques, matching 250+ courses with candidate profiles through intelligent data analysis</li> |
| 232 | + <li>Implemented enterprise search solutions with <strong>PostgreSQL and MongoDB</strong> integration for knowledge base management</li> |
| 233 | + <li>Utilized <strong>Docker containerization</strong> and CI/CD practices for seamless deployment on AWS and Azure cloud platforms</li> |
| 234 | + </ul> |
| 235 | + </div> |
| 236 | + </div> |
| 237 | + |
| 238 | + <div class="job"> |
| 239 | + <div class="job-header"> |
| 240 | + <div> |
| 241 | + <div class="job-title">Full Stack Developer & Machine Learning Engineer</div> |
| 242 | + <div class="job-company">Maharashtra Knowledge Corporation Limited</div> |
| 243 | + <div class="job-location">Navi Mumbai</div> |
| 244 | + </div> |
| 245 | + <div class="job-duration">Aug 2023 - Jul 2024</div> |
| 246 | + </div> |
| 247 | + <div class="job-description"> |
| 248 | + <ul> |
| 249 | + <li>Developed sophisticated ML classification systems with <strong>Golang backend APIs</strong> processing 100,000+ documents, achieving 94% accuracy</li> |
| 250 | + <li>Built responsive <strong>Vue.js interfaces</strong> for document management systems with real-time updates and interactive data visualization</li> |
| 251 | + <li>Implemented <strong>microservices architecture</strong> for feature extraction pipelines including OCR, text recognition, and security feature detection</li> |
| 252 | + <li>Engineered computer vision models for face recognition with <strong>RESTful API integration</strong> and real-time processing capabilities</li> |
| 253 | + <li>Designed database schemas and optimized queries for <strong>PostgreSQL and Redis</strong> to handle high-volume data operations</li> |
| 254 | + <li>Conducted comprehensive data analysis on structured and unstructured datasets using advanced statistical modeling techniques</li> |
| 255 | + </ul> |
| 256 | + </div> |
| 257 | + </div> |
| 258 | + |
| 259 | + <div class="job"> |
| 260 | + <div class="job-header"> |
| 261 | + <div> |
| 262 | + <div class="job-title">Backend Developer & Data Scientist</div> |
| 263 | + <div class="job-company">Maharashtra Knowledge Corporation Limited</div> |
| 264 | + <div class="job-location">Navi Mumbai</div> |
| 265 | + </div> |
| 266 | + <div class="job-duration">Aug 2022 - Jul 2023</div> |
| 267 | + </div> |
| 268 | + <div class="job-description"> |
| 269 | + <ul> |
| 270 | + <li>Designed and trained deep learning models integrated with <strong>Golang web services</strong> for NLP, computer vision, and forecasting applications</li> |
| 271 | + <li>Built scalable ML pipelines with <strong>concurrent processing</strong> using Golang goroutines for feature engineering and model validation</li> |
| 272 | + <li>Developed <strong>Vue.js dashboards</strong> for real-time model performance monitoring and business analytics visualization</li> |
| 273 | + <li>Implemented <strong>RESTful APIs</strong> with proper error handling, authentication, and rate limiting for production ML model serving</li> |
| 274 | + <li>Deployed containerized applications using <strong>Docker</strong> with automated CI/CD pipelines on AWS and Azure environments</li> |
| 275 | + <li>Collaborated with cross-functional teams following <strong>Agile methodologies</strong> including sprint planning and daily stand-ups</li> |
| 276 | + </ul> |
| 277 | + </div> |
| 278 | + </div> |
| 279 | + |
| 280 | + <div class="job"> |
| 281 | + <div class="job-header"> |
| 282 | + <div> |
| 283 | + <div class="job-title">Junior Full Stack Developer & Data Analyst</div> |
| 284 | + <div class="job-company">Maharashtra Knowledge Corporation Limited</div> |
| 285 | + <div class="job-location">Navi Mumbai</div> |
| 286 | + </div> |
| 287 | + <div class="job-duration">Aug 2021 - Jul 2022</div> |
| 288 | + </div> |
| 289 | + <div class="job-description"> |
| 290 | + <ul> |
| 291 | + <li>Automated data analysis workflows using <strong>Golang scripts</strong> and <strong>Vue.js interfaces</strong> for educational analytics reporting</li> |
| 292 | + <li>Developed computer vision solutions with <strong>RESTful API backends</strong> for ID verification, posture detection, and text extraction</li> |
| 293 | + <li>Implemented sentiment analysis systems with real-time data processing and interactive <strong>Vue.js visualizations</strong></li> |
| 294 | + <li>Applied behavioral psychology principles to data-driven user retention strategies through A/B testing frameworks</li> |
| 295 | + <li>Utilized <strong>version control (Git)</strong> and collaborative development practices in team-based projects</li> |
| 296 | + </ul> |
| 297 | + </div> |
| 298 | + </div> |
| 299 | + </div> |
| 300 | + |
| 301 | + <div class="section"> |
| 302 | + <div class="section-title">TECHNICAL SKILLS</div> |
| 303 | + <div class="skills-grid"> |
| 304 | + <div class="skill-category"> |
| 305 | + <h4>Backend Development:</h4> |
| 306 | + <p><strong>Golang (3+ years)</strong>, Python, RESTful APIs, Microservices, Goroutines & Channels, Event-driven Architecture</p> |
| 307 | + </div> |
| 308 | + <div class="skill-category"> |
| 309 | + <h4>Frontend Development:</h4> |
| 310 | + <p><strong>Vue.js (3+ years)</strong>, React.js, JavaScript, HTML5/CSS3, Responsive Design, Cross-browser Compatibility</p> |
| 311 | + </div> |
| 312 | + <div class="skill-category"> |
| 313 | + <h4>Databases & Storage:</h4> |
| 314 | + <p><strong>PostgreSQL, MongoDB, Redis</strong>, SQL optimization, NoSQL design, Database scaling</p> |
| 315 | + </div> |
| 316 | + <div class="skill-category"> |
| 317 | + <h4>Message Systems:</h4> |
| 318 | + <p>Kafka, RabbitMQ, Event-driven workflows, Message queues, Real-time data processing</p> |
| 319 | + </div> |
| 320 | + <div class="skill-category"> |
| 321 | + <h4>Cloud & DevOps:</h4> |
| 322 | + <p><strong>AWS, Azure, Docker</strong>, CI/CD pipelines, Container orchestration, Cloud deployment</p> |
| 323 | + </div> |
| 324 | + <div class="skill-category"> |
| 325 | + <h4>AI/ML Technologies:</h4> |
| 326 | + <p>TensorFlow, PyTorch, Scikit-learn, Computer Vision, NLP, Deep Learning, Statistical Modeling</p> |
| 327 | + </div> |
| 328 | + <div class="skill-category"> |
| 329 | + <h4>Development Tools:</h4> |
| 330 | + <p><strong>Git, Agile methodologies</strong>, Testing frameworks, Code review practices, Performance optimization</p> |
| 331 | + </div> |
| 332 | + <div class="skill-category"> |
| 333 | + <h4>Additional Skills:</h4> |
| 334 | + <p>Network programming, Performance tuning, Scalability design, Clean architecture, Problem-solving</p> |
| 335 | + </div> |
| 336 | + </div> |
| 337 | + </div> |
| 338 | + |
| 339 | + <div class="section"> |
| 340 | + <div class="section-title">EDUCATION & CERTIFICATIONS</div> |
| 341 | + <div class="education-item"> |
| 342 | + <div class="education-details"> |
| 343 | + <h4>Bachelor of Engineering - Electronics and Telecommunication</h4> |
| 344 | + <p>University of Mumbai | Graduated June 2021</p> |
| 345 | + </div> |
| 346 | + <div class="education-gpa">CGPI: 7.49</div> |
| 347 | + </div> |
| 348 | + <div class="education-item"> |
| 349 | + <div class="education-details"> |
| 350 | + <h4>Copyright Registration (2023)</h4> |
| 351 | + <p>Programs for Sentiment Analysis and NLP Tasks</p> |
| 352 | + </div> |
| 353 | + </div> |
| 354 | + </div> |
| 355 | + |
| 356 | + <div class="section"> |
| 357 | + <div class="section-title">KEY ACHIEVEMENTS & QUALIFICATIONS</div> |
| 358 | + <div class="achievements"> |
| 359 | + <ul> |
| 360 | + <li><strong>4+ years of full stack development experience</strong> with proven expertise in building scalable, high-performance applications</li> |
| 361 | + <li><strong>3+ years hands-on experience with Golang</strong> including microservices, concurrent programming, and RESTful API development</li> |
| 362 | + <li><strong>3+ years proficiency in Vue.js</strong> with modern frontend development practices and seamless backend integration</li> |
| 363 | + <li>Successfully processed and analyzed datasets exceeding <strong>100,000+ records</strong> with high-accuracy AI/ML models</li> |
| 364 | + <li>Led cross-functional projects following <strong>Agile methodologies</strong> resulting in measurable business impact and improved user experience</li> |
| 365 | + <li>Demonstrated expertise in <strong>event-driven/message-driven architecture</strong> with real-world implementation experience</li> |
| 366 | + <li>Strong understanding of <strong>database design and optimization</strong> for PostgreSQL, MongoDB, and Redis</li> |
| 367 | + <li>Proven ability to translate complex technical requirements into actionable solutions for stakeholders</li> |
| 368 | + <li>Experience with <strong>performance optimization</strong>, scalability design, and cross-browser compatibility</li> |
| 369 | + <li>Strong analytical, problem-solving, and communication skills with collaborative team experience</li> |
| 370 | + </ul> |
| 371 | + </div> |
| 372 | + </div> |
| 373 | + </div> |
| 374 | +</body> |
| 375 | +</html> |
0 commit comments