Hacker News new | ask | show | jobs
by ponyo877 445 days ago
Hi HN,

I built Flopper, a simple web app for simulating Texas Hold'em hands and calculating odds: https://flopper.pages.dev

I was inspired after watching a popular Japanese poker YouTuber (World Wide Yokosawa) and noticed a relative lack of straightforward, accessible web-based tools for this compared to mobile apps. My goal was to create something quick and easy to use directly in the browser.

Flopper lets you:

- Add/remove players (up to 10) and edit their names. - Deal hands through preflop, flop, and turn stages. - See win probabilities (equity, including ties) calculated at each stage using the poker-odds-calculator library. - Automatically simulate the river card and determine the winner(s) after the turn betting round would notionally end. - Includes small visual cues like card flipping animations and highlighting winning hands/cards at showdown. It's useful for quickly checking basic odds in different scenarios, simulating hands for fun, or even deciding who pays for dinner (like the YouTuber often does!).

It's built with React, TypeScript, and Vite, deployed on Cloudflare Pages. The odds calculation relies on the poker-odds-calculator library.

This is an early version, and I'm very open to feedback. I'd love to hear your thoughts on:

Usability and design. The accuracy/usefulness of the equity calculation display. Any features you think would be valuable additions (e.g., specific hand vs. hand matchups, more detailed statistics, betting simulation?). You can try it here: https://flopper.pages.dev

Thanks for checking it out!