1946 Syracuse Orangemen football team

The 1946 Syracuse Orangemen football team represented Syracuse University in the 1946 college football season. The Orangemen were led by head coach Clarence "Biggie" Munn, in his first and only year with the team. Munn left to take the head coaching position at Michigan State, where he would later win several national titles. The Orangemen compiled a record of 4–5 under Munn.

1946 Syracuse Orangemen football
ConferenceIndependent
1946 record4–5
Head coachClarence "Biggie" Munn (1st season)
CaptainRichard Whitesell[1]
Home stadiumArchbold Stadium
1946 Eastern college football independents records
Conf  Overall
TeamW L T  W L T
Army      9 0 1
Muhlenberg      9 1 0
Yale      7 1 1
Buffalo      7 2 0
Harvard      7 2 0
Massachusetts State      6 2 0
No. 13 Penn      6 2 0
Penn State      6 2 0
Boston College      6 3 0
Columbia      6 3 0
NYU      5 3 0
Cornell      5 3 1
Villanova      6 4 0
Colgate      4 4 0
Syracuse      4 5 0
Drexel      3 4 0
Franklin & Marshall      3 4 0
Brown      3 5 1
Pittsburgh      3 5 1
Princeton      3 5 0
Temple      2 4 2
Dartmouth      3 6 0
Tufts      1 6 0
Carnegie Tech      0 6 0
Fordham      0 7 0
Rankings from AP Poll

Schedule

DateOpponentSiteResultAttendance
September 28Boston UniversityW 41–632,000
October 5at DartmouthL 14–2010,000
October 12Penn State
  • Archbold Stadium
  • Syracuse, NY (rivalry)
L 0–910,000
October 19at Holy CrossW 21–1220,000
October 26at West VirginiaL 0–1318,000
November 2Temple
  • Archbold Stadium
  • Syracuse, NY
W 28–712,000
November 9at CornellW 14–730,000
November 16Colgate
  • Archbold Stadium
  • Syracuse, NY (rivalry)
L 7–2535,000
November 23at Columbia
L 21–5925,000

Sources:[2][1]

gollark: WHY(JIT) is capable of arbitrary IO.
gollark: Er, you'd need to sandbox it.
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: I mean, it uses (y, x) coordinates, if I remember correctly!
gollark: Where n = infinity.

References

  1. 2017 Syracuse football media guide. pg. 147.
  2. "1946 Syracuse Orange Schedule and Results". Sports Reference LLC. Retrieved January 30, 2018.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.