# Notice, credits and provenance ## What this is An independent reimplementation of the lemonade-stand business simulation that went round schools and home computers from the 1970s onward, written from scratch in TypeScript in 2026. ## Credit where it is due - **Bob Jamison**, Minnesota Educational Computing Consortium (MECC), 1973 — wrote the original *Lemonade Stand* for time-shared systems. - **Charlie Kellner**, 1979 — wrote the Apple II version that most people actually remember, distributed by Apple Computer. - Every magazine and type-in book that carried a listing of it, which is how a lot of us first met the thing. This project is not affiliated with, endorsed by, or connected to MECC, its successors, or Apple. No original source code was used, consulted or copied. ## How this code came to exist Clean-room, and worth being specific about because it is what makes the licence below meaningful: - **The simulation is ours.** The demand curve, the weather profiles, the sign returns and the event probabilities in `src/game/constants.ts` are a reconstruction, tuned by running several hundred headless seasons until the game *behaved* the way it is remembered. It is not the original arithmetic, and it is documented as a reconstruction in the source. - **The rules are not ours to own.** Buy glasses, buy signs, set a price, read the weather — game mechanics are ideas rather than expression, and nobody gets to fence them off. We use them freely and so may you. - **The artwork and the music are ours.** Every pixel is SVG drawn in code and every note is generated by the synth in `src/audio/`. There are no imported assets of any kind. ## The one place we are standing on someone else's work Some **on-screen wording** is reproduced from the original from memory, because it is the part people remember word for word: | Where | Text | | --- | --- | | `IntroScreen.tsx` | "HI! WELCOME TO LEMONSVILLE, CALIFORNIA!" and the paragraph after it | | `ReportScreen.tsx` | "$$ LEMONSVILLE DAILY FINANCIAL REPORT $$" | | `TradingScreen.tsx` | the thunderstorm message | | `BriefingScreen.tsx` | the street-crew and heat-wave messages | Short functional labels (`GLASSES SOLD`, `WEATHER REPORT: SUNNY`) are hard to express any other way and are not really anyone's creative property. The longer passages are a different matter: they are someone's writing, quoted here as homage rather than authored by us. We cannot license what we did not write, so that wording is **not** covered by this project's licence and is used on a fair-use/de-minimis footing. If that footing is not comfortable for a given use, the fix is small and self-contained: rewrite those few strings in your own voice. Nothing else in the project depends on them. The name *Lemonade Stand* is descriptive and is used descriptively. It is not claimed as a mark of this project. ## Licence Copyright (C) 2026 John Coffey. This program is free software: you can redistribute it and/or modify it under the terms of the **GNU Affero General Public License** as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version — see [LICENSE](LICENSE). AGPL rather than plain GPL because the leaderboard is a network service: §13 means anyone who runs a modified copy of this for other people over a network has to offer them its source. Running the game without the scores service is entirely supported and imposes nothing extra. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. *None of the above is legal advice.*