1903 Oklahoma Sooners football team
The 1903 Oklahoma Sooners football team represented the University of Oklahoma in the 1903 college football season. In their second year under head coach Mark McMahon, the Sooners compiled a 5–4–3 record, and outscored their opponents by a combined total of 93 to 35.[1][2]
1903 Oklahoma Sooners football | |
---|---|
Conference | Independent |
1903 record | 5–4–3 |
Head coach | Mark McMahon (2nd season) |
1903 Southern college football independents records | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Conf | Overall | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Team | W | L | T | W | L | T | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Kentucky University | – | 7 | – | 1 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
West Virginia | – | 7 | – | 1 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
VPI | – | 5 | – | 1 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
South Carolina | – | 8 | – | 2 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
East Florida Seminary | – | 4 | – | 1 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Stetson | – | 1 | – | 0 | – | 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Virginia | – | 7 | – | 2 | – | 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Georgetown | – | 7 | – | 3 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Richmond | – | 6 | – | 3 | – | 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
VMI | – | 2 | – | 1 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Texas A&M | – | 7 | – | 3 | – | 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
North Carolina | – | 6 | – | 3 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Maryland | – | 7 | – | 4 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Florida State | – | 3 | – | 2 | – | 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Oklahoma | – | 5 | – | 4 | – | 3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Delaware | – | 4 | – | 4 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
North Carolina A&M | – | 4 | – | 4 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Arkansas | – | 3 | – | 4 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Navy | – | 4 | – | 7 | – | 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Florida | – | 1 | – | 2 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Oklahoma A&M | – | 0 | – | 2 | – | 2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
William & Mary | – | 1 | – | 3 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Davidson | – | 1 | – | 4 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TCU | – | 0 | – | 7 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Schedule
Date | Opponent | Site | Result |
---|---|---|---|
October 3 | Chilocco | Norman, Oklahoma Territory | W 38–5 |
October 10 | Kingfisher | Norman, Oklahoma Territory | T 0–0 |
October 17 | at Texas | T 6–6 | |
October 24 | at Texas A&M | Bryan, TX | W 6–0 |
October 31 | Fairmount | Norman, Oklahoma Territory | W 11–5 |
November 6 | Kansas State Normal | Norman, Oklahoma Territory | T 6–6 |
November 13 | at Kansas | L 5–17 | |
November 20 | Texas | Norman, Oklahoma Territory | L 5-11 |
November 25 | Arkansas | Norman, Oklahoma Territory | L 0-12 |
November 30 | at Missouri Mines | Rolla, MS | W 12–6 |
December 3 | vs. Bethany (KS) | Oklahoma City, Oklahoma Territory | L 10–12 |
December 10 | Lawton Town Team | Norman, Oklahoma Territory | W 27–5 |
gollark: https://esolangs.org/wiki/WHY
gollark: All three.
gollark: Unless you turn up the optimization setting to ~30, at which point it makes quite fast code.
gollark: ```python#!/usr/bin/env python3import 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])```The compiler for the new `WHY` language. Made as a joke because someone on the esolangs server insisted that all compiled languages were fast.
gollark: BT being bad, who would ever guess so?
References
- "Oklahoma Yearly Results (1900–1904)". College Football Data Warehouse. David DeLassus. Retrieved July 20, 2015.
- "1900 Oklahoma Sooners Schedule and Results". SR/College Football. Sports Reference LLC. Retrieved July 20, 2015.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.