Software Engineering student at Eduvos building a strong foundation in cloud infrastructure, DevSecOps pipelines, and AI-powered applications. I bring a security-first mindset and a drive to automate everything that can be automated.
Hands-on experience with AWS services, Docker containerisation, CI/CD pipeline design, and automated deployment workflows.
Applying DevSecOps principles — SAST scanning, secure authentication, automated testing, and vulnerability-aware architecture from day one.
Building NLP-powered tools including an AI resume analyser. AWS Generative AI certified and actively exploring ML model deployment.
Fluent across the entire stack — React frontends, .NET and Node.js APIs, MySQL and PostgreSQL databases, and Flutter mobile apps.
A production-minded task management system built with security baked in — not bolted on. Integrates automated code scanning, CI/CD pipeline workflows, and secure authentication, demonstrating how DevSecOps principles translate into real engineering decisions.
// DevSecOps pipeline
pipeline {
agent any
stages {
stage('Scan') {
steps { sast() }
}
stage('Test') {
steps { runTests() }
}
stage('Deploy') {
steps { deploy() }
}
}
}