Homelab

Overview I run a self-hosted homelab on Proxmox VE, fully automated with Infrastructure as Code. The entire stack—from VM provisioning to service deployment—is managed by Terraform and Ansible, requiring only a single make all command to deploy from scratch. Source code: [GitHub] Architecture The homelab follows a bastion host pattern. My local machine provisions a bastion VM, which then acts as the infrastructure controller for all internal VMs. Internal VMs are not directly accessible from outside—SSH access is restricted to the bastion only. ...

Reversi

Overview A full-stack Reversi (Othello) project built from scratch—from a high-performance Rust game engine to a web app and AlphaZero-style AI training pipeline. The game engine uses bitboard representation for fast move generation and search. It is published as both a Rust crate and a Python package, and powers the web application and various AI experiments. As of February 14, 2026, ranked 24th on the CodinGame Othello leaderboard. Live Demo: Play Reversi in your browser ...