惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
博客园 - Franky
J
Java Code Geeks
V
Visual Studio Blog
G
Google Developers Blog
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
腾讯CDC
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
博客园 - 【当耐特】
IT之家
IT之家
I
InfoQ
U
Unit 42
C
Check Point Blog
Martin Fowler
Martin Fowler

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Darkgammon: Choose Your Side
goker · 2026-06-22 · via DEV Community

This is a submission for the June Solstice Game Jam

What I Built

Play Darkgammon

Two weeks ago, I had a simple idea for a lightweight one-on-one gaming platform: choose a game, invite a friend with a link, and start playing immediately.

I began with Tic-Tac-Toe. Last week, the idea evolved into an online backgammon game built around the domain tavla.be and the Turkish wordplay “tavla.be/ni”, which is roughly equivalent to “rizz me up.”

The first version allowed players to invite each other, play a complete browser-based backgammon match, replay the game afterward, and export that replay as a shareable video.

Then I discovered the June Solstice Game Jam. Unfortunately, I found it only last night.

That meant one thing: last-day development mode activated.

Backgammon turned out to be surprisingly compatible with the solstice theme. The board contains 24 points, naturally suggesting the 24 hours of a day. Its two players move in opposite directions, much like light and darkness following each other through a continuous cycle. Pieces can be sent backward, return from the bar, travel toward their home board, and eventually leave the board altogether.

The game already felt like a struggle involving cycles, balance, setbacks, returns, and the passage of time. I only needed to bring that interpretation to the surface.

So I transformed it into Darkgammon—because, personally, I prefer the dark side 👹.

In Darkgammon, each player chooses either the Light Side or the Dark Side before entering battle. The opponent represents the opposing force, and the backgammon match determines which side controls the board.

The dice introduce uncertainty, but the game is not based entirely on luck. Positioning, risk management, timing, blocking, and probability still matter. Light and Dark may be cosmic forces, but they still need a good strategy.

I also added an hourly Dark vs. Light Challenge to the home page. It shows:

  • how many players have joined each side;
  • how many matches each side has played;
  • how many victories Light and Dark have claimed during the current cycle.

The result is not only a single backgammon match. Every game contributes to a larger, ongoing conflict between the two sides.

Since the entire transformation happened during the final day, some of the design ideas, mechanics, and visual experiments inevitably collided with one another. I consider this submission the first playable version of the concept rather than its final form.

Should people enjoy it, the war will continue.

Video Demo

The demo shows:

  • selecting the Light or Dark Side;
  • creating and sharing an invitation;
  • joining a real-time match;
  • playing the backgammon game;
  • tracking the wider Light vs. Dark challenge;
  • replaying the completed match;
  • exporting the replay as a video.

Code

GitHub logo gokerDEV / darkgammon

Darkgammon is a solstice-inspired reinterpretation of backgammon, where two players represent Light and Dark and fight to shift the horizon in their favor.

Tavla.be 🎲

Tavla.be is a modern, real-time online backgammon platform built with Next.js, MongoDB, and Pusher.

🚀 Getting Started

Follow these instructions to set up the project and run it in your local development environment.

Prerequisites

  • Node.js (or Bun)
  • MongoDB database
  • Pusher account (for real-time multiplayer features)
  • Apple Developer Account (for Sign in with Apple)
  • Google Cloud Console Account (for Google OAuth)
  • Firebase Project (for Firebase Cloud Messaging / Offline Notifications)

Installation

  1. Clone the repository and install dependencies:
bun install

  1. Configure environment variables: Create a .env.local file in the root directory and configure the necessary variables (MongoDB URI, Pusher credentials, OAuth secrets, Firebase configs, etc.). See the .env.sample or refer to your existing setup.

Authentication Setup

Tavla.be uses NextAuth.js (Auth.js) for handling authentications. To ensure OAuth flows (especially Apple) work properly, you need to set up the client secrets correctly.

Apple Sign-In Setup: NextAuth v5 (Auth.js) automatically generates the…

How I Built It

Darkgammon builds upon tavla.be, the browser-based backgammon project I completed the previous week.

I used that project as the technical foundation, cloned it as a new application, and built the solstice submission around it. The original foundation provided the backgammon engine, invitation flow, real-time matches, replay system, and client-side video export.

For this challenge, I added the new Darkgammon identity and the Light vs. Dark metagame, including:

  • side selection;
  • Light and Dark player identities;
  • a solstice-inspired visual direction;
  • thematic game language;
  • hourly faction statistics;
  • side-based match and victory tracking;
  • a new home-page experience built around the ongoing conflict.

The application uses:

  • Next.js
  • TypeScript
  • Tailwind CSS
  • shadcn/ui
  • MongoDB
  • Pusher for real-time game communication
  • Firebase for notifications

Every player profile also has a unique QR code. Players can share or display these codes in physical or digital spaces and receive game invitations—even from people they have never met.

For QR-code generation, I used my own library, @goker/qr-code.

The longer-term idea is to turn Light and Dark into two playful factions. Players could place their QR codes in cafés, university spaces, events, social profiles, or anywhere else they want to defend their side and challenge new opponents.

A physical QR code can begin a digital battle.

Building with Google AI

I leaned heavily on Google Antigravity while developing the challenge version. Somehow, despite the final-day rush, I still did not manage to exhaust the quota. :)

My usual AI-assisted development workflow has two stages.

First, I discuss the idea with Gemini: I clarify the concept, question weak assumptions, define the feature boundaries, and decide what should actually be built.

Then I move to Antigravity for implementation, using Gemini 3.1 Pro in Low mode to iterate across the application.

For Darkgammon, I used this workflow to:

  • shape the Light vs. Dark interpretation;
  • translate the solstice theme into the existing backgammon mechanics;
  • plan the faction-selection experience;
  • implement and refine the hourly challenge system;
  • iterate on UI states and game copy;
  • debug the final integration under a very limited deadline.

I still prefer creating foundational project structures myself, especially for systems such as Next.js applications. AI works best for me after I understand and control the architecture. I use it as an implementation partner rather than asking it to make every technical decision from scratch.

This project was an especially intense example of that workflow: discuss, define, implement, inspect, reject, refine, and repeat—until the final day was over.

Prize Category

Best Google AI Usage

I am submitting Darkgammon for the Best Google AI Usage category.

Google Antigravity and Gemini were central to converting an existing browser-based backgammon foundation into a distinct solstice-themed game within the final day of the challenge.

Gemini helped me explore the relationship between backgammon and the solstice, narrow the concept into a Light vs. Dark conflict, define the new features, generate and revise implementation approaches, and rapidly iterate through the finished application.

The AI is not embedded as a runtime feature inside the game. Its role was in the development process: helping turn a rough last-minute concept into a functional and playable submission.

Team

This was a solo submission.

DEV: @gokerdev

May the better side win.

Or at least roll doubles.