Skip to content

Instantly share code, notes, and snippets.

View AnnikaCodes's full-sized avatar

AnnikaCodes

  • Pacific Time
  • 02:54 (UTC -07:00)
View GitHub Profile
@AnnikaCodes
AnnikaCodes / gen8hackmonscup-1100.txt
Created October 2, 2021 20:57
September 2021 Random Battles statistics
+------+-----------------------+--------------+------------+-------+------+
| Rank | Pokemon | Deviations | Winrate | Games | Wins |
+------+-----------------------+--------------+------------+-------+------+
| 1 | Xerneas | 3.875 | 62.109375% | 256 | 159 |
+------+-----------------------+--------------+------------+-------+------+
| 2 | Dracozolt | 3.4596918 | 60.687023% | 262 | 159 |
+------+-----------------------+--------------+------------+-------+------+
| 3 | Dialga | 3.4308047 | 60.700386% | 257 | 156 |
+------+-----------------------+--------------+------------+-------+------+
| 4 | Scizor | 3.3153994 | 60.569107% | 246 | 149 |
#!/bin/bash
set -e
SERVER=$1
CLIENT=$2
SINCE="2019-08-01"
BEFORE="$(date "+%Y-%m-%d")"
TMP=$(mktemp)
trap "rm -f $TMP" 0 2 3 15