William Ragsdale

William Ragsdale (born January 19, 1961) is an American actor known best for playing teenaged vampire slayer Charley Brewster in the horror vampire film, Fright Night (1985), and as Herman Brooks in the television series Herman's Head (1991-94).

William Ragsdale
Ragsdale in 2011
Born
Robert William Ragsdale

(1961-01-19) January 19, 1961[1]
OccupationActor
Years active1979–present
Known forFright Night
Spouse(s)
Andrea Ragsdale
(
m. 1999)
Children2

Life and career

Robert William Ragsdale (he later stopped using his first name) was born in El Dorado, Arkansas, and attended Hendrix College, where he appeared in plays opposite future Sling Blade actress, fellow Arkansan Natalie Canerday. He garnered attention as the young hero of Fright Night and Fright Night Part 2 and onstage in Neil Simon's plays, Biloxi Blues[2] and Brighton Beach Memoirs, two of the three parts of Simon's trilogy, which ends with Broadway Bound. Ragsdale featured in the romance comedy movie Mannequin Two: On the Move (1991).

Ragsdale has had a sporadic career with regard to prime-time television. He featured for three years on Herman's Head. He had a brief recurring role in the television series Judging Amy. He played a television producer for Grosse Pointe, which lasted one season.

He was cast in the pilot for Charmed, but refused the series to feature in the short-lived situation comedy Brother's Keeper. He appeared on Ellen as the boyfriend of Ellen Morgan (played by Ellen DeGeneres) before her character revealed her homosexuality. He has had guest roles on television, including a four-episode stint on Less than Perfect, as well as small feature movie roles.

He played the role of Gary Hawkins in 12 episodes of the television series Justified from March 2010 through March 2012, during the series' first three seasons. In 2014, he played Chris Smith in the remake of the movie Left Behind.

In 2017, he appeared in the role of Reverend Todd in the Off-Broadway production of Man from Nebraska at the Second Stage Theatre.[3]

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.
gollark: ```goconst( zero = iota; /* iota starts as zero */ one = iota; /* ...and is incremented every semicolon */ two; /* the last expression is repeated if you omit it */ three;)```

References

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