Michael Ball (album)

Michael Ball is the debut album by English singer Michael Ball. It was released in 1992 by Polydor Records and peaked at number one on the UK Albums Chart.[2] The album includes the UK Top 40 singles "Love Changes Everything", from the musical Aspects of Love, and "One Step Out of Time", which was the United Kingdom's entry at the Eurovision Song Contest 1992, held in Malmö, Sweden.[3]

Michael Ball
Studio album by
Released1992 (1992)
GenrePop
LabelPolydor
Producer[1]
Michael Ball chronology
Michael Ball
(1992)
West Side Story
(1993)

Track listing

  1. "One Step Out of Time" (Paul Davies, Tony Ryan)
  2. "It's Still You" (Darin Black, Richard Kerr)
  3. "Holland Park" (Kerr)
  4. "Secret of Love" (Ian Allen)
  5. "As Dreams Go By" (Andy Hill, Peter Sinfield)
  6. "Who Needs to Know"
  7. "Simple Affair of the Heart" (Guy Fletcher, Doug Flett)
  8. "If You Need Another Love" (John Miles)
  9. "Beautiful Heartache"
  10. "No One Cries Anymore" (Black, Kerr)
  11. "Love Changes Everything" (Don Black, Andrew Lloyd Webber, Charles Hart)

Personnel

  • Dave Arch – arranger
  • Martin Levan – engineer
  • John Mackswith – engineer

Charts and certifications

Weekly charts

Chart (1992) Peak
position
UK Albums Chart[2] 1

Certifications

Region CertificationCertified units/sales
United Kingdom (BPI)[4] Gold 100,000^

*sales figures based on certification alone
^shipments figures based on certification alone

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)```
gollark: I give you... WHYJIT.
gollark: Trouble is that bundling TCC would require *building* it and that'd increase WHY compile times significantly.
gollark: So how does one actually go around packaging binaries with the program?
gollark: And how do I get *that* to work.

References

  1. "Michael Ball - Michael Ball - Credits - AllMusic".
  2. "Michael Ball - Michael Ball". Official Charts Company. Retrieved 2012-04-06.
  3. "Eurovision Song Contest 1992 - Eurovision Song Contest".
  4. "British album certifications – Michael Ball – Michael Ball". British Phonographic Industry. Retrieved 2018-10-26. Select albums in the Format field. Select Gold in the Certification field. Type Michael Ball in the "Search BPI Awards" field and then press Enter.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.