I BUILD APPSTHAT PERFORM.
Engineering high-performance mobile and web apps with BLoC architecture, real-time systems, and measurably faster performance.
WORK

ChatNet
Real-time Flutter EV charging station locator with WebSockets, REST APIs, and BLoC state management.

WattVita
Smart home iOS/Android app controlling IoT devices via Bluetooth & Wi-Fi.
CODE CRAFT
Patterns I use daily - real code from production apps.
BLoC
State management done right — predictable, testable.
1// ChatBloc — Real-time chat state2class ChatBloc extends Bloc{ 3 final ChatRepository _repo;4 StreamSubscription? _sub;56 ChatBloc(this._repo) : super(ChatInitial()) {7 on((event, emit) async { 8 emit(ChatConnecting());9 _sub = _repo.messageStream().listen(10 (msg) => add(MessageReceived(msg)),11 );12 emit(ChatConnected());13 });1415 on((event, emit) { 16 if (state is ChatConnected) {17 final prev = (state as ChatConnected).messages;18 emit(ChatConnected(messages: [event.msg, ...prev]));19 }20 });21 }22}
EXPERIENCE
Professional Experience
Software Developer Intern
Superstars
Building scalable app features & optimizing CI-friendly workflows for production mobile apps.
Mobile App Developer
GrabTheSite
Maintained production Flutter apps, implemented BLoC state management, integrated REST APIs, Firebase & SQL databases.
College Education
MS Computer Science
DePaul University, Chicago
Advanced algorithms, software architecture, distributed systems, and machine learning.
BS Computer Engineering
Silver Oak University, Ahmedabad
Graduated with honors. Strong foundations in data structures, algorithms, and systems programming.
