From b3c522f9c60af49aecae538862ce2ad74aa739cc Mon Sep 17 00:00:00 2001 From: SowinskiBraeden Date: Thu, 13 Mar 2025 11:52:46 -0700 Subject: [PATCH] simple webpage --- .gitignore | 1 + main.py => insights.py | 2 +- leaderboard.py | 29 +- slacker.py | 25 ++ tables/LargestProjectAllTeams.txt | 48 ---- tables/LargestProjectPerSet.txt | 79 ------ tables/LargestProjectsPerCampus.txt | 55 ---- tables/TopContributorPerCampus.txt | 148 ----------- tables/TopContributorPerSet.txt | 172 ------------ tables/TopContributorsAllTime.txt | 141 ---------- tables/TopContributorsPerTeam.txt | 394 ---------------------------- templates/index.html | 142 ++++++++++ 12 files changed, 186 insertions(+), 1050 deletions(-) rename main.py => insights.py (99%) create mode 100644 slacker.py delete mode 100644 tables/LargestProjectAllTeams.txt delete mode 100644 tables/LargestProjectPerSet.txt delete mode 100644 tables/LargestProjectsPerCampus.txt delete mode 100644 tables/TopContributorPerCampus.txt delete mode 100644 tables/TopContributorPerSet.txt delete mode 100644 tables/TopContributorsAllTime.txt delete mode 100644 tables/TopContributorsPerTeam.txt create mode 100644 templates/index.html diff --git a/.gitignore b/.gitignore index 9dcc8da..c46ca39 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ __pycache__/* teams.json key.py +boards/* diff --git a/main.py b/insights.py similarity index 99% rename from main.py rename to insights.py index 199be3a..a060338 100644 --- a/main.py +++ b/insights.py @@ -33,7 +33,7 @@ async def getInsights(repoURL: str, attempt: int = 0) -> Dict[str, str|None] | N return None if resp.status == 202 and attempt <= MAX_RETRY: # print(f"{repo} Was queried, but no data was received") - time.sleep(10) + time.sleep(15) attempt += 1 team = await getInsights(repoURL, attempt) return team diff --git a/leaderboard.py b/leaderboard.py index ef89309..a0eb468 100644 --- a/leaderboard.py +++ b/leaderboard.py @@ -3,6 +3,7 @@ from typing import List, Dict import json from prettytable import PrettyTable import os, shutil +from datetime import datetime def pretty_table(dct: Dict, title: str, add: str=""): table = PrettyTable() @@ -10,18 +11,20 @@ def pretty_table(dct: Dict, title: str, add: str=""): table.add_column(c, []) table.add_row(['\n'.join(dct[c]) for c in dct.keys()]) table.align = "l" - with open(f"./tables/{title}.txt", "a") as file: + with open(f"./boards/{title}.txt", "a") as file: if add != "": file.write(f"{add}\n") file.write(table.__str__()) file.write("\n\n") - # print(table) + + # with open(f"./boards/{title}", "ab") as file: + # pickle.dump(dct, file) def setupDir() -> None: - if not os.path.exists("./tables"): - os.makedirs("./tables") + if not os.path.exists("./boards"): + os.makedirs("./boards") - folder = './tables' + folder = './boards' for filename in os.listdir(folder): file_path = os.path.join(folder, filename) try: @@ -33,6 +36,8 @@ def setupDir() -> None: print('Failed to delete %s. Reason: %s' % (file_path, e)) def main() -> None: + date = datetime.today().strftime('%Y-%m-%d %H:%M:%S') + teams: List[Dict[str, str|List]] = {} with open("teams.json", "r") as file: teams = json.load(file) @@ -115,7 +120,7 @@ def main() -> None: data["Team"].append(project["team"]) data["Size"].append(str(project["size"])) - pretty_table(data, "LargestProjectsPerCampus", f"{campus} Campus") + pretty_table(data, "LargestProjectsPerCampus", f"{campus} Campus - Updated at {date}") # Largest project per set for set in projects_per_set: @@ -134,7 +139,7 @@ def main() -> None: data["Team"].append(project["team"]) data["Size"].append(str(project["size"])) - pretty_table(data, "LargestProjectPerSet", f"Set {set}") + pretty_table(data, "LargestProjectPerSet", f"Set {set} - Updated at {date}") # Largest project of all filtered = sorted(projects_all_time, key=lambda d: d['size'], reverse=True) @@ -152,7 +157,7 @@ def main() -> None: data["Team"].append(project["team"]) data["Size"].append(str(project["size"])) - pretty_table(data, "LargestProjectAllTeams") + pretty_table(data, "LargestProjectAllTeams", f"Updated at {date}") # Contributors ranker per campus @@ -178,7 +183,7 @@ def main() -> None: data["Deleted"].append(f"-{author['deleted']}") data["Actual"].append(str(author['contributed'])) - pretty_table(data, "TopContributorPerCampus", f"{campus} Campus") + pretty_table(data, "TopContributorPerCampus", f"{campus} Campus - Updated at {date}") # Contributors ranked per set @@ -204,7 +209,7 @@ def main() -> None: data["Deleted"].append(f"-{author['deleted']}") data["Actual"].append(str(author['contributed'])) - pretty_table(data, "TopContributorPerSet", f"Set {set}") + pretty_table(data, "TopContributorPerSet", f"Set {set} - Updated at {date}") # Contributors ranked per Team @@ -230,7 +235,7 @@ def main() -> None: data["Deleted"].append(f"-{author['deleted']}") data["Actual"].append(str(author['contributed'])) - pretty_table(data, "TopContributorsPerTeam", project) + pretty_table(data, "TopContributorsPerTeam", f"{project} - Updated at {date}"); # Contributors ranked all time contributors_all_time = sorted(contributors_all_time, key=lambda d: d['added'], reverse=True) @@ -254,7 +259,7 @@ def main() -> None: data["Deleted"].append(f"-{author['deleted']}") data["Commits"].append(str(author['commits'])) - pretty_table(data, "TopContributorsAllTime") + pretty_table(data, "TopContributorsAllTime", f"Updated at {date}") if __name__ == "__main__": setupDir() diff --git a/slacker.py b/slacker.py new file mode 100644 index 0000000..0f9f5e9 --- /dev/null +++ b/slacker.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python3 +from flask import Flask, Response +from flask import render_template +import os + +app = Flask(__name__) + +def root_dir(): + return os.path.abspath(os.path.dirname(__file__)) + +def get_file(filename): + try: + src = os.path.join(root_dir(), filename) + return open(src).read() + except IOError as exc: + return str(exc) + +@app.route("/", methods=["GET"]) +def index() -> str: + return render_template("index.html") + +@app.route("/boards/", methods=["GET"]) +def loadBoard(boardID: str) -> str: + path = os.path.join(root_dir(), f"boards/{boardID}.txt") + return Response(get_file(path), mimetype="text/plain") diff --git a/tables/LargestProjectAllTeams.txt b/tables/LargestProjectAllTeams.txt deleted file mode 100644 index 2a24312..0000000 --- a/tables/LargestProjectAllTeams.txt +++ /dev/null @@ -1,48 +0,0 @@ -+------+--------+-------+ -| Rank | Team | Size | -+------+--------+-------+ -| 1 | BBY-08 | 35750 | -| 2 | DTC-13 | 23590 | -| 3 | BBY-02 | 9523 | -| 4 | BBY-04 | 4585 | -| 5 | BBY-23 | 4286 | -| 6 | DTC-15 | 3136 | -| 7 | BBY-32 | 3100 | -| 8 | BBY-15 | 2834 | -| 9 | DTC-07 | 2739 | -| 10 | BBY-11 | 2696 | -| 11 | DTC-03 | 2474 | -| 12 | DTC-05 | 2182 | -| 13 | BBY-26 | 2103 | -| 14 | BBY-21 | 2040 | -| 15 | DTC-06 | 2008 | -| 16 | BBY-25 | 1888 | -| 17 | BBY-31 | 1871 | -| 18 | BBY-14 | 1859 | -| 19 | BBY-29 | 1783 | -| 20 | BBY-17 | 1742 | -| 21 | BBY-27 | 1646 | -| 22 | BBY-28 | 1572 | -| 23 | BBY-19 | 1556 | -| 24 | DTC-01 | 1556 | -| 25 | BBY-13 | 1410 | -| 26 | DTC-09 | 1357 | -| 27 | BBY-03 | 1216 | -| 28 | BBY-16 | 1190 | -| 29 | DTC-02 | 1055 | -| 30 | DTC-11 | 1055 | -| 31 | BBY-01 | 1014 | -| 32 | BBY-05 | 951 | -| 33 | BBY-07 | 859 | -| 34 | BBY-09 | 830 | -| 35 | DTC-10 | 810 | -| 36 | BBY-20 | 779 | -| 37 | BBY-12 | 766 | -| 38 | BBY-30 | 732 | -| 39 | DTC-12 | 667 | -| 40 | DTC-04 | 588 | -| 41 | BBY-22 | 572 | -| 42 | BBY-06 | 453 | -| 43 | BBY-18 | 148 | -+------+--------+-------+ - diff --git a/tables/LargestProjectPerSet.txt b/tables/LargestProjectPerSet.txt deleted file mode 100644 index 0abc5c0..0000000 --- a/tables/LargestProjectPerSet.txt +++ /dev/null @@ -1,79 +0,0 @@ -Set A -+------+--------+------+ -| Rank | Team | Size | -+------+--------+------+ -| 1 | BBY-23 | 4286 | -| 2 | BBY-21 | 2040 | -| 3 | BBY-17 | 1742 | -| 4 | BBY-19 | 1556 | -| 5 | BBY-20 | 779 | -| 6 | BBY-22 | 572 | -| 7 | BBY-18 | 148 | -+------+--------+------+ - -Set B -+------+--------+-------+ -| Rank | Team | Size | -+------+--------+-------+ -| 1 | BBY-08 | 35750 | -| 2 | BBY-02 | 9523 | -| 3 | BBY-04 | 4585 | -| 4 | BBY-03 | 1216 | -| 5 | BBY-01 | 1014 | -| 6 | BBY-05 | 951 | -| 7 | BBY-07 | 859 | -| 8 | BBY-06 | 453 | -+------+--------+-------+ - -Set C -+------+--------+------+ -| Rank | Team | Size | -+------+--------+------+ -| 1 | BBY-15 | 2834 | -| 2 | BBY-11 | 2696 | -| 3 | BBY-14 | 1859 | -| 4 | BBY-13 | 1410 | -| 5 | BBY-16 | 1190 | -| 6 | BBY-09 | 830 | -| 7 | BBY-12 | 766 | -+------+--------+------+ - -Set D -+------+--------+------+ -| Rank | Team | Size | -+------+--------+------+ -| 1 | BBY-32 | 3100 | -| 2 | BBY-26 | 2103 | -| 3 | BBY-25 | 1888 | -| 4 | BBY-31 | 1871 | -| 5 | BBY-29 | 1783 | -| 6 | BBY-27 | 1646 | -| 7 | BBY-28 | 1572 | -| 8 | BBY-30 | 732 | -+------+--------+------+ - -Set E -+------+--------+------+ -| Rank | Team | Size | -+------+--------+------+ -| 1 | DTC-07 | 2739 | -| 2 | DTC-03 | 2474 | -| 3 | DTC-05 | 2182 | -| 4 | DTC-06 | 2008 | -| 5 | DTC-01 | 1556 | -| 6 | DTC-02 | 1055 | -| 7 | DTC-04 | 588 | -+------+--------+------+ - -Set F -+------+--------+-------+ -| Rank | Team | Size | -+------+--------+-------+ -| 1 | DTC-13 | 23590 | -| 2 | DTC-15 | 3136 | -| 3 | DTC-09 | 1357 | -| 4 | DTC-11 | 1055 | -| 5 | DTC-10 | 810 | -| 6 | DTC-12 | 667 | -+------+--------+-------+ - diff --git a/tables/LargestProjectsPerCampus.txt b/tables/LargestProjectsPerCampus.txt deleted file mode 100644 index 38919e5..0000000 --- a/tables/LargestProjectsPerCampus.txt +++ /dev/null @@ -1,55 +0,0 @@ -Burnaby Campus -+------+--------+-------+ -| Rank | Team | Size | -+------+--------+-------+ -| 1 | BBY-08 | 35750 | -| 2 | BBY-02 | 9523 | -| 3 | BBY-04 | 4585 | -| 4 | BBY-23 | 4286 | -| 5 | BBY-32 | 3100 | -| 6 | BBY-15 | 2834 | -| 7 | BBY-11 | 2696 | -| 8 | BBY-26 | 2103 | -| 9 | BBY-21 | 2040 | -| 10 | BBY-25 | 1888 | -| 11 | BBY-31 | 1871 | -| 12 | BBY-14 | 1859 | -| 13 | BBY-29 | 1783 | -| 14 | BBY-17 | 1742 | -| 15 | BBY-27 | 1646 | -| 16 | BBY-28 | 1572 | -| 17 | BBY-19 | 1556 | -| 18 | BBY-13 | 1410 | -| 19 | BBY-03 | 1216 | -| 20 | BBY-16 | 1190 | -| 21 | BBY-01 | 1014 | -| 22 | BBY-05 | 951 | -| 23 | BBY-07 | 859 | -| 24 | BBY-09 | 830 | -| 25 | BBY-20 | 779 | -| 26 | BBY-12 | 766 | -| 27 | BBY-30 | 732 | -| 28 | BBY-22 | 572 | -| 29 | BBY-06 | 453 | -| 30 | BBY-18 | 148 | -+------+--------+-------+ - -Downtown Campus -+------+--------+-------+ -| Rank | Team | Size | -+------+--------+-------+ -| 1 | DTC-13 | 23590 | -| 2 | DTC-15 | 3136 | -| 3 | DTC-07 | 2739 | -| 4 | DTC-03 | 2474 | -| 5 | DTC-05 | 2182 | -| 6 | DTC-06 | 2008 | -| 7 | DTC-01 | 1556 | -| 8 | DTC-09 | 1357 | -| 9 | DTC-02 | 1055 | -| 10 | DTC-11 | 1055 | -| 11 | DTC-10 | 810 | -| 12 | DTC-12 | 667 | -| 13 | DTC-04 | 588 | -+------+--------+-------+ - diff --git a/tables/TopContributorPerCampus.txt b/tables/TopContributorPerCampus.txt deleted file mode 100644 index 33bbb1f..0000000 --- a/tables/TopContributorPerCampus.txt +++ /dev/null @@ -1,148 +0,0 @@ -Burnaby Campus -+------+----------------------+--------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+----------------------+--------+---------+--------+---------+ -| 1 | sukhrajsandhar | +55615 | -35113 | 20502 | 28 | -| 2 | Sydnethy | +15223 | -331 | 14892 | 8 | -| 3 | RodrickVy | +8501 | -165 | 8336 | 5 | -| 4 | calih33 | +4815 | -2056 | 2759 | 22 | -| 5 | 3levate | +3941 | -915 | 3026 | 19 | -| 6 | arshiaadamian | +3834 | -2250 | 1584 | 26 | -| 7 | knighthawk4227 | +3321 | -1558 | 1763 | 22 | -| 8 | Just-Iced | +3226 | -2984 | 242 | 31 | -| 9 | ZihengZhaoJerry | +3077 | -1630 | 1447 | 21 | -| 10 | SowinskiBraeden | +3043 | -669 | 2374 | 16 | -| 11 | Jacob-Lebl-BCIT | +2746 | -146 | 2600 | 12 | -| 12 | MeikoMei16 | +2374 | -1501 | 873 | 16 | -| 13 | TaylorHillier | +2349 | -367 | 1982 | 15 | -| 14 | YehorSkudilov | +2057 | -1100 | 957 | 26 | -| 15 | minkaze | +1786 | -759 | 1027 | 11 | -| 16 | samuelpita | +1769 | -1081 | 688 | 10 | -| 17 | luis-Saberon | +1512 | -115 | 1397 | 10 | -| 18 | useluss-dev | +1492 | -386 | 1106 | 12 | -| 19 | cubeo77 | +1372 | -438 | 934 | 12 | -| 20 | leeken3 | +1344 | -295 | 1049 | 7 | -| 21 | ffloras | +1332 | -590 | 742 | 17 | -| 22 | justinxyu1128 | +1304 | -335 | 969 | 13 | -| 23 | chellJ | +1067 | -296 | 771 | 12 | -| 24 | JoaquinPar | +1063 | -729 | 334 | 17 | -| 25 | Esin580 | +1008 | -369 | 639 | 6 | -| 26 | Dartleader1 | +1005 | -453 | 552 | 22 | -| 27 | Tlpadilla18 | +956 | -226 | 730 | 6 | -| 28 | anajnsilva | +952 | -102 | 850 | 12 | -| 29 | prabhguron | +951 | -309 | 642 | 6 | -| 30 | dodaniel006 | +933 | -621 | 312 | 21 | -| 31 | WynnLe12 | +887 | -602 | 285 | 9 | -| 32 | Choyces | +850 | -819 | 31 | 6 | -| 33 | trey1212 | +826 | -450 | 376 | 10 | -| 34 | Glonkz | +807 | -273 | 534 | 12 | -| 35 | Abdullah-ALASMY | +767 | -128 | 639 | 6 | -| 36 | cheecharoo | +761 | -216 | 545 | 14 | -| 37 | ShivaunBartoo | +671 | -180 | 491 | 7 | -| 38 | asingh866 | +663 | -196 | 467 | 7 | -| 39 | berenice0909 | +643 | -142 | 501 | 6 | -| 40 | sonboiii | +620 | -88 | 532 | 7 | -| 41 | NazaninMM | +601 | -118 | 483 | 7 | -| 42 | cnguyen50 | +592 | -215 | 377 | 17 | -| 43 | EquivocalBlaze | +558 | -90 | 468 | 7 | -| 44 | Dash951 | +546 | -189 | 357 | 7 | -| 45 | Livjot-BCIT | +537 | -1 | 536 | 2 | -| 46 | kakepe | +528 | -34 | 494 | 2 | -| 47 | TirathJaggee | +518 | -143 | 375 | 7 | -| 48 | isabjc | +508 | -37 | 471 | 6 | -| 49 | SolankiSiddharthsinh | +496 | -200 | 296 | 5 | -| 50 | Kalephe | +487 | -42 | 445 | 6 | -| 51 | Dmartinez-van | +483 | -77 | 406 | 6 | -| 52 | TacoZilla | +442 | -5 | 437 | 6 | -| 53 | Likeemapples | +433 | -134 | 299 | 9 | -| 54 | rodrigo-aaron | +419 | -213 | 206 | 4 | -| 55 | adilascio | +409 | -12 | 397 | 7 | -| 56 | Leensey | +375 | -195 | 180 | 10 | -| 57 | amangrewal10 | +321 | -1 | 320 | 6 | -| 58 | leslievhier | +318 | -182 | 136 | 4 | -| 59 | kevarome | +295 | -3 | 292 | 4 | -| 60 | QianZ666 | +293 | -8 | 285 | 5 | -| 61 | AlexanderFisher-tech | +282 | -19 | 263 | 7 | -| 62 | ahmadkhalil7 | +279 | -3 | 276 | 3 | -| 63 | RayenBMoussa | +272 | -54 | 218 | 9 | -| 64 | Camron628 | +272 | -164 | 108 | 8 | -| 65 | NikR-Os | +271 | -13 | 258 | 8 | -| 66 | dnlsvdr | +268 | -54 | 214 | 3 | -| 67 | Trishaancodes | +261 | -3 | 258 | 9 | -| 68 | leekail1994 | +253 | -33 | 220 | 9 | -| 69 | westudioss | +245 | -53 | 192 | 6 | -| 70 | annoyingcoder174 | +241 | -46 | 195 | 4 | -| 71 | Verokeli | +237 | -28 | 209 | 7 | -| 72 | hari-s-p | +219 | -37 | 182 | 6 | -| 73 | Vfxnature | +212 | -259 | -47 | 10 | -| 74 | cmorris49 | +206 | -46 | 160 | 8 | -| 75 | indyg01 | +204 | -24 | 180 | 6 | -| 76 | MarvinYeung | +202 | -2 | 200 | 2 | -| 77 | harshaanBCIT | +183 | -1 | 182 | 1 | -| 78 | totemedel | +174 | -40 | 134 | 7 | -| 79 | nicoagostini | +170 | -76 | 94 | 6 | -| 80 | mskim9097 | +148 | -4 | 144 | 5 | -| 81 | gagan215 | +146 | -8 | 138 | 3 | -| 82 | hyelim2100 | +89 | -24 | 65 | 4 | -| 83 | Indigomist | +69 | -2 | 67 | 2 | -| 84 | summit4 | +55 | -29 | 26 | 2 | -| 85 | BaltajP06 | +39 | -0 | 39 | 1 | -| 86 | ndizo | +22 | -2 | 20 | 4 | -| 87 | enand2025 | +11 | -2 | 9 | 2 | -| 88 | H8GEL | +7 | -3 | 4 | 4 | -| 89 | aarushisharma1110 | +4 | -4 | 0 | 4 | -| 90 | LikeEm-Apples | +4 | -0 | 4 | 1 | -| 91 | emphs | +2 | -1 | 1 | 2 | -| 92 | CALVINC-bcit | +2 | -0 | 2 | 1 | -| 93 | KirilT-18 | +2 | -2 | 0 | 3 | -| 94 | Hali-Negi | +1 | -1 | 0 | 1 | -| 95 | KokoseiJ | +1 | -2 | -1 | 2 | -+------+----------------------+--------+---------+--------+---------+ - -Downtown Campus -+------+-----------------------+--------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------------------+--------+---------+--------+---------+ -| 1 | andacg1 | +28368 | -4778 | 23590 | 44 | -| 2 | snoopryees | +3306 | -1660 | 1646 | 14 | -| 3 | tushitgrg | +2700 | -622 | 2078 | 17 | -| 4 | MasonYoung24 | +2280 | -1356 | 924 | 54 | -| 5 | lechiben | +2155 | -1109 | 1046 | 17 | -| 6 | senukzzzzz | +1822 | -372 | 1450 | 7 | -| 7 | the-scholiast | +1809 | -1098 | 711 | 24 | -| 8 | ttrinh0 | +1766 | -369 | 1397 | 30 | -| 9 | CCY-0124 | +1657 | -239 | 1418 | 18 | -| 10 | gurpreetsingh9414 | +1441 | -711 | 730 | 10 | -| 11 | dcao1205 | +1159 | -580 | 579 | 11 | -| 12 | go-gitbread | +1126 | -864 | 262 | 26 | -| 13 | wandereryiu | +853 | -465 | 388 | 13 | -| 14 | asazinator | +819 | -190 | 629 | 9 | -| 15 | courtneylum | +760 | -149 | 611 | 27 | -| 16 | Choudoufuhezi | +716 | -188 | 528 | 16 | -| 17 | klockwork3 | +708 | -43 | 665 | 25 | -| 18 | ivanekavalashvili | +664 | -80 | 584 | 9 | -| 19 | falconnor4 | +538 | -62 | 476 | 9 | -| 20 | kowalbcit | +446 | -83 | 363 | 9 | -| 21 | Mahyar-Golestanpour | +445 | -145 | 300 | 11 | -| 22 | Ritchotte | +440 | -338 | 102 | 6 | -| 23 | xxderek | +421 | -37 | 384 | 5 | -| 24 | StanislavRudenkoko | +420 | -126 | 294 | 13 | -| 25 | Kookie-rose | +403 | -86 | 317 | 13 | -| 26 | anthonyherradura | +366 | -8 | 358 | 7 | -| 27 | Fossa88 | +329 | -221 | 108 | 8 | -| 28 | JoNoToPo | +326 | -137 | 189 | 18 | -| 29 | Playurge | +285 | -121 | 164 | 13 | -| 30 | achepakovich | +241 | -29 | 212 | 8 | -| 31 | nmushir | +227 | -46 | 181 | 3 | -| 32 | bdberge | +191 | -86 | 105 | 13 | -| 33 | lawr-lau16 | +144 | -0 | 144 | 1 | -| 34 | ttyw24 | +144 | -0 | 144 | 1 | -| 35 | bberryw31 | +135 | -135 | 0 | 10 | -| 36 | Shokisnipes | +61 | -1 | 60 | 3 | -| 37 | afuntsev1 | +46 | -6 | 40 | 2 | -| 38 | rockoac5 | +40 | -9 | 31 | 2 | -| 39 | Benjaminyoungiscoding | +14 | -5 | 9 | 1 | -| 40 | QuinnDM | +1 | -1 | 0 | 1 | -| 41 | joshxkanashi | +1 | -1 | 0 | 1 | -+------+-----------------------+--------+---------+--------+---------+ - diff --git a/tables/TopContributorPerSet.txt b/tables/TopContributorPerSet.txt deleted file mode 100644 index d258f53..0000000 --- a/tables/TopContributorPerSet.txt +++ /dev/null @@ -1,172 +0,0 @@ -Set A -+------+-------------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-------------------+-------+---------+--------+---------+ -| 1 | 3levate | +3941 | -915 | 3026 | 19 | -| 2 | ZihengZhaoJerry | +3077 | -1630 | 1447 | 21 | -| 3 | YehorSkudilov | +2057 | -1100 | 957 | 26 | -| 4 | cubeo77 | +1372 | -438 | 934 | 12 | -| 5 | chellJ | +1067 | -296 | 771 | 12 | -| 6 | Esin580 | +1008 | -369 | 639 | 6 | -| 7 | dodaniel006 | +933 | -621 | 312 | 21 | -| 8 | asingh866 | +663 | -196 | 467 | 7 | -| 9 | berenice0909 | +643 | -142 | 501 | 6 | -| 10 | Dmartinez-van | +483 | -77 | 406 | 6 | -| 11 | Likeemapples | +433 | -134 | 299 | 9 | -| 12 | RayenBMoussa | +272 | -54 | 218 | 9 | -| 13 | NikR-Os | +271 | -13 | 258 | 8 | -| 14 | leekail1994 | +253 | -33 | 220 | 9 | -| 15 | hari-s-p | +219 | -37 | 182 | 6 | -| 16 | Vfxnature | +212 | -259 | -47 | 10 | -| 17 | cmorris49 | +206 | -46 | 160 | 8 | -| 18 | totemedel | +174 | -40 | 134 | 7 | -| 19 | mskim9097 | +148 | -4 | 144 | 5 | -| 20 | Indigomist | +69 | -2 | 67 | 2 | -| 21 | ndizo | +22 | -2 | 20 | 4 | -| 22 | H8GEL | +7 | -3 | 4 | 4 | -| 23 | aarushisharma1110 | +4 | -4 | 0 | 4 | -| 24 | LikeEm-Apples | +4 | -0 | 4 | 1 | -| 25 | Hali-Negi | +1 | -1 | 0 | 1 | -+------+-------------------+-------+---------+--------+---------+ - -Set B -+------+-----------------+--------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------------+--------+---------+--------+---------+ -| 1 | sukhrajsandhar | +55615 | -35113 | 20502 | 28 | -| 2 | Sydnethy | +15223 | -331 | 14892 | 8 | -| 3 | RodrickVy | +8501 | -165 | 8336 | 5 | -| 4 | calih33 | +4815 | -2056 | 2759 | 22 | -| 5 | arshiaadamian | +3834 | -2250 | 1584 | 26 | -| 6 | Just-Iced | +3226 | -2984 | 242 | 31 | -| 7 | leeken3 | +1344 | -295 | 1049 | 7 | -| 8 | Dartleader1 | +1005 | -453 | 552 | 22 | -| 9 | prabhguron | +951 | -309 | 642 | 6 | -| 10 | Choyces | +850 | -819 | 31 | 6 | -| 11 | Abdullah-ALASMY | +767 | -128 | 639 | 6 | -| 12 | cheecharoo | +761 | -216 | 545 | 14 | -| 13 | Dash951 | +546 | -189 | 357 | 7 | -| 14 | adilascio | +409 | -12 | 397 | 7 | -| 15 | kevarome | +295 | -3 | 292 | 4 | -| 16 | QianZ666 | +293 | -8 | 285 | 5 | -| 17 | ahmadkhalil7 | +279 | -3 | 276 | 3 | -| 18 | dnlsvdr | +268 | -54 | 214 | 3 | -| 19 | westudioss | +245 | -53 | 192 | 6 | -| 20 | indyg01 | +204 | -24 | 180 | 6 | -| 21 | MarvinYeung | +202 | -2 | 200 | 2 | -| 22 | gagan215 | +146 | -8 | 138 | 3 | -| 23 | BaltajP06 | +39 | -0 | 39 | 1 | -| 24 | enand2025 | +11 | -2 | 9 | 2 | -| 25 | KokoseiJ | +1 | -2 | -1 | 2 | -+------+-----------------+--------+---------+--------+---------+ - -Set C -+------+----------------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+----------------------+-------+---------+--------+---------+ -| 1 | Jacob-Lebl-BCIT | +2746 | -146 | 2600 | 12 | -| 2 | MeikoMei16 | +2374 | -1501 | 873 | 16 | -| 3 | TaylorHillier | +2349 | -367 | 1982 | 15 | -| 4 | samuelpita | +1769 | -1081 | 688 | 10 | -| 5 | useluss-dev | +1492 | -386 | 1106 | 12 | -| 6 | trey1212 | +826 | -450 | 376 | 10 | -| 7 | Glonkz | +807 | -273 | 534 | 12 | -| 8 | sonboiii | +620 | -88 | 532 | 7 | -| 9 | NazaninMM | +601 | -118 | 483 | 7 | -| 10 | cnguyen50 | +592 | -215 | 377 | 17 | -| 11 | Livjot-BCIT | +537 | -1 | 536 | 2 | -| 12 | SolankiSiddharthsinh | +496 | -200 | 296 | 5 | -| 13 | rodrigo-aaron | +419 | -213 | 206 | 4 | -| 14 | Leensey | +375 | -195 | 180 | 10 | -| 15 | leslievhier | +318 | -182 | 136 | 4 | -| 16 | annoyingcoder174 | +241 | -46 | 195 | 4 | -| 17 | Verokeli | +237 | -28 | 209 | 7 | -| 18 | harshaanBCIT | +183 | -1 | 182 | 1 | -| 19 | hyelim2100 | +89 | -24 | 65 | 4 | -| 20 | summit4 | +55 | -29 | 26 | 2 | -| 21 | emphs | +2 | -1 | 1 | 2 | -| 22 | CALVINC-bcit | +2 | -0 | 2 | 1 | -+------+----------------------+-------+---------+--------+---------+ - -Set D -+------+----------------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+----------------------+-------+---------+--------+---------+ -| 1 | knighthawk4227 | +3321 | -1558 | 1763 | 22 | -| 2 | SowinskiBraeden | +3043 | -669 | 2374 | 16 | -| 3 | minkaze | +1786 | -759 | 1027 | 11 | -| 4 | luis-Saberon | +1512 | -115 | 1397 | 10 | -| 5 | ffloras | +1332 | -590 | 742 | 17 | -| 6 | justinxyu1128 | +1304 | -335 | 969 | 13 | -| 7 | JoaquinPar | +1063 | -729 | 334 | 17 | -| 8 | Tlpadilla18 | +956 | -226 | 730 | 6 | -| 9 | anajnsilva | +952 | -102 | 850 | 12 | -| 10 | WynnLe12 | +887 | -602 | 285 | 9 | -| 11 | ShivaunBartoo | +671 | -180 | 491 | 7 | -| 12 | EquivocalBlaze | +558 | -90 | 468 | 7 | -| 13 | kakepe | +528 | -34 | 494 | 2 | -| 14 | TirathJaggee | +518 | -143 | 375 | 7 | -| 15 | isabjc | +508 | -37 | 471 | 6 | -| 16 | Kalephe | +487 | -42 | 445 | 6 | -| 17 | TacoZilla | +442 | -5 | 437 | 6 | -| 18 | amangrewal10 | +321 | -1 | 320 | 6 | -| 19 | AlexanderFisher-tech | +282 | -19 | 263 | 7 | -| 20 | Camron628 | +272 | -164 | 108 | 8 | -| 21 | Trishaancodes | +261 | -3 | 258 | 9 | -| 22 | nicoagostini | +170 | -76 | 94 | 6 | -| 23 | KirilT-18 | +2 | -2 | 0 | 3 | -+------+----------------------+-------+---------+--------+---------+ - -Set E -+------+--------------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+--------------------+-------+---------+--------+---------+ -| 1 | tushitgrg | +2700 | -622 | 2078 | 17 | -| 2 | MasonYoung24 | +2280 | -1356 | 924 | 54 | -| 3 | lechiben | +2155 | -1109 | 1046 | 17 | -| 4 | the-scholiast | +1809 | -1098 | 711 | 24 | -| 5 | ttrinh0 | +1766 | -369 | 1397 | 30 | -| 6 | CCY-0124 | +1657 | -239 | 1418 | 18 | -| 7 | gurpreetsingh9414 | +1441 | -711 | 730 | 10 | -| 8 | dcao1205 | +1159 | -580 | 579 | 11 | -| 9 | go-gitbread | +1126 | -864 | 262 | 26 | -| 10 | asazinator | +819 | -190 | 629 | 9 | -| 11 | courtneylum | +760 | -149 | 611 | 27 | -| 12 | klockwork3 | +708 | -43 | 665 | 25 | -| 13 | Ritchotte | +440 | -338 | 102 | 6 | -| 14 | xxderek | +421 | -37 | 384 | 5 | -| 15 | StanislavRudenkoko | +420 | -126 | 294 | 13 | -| 16 | achepakovich | +241 | -29 | 212 | 8 | -| 17 | nmushir | +227 | -46 | 181 | 3 | -| 18 | lawr-lau16 | +144 | -0 | 144 | 1 | -| 19 | ttyw24 | +144 | -0 | 144 | 1 | -| 20 | Shokisnipes | +61 | -1 | 60 | 3 | -| 21 | rockoac5 | +40 | -9 | 31 | 2 | -| 22 | QuinnDM | +1 | -1 | 0 | 1 | -| 23 | joshxkanashi | +1 | -1 | 0 | 1 | -+------+--------------------+-------+---------+--------+---------+ - -Set F -+------+-----------------------+--------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------------------+--------+---------+--------+---------+ -| 1 | andacg1 | +28368 | -4778 | 23590 | 44 | -| 2 | snoopryees | +3306 | -1660 | 1646 | 14 | -| 3 | senukzzzzz | +1822 | -372 | 1450 | 7 | -| 4 | wandereryiu | +853 | -465 | 388 | 13 | -| 5 | Choudoufuhezi | +716 | -188 | 528 | 16 | -| 6 | ivanekavalashvili | +664 | -80 | 584 | 9 | -| 7 | falconnor4 | +538 | -62 | 476 | 9 | -| 8 | kowalbcit | +446 | -83 | 363 | 9 | -| 9 | Mahyar-Golestanpour | +445 | -145 | 300 | 11 | -| 10 | Kookie-rose | +403 | -86 | 317 | 13 | -| 11 | anthonyherradura | +366 | -8 | 358 | 7 | -| 12 | Fossa88 | +329 | -221 | 108 | 8 | -| 13 | JoNoToPo | +326 | -137 | 189 | 18 | -| 14 | Playurge | +285 | -121 | 164 | 13 | -| 15 | bdberge | +191 | -86 | 105 | 13 | -| 16 | bberryw31 | +135 | -135 | 0 | 10 | -| 17 | afuntsev1 | +46 | -6 | 40 | 2 | -| 18 | Benjaminyoungiscoding | +14 | -5 | 9 | 1 | -+------+-----------------------+--------+---------+--------+---------+ - diff --git a/tables/TopContributorsAllTime.txt b/tables/TopContributorsAllTime.txt deleted file mode 100644 index 29a52a3..0000000 --- a/tables/TopContributorsAllTime.txt +++ /dev/null @@ -1,141 +0,0 @@ -+------+-----------------------+--------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------------------+--------+---------+--------+---------+ -| 1 | sukhrajsandhar | +55615 | -35113 | 20502 | 28 | -| 2 | andacg1 | +28368 | -4778 | 23590 | 44 | -| 3 | Sydnethy | +15223 | -331 | 14892 | 8 | -| 4 | RodrickVy | +8501 | -165 | 8336 | 5 | -| 5 | calih33 | +4815 | -2056 | 2759 | 22 | -| 6 | 3levate | +3941 | -915 | 3026 | 19 | -| 7 | arshiaadamian | +3834 | -2250 | 1584 | 26 | -| 8 | knighthawk4227 | +3321 | -1558 | 1763 | 22 | -| 9 | snoopryees | +3306 | -1660 | 1646 | 14 | -| 10 | Just-Iced | +3226 | -2984 | 242 | 31 | -| 11 | ZihengZhaoJerry | +3077 | -1630 | 1447 | 21 | -| 12 | SowinskiBraeden | +3043 | -669 | 2374 | 16 | -| 13 | Jacob-Lebl-BCIT | +2746 | -146 | 2600 | 12 | -| 14 | tushitgrg | +2700 | -622 | 2078 | 17 | -| 15 | MeikoMei16 | +2374 | -1501 | 873 | 16 | -| 16 | TaylorHillier | +2349 | -367 | 1982 | 15 | -| 17 | MasonYoung24 | +2280 | -1356 | 924 | 54 | -| 18 | lechiben | +2155 | -1109 | 1046 | 17 | -| 19 | YehorSkudilov | +2057 | -1100 | 957 | 26 | -| 20 | senukzzzzz | +1822 | -372 | 1450 | 7 | -| 21 | the-scholiast | +1809 | -1098 | 711 | 24 | -| 22 | minkaze | +1786 | -759 | 1027 | 11 | -| 23 | samuelpita | +1769 | -1081 | 688 | 10 | -| 24 | ttrinh0 | +1766 | -369 | 1397 | 30 | -| 25 | CCY-0124 | +1657 | -239 | 1418 | 18 | -| 26 | luis-Saberon | +1512 | -115 | 1397 | 10 | -| 27 | useluss-dev | +1492 | -386 | 1106 | 12 | -| 28 | gurpreetsingh9414 | +1441 | -711 | 730 | 10 | -| 29 | cubeo77 | +1372 | -438 | 934 | 12 | -| 30 | leeken3 | +1344 | -295 | 1049 | 7 | -| 31 | ffloras | +1332 | -590 | 742 | 17 | -| 32 | justinxyu1128 | +1304 | -335 | 969 | 13 | -| 33 | dcao1205 | +1159 | -580 | 579 | 11 | -| 34 | go-gitbread | +1126 | -864 | 262 | 26 | -| 35 | chellJ | +1067 | -296 | 771 | 12 | -| 36 | JoaquinPar | +1063 | -729 | 334 | 17 | -| 37 | Esin580 | +1008 | -369 | 639 | 6 | -| 38 | Dartleader1 | +1005 | -453 | 552 | 22 | -| 39 | Tlpadilla18 | +956 | -226 | 730 | 6 | -| 40 | anajnsilva | +952 | -102 | 850 | 12 | -| 41 | prabhguron | +951 | -309 | 642 | 6 | -| 42 | dodaniel006 | +933 | -621 | 312 | 21 | -| 43 | WynnLe12 | +887 | -602 | 285 | 9 | -| 44 | wandereryiu | +853 | -465 | 388 | 13 | -| 45 | Choyces | +850 | -819 | 31 | 6 | -| 46 | trey1212 | +826 | -450 | 376 | 10 | -| 47 | asazinator | +819 | -190 | 629 | 9 | -| 48 | Glonkz | +807 | -273 | 534 | 12 | -| 49 | Abdullah-ALASMY | +767 | -128 | 639 | 6 | -| 50 | cheecharoo | +761 | -216 | 545 | 14 | -| 51 | courtneylum | +760 | -149 | 611 | 27 | -| 52 | Choudoufuhezi | +716 | -188 | 528 | 16 | -| 53 | klockwork3 | +708 | -43 | 665 | 25 | -| 54 | ShivaunBartoo | +671 | -180 | 491 | 7 | -| 55 | ivanekavalashvili | +664 | -80 | 584 | 9 | -| 56 | asingh866 | +663 | -196 | 467 | 7 | -| 57 | berenice0909 | +643 | -142 | 501 | 6 | -| 58 | sonboiii | +620 | -88 | 532 | 7 | -| 59 | NazaninMM | +601 | -118 | 483 | 7 | -| 60 | cnguyen50 | +592 | -215 | 377 | 17 | -| 61 | EquivocalBlaze | +558 | -90 | 468 | 7 | -| 62 | Dash951 | +546 | -189 | 357 | 7 | -| 63 | falconnor4 | +538 | -62 | 476 | 9 | -| 64 | Livjot-BCIT | +537 | -1 | 536 | 2 | -| 65 | kakepe | +528 | -34 | 494 | 2 | -| 66 | TirathJaggee | +518 | -143 | 375 | 7 | -| 67 | isabjc | +508 | -37 | 471 | 6 | -| 68 | SolankiSiddharthsinh | +496 | -200 | 296 | 5 | -| 69 | Kalephe | +487 | -42 | 445 | 6 | -| 70 | Dmartinez-van | +483 | -77 | 406 | 6 | -| 71 | kowalbcit | +446 | -83 | 363 | 9 | -| 72 | Mahyar-Golestanpour | +445 | -145 | 300 | 11 | -| 73 | TacoZilla | +442 | -5 | 437 | 6 | -| 74 | Ritchotte | +440 | -338 | 102 | 6 | -| 75 | Likeemapples | +433 | -134 | 299 | 9 | -| 76 | xxderek | +421 | -37 | 384 | 5 | -| 77 | StanislavRudenkoko | +420 | -126 | 294 | 13 | -| 78 | rodrigo-aaron | +419 | -213 | 206 | 4 | -| 79 | adilascio | +409 | -12 | 397 | 7 | -| 80 | Kookie-rose | +403 | -86 | 317 | 13 | -| 81 | Leensey | +375 | -195 | 180 | 10 | -| 82 | anthonyherradura | +366 | -8 | 358 | 7 | -| 83 | Fossa88 | +329 | -221 | 108 | 8 | -| 84 | JoNoToPo | +326 | -137 | 189 | 18 | -| 85 | amangrewal10 | +321 | -1 | 320 | 6 | -| 86 | leslievhier | +318 | -182 | 136 | 4 | -| 87 | kevarome | +295 | -3 | 292 | 4 | -| 88 | QianZ666 | +293 | -8 | 285 | 5 | -| 89 | Playurge | +285 | -121 | 164 | 13 | -| 90 | AlexanderFisher-tech | +282 | -19 | 263 | 7 | -| 91 | ahmadkhalil7 | +279 | -3 | 276 | 3 | -| 92 | RayenBMoussa | +272 | -54 | 218 | 9 | -| 93 | Camron628 | +272 | -164 | 108 | 8 | -| 94 | NikR-Os | +271 | -13 | 258 | 8 | -| 95 | dnlsvdr | +268 | -54 | 214 | 3 | -| 96 | Trishaancodes | +261 | -3 | 258 | 9 | -| 97 | leekail1994 | +253 | -33 | 220 | 9 | -| 98 | westudioss | +245 | -53 | 192 | 6 | -| 99 | annoyingcoder174 | +241 | -46 | 195 | 4 | -| 100 | achepakovich | +241 | -29 | 212 | 8 | -| 101 | Verokeli | +237 | -28 | 209 | 7 | -| 102 | nmushir | +227 | -46 | 181 | 3 | -| 103 | hari-s-p | +219 | -37 | 182 | 6 | -| 104 | Vfxnature | +212 | -259 | -47 | 10 | -| 105 | cmorris49 | +206 | -46 | 160 | 8 | -| 106 | indyg01 | +204 | -24 | 180 | 6 | -| 107 | MarvinYeung | +202 | -2 | 200 | 2 | -| 108 | bdberge | +191 | -86 | 105 | 13 | -| 109 | harshaanBCIT | +183 | -1 | 182 | 1 | -| 110 | totemedel | +174 | -40 | 134 | 7 | -| 111 | nicoagostini | +170 | -76 | 94 | 6 | -| 112 | mskim9097 | +148 | -4 | 144 | 5 | -| 113 | gagan215 | +146 | -8 | 138 | 3 | -| 114 | lawr-lau16 | +144 | -0 | 144 | 1 | -| 115 | ttyw24 | +144 | -0 | 144 | 1 | -| 116 | bberryw31 | +135 | -135 | 0 | 10 | -| 117 | hyelim2100 | +89 | -24 | 65 | 4 | -| 118 | Indigomist | +69 | -2 | 67 | 2 | -| 119 | Shokisnipes | +61 | -1 | 60 | 3 | -| 120 | summit4 | +55 | -29 | 26 | 2 | -| 121 | afuntsev1 | +46 | -6 | 40 | 2 | -| 122 | rockoac5 | +40 | -9 | 31 | 2 | -| 123 | BaltajP06 | +39 | -0 | 39 | 1 | -| 124 | ndizo | +22 | -2 | 20 | 4 | -| 125 | Benjaminyoungiscoding | +14 | -5 | 9 | 1 | -| 126 | enand2025 | +11 | -2 | 9 | 2 | -| 127 | H8GEL | +7 | -3 | 4 | 4 | -| 128 | aarushisharma1110 | +4 | -4 | 0 | 4 | -| 129 | LikeEm-Apples | +4 | -0 | 4 | 1 | -| 130 | emphs | +2 | -1 | 1 | 2 | -| 131 | CALVINC-bcit | +2 | -0 | 2 | 1 | -| 132 | KirilT-18 | +2 | -2 | 0 | 3 | -| 133 | Hali-Negi | +1 | -1 | 0 | 1 | -| 134 | KokoseiJ | +1 | -2 | -1 | 2 | -| 135 | QuinnDM | +1 | -1 | 0 | 1 | -| 136 | joshxkanashi | +1 | -1 | 0 | 1 | -+------+-----------------------+--------+---------+--------+---------+ - diff --git a/tables/TopContributorsPerTeam.txt b/tables/TopContributorsPerTeam.txt deleted file mode 100644 index 3ec4e0e..0000000 --- a/tables/TopContributorsPerTeam.txt +++ /dev/null @@ -1,394 +0,0 @@ -BBY-17 -+------+-----------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------------+-------+---------+--------+---------+ -| 1 | ZihengZhaoJerry | +3077 | -1630 | 1447 | 21 | -| 2 | hari-s-p | +219 | -37 | 182 | 6 | -| 3 | Vfxnature | +212 | -259 | -47 | 10 | -| 4 | cmorris49 | +206 | -46 | 160 | 8 | -+------+-----------------+-------+---------+--------+---------+ - -BBY-18 -+------+-------------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-------------------+-------+---------+--------+---------+ -| 1 | mskim9097 | +148 | -4 | 144 | 5 | -| 2 | H8GEL | +7 | -3 | 4 | 4 | -| 3 | aarushisharma1110 | +4 | -4 | 0 | 4 | -| 4 | Hali-Negi | +1 | -1 | 0 | 1 | -+------+-------------------+-------+---------+--------+---------+ - -BBY-19 -+------+---------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+---------------+-------+---------+--------+---------+ -| 1 | chellJ | +1067 | -296 | 771 | 12 | -| 2 | dodaniel006 | +933 | -621 | 312 | 21 | -| 3 | Dmartinez-van | +483 | -77 | 406 | 6 | -| 4 | Indigomist | +69 | -2 | 67 | 2 | -+------+---------------+-------+---------+--------+---------+ - -BBY-20 -+------+--------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+--------------+-------+---------+--------+---------+ -| 1 | berenice0909 | +643 | -142 | 501 | 6 | -| 2 | NikR-Os | +271 | -13 | 258 | 8 | -| 3 | ndizo | +22 | -2 | 20 | 4 | -+------+--------------+-------+---------+--------+---------+ - -BBY-21 -+------+-----------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------+-------+---------+--------+---------+ -| 1 | cubeo77 | +1372 | -438 | 934 | 12 | -| 2 | Esin580 | +1008 | -369 | 639 | 6 | -| 3 | asingh866 | +663 | -196 | 467 | 7 | -+------+-----------+-------+---------+--------+---------+ - -BBY-22 -+------+--------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+--------------+-------+---------+--------+---------+ -| 1 | RayenBMoussa | +272 | -54 | 218 | 9 | -| 2 | leekail1994 | +253 | -33 | 220 | 9 | -| 3 | totemedel | +174 | -40 | 134 | 7 | -+------+--------------+-------+---------+--------+---------+ - -BBY-23 -+------+---------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+---------------+-------+---------+--------+---------+ -| 1 | 3levate | +3941 | -915 | 3026 | 19 | -| 2 | YehorSkudilov | +2057 | -1100 | 957 | 26 | -| 3 | Likeemapples | +433 | -134 | 299 | 9 | -| 4 | LikeEm-Apples | +4 | -0 | 4 | 1 | -+------+---------------+-------+---------+--------+---------+ - -BBY-02 -+------+-----------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------+-------+---------+--------+---------+ -| 1 | RodrickVy | +8501 | -165 | 8336 | 5 | -| 2 | leeken3 | +1344 | -295 | 1049 | 7 | -| 3 | gagan215 | +146 | -8 | 138 | 3 | -+------+-----------+-------+---------+--------+---------+ - -BBY-03 -+------+-----------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------------+-------+---------+--------+---------+ -| 1 | Abdullah-ALASMY | +767 | -128 | 639 | 6 | -| 2 | kevarome | +295 | -3 | 292 | 4 | -| 3 | QianZ666 | +293 | -8 | 285 | 5 | -+------+-----------------+-------+---------+--------+---------+ - -BBY-04 -+------+---------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+---------------+-------+---------+--------+---------+ -| 1 | calih33 | +4815 | -2056 | 2759 | 22 | -| 2 | arshiaadamian | +3834 | -2250 | 1584 | 26 | -| 3 | Just-Iced | +3226 | -2984 | 242 | 31 | -+------+---------------+-------+---------+--------+---------+ - -BBY-05 -+------+------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+------------+-------+---------+--------+---------+ -| 1 | cheecharoo | +761 | -216 | 545 | 14 | -| 2 | adilascio | +409 | -12 | 397 | 7 | -| 3 | enand2025 | +11 | -2 | 9 | 2 | -+------+------------+-------+---------+--------+---------+ - -BBY-06 -+------+-------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-------------+-------+---------+--------+---------+ -| 1 | dnlsvdr | +268 | -54 | 214 | 3 | -| 2 | MarvinYeung | +202 | -2 | 200 | 2 | -| 3 | BaltajP06 | +39 | -0 | 39 | 1 | -+------+-------------+-------+---------+--------+---------+ - -BBY-07 -+------+--------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+--------------+-------+---------+--------+---------+ -| 1 | Dartleader1 | +1005 | -453 | 552 | 22 | -| 2 | Choyces | +850 | -819 | 31 | 6 | -| 3 | ahmadkhalil7 | +279 | -3 | 276 | 3 | -+------+--------------+-------+---------+--------+---------+ - -BBY-08 -+------+----------------+--------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+----------------+--------+---------+--------+---------+ -| 1 | sukhrajsandhar | +55615 | -35113 | 20502 | 28 | -| 2 | Sydnethy | +15223 | -331 | 14892 | 8 | -| 3 | Dash951 | +546 | -189 | 357 | 7 | -| 4 | KokoseiJ | +1 | -2 | -1 | 2 | -+------+----------------+--------+---------+--------+---------+ - -BBY-09 -+------+----------------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+----------------------+-------+---------+--------+---------+ -| 1 | Glonkz | +807 | -273 | 534 | 12 | -| 2 | SolankiSiddharthsinh | +496 | -200 | 296 | 5 | -+------+----------------------+-------+---------+--------+---------+ - -BBY-11 -+------+---------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+---------------+-------+---------+--------+---------+ -| 1 | TaylorHillier | +2349 | -367 | 1982 | 15 | -| 2 | sonboiii | +620 | -88 | 532 | 7 | -| 3 | harshaanBCIT | +183 | -1 | 182 | 1 | -+------+---------------+-------+---------+--------+---------+ - -BBY-12 -+------+-----------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------+-------+---------+--------+---------+ -| 1 | cnguyen50 | +592 | -215 | 377 | 17 | -| 2 | Leensey | +375 | -195 | 180 | 10 | -| 3 | Verokeli | +237 | -28 | 209 | 7 | -+------+-----------+-------+---------+--------+---------+ - -BBY-13 -+------+-------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-------------+-------+---------+--------+---------+ -| 1 | MeikoMei16 | +2374 | -1501 | 873 | 16 | -| 2 | Livjot-BCIT | +537 | -1 | 536 | 2 | -| 3 | emphs | +2 | -1 | 1 | 2 | -+------+-------------+-------+---------+--------+---------+ - -BBY-14 -+------+-------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-------------+-------+---------+--------+---------+ -| 1 | samuelpita | +1769 | -1081 | 688 | 10 | -| 2 | useluss-dev | +1492 | -386 | 1106 | 12 | -| 3 | hyelim2100 | +89 | -24 | 65 | 4 | -+------+-------------+-------+---------+--------+---------+ - -BBY-15 -+------+-----------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------------+-------+---------+--------+---------+ -| 1 | Jacob-Lebl-BCIT | +2746 | -146 | 2600 | 12 | -| 2 | rodrigo-aaron | +419 | -213 | 206 | 4 | -| 3 | summit4 | +55 | -29 | 26 | 2 | -| 4 | CALVINC-bcit | +2 | -0 | 2 | 1 | -+------+-----------------+-------+---------+--------+---------+ - -BBY-16 -+------+------------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+------------------+-------+---------+--------+---------+ -| 1 | trey1212 | +826 | -450 | 376 | 10 | -| 2 | NazaninMM | +601 | -118 | 483 | 7 | -| 3 | leslievhier | +318 | -182 | 136 | 4 | -| 4 | annoyingcoder174 | +241 | -46 | 195 | 4 | -+------+------------------+-------+---------+--------+---------+ - -BBY-25 -+------+---------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+---------------+-------+---------+--------+---------+ -| 1 | luis-Saberon | +1512 | -115 | 1397 | 10 | -| 2 | ShivaunBartoo | +671 | -180 | 491 | 7 | -| 3 | KirilT-18 | +2 | -2 | 0 | 3 | -+------+---------------+-------+---------+--------+---------+ - -BBY-26 -+------+------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+------------+-------+---------+--------+---------+ -| 1 | minkaze | +1786 | -759 | 1027 | 11 | -| 2 | ffloras | +1332 | -590 | 742 | 17 | -| 3 | JoaquinPar | +1063 | -729 | 334 | 17 | -+------+------------+-------+---------+--------+---------+ - -BBY-27 -+------+-------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-------------+-------+---------+--------+---------+ -| 1 | Tlpadilla18 | +956 | -226 | 730 | 6 | -| 2 | isabjc | +508 | -37 | 471 | 6 | -| 3 | Kalephe | +487 | -42 | 445 | 6 | -+------+-------------+-------+---------+--------+---------+ - -BBY-28 -+------+------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+------------+-------+---------+--------+---------+ -| 1 | anajnsilva | +952 | -102 | 850 | 12 | -| 2 | WynnLe12 | +887 | -602 | 285 | 9 | -| 3 | TacoZilla | +442 | -5 | 437 | 6 | -+------+------------+-------+---------+--------+---------+ - -BBY-29 -+------+---------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+---------------+-------+---------+--------+---------+ -| 1 | justinxyu1128 | +1304 | -335 | 969 | 13 | -| 2 | kakepe | +528 | -34 | 494 | 2 | -| 3 | amangrewal10 | +321 | -1 | 320 | 6 | -+------+---------------+-------+---------+--------+---------+ - -BBY-32 -+------+-----------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------------+-------+---------+--------+---------+ -| 1 | SowinskiBraeden | +3043 | -669 | 2374 | 16 | -| 2 | EquivocalBlaze | +558 | -90 | 468 | 7 | -| 3 | Trishaancodes | +261 | -3 | 258 | 9 | -+------+-----------------+-------+---------+--------+---------+ - -DTC-01 -+------+-------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-------------+-------+---------+--------+---------+ -| 1 | go-gitbread | +1126 | -864 | 262 | 26 | -| 2 | asazinator | +819 | -190 | 629 | 9 | -| 3 | klockwork3 | +708 | -43 | 665 | 25 | -+------+-------------+-------+---------+--------+---------+ - -DTC-02 -+------+-------------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-------------------+-------+---------+--------+---------+ -| 1 | gurpreetsingh9414 | +1441 | -711 | 730 | 10 | -| 2 | nmushir | +227 | -46 | 181 | 3 | -| 3 | lawr-lau16 | +144 | -0 | 144 | 1 | -+------+-------------------+-------+---------+--------+---------+ - -DTC-03 -+------+--------------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+--------------------+-------+---------+--------+---------+ -| 1 | tushitgrg | +2700 | -622 | 2078 | 17 | -| 2 | Ritchotte | +440 | -338 | 102 | 6 | -| 3 | StanislavRudenkoko | +420 | -126 | 294 | 13 | -+------+--------------------+-------+---------+--------+---------+ - -DTC-04 -+------+-------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-------------+-------+---------+--------+---------+ -| 1 | xxderek | +421 | -37 | 384 | 5 | -| 2 | ttyw24 | +144 | -0 | 144 | 1 | -| 3 | Shokisnipes | +61 | -1 | 60 | 3 | -+------+-------------+-------+---------+--------+---------+ - -DTC-05 -+------+--------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+--------------+-------+---------+--------+---------+ -| 1 | MasonYoung24 | +2280 | -1356 | 924 | 54 | -| 2 | lechiben | +2155 | -1109 | 1046 | 17 | -| 3 | achepakovich | +241 | -29 | 212 | 8 | -| 4 | QuinnDM | +1 | -1 | 0 | 1 | -+------+--------------+-------+---------+--------+---------+ - -DTC-06 -+------+--------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+--------------+-------+---------+--------+---------+ -| 1 | ttrinh0 | +1766 | -369 | 1397 | 30 | -| 2 | courtneylum | +760 | -149 | 611 | 27 | -| 3 | joshxkanashi | +1 | -1 | 0 | 1 | -+------+--------------+-------+---------+--------+---------+ - -DTC-07 -+------+---------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+---------------+-------+---------+--------+---------+ -| 1 | the-scholiast | +1809 | -1098 | 711 | 24 | -| 2 | CCY-0124 | +1657 | -239 | 1418 | 18 | -| 3 | dcao1205 | +1159 | -580 | 579 | 11 | -| 4 | rockoac5 | +40 | -9 | 31 | 2 | -+------+---------------+-------+---------+--------+---------+ - -DTC-09 -+------+-------------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-------------------+-------+---------+--------+---------+ -| 1 | ivanekavalashvili | +664 | -80 | 584 | 9 | -| 2 | falconnor4 | +538 | -62 | 476 | 9 | -| 3 | Fossa88 | +329 | -221 | 108 | 8 | -| 4 | JoNoToPo | +326 | -137 | 189 | 18 | -+------+-------------------+-------+---------+--------+---------+ - -DTC-10 -+------+-------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-------------+-------+---------+--------+---------+ -| 1 | wandereryiu | +853 | -465 | 388 | 13 | -| 2 | Kookie-rose | +403 | -86 | 317 | 13 | -| 3 | bdberge | +191 | -86 | 105 | 13 | -+------+-------------+-------+---------+--------+---------+ - -DTC-11 -+------+---------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+---------------+-------+---------+--------+---------+ -| 1 | Choudoufuhezi | +716 | -188 | 528 | 16 | -| 2 | kowalbcit | +446 | -83 | 363 | 9 | -| 3 | Playurge | +285 | -121 | 164 | 13 | -+------+---------------+-------+---------+--------+---------+ - -DTC-12 -+------+-----------------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------------------+-------+---------+--------+---------+ -| 1 | Mahyar-Golestanpour | +445 | -145 | 300 | 11 | -| 2 | anthonyherradura | +366 | -8 | 358 | 7 | -| 3 | Benjaminyoungiscoding | +14 | -5 | 9 | 1 | -+------+-----------------------+-------+---------+--------+---------+ - -DTC-13 -+------+-----------+--------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+-----------+--------+---------+--------+---------+ -| 1 | andacg1 | +28368 | -4778 | 23590 | 44 | -| 2 | bberryw31 | +135 | -135 | 0 | 10 | -+------+-----------+--------+---------+--------+---------+ - -DTC-15 -+------+------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+------------+-------+---------+--------+---------+ -| 1 | snoopryees | +3306 | -1660 | 1646 | 14 | -| 2 | senukzzzzz | +1822 | -372 | 1450 | 7 | -| 3 | afuntsev1 | +46 | -6 | 40 | 2 | -+------+------------+-------+---------+--------+---------+ - -BBY-31 -+------+----------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+----------------+-------+---------+--------+---------+ -| 1 | knighthawk4227 | +3321 | -1558 | 1763 | 22 | -| 2 | Camron628 | +272 | -164 | 108 | 8 | -+------+----------------+-------+---------+--------+---------+ - -BBY-01 -+------+------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+------------+-------+---------+--------+---------+ -| 1 | prabhguron | +951 | -309 | 642 | 6 | -| 2 | westudioss | +245 | -53 | 192 | 6 | -| 3 | indyg01 | +204 | -24 | 180 | 6 | -+------+------------+-------+---------+--------+---------+ - -BBY-30 -+------+----------------------+-------+---------+--------+---------+ -| Rank | Author | Added | Deleted | Actual | Commits | -+------+----------------------+-------+---------+--------+---------+ -| 1 | TirathJaggee | +518 | -143 | 375 | 7 | -| 2 | AlexanderFisher-tech | +282 | -19 | 263 | 7 | -| 3 | nicoagostini | +170 | -76 | 94 | 6 | -+------+----------------------+-------+---------+--------+---------+ - diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..30087d5 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,142 @@ + + + + COMP 1800 - Slacker + + + + +
+
+

COMP 1800 Slacker

+

See Leaderboards

+

PS: Some projects & users may not be up to date with others.

+ +
+
+ +