My Projects

View on GitHub
Infrastructure • Observability

DevOps Command Center

A high-performance monitoring dashboard tracking my GitHub ecosystem. Demonstrates GraphQL aggregation and server-side observability without GitHub's UI overhead.

Next.js GraphQL

Single-request aggregation for CI/CD health.

NOC Aesthetic

Terminal-inspired UI for infrastructure monitoring.

# Setup .env.local with GITHUB_TOKEN
npm install && npm run dev
Repository
Python • System Utility

Smart CLI Organizer

Terminal utility using SHA-256 content hashing for duplicate detection and automated folder categorization. Built with a safe undo-history system.

SHA-256 Hashing

Detects duplicates regardless of filenames.

Dry Run Mode

Preview changes safely before execution.

# Preview organization logic
python3 organizer.py ~/Downloads --dry-run
Source
Fintech • Accountability

Kindred Code

A platform driving corporate social responsibility. Companies bid volunteer hours via an auction engine to release pledged capital for NGOs.

Auction Logic

Real-time bidding for volunteering slots.

Pledge Sync

Transparent funds-to-NGO ledger.

Details
Computer Vision • Sustainability

EcoScan

Combating greenwashing with real-time analysis. Scans product labels via Tesseract OCR and FastAPI to generate transparency scores.

Tesseract OCR

High-speed text extraction from packaging.

FastAPI Audit

NLP-based scoring of marketing claims.

Source
Backend • API Design

NASA Python SDK

A professional-grade library for NASA's open data. Features smart-caching to optimize API calls for high-reliability research.

# Install and initialize
pip install nasa-python-sdk

# Fetch NEO data
client = nasa_sdk.Client(api_key='DEMO')
data = client.get_asteroids(date='2026-01-20')

Smart Cache

Optimized persistence for faster API retrieval.

Type Safety

Enforced data integrity with Dataclasses.

Repository