1923 Kent State Silver Foxes football team

The 1923 Kent State Silver Foxes football team was an American football team that represented Kent State Normal College (later Kent State University) during the 1923 college football season. In its first season under head coach Frank Harsh, Kent State compiled a 0–5 record.[1]

1923 Kent State Silver Foxes football
ConferenceIndependent
1923 record0–5
Head coachFrank Harsh (1st season)
Home stadiumRockwell Field
1923 Midwestern college football independents records
Conf  Overall
TeamW L T  W L T
Marquette      8 0 0
Notre Dame      9 1 0
Western State (MI)      6 1 1
Haskell      11 2 1
Butler      7 2 0
Central Michigan      5 1 2
Baldwin–Wallace      5 2 1
Cincinnati      6 3 0
Loyola (IL)      5 3 0
Saint Louis      5 3 1
Detroit      4 3 2
Wabash      4 3 2
John Carroll      4 4 1
Valparaiso      2 2 1
Dayton      4 5 0
Michigan Agricultural      3 5 0
Fairmount      2 4 2
Kent State      0 5 0

Schedule

DateOpponentSiteResult
at AkronL 0–32
at Baldwin-WallaceL 0–118
West LibertyL 6–7
Slippery RockL 0–82
Indiana (PA)L 0–21
gollark: Yep!
gollark: Execute THIS!```pythonimport argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```
gollark: Length limits, you know.
gollark: But this is shorter.
gollark: <@240517342189191168>

References

  1. "2016 Kent State Football Record Book" (PDF). Kent State University. p. D5. Retrieved June 26, 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.