Baby Teeth (band)
Baby Teeth is a Chicago-based indie pop/rock band, currently signed to Lujo Records. Formed in 2002, the group members were a trio until they added a guitarist in early 2007. The band decided to break up in July 2012.[1] Since doing so, in July 2013, the band reunited for one final performance with all original members.
Baby Teeth | |
---|---|
Origin | Chicago, Illinois |
Genres | Indie rock, pop |
Years active | 2003–present |
Labels | Lujo Records |
Associated acts | Bobby Conn, Detholz!, All City Affairs |
Website | www.babyteethmusic.com |
Members | Abraham Levitan ("Pearly Sweets") Jim Cooper Peter Andreadis Michael Lyons |
Members
- Abraham Levitan – lead vocals, keyboards
- Jim Cooper – bass guitar, vocals
- Peter Andreadis – drums, vocals
- Michael Lyons – guitar
Discography
Albums
- The Baby Teeth Album (2005)
- The Simp (2007)
- Hustle Beach (2009)
- White Tonight (2012)
Singles
- The Baby Teeth Single (2003)
- Hustle Beach Single (2009)
EPs
- For The Heathers (2006)
- We Live Here (2007)
- Boss (2011)
Other
- 52 Teeth (2007–08) – Collection of new songs released once a week for a year
References
- "Archived copy". Archived from the original on 2014-02-22. Retrieved 2014-02-11.CS1 maint: archived copy as title (link)
gollark: <@!341618941317349376>
gollark: https://esolangs.org/wiki/WHY#WHYJIT
gollark: WHYJIT is now production-unusable!
gollark: _continues WHYJIT development_
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")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 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}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = 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, "w") as out: out.write(code)```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.