Erase (album)

Erase is the third studio album released by Dutch death metal band Gorefest. It was released in 1994 Nuclear Blast Records.[2] While primarily death metal, this album incorporates some slower and more mid-paced ideas reminiscent of heavy metal and is seen as a transition into the death 'n' roll sound heard on later releases.

Erase
Studio album by
ReleasedJuly 1994
RecordedT & T Studio, Gelsenkirchen, Germany, January - March 1994
Studio Zeezicht, Spaarnwoude, The Netherlands, January 1994
GenreDeath metal, death 'n' roll
Length42:10
LabelNuclear Blast
ProducerPete "Peewee" Coleman
Gorefest chronology
False
(1992)
Erase
(1994)
Soul Survivor
(1996)
Professional ratings
Review scores
SourceRating
Allmusic[1]

Track listing

No.TitleLength
1."Low"5:01
2."Erase"5:49
3."I Walk My Way"4:33
4."Fear"4:33
5."Seeds of Hate"5:01
6."Peace of Paper"4:34
7."Goddess in Black"6:16
8."To Hell and Back"6:23
9."Raven" (Bonus track)3:07
10."Horrors in a Retarded Mind '94" (Bonus track)3:54
Total length:42:10

Band members

gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.

References


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