a geicko-2 based round robin ranking system designed to test c++ battleship submissions
battleship.dunkirk.sh
1# Battleship Arena
2
3This is a service I made to allow students in my `cs-1210` class to benchmark their battleship programs against each other.
4
5## I just want to get on the leaderboard; How?
6
7First ssh into the battleship server and it will ask you a few questions to set up your account. Then scp your battleship file onto the server!
8
9```bash
10ssh battleship.dunkirk.sh
11scp memory_functions_yourname.cpp battleship.dunkirk.sh
12```
13
14## Development
15
16Built with Go using [Wish](https://github.com/charmbracelet/wish), [Bubble Tea](https://github.com/charmbracelet/bubbletea), and [Lipgloss](https://github.com/charmbracelet/lipgloss).
17
18```bash
19# Build and run
20make build
21make run
22
23# Generate SSH host key
24make gen-key
25```
26
27See `AGENTS.md` for architecture details.
28
29The main repo is [the tangled repo](https://tangled.org/dunkirk.sh/battleship-arena) and the github is just a mirror.
30
31<p align="center">
32 <img src="https://raw.githubusercontent.com/taciturnaxolotl/carriage/master/.github/images/line-break.svg" />
33</p>
34
35<p align="center">
36 © 2025-present <a href="https://github.com/taciturnaxolotl">Kieran Klukas</a>
37</p>
38
39<p align="center">
40 <a href="https://github.com/taciturnaxolotl/battleship-arena/blob/main/LICENSE.md"><img src="https://img.shields.io/static/v1.svg?style=for-the-badge&label=License&message=MIT&logoColor=d9e0ee&colorA=363a4f&colorB=b7bdf8"/></a>
41</p>