Orin Helvey

Orin Greenhill "Mount" Helvey (November 6, 1903 March 3, 1969) was a college football player and reverend.[1]

Orin Helvey
Sewanee Tigers No. 2
PositionGuard/Fullback
ClassGraduate
Career history
College
Personal information
Born:(1903-11-06)November 6, 1903
Wynnewood, Oklahoma
Died:March 3, 1969(1969-03-03) (aged 65)
Richmond, Texas
Weight210 lb (95 kg)
Career highlights and awards

Sewanee

"Mount" Helvey was a prominent guard and fullback for the Sewanee Tigers football teams from 1923 to 1926.[2] Helvey also played basketball and ran track.[3][4]

1926

He was selected All-Southern in 1926.[5] That year, he "attracted considerable attention for his fine defensive play during the season".[6] Arguably the finest example was holding champion Alabama to a 20 score largely by his efforts.[7][8] Helvey was awarded the Porter Cup as Sewanee's best all-around athlete in 1927.[9]

gollark: Yes.
gollark: More great "WHY WOULD YOU DO THIS":```go// A Context carries a deadline, cancelation signal, and request-scoped values// across API boundaries. Its methods are safe for simultaneous use by multiple// goroutines.type Context interface { // Done returns a channel that is closed when this Context is canceled // or times out. Done() <-chan struct{} // Err indicates why this context was canceled, after the Done channel // is closed. Err() error // Deadline returns the time when this Context will be canceled, if any. Deadline() (deadline time.Time, ok bool) // Value returns the value associated with key or nil if none. Value(key interface{}) interface{}}```
gollark: Basically, modems/rednet but more flexible, cross-server, and without actual modems.
gollark: It's a websocket-based inter-computer cross-server message relay.
gollark: ```rust#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Hash, Clone)]#[serde(untagged)]pub enum Channel { Numeric(i64), Named(String)}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct RawMsg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct Msg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value, pub timestamp: chrono::DateTime<chrono::Utc>}#[derive(Serialize, Deserialize, Debug)]#[serde(tag = "type")]enum MessageFromClient { #[serde(rename = "open")] Open { channel: skynet::Channel }, #[serde(rename = "close")] Close { channel: skynet::Channel }, #[serde(rename = "message")] Message(skynet::RawMsg)}#[derive(Serialize)]#[serde(tag = "type")]enum MessageToClient<'a> { #[serde(rename = "message")] Message(skynet::Msg), #[serde(rename = "channels")] OpenChannels { channels: &'a HashSet<skynet::Channel> }}```WIP Rust notreallyconversion of the Skynet protocol.

References

  1. "Helvey Attends Sewanee Meeting". The Eagle. June 9, 1949.
  2. Dave Morley (October 17, 1927). "Unsung Heroes of Football". Berkeley Daily Gazette.
  3. "Sewanee Track Men Tie Gators With 56 to 56". The Miami News. April 24, 1927.
  4. Cap and Gown. 1927. p. 96.
  5. "Alabama Places 4 Men On Newspaper All-Southern Team". The Kingsport Times. November 28, 1926.
  6. "Thanksgiving Day Contests See Many of Dixie College Gridiron Stars Play Finals". The Miami News. November 23, 1926.
  7. http://grfx.cstv.com/schools/alab/graphics/docs/26-m-footbl-recaps.pdf
  8. "Mr. D Special in hearts of Crimson Tide players". Tuscaloosa News. August 23, 1979. Note: Source mislabels Helvey as Blood Miller.
  9. "Sewanee's Best All-Round Athlete" (PDF). The Rainbow: 82.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.