I'm
Developer

I turn complex tech into simple solutions. With 7+ years building apps and smart devices, I believe the best tech just works—no fuss. Whether it's Android, iOS, or hardware, I love making things that improve life (and occasionally spark joy). By day, I help robots get smarter at Gather AI. By night, I'm lost in side projects and coffee.

12345678910111213
// Mobile Development with Kotlin class DataViewModel : ViewModel() { private val repository = DataRepository() private val _uiState = MutableStateFlow(UiState.Loading) val uiState: StateFlow<UiState> = _uiState fun fetchData() { viewModelScope.launch { val result = repository.getData() _uiState.value = UiState.Success(result) } } }
1234567891011121314
// React Hook for data fetching import { useState, useEffect } from 'react'; export const useDashboardData = () => { const [data, setData] = useState([]); const [loading, setLoading] = useState(true); useEffect(() => { async function fetchData() { const response = await fetch('/api/dashboard'); const result = await response.json(); setData(result); setLoading(false); } fetchData(); }, []); return { data, loading }; };
123456789101112131415
// IoT device with MQTT connectivity #include <WiFi.h> #include <PubSubClient.h> const char* ssid = "WiFi_Network"; const int sensorPin = 12; void setup() { pinMode(sensorPin, INPUT); setupWifi(); connectMQTT(); } void loop() { if (readSensor() > threshold) { publishAlert("sensors/temperature", readValue); } delay(1000); }

The story so far...

My journey began in 2017 during my second year of college when I built my first Android app. Since then, I've been on a quest to create technology that matters. Now at Gather AI, I'm bringing robots to life through code, while still exploring side projects that challenge and inspire me.

Android and iOS Mobile App Development Expertise

Mobile Magic

It all started with a simple "Hello World" on Android. Seven years later, I've evolved from Java to Kotlin, and expanded to Swift for iOS. Each app is a story of solving someone's problem through elegant design and clean code.

Languages I speak:

Kotlin, Java, Swift, Objective-C

Tools in my belt:

MVVM, Clean Architecture, Jetpack Compose, SwiftUI, and a dash of Material Design magic to make interfaces that feel just right.

Frontend and Backend Web Development Skills

Web Wonders

The web is where ideas can reach anyone, anywhere. From crafting interactive dashboards to building e-commerce platforms, I've helped businesses and individuals establish their digital presence.

My toolkit:

JavaScript, TypeScript, React, Node.js, and the essential building blocks of the modern web.

Philosophy:

Responsive design isn't just a technical requirement—it's about making sure everyone has access to what you've created, no matter their device.

IoT and Hardware Engineering Projects

Hardware Hacks

At 16, I got my first microcontroller. That sparked a lifelong fascination with making physical objects smart. There's something magical about code that jumps off the screen and into the real world.

Playground:

Embedded C, Python, MQTT, and the patience to debug hardware at 2 AM.

Favorite toys:

Raspberry Pi, ESP32/ESP8266, Arduino, and sensors that help devices understand our world.

Projects That Matter

Each project tells a story. Here are a few of mine.

Digital Homes

Indigo Training - Professional Training Platform Project

Indigo Training

A platform connecting industry professionals with the training they need to excel.

React Node.js
Admirer - Job Search Mobile App Interface

Admirer

Bridging job seekers with opportunities in a seamless, intuitive interface.

Swift iOS

Pocket Solutions

Chakrin Health - Wellness and Nutrition Mobile App

Chakrin

Helping people eat better with personalized nutrition guidance in their pocket.

Kotlin Android
SMW Inventory - Industrial Inventory Management Solution

SMW Inventory

Modernizing inventory management for a traditional casting industry.

React Native Firebase

Smart Things

Laalten - Smart IoT Lamp with Music Synchronization

Laalten

Lamps that dance with your music, bringing light to life.

IoT ESP32
Airblend - Smart Air Purifier IoT Device

Airblend

Reimagining air purifiers: affordable, intelligent, and accessible.

C++ Arduino

Thoughts & Musings

Sometimes I write down what I'm learning. Here's where I share it.

Have an idea?

While my days are spent at Gather AI, I'm always curious about interesting side projects. Let's chat about yours.