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 | ||||
Released | August 1996 | |||
Recorded | 1995 - 1996 | |||
Studio | Festival Studios, Megaphon Studios | |||
Genre | Hard rock/blues | |||
Length | 46:35 | |||
Label | TWA Records | |||
Ian Moss chronology | ||||
| ||||
Singles from Petrolhead | ||||
|
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
No. | Title | Writer(s) | Length |
---|---|---|---|
1. | "Petrolhead" | Don Walker | 5:33 |
2. | "Two Seconds Too Long" | Walker, Ian Rilen | 2:24 |
3. | "The Whole Way Down" | Spencer Jones | 4:35 |
4. | "It Ain't Easy" | Rilen | 3:54 |
5. | "Poor Boy" | Walker, Andy Heggen | 3:47 |
6. | "Heaven" | Walker | 5:50 |
7. | "Made Her Mine" | Walker | 4:02 |
8. | "Albino Faye" | Jones | 3:58 |
9. | "Mother Mercy" | Heggen | 4:13 |
10. | "80 MPH Blues" | Rilen | 4:06 |
11. | "All Alone On a Rock" | Walker | 3: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
- "Ian Moss". Cold Chisel. Retrieved 1 November 2017.
- 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.