Skip to content

Commit 9f842fb

Browse files
committed
Fixed some things.
1 parent 64a3268 commit 9f842fb

File tree

8 files changed

+49
-20
lines changed

8 files changed

+49
-20
lines changed

Debug/debug_student.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"T1 High Student" : {
3+
4+
},
5+
"T1 Normal Student" : {
6+
7+
},
8+
"T2 Normal Student" : {
9+
10+
},
11+
"T3 Normal Student" : {
12+
13+
},
14+
"T4 Normal Student" : {
15+
16+
},
17+
"T5 Normal Student" : {
18+
19+
},
20+
"T5 Low Student" : {
21+
22+
}
23+
}

Debug/gen_debug_student.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import json, sys, os
2+
## This makes the scripts behave with the code...
3+
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
4+
import universities, clubs, AP, awards, challenges, sports

main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
build_tag = "Alpha-1234"
1919

2020
class app() :
21-
CAREER_PATHS = ["Undecided", "STEM", "Art", "Music", "Business", "Law", "Medical", "Sports", "Other"]
21+
CAREER_PATHS = ["Undecided", "Tech", "Engineering", "Art", "Music", "Business", "Law", "Medicine", "Sports", "Other"]
2222

2323
AP_T1 = [
2424
"Calculus AB",
@@ -859,7 +859,7 @@ def generate_report(self,) :
859859
career_path = self.career_dd.get()
860860
assert (career_path != "-")
861861

862-
self.student_score = self.sat_score/75 + self.gpa*8
862+
self.student_score = self.sat_score/60 + self.gpa*8
863863

864864
## Very dumb but it works so :shrug:
865865
tempTotal = 0

tier1.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"75_sat" : 1580,
55
"50_sat" : 1550,
66
"25_sat" : 1490,
7-
"tags" : ["Ivy", "LaRge", "Law", "Business", "Medical"]
7+
"tags" : ["Ivy", "LaRge", "Law", "Business", "Medicine"]
88
},
99
"Princeton University" : {
1010
"acc_rate" : 0.057,
@@ -88,7 +88,7 @@
8888
"75_sat" : 1570,
8989
"50_sat" : 1550,
9090
"25_sat" : 1520,
91-
"tags" : ["Ivy-Adjacent", "Medium", "Medical"]
91+
"tags" : ["Ivy-Adjacent", "Medium", "Medicine"]
9292
},
9393
"University of Chicago" : {
9494
"acc_rate" : 0.054,
@@ -130,13 +130,13 @@
130130
"75_sat" : 1530,
131131
"50_sat" : 1420,
132132
"25_sat" : 1340,
133-
"tags" : ["Ivy-Adjacent", "UC System", "Large", "Public Ivy", "Business", "Tech", "Law"]
133+
"tags" : ["Ivy-Adjacent", "UC System", "Large", "Public Ivy", "Business", "Tech", "Law", "Engineering"]
134134
},
135135
"New York University" : {
136136
"acc_rate" : 0.09,
137137
"75_sat" : 1570,
138138
"50_sat" : 1520,
139139
"25_sat" : 1470,
140-
"tags" : ["Ivy-Adjacent", "Large", "Business", "Medical"]
140+
"tags" : ["Ivy-Adjacent", "Large", "Business", "Medicine"]
141141
}
142142
}

tier2.json

+12-5
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
"75_sat" : 1550,
55
"50_sat" : 1490,
66
"25_sat" : 1460,
7-
"tags" : ["UC System", "Large", "Public Ivy", "Business", "Art", "Music", "Tech", "Medical", "Sports", "Law"]
7+
"tags" : ["UC System", "Large", "Public Ivy", "Business", "Art", "Music", "Tech", "Medicine", "Sports", "Law"]
88
},
99
"Georgetown University" : {
1010
"acc_rate" : 0.12,
1111
"75_sat" : 1540,
1212
"50_sat" : 1460,
1313
"25_sat" : 1410,
14-
"tags" : ["Medium", "Law"]
14+
"tags" : ["Medium", "Law", "Medicine"]
1515
},
1616
"University of Southern California" : {
1717
"acc_rate" : 0.12,
1818
"75_sat" : 1520,
1919
"50_sat" : 1440,
2020
"25_sat" : 1330,
21-
"tags" : ["Medium", "Sports", "STEM"]
21+
"tags" : ["Medium", "Sports", "Tech", "Engineering", "Medicine"]
2222
},
2323
"Carnegie Mellon University" : {
2424
"acc_rate": 0.11,
@@ -60,7 +60,7 @@
6060
"75_sat" : 1540,
6161
"50_sat" : 1510,
6262
"25_sat" : 1470,
63-
"tags" : ["Medium", "Medical"]
63+
"tags" : ["Medium", "Medicine"]
6464
},
6565
"University of Virgina" : {
6666
"acc_rate" : 0.19,
@@ -74,7 +74,7 @@
7474
"75_sat" : 1570,
7575
"50_sat" : 1540,
7676
"25_sat" : 1500,
77-
"tags" : ["Medium", "Medical"]
77+
"tags" : ["Medium", "Medicine"]
7878
},
7979
"University of Florida" : {
8080
"acc_rate" : 0.23,
@@ -131,5 +131,12 @@
131131
"50_sat" : 1420,
132132
"25_sat" : 1350,
133133
"tags" : ["Small", "Art"]
134+
},
135+
"University of California, San Diego" : {
136+
"acc_rate" : 0.268,
137+
"75_sat" : 1520,
138+
"50_sat" : 1410,
139+
"25_sat" : 1300,
140+
"tags" : ["UC System", "Large", "Public Ivy", "Engineering"]
134141
}
135142
}

tier3.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"75_sat" : 1520,
4747
"50_sat" : 1470,
4848
"25_sat" : 1410,
49-
"tags" : ["Medium", "Medical"]
49+
"tags" : ["Medium", "Medicine"]
5050
},
5151
"Florida State University" : {
5252
"acc_rate" : 0.25,
@@ -95,7 +95,7 @@
9595
"75_sat" : 1450,
9696
"50_sat" : 1360,
9797
"25_sat" : 1270,
98-
"tags" : ["Large", "Medical", "Engineering"]
98+
"tags" : ["Large", "Medicine", "Engineering"]
9999
},
100100
"Landmark College" : {
101101
"acc_rate" : 0.45,

tier4.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"75_sat" : 1430,
6161
"50_sat" : 1340,
6262
"25_sat" : 1270,
63-
"tags" : ["Large", "Medical", "Sports"]
63+
"tags" : ["Large", "Medicine", "Sports"]
6464
},
6565
"University of Massachusetts, Amherst" : {
6666
"acc_rate" : 0.58,

todo.txt

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
11
Give some suggestions on improving academic performance
2-
- General GPA
3-
- Give the some prep talk about the importance of certain things.
4-
- Major preperation
5-
- SAT recommendations
6-
- Recommendation for club engagement, such as leadership position, different skills, and talents
7-
- Have some recommendations for the user to improve upon themselves
2+
Recommend the user 2 reach schools, 3 same-tier schools, and 1 safety school for a total of 7 schools.

0 commit comments

Comments
 (0)