Senior engineer building things at the edge of hardware, data, and product. I write about trading automation, IoT reliability, and pragmatic UI systems. Here you’ll find selected work, talks, and a tiny game powered by an agent.
Model note: Using a fast minimax agent (drop-in place for your trained model API).
bestMove with a fetch to that endpoint.// example
async function bestMoveRemote(board){
const r = await fetch('/api/ttt',{method:'POST',body:JSON.stringify({board})});
const { move } = await r.json();
return move; // 0..8
}