1959 Ball State Cardinals football team

The 1959 Ball State Cardinals football team was an American football team that represented Ball State Teachers College (later renamed Ball State University) in the Indiana Collegiate Conference (ICC) during the 1959 NCAA College Division football season. In its fourth season under head coach Jim Freeman, the team compiled a 1–7 record and finished in last place in the ICC.[1]

1959 Ball State Cardinals football
ConferenceIndiana Collegiate Conference
1959 record1–7 (1–5 ICC)
Head coachJim Freeman (4th season)
1959 Indiana Collegiate Conference football standings
Conf  Overall
TeamW L T  W L T
Butler $ 6 0 0  9 0 0
Evansville 4 2 0  6 3 0
Indiana State 3 3 0  5 3 0
Saint Joseph's (IN) 3 3 0  4 4 0
Valparaiso 3 3 0  5 4 0
DePauw 1 5 0  1 7 1
Ball State 1 5 0  1 7 0
  • $ Conference champion

Schedule

DateOpponentSiteResult
September 19Illinois StateL 6–22
September 26ValparaisoL 6–24
October 3at Eastern IllinoisL 8–14
October 10at EvansvilleL 0–10
October 17DePauwW 30–24
October 24at ButlerL 0–27
October 31St. Joseph'sL 8–22
November 7at Indiana StateTerre Haute, IN (Blue Key Victory Bell)L 8–29
gollark: >>backups
gollark: tio!debug
gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!

References

  1. "2007 Ball State Football Media Guide". Ball State University. 2007. p. 97. Retrieved July 8, 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.