1943 USC Trojans football team
The 1943 USC Trojans football team represented the University of Southern California (USC) in the 1943 college football season. In their second year under head coach Jeff Cravath, the Trojans compiled an 8–2 record (5–0 against conference opponents), won the Pacific Coast Conference championship, defeated Washington in the 1944 Rose Bowl, and outscored their opponents by a combined total of 155 to 58.[1]
1943 USC Trojans football | |
---|---|
PCC champion Rose Bowl champion | |
Rose Bowl, W 29–0 vs. Washington | |
Conference | Pacific Coast Conference |
1943 record | 8–2 (5–0 PCC) |
Head coach | Jeff Cravath (2nd season) |
Home stadium | Los Angeles Memorial Coliseum |
1943 Pacific Coast Conference football standings | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Conf | Overall | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Team | W | L | T | W | L | T | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
USC $ | 5 | – | 0 | – | 0 | 8 | – | 2 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
California | 2 | – | 2 | – | 0 | 4 | – | 6 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
No. 12 Washington | 0 | – | 1 | – | 0 | 4 | – | 1 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
UCLA | 0 | – | 4 | – | 0 | 1 | – | 8 | – | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Schedule
Date | Opponent | Rank | Site | Result | Attendance |
---|---|---|---|---|---|
September 25 | at UCLA |
| W 20–0 | 50,000 | |
October 2 | at California |
| W 7–0 | 35,000 | |
October 9 | Saint Mary's Pre-Flight* | No. 10 |
| W 13–0 | 30,000 |
October 16 | at San Francisco* | No. 8 | San Francisco, CA | W 34–0 | 6,000 |
October 23 | No. 6 Pacific (CA)* | No. 7 |
| W 6–0 | 65,000 |
October 30 | No. 20 California | No. 5 |
| W 13–0 | 45,000 |
November 6 | San Diego NAS* | No. 4 | San Diego, CA | L 7–10 | 6,000 |
November 13 | No. 15 March Field* | No. 9 |
| L 0–35 | 30,000 |
November 27 | UCLA |
| W 26–13 | 35,000 | |
January 1, 1944 | vs. No. 12 Washington | W 29–0 | 68,000 | ||
|
gollark: The signatures are programatically generated from the contents of the file and my private key. PotatOS has the *public* key, so it can verify that the signature was generated from the corresponding private key.
gollark: Um, no, that's not how it works.
gollark: Quick summary:- valid disks contain a signature file and a startup- the signature can be in the old table format or hexadecimal- only disks where the signature is valid for the code on them are executed
gollark: The relevant code:```lualocal function infect(disk_side) local mp = disk.getMountPath(disk_side) if not mp then return end local ds = fs.combine(mp, "startup") -- Find paths to startup and signature files local disk_ID = disk.getID(disk_side) local sig_file = fs.combine(mp, "signature") -- shell.run disks marked with the Brand of PotatOS -- except not actually, it's cool and uses load now if fs.exists(ds) and fs.exists(sig_file) then local code = fread(ds) local sig_raw = fread(sig_file) local sig if sig_raw:find "{" then sig = textutils.unserialise(sig_raw) else sig = unhexize(sig_raw) end disk.eject(disk_side) if verify(code, sig) then -- run code, but safely (via pcall) -- print output for debugging print "Signature Valid; PotatOS Disk Loading" local out, err = load(code, "@disk/startup", nil, external_env) if not out then printError(err) else local ok, res = pcall(out, { side = disk_side, mount_path = mp, ID = disk_ID }) if ok then print(textutils.serialise(res)) else printError(res) end end else printError "Invalid Signature!" printError "Initiating Procedure 5." end -- if they're not PotatOS'd, write it on else fwrite(ds, "shell.run 'pastebin run RM13UGFa update' -- PotatOS") endend```
gollark: <@151391317740486657> What key exactly?
References
- "Southern California Yearly Results (1940-1944)". College Football Data Warehouse. David DeLassus. 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.