Pong Gallery

Each game here was generated by a local LLM running on a Mac Studio—no hand-holding, no iteration, just raw output. Some play beautifully; some have quirks. All are unedited.

The Rules

  • Use Cline in VSCode, connected to a local model via Ollama
  • Start in plan mode and ask it to plan the implementation
  • Answer any questions it asks — typically prefer 2-player mode and a regular-sized game
  • Let it write the game and ship it — no prompting for bug fixes

Prompt

can you write a plan for how you'd implement a simple pong game in @/src/pages/[name].tsx? make sure CSS and styling is in line, and all changes are in that one file

Starter component

import { useState, useEffect, useRef } from "react";

export function SamplePage() {
  return (<h1>Test</h1>)
}