Jerry Flora

Jerry Flora is an American football coach. He was the head football coach at William Paterson University in Wayne Township, New Jersey from 2008 to 2017, compiling a record of 33–67. He was replaced by Dustin Johnson following the 2017 season.

Jerry Flora
Playing career
1988–1991Iona
Position(s)Offensive tackle
Coaching career (HC unless noted)
1992–1996Iona (WR)
1997Fairleigh Dickinson–Florham (OL)
1998–2001Iona (WR)
2002–2007William Paterson (assistant)
2008–2017William Paterson
Head coaching record
Overall33–67

Head coaching record

Year Team Overall ConferenceStanding Bowl/playoffs
William Paterson Pioneers (New Jersey Athletic Conference) (2008–2017)
2008 William Paterson 4–63–67th
2009 William Paterson 5–54–55th
2010 William Paterson 4–63–67th
2011 William Paterson 4–63–6T–7th
2012 William Paterson 5–52–57th
2013 William Paterson 3–71–6T–7th
2014 William Paterson 4–62–5T–5th
2015 William Paterson 2–81–89th
2016 William Paterson 2–81–8T–9th
2017 William Paterson 0–100–910th
William Paterson: 33–6720–64
Total:33–67
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

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