Backtrack (band)
Backtrack was an American hardcore punk band from Long Island, New York, founded in 2008.
Backtrack | |
---|---|
Origin | Long Island, New York, U.S. |
Genres | |
Years active | 2008—2019 |
Members |
|
Past members |
|
History
Backtrack began in 2008 with the release of a demo titled The '08 Demo via Flatspot Records.[1] They released an EP in 2009 via 6131 Records titled Deal With The Devil.[2]
Backtrack released their first full-length album in 2011 titled Darker Half via Reaper Records.[3][4]
In 2013, Backtrack released a 7" via Bridge 9 Records titled Can't Escape.[5][6]
In 2014, Backtrack released their second full-length album via Bridge 9 Records titled Lost In Life.[7]
In 2019, the band announced it would be breaking up doing a final tour around America, Asia, and Australia which ended in Amityville, New York on November 30, 2019.[8][9]
Band members
- James Vitalo - Vocals
- Ricky Singh - Guitar
- Chris Smith - Guitar
- Danny Smith - Bass
- Nick Brienza : Bass
- David Jaycox : Bass
- Reggie McCafferty : Bass
- John T. Lopez : Drums
- Steven DiGenio - Drums
Discography
Studio albums
- Darker Half (2011, Reaper)
- Lost In Life (2014, Bridge Nine)
- Bad To My World (2017, Bridge Nine)
EPs and demos
- The '08 Demo (2008, Flatspot)
- Deal With The Devil (2009, 6131)
- Can't Escape (2013, Bridge Nine)
- "Bad To My World" b/w "Breaking Loose" - Flexi/Zine (2017, Bridge Nine)
gollark: tio!debug
gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.
References
- "Backtrack, The '08 Demo 7" is back in stock. Grab it here:". Backtrack.tumblr.com. Retrieved 2020-04-03.
- Shultz, Brian. "Backtrack: Deal with the Devil [7 inch] (2009)". PunkNews. Retrieved 31 March 2016.
- "BACKTRACK "DARKER HALF" REVIEW". GlueHC. Retrieved 31 March 2016.
- Lantinen, Christopher. "BACKTRACK'S 'DARKER HALF' GETS REPRESSED". Modern Vinyl. Retrieved 31 March 2016.
- Kraus, Brian. "Backtrack (Bridge Nine) stream new seven-inch, 'Can't Escape'". Alternative Press. Retrieved 31 March 2016.
- "Backtrack Streaming New Song "Stuck With A Sting"". The PRP. Retrieved 31 March 2016.
- Kraus, Brian. "Backtrack (Bridge Nine) stream new single, "Lost In Life"". Alternative Press. Retrieved 31 March 2016.
- Sacher, Andrew. "Backtrack breaking up, announce final tour". BrooklynVegan. Retrieved 28 January 2020.
- "BACKTRACK". BACKTRACK. Retrieved 28 January 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.