Self-Titled (Zao album)

(Self-Titled) is the fifth full-length album by metalcore band Zao, released on February 21, 2001 by Solid State/Tooth & Nail/EMI. This album saw the departure of guitarist Russ Cogdell. The entire album was written in the recording studio by Scott and Jesse. Dan would be sent the tracks to write lyrics and then recorded them. The band famously broke up on stage (in Pennsylvania, Sept 2001) touring this album.[4]

(Self-Titled)
Studio album by
ReleasedFebruary 27, 2001
RecordedSeptember 10–23, 2000
StudioPoynters Palace, Little Rock, Arkansas
GenreMetalcore
Length36:08
LabelSolid State/Tooth & Nail/EMI
ProducerBarry Poynter
Zao chronology
Liberate Te Ex Inferis
(1999)
(Self-Titled)
(2001)
Parade of Chaos
(2002)
Professional ratings
Review scores
SourceRating
AllMusic[1]
Decapolisnot rated[2]
Jesus Freak Hideout[3]

Track listing

All lyrics are written by Daniel Weyandt; all music is composed by Scott Mellinger and Jesse Smith.

No.TitleLength
1."5 Year Winter"2:28
2."Alive Is Dead"2:45
3."A Tool to Scream"4:10
4."Witchunter"3:09
5."Trashcanhands (Keyboard Cowards)"3:37
6."The Race of Standing Still"5:07
7."FJL"2:01
8."The End of His World"3:09
9."The Dreams That Don't Come True"5:59
10."At Zero (Simeon Simmons)"3:38

Credits

  • Daniel Weyandt - vocals, percussion
  • Scott Mellinger - composer, guitar, bass, percussion, producer
  • Jesse Smith - drums, acoustic guitar, clean vocals, composer, bass guitar, keyboards, percussion, producer, programming
  • Rob Horner - bass
Production
  • Russ Cogdell - composer
  • Brian Gardner - mastering
  • David Johnson - photography
  • Jason Magnusson - engineer
  • Barry Poynter - engineer, bass

Charts

Chart (2001) Peak
position
Billboard Top Christian Albums[5] 30
gollark: Anyway, going through #12 in order:> `import math, collections, random, gc, hashlib, sys, hashlib, smtplib, importlib, os.path, itertools, hashlib`> `import hashlib`We need some libraries to work with. Hashlib is very important, so to be sure we have hashlib we make sure to keep importing it.> `ℤ = int`> `ℝ = float`> `Row = "__iter__"`Create some aliases for int and float to make it mildly more obfuscated. `Row` is not used directly in anywhere significant.> `lookup = [...]`These are a bunch of hashes used to look up globals/objects. Some of them are not actually used. There is deliberately a comma missing, because of weird python string concattey things.```pythondef aes256(x, X): import hashlib A = bytearray() for Α, Ҙ in zip(x, hashlib.shake_128(X).digest(x.__len__())): A.append(Α ^ Ҙ) import zlib, marshal, hashlib exec(marshal.loads(zlib.decompress(A)))```Obviously, this is not actual AES-256. It is abusing SHAKE-128's variable length digests to implement what is almost certainly an awful stream cipher. The arbitrary-length hash of our key, X, is XORed with the data. Finally, the result of this is decompressed, loaded (as a marshalled function, which is extremely unportable bytecode I believe), and executed. This is only used to load one piece of obfuscated code, which I may explain later.> `class Entry(ℝ):`This is also only used once, in `typing` below. Its `__init__` function implements Rule 110 in a weird and vaguely golfy way involving some sets and bit manipulation. It inherits from float, but I don't think this does much.> `#raise SystemExit(0)`I did this while debugging the rule 110 but I thought it would be fun to leave it in.> `def typing(CONSTANT: __import__("urllib3")):`This is an obfuscated way to look up objects and load our obfuscated code.> `return getattr(Entry, CONSTANT)`I had significant performance problems, so this incorporates a cache. This was cooler™️ than dicts.
gollark: The tiebreaker algorithm is vulnerable to any attack against Boris Johnson's Twitter account.
gollark: I can't actually shut them down, as they run on arbitrary google services.
gollark: Clearly, mgollark is sabotaging me.
gollark: I submitted them but they were all wrong.

References

  1. Self-Titled at AllMusic
  2. "Decapolis review". Archived from the original on November 1, 2001. Retrieved 2018-01-07.CS1 maint: BOT: original-url status unknown (link)
  3. Powless, Steven (October 19, 2011). "Zao, "(Self-Titled)" Review". Jesus Freak Hideout. Retrieved September 18, 2015.
  4. "Future of Zao Uncertain?". Punk News. December 27, 2001. Retrieved June 11, 2018.
  5. "Zao Chart History: Top Christian Albums". Billboard. Eldridge Industries. Retrieved June 11, 2018.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.