Rehasher
Rehasher is a punk rock band based in Gainesville, Florida. Although started as a band, Rehasher became the solo side project of ska punk band Less Than Jake bass player/back up and lead singer Roger Lima as their lead singer and rhythm guitarist. Rehasher's third album Make The Noise was released on July 10, 2015. Following the release of Make The Noise, the band added lead guitarist Richard Klinghoffer, co-lead singer and bassist Tony Farah and drummer Alex Klausner to resume touring. Work on new recordings began in late 2017.
Rehasher | |
---|---|
Origin | Gainesville, Florida, United States |
Genres | Punk rock Melodic Hardcore Pop punk |
Years active | 2002–Present |
Labels | No Idea Records |
Members | Roger Lima Richard Klinghoffer Tony Farah Alex Klausner |
Discography
Releases
- Off Key Melodies (2004), released in 2004 on No Idea Records.
- High Speed Access to My Brain (2009), released August 28, 2009; vinyl version on Paper + Plastick, CD version on Moathouse Records.
- Clock Smash! (2015) released June 2 on Moathouse Records. Vinyl version on Saint November records.
- Make The Noise (2015) released July 10 on Moathouse Records Vinyl version on Moathouse Records.
Band members
- Roger Lima – lead and backing vocals, rhythm guitar
- Richard Klinghoffer – lead guitar, backing vocals
- Tony Farah – bass, lead and backing vocals
- Alex Klausner – drums, backing vocals
Previous members
- Ryan Geis – lead guitar, backing vocals
- Gui Amador – bass
- Jake Crown – drums, backing vocals
gollark: Okay, "quite fast" may be an overstatement.
gollark: This is far more readable than foolish "shell scripts", and actually quite fast.
gollark: It's HIGHLY advanced.
gollark: If you want, I can make it compile in parallel, but I haven't done this.
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.