Vanshit Mehta
Available for work 🟒

Hi, I'm Vanshit Mehta

Software Developer & Technology Enthusiast

I craft scalable systems and elegant solutions. Passionate about clean code, modern architecture, and building products that matter.

React Java SpringBoot AWS
Scroll

About ✨

I'm a software developer passionate about building robust, scalable applications. πŸ’» I specialize in full-stack development, system architecture, and writing clean, maintainable code that solves real-world problems.

My approach combines technical expertise with product thinking. I enjoy working on challenging problems, optimizing performance, and building systems that scale. πŸ”₯ Currently focused on modern web technologies, cloud infrastructure, and developer tooling.

πŸš€
50+ Projects Built
⏱️
3+ Years Coding
πŸ’»
100K+ Lines of Code

Experience πŸ’Ό

Building products and systems that scale. πŸ“ˆ

2023 - Present
Software Development Engineer
Jio Platforms Limited
  • Leading development of microservices architecture handling millions of requests daily
  • Built RESTful APIs, optimized database queries, and implemented CI/CD pipelines
  • Designed & implemented an asynchronous and dynamic resource quota validation framework for Jio Cloud (India AI) supporting ROS, HCI, GCP, and internal IaaS providers capable to handle traffic for 100K+ users
  • Engineered a centralized quota validation engine integrated across order types (VMs, Block Storage, Security Groups, HSM, etc.), reducing invalid user requests at source and reducing post provisioning failure orders by 40%
Java SpringBoot OracleSQL React PostgreSQL AWS Docker
2021 - 2023
Software Engineering Intern
JM Technovations
  • Developed and maintained web applications using modern JavaScript frameworks
  • Implemented responsive UIs, integrated third-party APIs, and collaborated with cross-functional teams
  • Focused on performance optimization and code quality
  • Worked on Hand Sanitizer Dispenser using IoT and Machine Learning
C# Java Machine Learning Python Firebase

Projects 🎯

Technical projects and open source contributions. 🌟

Rural E-Health Portal

  • Built a Java-based healthcare portal with the Aarogya Vibhag (Health Department) to provide digital medical support in rural areas
  • Integrated a Random Forest model (85% accuracy) for disease prediction and automated case assignment using rule-based logic
  • Focused on intelligent automation, responsive UI, and scalable database design
Java React Python Numpy Scikit-learn

Kavach – Women's Safety App

  • Developed a SOS-triggering safety app with real-time location sharing & emergency broadcasting
  • Awarded Gold Medal at Anveshana 2023; shortlisted by Government of India Tech Innovation Awards
  • Implemented with Java, XML, Firebase for Android Version and HTML, CSS, JavaScript for Admin Web Portal
Java XML WebSocket Firebase Android Studio

Tech Stack πŸ› οΈ

Technologies and tools I work with daily. ⚑

Languages

Java C++ Python SQL JavaScript HTML5 CSS3

Framework/Technologies

SpringBoot J2EE Hibernate JPA JSP Servlets Angular Swagger Kafka

Databases

MySQL Oracle PostgreSQL MongoDB Redis

Tools & Devops

Git Github Maven Docker Kubernetes JMeter Postman CI/CD Pipelines

DevOps & Tools

Docker Kubernetes AWS Git CI/CD Jenkins Terraform

Testing & Quality

Jest Cypress Mocha ESLint Prettier TypeScript
UserService.java
// Clean, maintainable Java code example
@Service
@Slf4j
public class UserService {
    
    private final UserRepository userRepository;
    
    public UserService(UserRepository userRepository) {
        this.userRepository = userRepository;
    }
    
    public ResponseEntity<UserResponse> getUserById(Long userId) {
        try {
            User user = userRepository.findById(userId)
                .orElseThrow(() -> new UserNotFoundException("User not found"));
            
            UserResponse response = UserResponse.builder()
                .id(user.getId())
                .name(user.getName())
                .email(user.getEmail())
                .build();
            
            return ResponseEntity.ok(response);
        } catch (UserNotFoundException e) {
            log.error("Failed to fetch user: {}", userId, e);
            return ResponseEntity.notFound().build();
        }
    }
}

Let's connect 🀝

Whether you're building something new or just want to swap stories, let's have a chat. πŸ’¬