Performance (Eloy album)
Performance is the eleventh studio album by German progressive rock band Eloy, which was released in 1983.[1]
Performance | ||||
---|---|---|---|---|
![]() | ||||
Studio album by | ||||
Released | 1983 | |||
Recorded | by Achim Schulze, Harald Lepschies and Jan Nemec | |||
Genre | Progressive rock, Electronic rock | |||
Length | 38:54 | |||
Label | EMI Electrola | |||
Producer | Eloy, Frank Bornemann | |||
Eloy chronology | ||||
|
Track listing
All songs composed and arranged by Eloy. Lyrics by Sigi Hausen.
No. | Title | Length |
---|---|---|
1. | "In Disguise" | 4:29 |
2. | "Shadow and Light" | 5:17 |
3. | "Mirador" | 3:44 |
4. | "Surrender" | 5:38 |
5. | "Heartbeat" | 6:26 |
6. | "Fools" | 5:10 |
7. | "A Broken Frame" | 8:10 |
8. | "Shadow and Light (Live 1983)" | 5:08 |
9. | "Heartbeat (Live 1983)" | 6:00 |
10. | "Fools (Live 1983)" | 4:49 |
Total length: | 38:54 |
Tracks 8, 9 and 10 are bonus tracks from the 2005 remastered edition.
Personnel
- Frank Bornemann — guitar, vocals
- Hannes Arkona — guitar, keyboards
- Hannes Folberth — keyboards, piano
- Klaus-Peter Matziol — bass
- Fritz Randow — drums, percussion
gollark: How do you know your password is the right one?
gollark: I should assign unique IDs to the other sandbox escape bugs.
gollark: My "fix" is this:```lua--[["Fix" for bug PS#E9DCC81BSummary: `pcall(getfenv, -1)` seemingly returned the environment outside the sandbox.Based on some testing, this seems like some bizarre optimization-type feature gone wrong.It seems that something is simplifying `pcall(getfenv)` to just directly calling `getfenv` and ignoring the environment... as well as, *somehow*, `function() return getfenv() end` and such.The initial attempt at making this work did `return (fn(...))` instead of `return fn(...)` in an attempt to make it not do this, but of course that somehow broke horribly. I don't know what's going on at this point.This is probably a bit of a performance hit, and more problematically liable to go away if this is actually some bizarre interpreter feature and the fix gets optimized away.Unfortunately I don't have any better ideas. Also, I haven't tried this with xpcall, but it's probably possible, so I'm attempting to fix that too.]]local real_pcall = pcallfunction _G.pcall(fn, ...) return real_pcall(function(...) local ret = {fn(...)} return unpack(ret) end, ...)end local real_xpcall = xpcallfunction _G.xpcall(fn, handler) return real_xpcall(function() local ret = {fn()} return unpack(ret) end, handler)end```which appears to work at least?
gollark: Fixed, but I don't really know how or why.
gollark: ... should I create a bug report?
References
- "Eloy - Performance (LP) at Discogs". www.discogs.com. Retrieved 2009-05-03.
External links
- "Musicline.de - Eloy - Performance". www.musicline.de. Retrieved 2009-05-03.
- "allmusic ((( Performance > Overview )))". www.allmusic.com. Retrieved 2009-05-03.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.