Dave Hoover (American football)

David F. Hoover is a former American football player and coach. He served as the head football coach at Wayne State University in Detroit, Michigan from 1972 to 1973 and at Emporia State University in Emporia, Kansas from 1974 until 1978, compiling a career record of 16–50–1. His record at Emporia State was 9–40.[1] Hoover played college football at Iowa State University from 1961 to 1963.

Dave Hoover
Playing career
1961–1963Iowa State
Coaching career (HC unless noted)
?–1971Wayne State (MI) (assistant)
1972–1973Wayne State (MI)
1974–1978Emporia State
Head coaching record
Overall16–50–1

Head coaching record

Year Team Overall ConferenceStanding Bowl/playoffs
Wayne State Tartars (NCAA College Division / Division II independent) (1972–1973)
1972 Wayne State 2–5–1
1973 Wayne State 5–5
Wayne State: 7–10–1
Emporia State Hornets (Great Plains Athletic Conference) (1974–1975)
1974 Emporia State 2–71–4T–4th
1975 Emporia State 1–90–56th
Emporia State Hornets (Central States Intercollegiate Conference) (1976–1978)
1976 Emporia State 0–100–67th
1977 Emporia State 3–72–5T–5th
1978 Emporia State 3–72–5T–6th
Emporia State: 9–405–25
Total:16–50–1
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
gollark: YES, SOME OFFENSE.
gollark: As I said, this is not very good code.]
gollark: Every rendered tile.
gollark: I suppose baidicoot thought "hmm, how might I find whether a player is on a tile I'm rendering". Now, you might think "hmm yes, the solution to this is just to maintain a map of coordinates to entities, or something like that". But no! The game ITERATES OVER ALL PLAYERS FOR EVERY SINGLE TILE.

References

  1. "Archived copy" (PDF). Archived from the original (PDF) on September 27, 2011. Retrieved December 11, 2007.CS1 maint: archived copy as title (link)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.