The Killing Had Begun

The Killing Had Begun is the third full-length album by German band X Marks the Pedwalk. It was released by Zoth Ommog in Europe as both an LP and CD, and in North America by Cleopatra Records as a CD.

The Killing Had Begun
Studio album by
Released1994
Recorded1994
GenreElectro-industrial, EBM
Length51:12
LabelZoth Ommog, Cleopatra Records
ProducerSevren Ni-arb (André Schmechta)
X Marks the Pedwalk chronology
Human Desolation
(1993)
The Killing Had Begun
(1994)
Meshwork
(1995)

The Killing Had Begun was the first X Marks the Pedwalk album to contain vocals by André Schmechta's wife, Stephanie (who was credited as Estéfania).

Track listing

  1. "I Promise You a Murder" – 5:05
  2. "Wipe No Tears" – 4:12
  3. "Cul-de-Sac" – 4:42
  4. "No Premonition" – 5:01
  5. "Worthless" – 4:01
  6. "Made of Wax" – 4:49
  7. "My Back" – 4:19
  8. "The Occurrence" – 5:17
  9. "Your Eyes" – 6:20
  10. "Conversion" – 3:24
  11. "Insight" – 4:02

Personnel

  • Sevren Ni-arb
  • Raive Yarx
  • Estefania
gollark: As of now, my code does```nimproc renderToHtml*(input: string): string = let wlRegex = re"\[\[([^:\]]+):?([^\]]+)?\]\]" let opt = CMARK_OPT_UNSAFE or CMARK_OPT_FOOTNOTES or CMARK_OPT_STRIKETHROUGH_DOUBLE_TILDE or CMARK_OPT_TABLE_PREFER_STYLE_ATTRIBUTES # create parser instance let str: cstring = input len: csize_t = len(input).csize_t parser: ParserPtr = cmark_parser_new(opt.cint) if parser == nil: raise newException(CatchableError, "failed to initialize parser") defer: cmark_parser_free(parser) [further initialization stuff] # parse document, get AST cmark_parser_feed(parser, str, len) let doc = cmark_parser_finish(parser) defer: cmark_node_free(doc) if doc == nil: raise newException(CatchableError, "parsing failed - should not occur") # iterate over AST using built-in cmark-gfm AST iteration thing for (evType, node) in cmarkTree(doc): # if it is a text node [OPERATIONS ON RELEVANT NODE THING] let html: cstring = cmark_render_html(doc, opt.cint, cmark_parser_get_syntax_extensions(parser)) defer: free(html) result = $html```
gollark: cmark. I will explain.
gollark: Hmm. Gibson, you use nim, yes? How can I nicely™ abstract this C library?
gollark: Hi.
gollark: Why are you not just... using an actual IRC client?
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.