├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .prettierrc.json ├── README.md ├── data-scripts ├── categorise.js └── sort-all.js ├── package.json ├── public ├── index.html ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── components │ ├── CollegePredictor │ │ ├── CollegePredictor.css │ │ └── CollegePredictor.js │ ├── PredictionTable │ │ ├── PredictionTable.css │ │ └── PredictionTable.js │ └── TableFilter │ │ ├── TableFilter.css │ │ └── TableFilter.js ├── index.css ├── index.js ├── loading.svg ├── serviceWorker.js └── utils │ ├── constants.js │ ├── dataSources │ └── categoricalData.json │ └── getData.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/README.md -------------------------------------------------------------------------------- /data-scripts/categorise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/data-scripts/categorise.js -------------------------------------------------------------------------------- /data-scripts/sort-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/data-scripts/sort-all.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/CollegePredictor/CollegePredictor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/components/CollegePredictor/CollegePredictor.css -------------------------------------------------------------------------------- /src/components/CollegePredictor/CollegePredictor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/components/CollegePredictor/CollegePredictor.js -------------------------------------------------------------------------------- /src/components/PredictionTable/PredictionTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/components/PredictionTable/PredictionTable.css -------------------------------------------------------------------------------- /src/components/PredictionTable/PredictionTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/components/PredictionTable/PredictionTable.js -------------------------------------------------------------------------------- /src/components/TableFilter/TableFilter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/components/TableFilter/TableFilter.css -------------------------------------------------------------------------------- /src/components/TableFilter/TableFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/components/TableFilter/TableFilter.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/index.js -------------------------------------------------------------------------------- /src/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/loading.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/utils/constants.js -------------------------------------------------------------------------------- /src/utils/dataSources/categoricalData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/utils/dataSources/categoricalData.json -------------------------------------------------------------------------------- /src/utils/getData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/src/utils/getData.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2AMDevs/no-bs-college-predictor/HEAD/yarn.lock --------------------------------------------------------------------------------