Experience
Built in the trenches of late-night debugging and big-picture strategy.
From leading engineering teams as a CTO to shipping mobile apps with Flutter and architecting cloud solutions on AWS, my journey has been equal parts building, breaking, and scaling. Along the way, I’ve mastered not only frameworks likeLaravel, Node.js/NestJS, React, and Next.js, but also the art of debugging cryptic errors at 2 AM. Every role has sharpened my ability to deliver clean, reliable software— and occasionally, to fix bugs before they fix me.
Chief Technology Officer · Resq-XLatest
Overhauled codebase for performance and security, led migration to scalable cloud architectures, authored technical documentation, and collaborated across teams to reduce operational costs by 30%.
Senior Mobile Engineer · Xpad
Leading the development of a cross-platform mobile app using Flutter, implementing state management with Riverpod, and ensuring seamless integration with backend services.
Software Engineering Consultant · ROFCOM Energy
Designed and deployed AWS solutions, led cross-functional teams of 9+ engineers, and delivered 10+ cloud-native products. Focused on aligning technical efforts with business goals.
Mobile Developer · Treegar Inc.
Sole Flutter developer for iOS and Android, building an investment app with 10k+ daily users. Applied MVVM, TDD, and optimized database performance for scalability.
Full-Stack Developer · Errand360
Built and maintained APIs with Laravel and MySQL, developed mobile apps in Flutter, and integrated fintech APIs. Leveraged AWS for cloud services, CI/CD pipelines, and real-time mapping/tracking features.
Software Developer · Freelance (Upwork & Fiverr)
Delivered custom software projects for international clients, primarily in Flutter. Built strong communication and collaboration skills while working across time zones and requirements.
experience.ts
package main
import "fmt"
type Job struct {
Role string
Company string
Duration string
Skills []string
}
func main() {
jobs := []Job{
{"Chief Technology Officer", "Resq-X", "Nov 2024 - Present", []string{"System Overhauls", "App Security", "Scalable Architecture", "Leading Teams"}},
{"Software Engineering Consultant", "ROFCOM Energy", "Feb 2023 - 2024", []string{"AWS Magic", "Cloud Architecture", "Team Leadership", "Launching Products"}},
{"Mobile Developer", "Treegar Inc.", "Jun 2022 - Present", []string{"Flutter", "iOS & Android Apps", "TDD", "Unit & Integration Testing"}},
{"Full-Stack Developer", "Errand360", "Aug 2021 - Jul 2022", []string{"Laravel", "Flutter", "Fintech APIs", "AWS Services"}},
{"Freelancer", "Upwork & Fiverr", "2020 - 2021", []string{"Client Communication", "Remote Collaboration", "Flutter Projects"}},
}
for _, job := range jobs {
fmt.Printf("👨💻 %s at %s (%s)\n", job.Role, job.Company, job.Duration)
fmt.Printf("🚀 Skills: %v\n\n", job.Skills)
}
}