Petrolhead

Petrolhead is the third studio album by Australian musician Ian Moss. The album was a departure from Ian's previous albums with Moss saying “it was a conscious decision to get back to something I was always happy doing. The result is tough, ballsy blues meets rock...plenty of heart, alive and kicking.”[1]

Petrolhead
Studio album by
ReleasedAugust 1996
Recorded1995 - 1996
StudioFestival Studios, Megaphon Studios
GenreHard rock/blues
Length46:35
LabelTWA Records
Ian Moss chronology
Worlds Away
(1991)
Petrolhead
(1996)
Ian Moss Live
(1998)
Singles from Petrolhead
  1. "Poor Boy"
    Released: 1996
  2. "Petrohead"
    Released: 1996
  3. "All Alone On a Rock"
    Released: 1997

Reception

Australian musicologist Ian McFarlane declared it was "his best-ever album ... [by] a down'n'dirty blues-rock outfit ... with gritty, hard-edged tracks ... [and] finely honed guitar work".[2]

Track listing

TWAD107
No.TitleWriter(s)Length
1."Petrolhead"Don Walker5:33
2."Two Seconds Too Long"Walker, Ian Rilen2:24
3."The Whole Way Down"Spencer Jones4:35
4."It Ain't Easy"Rilen3:54
5."Poor Boy"Walker, Andy Heggen3:47
6."Heaven"Walker5:50
7."Made Her Mine"Walker4:02
8."Albino Faye"Jones3:58
9."Mother Mercy"Heggen4:13
10."80 MPH Blues"Rilen4:06
11."All Alone On a Rock"Walker3:48

Personnel

  • Ian Moss - Vocals, Guitar
  • Ian Rilen - Bass
  • Paul DeMarco - Drums
  • Don Walker - Keyboards, Producer
  • Trent Williamson - Harmonica
  • Shauna Jensen - Backing Vocals
  • Maggie McKinney - Backing Vocals
  • Jerome Smith - Backing Vocals
gollark: No.
gollark: It's a good compiler!
gollark: <@!341618941317349376> Observe, a compiler which produces slow code.
gollark: Now with optimization settings!
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_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```

References

  1. "Ian Moss". Cold Chisel. Retrieved 1 November 2017.
  2. McFarlane, "'Ian Moss' entry". Archived from the original on 28 June 2004. Retrieved 2013-08-05.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.