wanessalabs games production August 27, 2026

Reddit Poker Daily

Texas Hold'em as a Reddit post. The post ID deals the hand, a coach shows your outs and pot odds, and the leaderboard ranks what you left the table with.

Devvit WebReactTypeScriptExpressDevvit RedisVite

Second Devvit pilot, same recipe as the dishwasher one. Poker Friday already existed on the hub as a single-player Hold’em trainer with a coach. This puts one hand of it inside a Reddit post, where the daily-puzzle habit already lives.

What It Is

A Devvit Web app on r/wanessalabsdev. A moderator creates the post from the subreddit menu and the post becomes the table: a casual home game at a $20 buy-in with 25c/50c blinds, heads-up or three or four handed, played through preflop, flop, turn and river against bots. Play money, no stakes, nothing to buy.

Opponents come from an eleven-strong roster of Friday-night regulars, each with a betting personality: one overbets everything, one plays a tight value game, one calls too much with draws. Which of them sit down is part of what the seed decides.

The Seed Is the Post

Same rule as the first pilot. derivePostSeed(postId) hashes the post ID into a 32-bit integer that feeds the hub’s own seededRandom, so every player in a thread is dealt the identical hand from the identical deck. A new post tomorrow is a new hand. Nobody can reroll, and the server stores no cards.

What the Coach Actually Computes

The coach panel reports three things, and they are not equally solid. This matters, because a poker coach that overstates its own certainty is worse than no coach.

The Liar Meter

A thermometer from 5 to 95 rates how likely the active opponent is bluffing: cold is a made hand, hot is air. It reads their actual hole cards, evaluated against the board, then adjusts for their personality and how late the street is. A bot holding nothing on the river runs hot.

So it is not a read. It is the game telling you the truth about the hand and daring you to act on it, which is the honest way to teach the skill before asking anyone to do it blind. Calling down a hot opponent pays a bonus.

One Engine, Two Surfaces

Nothing about poker is reimplemented here. The webview imports cards, evaluator and odds from src/games/poker/engine/ in the hub, plus the hub’s seededRandom. Showdowns go through the same compareHands that settles kickers on the hub, and the winning five are highlighted with their hole and board contributions tagged.

PieceRole
devvit.jsonManifest: post entrypoint, server bundle, subreddit menu item
src/server/index.tsExpress on @devvit/web/server. Create post, /api/init, /api/submit-score
Devvit RediszAdd / zRange on lb:{postId}, so the leaderboard is scoped to the thread
App.tsxLeaderboard, current Reddit user, and a navigateTo link back to the hub game
PokerFridayView.tsxThe table: roster, betting controls at half pot, coach panel, liar meter, action log

The leaderboard ranks your ending stack in cents and shows the profit against the $20 you sat down with. Four handed, the whole table is $80, which is the ceiling on what anyone can walk away with.

Constraints

The Devvit sandbox rules are the same ones the first pilot met: no coin economy, no Supporter Pack, no external network calls, no localStorage. Anything that persists is held by Reddit. Two build bundles, Vite for the webview and esbuild into a single CJS file for the server. Three tests cover seed determinism, hand evaluation with outs, and the pot-odds maths.

Development timeline

1 logged update on 27 Aug 2026.

  1. A daily Poker Friday hand, played inside a Reddit postlaunch

    The second Devvit app in the subreddit, same shape as the dishwasher one. It runs where the conversation already is rather than asking anyone to leave for a game site.

Written from the release notes published with each update, not afterwards. See every project →