Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1.38 KB

README.md

File metadata and controls

35 lines (22 loc) · 1.38 KB

What is This?

Discover which songs you should be playing in ITL 2024. Songs are ranked by your score relative to similarly-ranked players.

More specifically, this tool does the following:

  1. Finds a handful of players with similar points (both ranking points and total points, though the former is weighted a bit heavier).
  2. Calculates the average scores for all songs they've played.
  3. Compares those scores to your own to determine which have the most room for personal improvement.

Getting Started

This is deployed to itl.zexyu.com. Drop your username in the field and give it a few moments to do its thing.

This doesn't factor in whether or not upscoring the suggestions will actually award ranking points. As a compromise, you can filter by a minimum song rating and swipe left to delete suggestions.

Running locally

This is a standard React/Next.js application. You'll need a node environment configured to run this. Clone and install dependencies:

git clone git@github.com:adketuri/itl-helper.git
cd itl-helper
yarn

Then start the development server:

yarn dev

Open http://localhost:3000 with your browser to see the result.

A note, this uses Next.js Rewrites as a proxy server to circumvent some CORS issues.🤫