King School

King School, formerly King Low Heywood Thomas, is a private, co-educational day school for pre-kindergarten through grade 12 in Connecticut. King attracts students from 30 towns in the Fairfield County, Connecticut and Westchester County, New York areas.

King School
Location
Stamford, CT
Information
TypePrivate, Day
Established1865
HeadDr. Karen E. Eshoo
Enrollment700 (PreK-12)
CampusSuburban
Color(s)Navy, Gold, White
MascotViking
RivalGreens Farms Academy
Websitehttp://www.kingschoolct.org/

Athletics

King is part of the Fairchester Athletic Association (FAA), consisting of independent schools in Fairfield County, CT, Westchester County, NY, and of the Western New England Preparatory School Association (WNEPSA).

Notable past King athletes include:[1]

Notable alumni

  • Carter Burwell - (Class of 1973, King School), Primetime Emmy Winner and Academy Award Nominated composer
  • Joe Corstairs[4] - (c1911-1915, Low Heywood)
  • Adam Platzner [5][6][7] - (Class of 1997, King Low Heywood Thomas), entrepreneur, producer, co-founder of Zig Media and Dream Water
  • Alexander Soros[8] - (Class of 2004, King Low Heywood Thomas), Non-profit executive and philanthropist
  • Nate Collins - (Class of 2006, King Low Heywood Thomas), defensive end/nose guard for the Chicago Bears
  • Silas Redd - (Class of 2010, King Low Heywood Thomas), retired NFL running back for the Washington Redskins
  • Kevin Pierre-Louis - (Class of 2010, King Low Heywood Thomas), linebacker for the Chicago Bears
  • Dixie D'Amelio - (Class of 2020, King School), social media influencer, singer and model
  • Charli D'Amelio - (Class of 2022, King School), social media influencer and dancer
gollark: Then your application is wrong.
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.

See also

References

  1. "Reliever Anderson chosen by Tigers as top pick in MLB draft". The Rice Thresher. Rice University. August 29, 1997. Archived from the original on 2015-11-28.
  2. "Nate Collins". Chicago Bears. Archived from the original on 2016-03-28.
  3. "Billy Dee Greenwood" (PDF). Player Profiles. University of North Carolina. 2001.
  4. "Joe Carstairs, Part 1". Stuff You Missed in History Class. August 17, 2015.
  5. Grynbaum, Michael M. (2018-01-14). "Graydon Carter, Ex-Editor of Vanity Fair, Invests in an App". The New York Times. ISSN 0362-4331. Retrieved 2019-08-28.
  6. "How One Unexpected Phone Call Nearly 30 Years Ago Led Billy Joel to Visit Boy Dying of Cancer". PEOPLE.com. Retrieved 2019-08-28.
  7. "United States Congressional Record" (PDF).
  8. Williams, Alex (July 18, 2012). "Making Good on the Family Name". New York Times.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.