High-performance apps.
Vision AI tools.

Engineering minimalist, fast, and scalable digital experiences. Merging creative vision with complex systems like YOLOv8 and Jetpack Compose.

Bhavish Nagarajan
Identify Bhavish Nagarajan
Age 23

The Control to Create.

Growing up with games and music, I always felt there was something missing. Features I wished existed, services that didn't quite hit the mark.

The Arsenal

  • 01
    Hardware Mid-tier gaming laptop optimized for vision AI inference and fast-paced game dev.
  • 02
    Intelligence AI Agents, advanced GitHub research, and specialized technical documentation.
  • 03
    Focus Kinetic mechanics, real-time sports analysis, and high-fidelity media platforms.

"Why do we fall? So we can pick ourselves up."

Batman Begins

Engineering high-performance systems across media, vision AI, and intelligence.

Resona Tunes

High-Fidelity Audio Platform

live

A sophisticated digital audio and media management platform designed for seamless library synchronization and cinematic content exploration.

Systems

  • Cine Arc Engine for cinematic playback
  • Real-time Library Synchronization
  • Personalized Curation (Your Library, Liked Songs)
React TypeScript Tailwind CSS Serverless

Ghost Coach

Vision AI Sports Analyzer

beta

A state-of-the-art sports analysis tool powered by computer vision. Record sessions, and let the Vision AI evaluate performance, tactical awareness, pace, and highlight critical key moments automatically.

Systems

  • Cross-Game Compatibility: Profiles for Soccer, Valorant, etc.
  • Vision AI Capture: YOLOv8 tracking + Meta's V-JEPA 2
  • Client-Side Compression: On-device 720p downsampling
Flutter Dart FastAPI YOLOv8 V-JEPA 2 SQLite

QuantumEAR

Quantum-Enhanced Deepfake Detection

live

A cutting-edge audio security and intelligence platform focused on advanced deepfake detection and audio integrity verification.

Systems

  • Next-generation quantum detection algorithms
  • Multi-Format Analysis (MP3, WAV, FLAC, M4A)
  • Real-Time Processing & Trust Check System
Next.js Python Deep Learning FastAPI

Star Wars Starfighter

2D Space Fighter Parody

lab

A simple 2D space fighter game built for Android as a fun parody project. Engage in arcade-style dogfights across the galaxy, dodging asteroids and taking down enemy fighters.

Systems

  • Arcade-style dogfighting mechanics
  • Smooth 2D sprite animations
  • Parallax scrolling starfields
Android Java/Kotlin Canvas API Game Design

Fast-Paced 2D RPG

Solo-Developed Kinetic Adventure

lab

A solo development venture into high-speed combat and deep world-building. Currently architecting the environment, lore, and character systems from the ground up.

Systems

  • High-velocity combat mechanics
  • Expansive world-building & lore
  • Procedural environment generation
Game Engine C# Pixel Art Solo Dev

Building in the open.

GitHub Contributions

A stack for every workload.

From edge-deployed serverless functions to GPU-accelerated Kaggle clusters. I build across the entire stack, optimizing for both developer experience.

React, Next.js, Astro, Flutter, Tailwind CSS v4, Jetpack Compose

Node.js, FastAPI, YOLOv8, Meta V-JEPA 2, Drift (SQLite)

Global Edge, GitHub Actions, RunPod, Kaggle Clusters

// Ghost Coach Vision AI
import { YOLO } from 'ultralytics';
import { VJEPA } from 'meta-ai';

const analyze = async (stream) => {
  const tracker = new YOLO('v8.pt');
  const embedder = new VJEPA('v-jepa');

  const frames = await tracker(stream);
  const tactical = await embedder(frames);

  return storyboards(tactical);
};