Hollywood Rehearsal
Hollywood Rehearsal is a collection of demos by L.A. Guns that was released in Japan. None of the demos had already been released.
Hollywood Rehearsal | ||||
---|---|---|---|---|
![]() | ||||
Compilation album by | ||||
Released | 1997 | |||
Genre | Glam metal | |||
L.A. Guns chronology | ||||
|
Review scores | |
---|---|
Source | Rating |
AllMusic | ![]() ![]() ![]() ![]() ![]() |
Track listing
- "I Feel Nice"
- "High on You"
- "Strange Boat"
- "Gunslinger"
- "Rip Off"
- "Should I Stay or Should I Go" (The Clash cover)
- "Custard Pie" (Led Zeppelin cover)
- "Rock Candy" (Montrose cover)
- "All the Way"
- "Guilty"
- "Long Time Dead" (remix)
- "Dangerous Games"
Personnel
- Phil Lewis: vocals
- Tracii Guns: guitar
- Mick Cripps: guitar and keyboards
- Kelly Nickels: bass
- Steve Riley: drums
Wasted (EP)
Wasted | ||||
---|---|---|---|---|
EP by | ||||
Released | September 15, 1998 | |||
Recorded | Red Zone Studios Burbank, California | |||
Genre | Hard rock | |||
Length | 30:26 | |||
Label | Standback | |||
Producer | Dennis Degher, L.A. Guns Executive Producer - Mitch Lafon | |||
L.A. Guns chronology | ||||
|
Review scores | |
---|---|
Source | Rating |
AllMusic | ![]() ![]() ![]() ![]() ![]() |
Wasted is an L.A. Guns EP featuring singer Ralph Saenz, who has since become the vocalist for Steel Panther. The album sold approximately 2500 copies.
Track listing
- "Wasted"
- "Well Spent"
- "Heavy Head"
- "Forgiving Eyes"
- "The Ballad of Jayne '98"
- "Cold Gin"
Personnel
- Ralph Saenz - vocals
- Tracii Guns - guitars
- Johnny Crypt - bass guitar
- Steve Riley - drums
gollark: As of now, my code does```nimproc renderToHtml*(input: string): string = let wlRegex = re"\[\[([^:\]]+):?([^\]]+)?\]\]" let opt = CMARK_OPT_UNSAFE or CMARK_OPT_FOOTNOTES or CMARK_OPT_STRIKETHROUGH_DOUBLE_TILDE or CMARK_OPT_TABLE_PREFER_STYLE_ATTRIBUTES # create parser instance let str: cstring = input len: csize_t = len(input).csize_t parser: ParserPtr = cmark_parser_new(opt.cint) if parser == nil: raise newException(CatchableError, "failed to initialize parser") defer: cmark_parser_free(parser) [further initialization stuff] # parse document, get AST cmark_parser_feed(parser, str, len) let doc = cmark_parser_finish(parser) defer: cmark_node_free(doc) if doc == nil: raise newException(CatchableError, "parsing failed - should not occur") # iterate over AST using built-in cmark-gfm AST iteration thing for (evType, node) in cmarkTree(doc): # if it is a text node [OPERATIONS ON RELEVANT NODE THING] let html: cstring = cmark_render_html(doc, opt.cint, cmark_parser_get_syntax_extensions(parser)) defer: free(html) result = $html```
gollark: cmark. I will explain.
gollark: Hmm. Gibson, you use nim, yes? How can I nicely™ abstract this C library?
gollark: Hi.
gollark: Why are you not just... using an actual IRC client?
References
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.