1923 Maine Black Bears football team

The 1923 Maine Black Bears football team was an American football team that represented the University of Maine as a member of the New England Conference during the 1923 college football season. In its third season under head coach Fred Brice, the team compiled a 5–3 record (3–0 against conference opponents) and won the New England Conference championship. Henry Small was the team captain.[1]

1923 Maine Black Bears football
New England champion
ConferenceNew England Conference
1923 record5–3 (3–0 New England)
Head coachFred Brice (3rd season)
CaptainHenry Small
1923 New England Conference football standings
Conf  Overall
TeamW L T  W L T
Maine $ 3 0 0  5 3 0
New Hampshire 1 1 1  4 4 1
Connecticut 1 1 1  3 4 1
Rhode Island State 0 3 0  1 5 1
Massachusetts 0 0 0  2 5 0
  • $ Conference champion

Schedule

DateOpponentSiteResult
September 22Rhode Island StateOrono, MEW 14–0
September 29at Vermont*L 6–7
October 6at Dartmouth*L 0–6
October 13at Connecticut
  • Gardner Dow Athletic Fields
  • Storrs, CT
W 7–0
October 20BatesOrono, MEW 12–7
October 27at Colby*Waterville, MEL 0–7
November 3Bowdoin*Orono, MEW 28–6
November 13New HampshireOrono, ME (rivalry)W 13–0
  • *Non-conference game
gollark: <@!509849474647064576> and <@!134073775925886976> are perfectly sane.
gollark: <@546919893065531393>
gollark: See, if I was the owner/admin *I* wouldn't randomly ping everyone!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessimport randomimport stringparser = argparse.ArgumentParser(description="Compile a WHY program using WHYJIT.")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 randomword(length): letters = string.ascii_lowercase return ''.join(random.choice(letters) for i in range(length))def which(program): proc = subprocess.run(["which", program], stdout=subprocess.PIPE) if proc.returncode == 0: return proc.stdout.replace(b"\n", b"") else: return Nonedef find_C_compiler(): compilers = ["gcc", "clang", "tcc", "cc"] for compiler in compilers: path = which(compiler) if path != None: return pathdef build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ heredoc = randomword(100) devnull = "2>/dev/null" shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-tooTMP3=/tmp/dont-look-here cat << {heredoc} > $TMP1{C_code}{heredoc}sed -e '1,/^exit \$?$/d' "$0" > $TMP3chmod +x $TMP3$TMP3 -x c -o $TMP2 $TMP1chmod +x $TMP2$TMP2exit $?""".encode("utf-8") with open(find_C_compiler(), "rb") as f: return shell_script + f.read()input = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "wb") as out: out.write(code)```
gollark: !esowiki WHY

References

  1. "2019 Maine Football Media Guide" (PDF). University of Maine. 2019. p. 86. Retrieved June 3, 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.