Brave Heart (Thom Schuyler album)
Brave Heart is a 1983 album by Thom Schuyler. It was his first album after signing a solo deal with Capitol Records and produced two top 30 singles.[2][3]
Brave Heart | ||||
---|---|---|---|---|
Studio album by | ||||
Released | 1983 | |||
Genre | Country | |||
Length | 39:03 | |||
Label | Capitol | |||
Producer | David Malloy[1] | |||
Thom Schuyler chronology | ||||
|
Track listing
No. | Title | Writer(s) | Length |
---|---|---|---|
1. | "Brave Heart" | Thom Schuyler | 3:30 |
2. | "A Little at a Time" | Schuyler, Larry Byrom | 3:03 |
3. | "Slow Dancing Girl" | Schuyler, Anthony Crawford | 3:53 |
4. | "Must I Cry" | Schuyler | 4:29 |
5. | "City Without a Heart" | Schuyler, Crawford | 4:48 |
6. | "16th Avenue" | Schuyler | 3:59 |
7. | "No Good Reason" | Schuyler, Spady Brannan | 3:45 |
8. | "Easy Street" | Schuyler | 4:14 |
9. | "Two-Way Street" | Schuyler | 2:54 |
10. | "Acres of Pain" | Schuyler | 4:28 |
gollark: I told you.
gollark: The clunky syntax for functions?
gollark: <@!330678593904443393> Serde is the de-facto Rust serialization library.
gollark: No, skynet as in my websocket messaging server for CC.
gollark: ```rustuse std::collections::HashMap;use serde_cbor::Value;use chrono;use std::collections::HashSet;use actix::prelude::*;#[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>}pub fn complete(raw: RawMsg) -> Msg { Msg { channel: raw.channel, meta: raw.meta, timestamp: chrono::Utc::now(), message: raw.message }}#[derive(Serialize, Deserialize, Debug)]#[serde(rename_all = "snake_case")]pub enum MessageFromClient { Open(Channel), Close(Channel), Message(RawMsg), Query}#[derive(Serialize)]#[serde(rename_all = "snake_case")]pub enum MessageToClient<'a> { Message(Msg), QueryResult { channels: &'a HashSet<Channel> }}```Skynet!
References
- https://www.45cat.com/record/b5281
- Vaughan, Andrew (1989). Who's Who in New Country Music. Omnibus Press. p. 78. ISBN 9780711916906.
- Kingsbury, Paul (1998). The Encyclopedia of Country Music. Oxford University Press. p. 473. ISBN 0199770557.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.