String Theory (Hanson album)
String Theory is a double album by Hanson, released on November 9, 2018,[1][2] featuring the Prague Symphony performing string arrangements by composer David Campbell.[3][4] The album was produced by Hanson.[5]
String Theory | ||||
---|---|---|---|---|
Studio album by | ||||
Released | November 9, 2018 | |||
Label | 3CG | |||
Producer | Hanson | |||
Hanson chronology | ||||
| ||||
Singles from String Theory | ||||
|
Promotion
Hanson promoted the album with the String Theory Tour.[6]
Track listing
Disc 1
- "Reaching for the Sky (Pt.1)"
- "Joyful Noise"
- "Where's the Love"
- "Dream It Do It"
- "MMMBop"
- "Chasing Down My Dreams"
- "Tragic Symphony"
- "Got a Hold On Me"
- "Yearbook"
- "Siren Call"
- "Me Myself and I"
Disc 2
- "Reaching for the Sky (Pt. 2)"
- "This Time Around"
- "Something Going Round"
- "Battle Cry"
- "You Can't Stop Us"
- "Broken Angel"
- "What Are We Fighting For"
- "Breaktown"
- "No Rest for the Weary"
- "I Was Born"
- "Sound of Light"
- "Tonight"
Charts
Chart (2018) | Peak position |
---|---|
Australian Digital Albums (ARIA)[7] | 19 |
US Billboard Independent Albums[8] | 8 |
US Billboard Classical Albums[9] | 4 |
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
- "Hanson break down their new symphonic album, String Theory, Track by Track: Stream". Consequence of Sound. 2018-11-09. Retrieved 2018-11-09.
- "Hanson celebrate 25 years as a band: 'We have absolutely been blessed'". EW.com. Retrieved 2018-11-09.
- "'String Theory' Illuminates Hanson's Remarkable Songcraft". NPR.org. Retrieved 2018-11-09.
- "Hanson Talk Pushing Their Musical Boundaries with New String Theory Symphonic Album". PEOPLE.com. Retrieved 2018-11-09.
- "Hanson Announce New Album 'String Theory' & Tour Dates". Billboard. Retrieved 2018-11-09.
- "Hanson Discuss the Power Of Their String Theory Tour and Preview 'Reaching For the Sky': Premiere". Billboard. Retrieved 2018-11-09.
- "ARIA Australian Top 50 Digital Albums" (PDF). Australian Recording Industry Association. November 19, 2018. Retrieved November 17, 2018.
- "Hanson Chart History". Billboard. Retrieved 2019-03-02.
- "Hanson Chart History". Billboard. Retrieved 2019-03-02.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.