Curtis Maddox
Curtis G. Maddox (August 10, 1935 – August 21, 2018) was an American football and basketball coach. He served as the head football coach at Mississippi Valley State College—now known as Mississippi Valley State University—from 1966 to 1967 and Norfolk State University from 1968 to 1971, compiling a career college football coaching record of 17–33–1. Maddox was also the head basketball coach at Mississippi Valley State for one season, in 1962–63, when the school was known as Mississippi Vocational College.
Biographical details | |
---|---|
Born | Greenwood, Mississippi | August 10, 1935
Died | August 21, 2018 82) | (aged
Playing career | |
Football | |
c. 1955 | Mississippi Vocational |
Position(s) | Tackle |
Coaching career (HC unless noted) | |
Football | |
1957 | Mississippi Vocational (assistant) |
1966–1967 | Mississippi Valley State |
1968–1971 | Norfolk State |
Basketball | |
1962–1963 | Mississippi Vocational |
Head coaching record | |
Overall | 17–33–1 (football) |
Maddox was later CEO and president of Cutron General Contractors, Inc. and vice president for operations at Norfolk State. He died on August 21, 2018.[1]
Head coaching record
Football
Year | Team | Overall | Conference | Standing | Bowl/playoffs | ||||
---|---|---|---|---|---|---|---|---|---|
Mississippi Valley State Delta Devils (NCAA College Division independent) (1966–1967) | |||||||||
1966 | Mississippi Valley State | 3–6 | |||||||
1967 | Mississippi Valley State | 3–6 | |||||||
Mississippi Valley State: | 6–12 | ||||||||
Norfolk State Spartans (Central Intercollegiate Athletic Association) (1968–1971) | |||||||||
1968 | Norfolk State | 2–5–1 | 2–4–1 | 10th | |||||
1969 | Norfolk State | 4–4 | 4–3 | 6th | |||||
1970 | Norfolk State | 3–6 | 2–3 | 6th (Northern) | |||||
1971 | Norfolk State | 2–6 | 2–3 | 4th (Northern) | |||||
Norfolk State: | 11–21–1 | 10–13–1 | |||||||
Total: | 17–33–1 |
gollark: * specify, not design
gollark: ```rust let with_db = warp::any().map(move || pool.clone()); let static_files = warp::path("assets").and(warp::fs::dir("assets")); let view_page = warp::path!(String).and(warp::get()).and(with_db.clone()) // repeating the next bit for every route is kind of bad, see if it can be changed somehow .and_then(|title, db| async { error_to_http_response(view_page(db, title).await) }); let editor_page = warp::path!(String / "edit").and(warp::get()).and(with_db.clone()) .and_then(|title, db| async { error_to_http_response(editor_page(db, title).await) }); let save_edit = warp::path!(String / "edit").and(warp::post()).and(warp::body::form()).and(with_db) .and_then(|title, form, db| async { error_to_http_response(save_edit(db, title, form).await) }); let not_found = warp::any().map(|| warp::reply::with_status("404 Not Found", http::StatusCode::NOT_FOUND)); let main = editor_page.or(save_edit).or(view_page); let app = static_files.or(main).or(not_found);```See, this is how you SHOULD design routes: incomprehensibly.
gollark: no!
gollark: Your *routes* shouldn't be config. They're code. They're part of the application.
gollark: What? Why is that a config file?! You should be defining routes in your code.
References
- "Curtis Maddox". The Greenwood Commonwealth. Greenwood, Mississippi. August 29, 2018. p. A2. Retrieved May 25, 2019 – via Newspapers.com
.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.