R. H. Hamilton

Robert Houston Hamilton (December 25, 1873 – June 15, 1946) was an American football coach. He served as the first head football coach at Baylor University, coaching from 1899 to 1900 and compiling a record of 5–1–1. Hamilton later served as a judge and lawyer.[1] He died June 15, 1946.[2]

R. H. Hamilton
Biographical details
Born(1873-12-25)December 25, 1873
Corsicana, Texas
DiedJune 15, 1946(1946-06-15) (aged 72)
Port Lavaca, Texas
Coaching career (HC unless noted)
1899–1900Baylor
Head coaching record
Overall5–1–1

Head coaching record

Year Team Overall ConferenceStanding Bowl/playoffs
Baylor (Independent) (1899–1900)
1899 Baylor 2–1–1
1900 Baylor 3–0
Baylor: 5–1–1
Total:5–1–1
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. Armstrong, Z.; French, J.P.C. (1974). Notable Southern Families: Armstrong, "Trooper." Cockrill. Duke. Elston. Lea. Park. Parkes. Tunnell. The Sevier family. 1 v. Genealogical Publishing Company. ISBN 9780806305080. Retrieved December 3, 2014.
  2. "Person Details for Robert H Hamilton, "Texas, Deaths, 1890-1976" FamilySearch.org". familysearch.org. Retrieved December 3, 2014.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.