Love Monster (EP)
Love Monster is an EP released by the band Monster Magnet, although all songs on the album were recorded by the lead singer, Dave Wyndorf, in 1988, a year before the band was formed. Only 3,000 copies of Love Monster were released, making it Monster Magnet's rarest material.[1]
Love Monster | ||||
---|---|---|---|---|
EP by | ||||
Released | 2001 | |||
Recorded | 1988 | |||
Genre | Heavy metal Psychedelic rock | |||
Label | Wrong Way Records | |||
Producer | Monster Magnet | |||
Monster Magnet chronology | ||||
|
Track listing
- All tracks written by Dave Wyndorf except where cited
- "Love Monster"
- "War Hippie"
- "Poster"
- "Atom Age Vampire"
- "Brighter Than the Sun"
- "I'm Five Years Ahead of My Time" (The Third Bardo cover)
- "Snoopy"
gollark: This here is just a definition for the routes/paths/whatever of the API.
gollark: ?
gollark: Unless it had good macros.
gollark: I personally think that while less complexity is good, switching to sugarless lisp would be bad.
gollark: ```haskelltype PasteCapture a = Capture "username" Text :> Capture "pasteName" Text :> atype GetPasteAPI = PasteCapture (Get '[JSON] SanitizedPaste) :<|> "raw" :> PasteCapture (Get '[PlainText] Text)type RequiresAuth a = BasicAuth "pastecan" (Entity User) :> atype UpdatePasteAPI = RequiresAuth ( PasteCapture (Delete '[PlainText] NoContent) :<|> PasteCapture (ReqBody '[JSON] SanitizedPaste :> Put '[PlainText] NoContent))type AccountsAPI = "account" :> ( ReqBody '[JSON] User :> Post '[JSON] Bool :<|> RequiresAuth (Delete '[JSON] NoContent))type API = UpdatePasteAPI :<|> GetPasteAPI :<|> AccountsAPI```I defined the API as types. It was nice.
References
- "Love Monster". discogs.com. Retrieved on October 27, 2013.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.