This program is used to determine which item you like best among a list of items; generating a Round-robin tournament. Like so:
Similar in concept to a "Tier-list", but only having to decide among 2 items at a time.
- Racket interpreter
Compiled binaries coming soon? (Maybe)
Create a members/
directory where each file is a .png
.
Then, run the program like so:
racket main.rkt
When the program ends, you'll have a nice bar chart of the results
This demo video shows a use case. In this case, determine which Smiling Friends episode is best (with only a few episodes for brevity).
Short-tutorial-0.1.mp4
(a lot)
- Clean up the code
- Remove repetitive code (possibly with the help of macros)
- Use less constant variables (only 1 or 2 AATOW)
- Make the program receive command line arguments
- Determine the members directory with said arguments
- Make the program a bit prettier
- Add more TODO items