In the Pursuit of Leisure

In the Pursuit of Leisure is Sugar Ray's fifth studio album released in 2003. Hip-hop artists Esthero and Shaggy guest-star on the album.

In the Pursuit of Leisure
Studio album by
ReleasedJune 3, 2003
Recorded2002-2003
StudioHenson Studios, Hollywood, California
GenreRock
Length41:06
LabelAtlantic
ProducerDavid Kahne
Sugar Ray chronology
Sugar Ray
(2001)
In the Pursuit of Leisure
(2003)
The Best of Sugar Ray
(2005)
Professional ratings
Aggregate scores
SourceRating
Metacritic68/100[1]
Review scores
SourceRating
AllMusic[2]
Entertainment WeeklyB−[3]
Rolling Stone[4]

It features the single "Mr. Bartender (It's So Easy)", a song which includes samples from both Sweet's hit "Love Is Like Oxygen" and Midnight Star's hit "No Parking (On the Dance Floor)." That track was a success and reached the #20 spot on Billboard's Adult Top 40. A cover of Joe Jackson's new wave song "Is She Really Going Out With Him?" was released as the second single. It had similar success and reached the #29 spot on Billboard's Adult Top 40.[2]

Reception and sales

The album only sold 135,000 copies, far less than the band's prior self-titled release, which had gone platinum.[5] The album's commercial failure led to a six-year gap in releasing their next album.[5]

Track listing

  • All songs written by Sugar Ray, except for "Is She Really Going Out with Him?", written by Joe Jackson.
  1. "Chasin' You Around" – 3:38
  2. "Is She Really Going Out with Him?" – 3:48
  3. "Heaven" (Featuring Esthero)– 4:26
  4. "Bring Me the Head of..." – 0:42
  5. "Mr. Bartender (It's So Easy)" – 3:30
  6. "Can't Start" – 3:42
  7. "Photograph of You" – 3:48
  8. "56 Hope Road" (Featuring Shaggy) – 3:51
  9. "Whatever We Are" – 3:41
  10. "She's Different" – 3:30
  11. "In Through the Doggie Door" – 3:09
  12. "Blues from a Gun" – 3:25
gollark: Hmm, so what extra features are needed?
gollark: Anyway, good news systemd-dislikers, I made an EXCELLENT and AMAZING replacement using the RUST programming language.
gollark: I have DashMap in here because of some vague dream of concurrently doing... stuff.
gollark: ```rustuse std::process::Command;use anyhow::Result;use std::path::Path;use std::fs;#[derive(serde::Serialize, serde::Deserialize, Debug)]struct RawServiceSpec { command: String, args: Vec<String>, name: Option<String>}#[derive(Debug)]struct ServiceSpec { command: String, args: Vec<String>, name: String}fn load_spec(path: &Path) -> Result<ServiceSpec> { let file = fs::read_to_string(path)?; let raw: RawServiceSpec = toml::from_str(&file)?; Ok(ServiceSpec { command: raw.command, args: raw.args, name: path.file_stem().unwrap().to_string_lossy().to_string() })}fn run_service(serv: ServiceSpec) -> Result<()> { println!("thread {:?}", serv); loop { println!("Starting"); let mut child = Command::new("/bin/env") .arg("python3") .arg("test.py") .spawn()?; child.wait()?; } Ok(())}fn main() -> Result<()> { let services = dashmap::DashMap::new(); for entry in fs::read_dir("./services")? { let s = load_spec(&entry?.path())?; services.insert(s.name.clone(), s); } let mut handles = Vec::new(); for e in services { handles.push(std::thread::spawn(|| run_service(e.1))); } for handle in handles { handle.join().unwrap(); } Ok(())}```
gollark: Well, I guess that's systemd replaced.

References


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