1941 Case Rough Riders football team

The 1941 Case Rough Riders football team represented the Case School of Applied Science in the American city of Cleveland, Ohio, now a part of Case Western Reserve University, during the 1941 college football season. The team was coached by Ray A. Ride, for whom the team mascot was named. The Case–Reserve rivalry game saw its 50th matchup, which began in 1891.

1941 Case Rough Riders football
OAC champion
ConferenceOhio Athletic Conference
1941 record7–1 (4–0 OAC)
Head coachRay A. Ride (1st season)
Home stadiumShaw Stadium

Schedule

DateOpponentSiteResultAttendance
October 4at Lehigh*W 33–26
October 10Kent StateW 7–6
October 18at WoosterWooster, OHW 40–0
October 25at John Carroll
  • Shaw Stadium
  • East Cleveland, OH
W 8–6
November 1at Carnegie Tech*
  • Shaw Stadium
  • East Cleveland, OH
W 27–0
November 8at Baldwin–WallaceBerea, OHW 35–77,500
November 15at Ohio Wesleyan*Delaware, OHW 7–0
November 20vs. Western Reserve*
L 6–2638,872 [1]
  • *Non-conference game

[2]

gollark: The embed says "no" on heav's website, fix?
gollark: This is not ideal. How can we use more without boring things like cryptominers?
gollark: Okay, this might fix it, pushed.
gollark: If the issue is what I think it could be, then it's accidentally dropping? data on the threshold of the rolling counter region incorrectly.
gollark: ```nimproc pollTargets(ctx: Ctx) {.async.} = for row in ctx.db.all("SELECT * FROM sites"): var (id, url, rollingTotalPings, rollingSuccessfulPings, rollingLatency, rollingDataSince) = row.unpack((int64, string, int64, int64, int64, Option[Time])) let res = await ctx.pollTarget(url) let threshold = getTime() # drop old data from rolling counters if rollingDataSince.isSome: for row in ctx.db.iterate("SELECT status, latency FROM reqs WHERE timestamp >= ? AND timestamp <= ? AND site = ?", rollingDataSince.get, threshold, id): let (statusRaw, latency) = row.unpack((int, int)) rollingTotalPings -= 1 rollingLatency -= latency if statusRaw <= 0: rollingSuccessfulPings -= 1 # add new data rollingTotalPings += 1 rollingLatency += res.latency if int(res.rtype) <= 0: rollingSuccessfulPings += 1 ctx.db.transaction: ctx.db.exec("UPDATE sites SET rc_total = ?, rc_success = ?, rc_latency = ?, rc_data_since = ? WHERE sid = ?", rollingTotalPings, rollingSuccessfulPings, rollingLatency, threshold, id) ctx.db.exec("INSERT INTO reqs (site, timestamp, status, latency) VALUES (?, ?, ?, ?)", id, getTime(), int(res.rtype), res.latency)```This is the core algorithm.

References

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