Flyleaf (EP)

Flyleaf is the self-titled debut extended play by American rock band Flyleaf.

Flyleaf
EP by
ReleasedOctober 26, 2004 (2004-10-26)[1]
Genre
Length11:54
Label
Producer
Flyleaf chronology
Flyleaf
(2004)
Flyleaf
(2005)
Professional ratings
Review scores
SourceRating
Jesus Freak Hideout[1]

Track listing

All tracks are written by Lacey Mosley, James Culpepper, Sameer Bhattacharya, Jared Hartmann, Pat Seals[3].

No.TitleLength
1."Red Sam"3:19
2."Breathe Today"2:53
3."I'm Sorry"2:45
4."Cassie"2:57
re-release
No.TitleLength
1."I'm So Sick"3:46
2."Fully Alive"2:48
3."Breathe Today"2:53
4."I'm Sorry"2:45
5."Cassie"2:57
6."Red Sam"3:19
7."Breathe Today" (video)2:53
Total length:18:28

Personnel

Credits adapted from liner notes[3][4]

Release history

Region Date Label Format Catalogue
United States October 26, 2004[1]
CD 82376-50057-2
May 31, 2005[2]
82376-50058-2
December 11, 2007[5] A&M Octone 82376-50058
gollark: Perfectly sane.
gollark: <@!509849474647064576> and <@!134073775925886976> are perfectly sane.
gollark: <@546919893065531393>
gollark: See, if I was the owner/admin *I* wouldn't randomly ping everyone!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessimport randomimport stringparser = argparse.ArgumentParser(description="Compile a WHY program using WHYJIT.")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def randomword(length): letters = string.ascii_lowercase return ''.join(random.choice(letters) for i in range(length))def which(program): proc = subprocess.run(["which", program], stdout=subprocess.PIPE) if proc.returncode == 0: return proc.stdout.replace(b"\n", b"") else: return Nonedef find_C_compiler(): compilers = ["gcc", "clang", "tcc", "cc"] for compiler in compilers: path = which(compiler) if path != None: return pathdef build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ heredoc = randomword(100) devnull = "2>/dev/null" shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-tooTMP3=/tmp/dont-look-here cat << {heredoc} > $TMP1{C_code}{heredoc}sed -e '1,/^exit \$?$/d' "$0" > $TMP3chmod +x $TMP3$TMP3 -x c -o $TMP2 $TMP1chmod +x $TMP2$TMP2exit $?""".encode("utf-8") with open(find_C_compiler(), "rb") as f: return shell_script + f.read()input = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "wb") as out: out.write(code)```

References

  1. "Flyleaf, "Flyleaf EP" Review". Jesus Freak Hideout. February 2, 2005. Retrieved November 4, 2012.
  2. "Flyleaf". AllMusic. All Media Network.
  3. Flyleaf (Liner notes). Flyleaf. Octone Records. 2004. 82376-50057-2.CS1 maint: others (link)
  4. Flyleaf (Liner notes). Flyleaf. Octone Records. 2005. 82376-50058-2.CS1 maint: others (link)
  5. "Flyleaf EP". Amazon.com. Retrieved August 19, 2017.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.