Fiend discography
The discography for American hip hop musician Fiend.
Albums
Studio albums
Title | Album details | Peak chart positions | Certifications | |
---|---|---|---|---|
US | US R&B | |||
I Won't Be Denied |
|
— | — | |
There's One in Every Family | 8 | 1 | ||
Street Life |
|
15 | 1 | |
Street Aint Safe, Vol. 3 |
|
— | — | |
There’s One in Every Family Pt. II |
|
TBR |
Independent albums
Title | Album details | Peak chart positions |
---|---|---|
US R&B | ||
Can I Burn? |
|
52 |
Can I Burn? 2 |
|
55 |
Go Hard or Go Home |
|
81 |
The Addiction: Hope Is Near |
|
70 |
Heart of a Ghetto Boy: Volume 1[2] |
|
— |
Extended plays
Title | Album details | Peak chart positions | |
---|---|---|---|
US | US R&B | ||
Wrapping Papers[3] |
|
— | — |
Collaboration albums
Title | Album details | Peak chart positions | |
---|---|---|---|
US | US R&B | ||
Dat's How It Happen to'M (with Three 6 Mafia as Da Headbussaz) |
|
— | — |
Jet World Order (with Jet Life) |
|
148 | — |
Jet World Order 2 (with Jet Life) |
|
— | 38 |
Soundtrack albums
Title | Album details | Peak chart positions | Certifications | |
---|---|---|---|---|
US |
US R&B | |||
Foolish (with Various artists) |
32 | 10 |
|
Mixtapes
Title | Mixtape details |
---|---|
Fiend 4 Da Money Vol. 1 |
|
The Bail Out |
|
Fiend 4 Da Money 2 |
|
Audio Dope: (International Jones) |
|
Tennis Shoes & Tuxedos (International Jones) |
|
The Sweetest Hangover (International Jones) |
|
Life Behind Limo Glass (International Jones) |
|
Cool Is In Session (International Jones) |
|
Smokin Champagne (International Jones) |
|
Iron Chef (with Cookin Soul) |
|
Lil Ghetto Boy |
|
The Big Shots (with DeeLow) |
|
Capolavoro (International Jones) |
|
Compilation albums
Title | Album details | Peak chart positions | |
---|---|---|---|
US | US R&B | ||
Mean Green: Major Players Compilation (with Various artist) |
9 | 6 | |
We Can't Be Stopped (with No Limit) |
|
19 | 2 |
Who U Wit? (with Various artist) |
|
62 | 22 |
Ryde or Die Vol. 3: In the "R" We Trust (with Ruff Ryders Entertainment) |
|
— | — |
The Best Of Fiend: Mr. Whomp Whomp |
|
— | — |
Singles
As lead artist
Title | Year | Peak chart positions | Album | ||
---|---|---|---|---|---|
US | US R&B |
US Rap | |||
"I Won't Be Denied" | 1995 | — | — | — | I Won't Be Denied |
"The Baddest" | — | — | — | ||
"Take My Pain" (featuring Master P, Silkk The Shocker & Sons of Funk) |
1998 | — | 11 | — | There's One in Every Family |
"Mr. Whomp Whomp" | 1999 | — | 14 | — | Street Life |
"Talk It How I Bring It" | — | — | — | ||
"On My Job"[4] (featuring Juvenile) |
2013 | — | — | — | N/A |
As featured artist
Title | Year | Peak chart positions | Certifications | Album | ||
---|---|---|---|---|---|---|
US | US R&B |
US Rap | ||||
"Make 'Em Say Uhh!" (Master P featuring Silkk the Shocker, Mia X, Fiend and Mystikal) |
1998 | 16 | 18 | 6 |
|
Ghetto D |
"If It Don't Make $$..." (Skull Duggery featuring Mo B. Dick, Fiend and Master P) |
— | — | — | These Wicked Streets | ||
"Times So Hard" (Young Bleed featuring Master P, Fiend, Mo B. Dick and O'Dell) |
— | — | — | My Balls and My Word | ||
"Woof" (Snoop Dogg featuring Fiend and Mystikal) |
1999 | 19 | 31 | — | Da Game Is to Be Sold, Not to Be Told | |
"Dat Slap" (Rodnae Da Boss featuring Fiend) |
2014 | — | — | — | N/A | |
"Corner Boy" (Hypnotiq featuring Fiend, Boosie Badazz, Mike Jones) |
2016 | — | — | — | N/A |
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.
gollark: I can define a service in a TOML file and it's automatically restarted on exit and all.
gollark: So it does actually work now.
References
- "RIAA – Searchable Database: Fiend". Recording Industry Association of America. Retrieved March 9, 2012.
- "Heart of a Ghetto Boy: Volume 1 by Fiend on iTunes". Itunes.apple.com. 2015-08-21. Retrieved 2015-11-14.
- "Wrapping Papers EP by Fiend on iTunes". Itunes.apple.com. 2014-01-02. Retrieved 2015-11-14.
- "On My Job (feat. Juvenile) - Single by Fiend on iTunes". Itunes.apple.com. 2013-10-01. Retrieved 2015-11-14.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.