Software Studio

Designed, engineered, shipped.

Full-stack software, native iOS/Android apps, real-time cloud backends, connected hardware on ESP32 — engineered in-house with React Native, TypeScript, Node, and Firebase.

import { onSnapshot, collection } from 'firebase/firestore';

export function useRealtime<T>(path: string) {
  const [data, setData] = useState<T[]>([]);
  useEffect(() => onSnapshot(collection(db, path), (snap) => {
    setData(snap.docs.map(d => ({ id: d.id, ...d.data() } as T)));
  }), [path]);
  return data;
}

Mobile Development

Native-quality iOS and Android apps built with React Native and shipped to the App Store and Google Play.

Full-Stack Software

Front to back — interfaces, application logic, and the APIs and data layers that power them.

Backend & Cloud

Real-time databases, authentication, and cloud infrastructure that keeps apps fast and reliable.

Embedded & IoT

Hardware projects on ESP32 and ESP8266 modules — connected devices, sensors, and firmware bridged to the cloud.

Tools & Stack
React Native TypeScript Expo Node.js Firebase Swift / iOS ESP32 / ESP8266 C / C++ Git REST APIs