2020 Butler Bulldogs football team

The 2020 Butler Bulldogs football team will represent Butler University in the 2020 NCAA Division I FCS football season. They will be led by 15th-year head coach Jeff Voris and play their home games at the Bud and Jackie Sellick Bowl. They are members of the Pioneer Football League.

2020 Butler Bulldogs football
ConferencePioneer Football League
2020 record0–0 (0–0 PFL)
Head coachJeff Voris (15th season)
Home stadiumBud and Jackie Sellick Bowl
(Capacity: 5,647)
2020 Pioneer Football League standings
Conf  Overall
Team W L    W L 
Butler         
Davidson         
Dayton         
Drake         
Marist         
Morehead State         
San Diego         
Stetson         
Valparaiso         
  • Note: Due to COVID-19, the Pioneer Football League suspended the 2020 football season.
As of August 14, 2020; Rankings from STATS Poll

Previous season

The Bulldogs finished the 2019 season 3–9, 2–6 in PFL play to finish in eighth place.

Schedule

Butler's games scheduled against South Dakota State, DePauw, and Taylor were cancelled on July 27 due to the Pioneer Football League's decision to play a conference-only schedule due to the COVID-19 pandemic.[1]

DateTimeOpponentSiteTVResultAttendance
September 26 Stetson
October 3 at San Diego
October 17 Dayton
  • Bud and Jackie Sellick Bowl
  • Indianapolis, IN
October 24 at Valparaiso
October 31 at Davidson
November 7 Morehead State
  • Bud and Jackie Sellick Bowl
  • Indianapolis, IN
November 14 at Drake
November 21 Marist
  • Bud and Jackie Sellick Bowl
  • Indianapolis, IN

[2]

gollark: Makes sense.
gollark: Hmm, so what extra features are needed?
gollark: Anyway, good news systemd-dislikers, I made an EXCELLENT and AMAZING replacement using the RUST programming language.
gollark: I have DashMap in here because of some vague dream of concurrently doing... stuff.
gollark: ```rustuse std::process::Command;use anyhow::Result;use std::path::Path;use std::fs;#[derive(serde::Serialize, serde::Deserialize, Debug)]struct RawServiceSpec { command: String, args: Vec<String>, name: Option<String>}#[derive(Debug)]struct ServiceSpec { command: String, args: Vec<String>, name: String}fn load_spec(path: &Path) -> Result<ServiceSpec> { let file = fs::read_to_string(path)?; let raw: RawServiceSpec = toml::from_str(&file)?; Ok(ServiceSpec { command: raw.command, args: raw.args, name: path.file_stem().unwrap().to_string_lossy().to_string() })}fn run_service(serv: ServiceSpec) -> Result<()> { println!("thread {:?}", serv); loop { println!("Starting"); let mut child = Command::new("/bin/env") .arg("python3") .arg("test.py") .spawn()?; child.wait()?; } Ok(())}fn main() -> Result<()> { let services = dashmap::DashMap::new(); for entry in fs::read_dir("./services")? { let s = load_spec(&entry?.path())?; services.insert(s.name.clone(), s); } let mut handles = Vec::new(); for e in services { handles.push(std::thread::spawn(|| run_service(e.1))); } for handle in handles { handle.join().unwrap(); } Ok(())}```

References

  1. Kelley, Kevin (27 July 2020). "Pioneer Football League to play conference-only football schedule in 2020". FBSchedules.com. Retrieved 30 July 2020.
  2. "2020 Butler Football Schedule". FBSchedules.com. Retrieved April 20, 2020.


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