Poison Idéal

Poison Idéal is the second studio album by French singer Steeve Estatof. The album, reaching 68th on the French chart, was released on 16 May 2008 via Sony BMG.[2][3]

Poison Idéal
Studio album by
ReleasedMay 16, 2008 (2008-05-16)
StudioSqueak E Clean, Los Angeles
Mothership, Los Angeles
Claudia Sound Studios, Paris
The Warehouse, Vancouver[1]
GenrePop rock
LanguageFrench
LabelSony BMG
ProducerDavid Corcos
Steeve Estatof chronology
À l'envers
(2004)
Poison Idéal
(2008)

Track listing

No.TitleWriter(s)Length
1."Real TV"Steeve Estatof3:55
2."Kendy"Roman Chelminski, Estatof2:53
3."Bomb Baby"Estatof, Ace Finchum, Kim Hooker, Jay Pepper, Pepsi Tate4:19
4."Viens Te Faire Chahuter"Michel Polnareff4:40
5."L'Ange Noir"Estatof, Michael Pastorelli, Dominique Romey, Virginie Sallet5:11
6."Le Monde"Estatof3:37
7."L'Amour Ne Vaut Rien"Estatof, Cyril Nobilet3:32
8."Les Maux Les Poissons"Estatof3:27
9."Jours Après Nuit"Chelminski, Estatof3:39
10."Sous Hypnoz"Estatof, Benjamin Tesquet2:19
11."Tout Détruire"Estatof2:06
12."Bye Bye Girl"Cliff Estatof, Mike Estatof, S. Estatof4:16
13."Un Idéal"C. Estatof, S. Estatof, Sallet, Marc Volta4:14
  • "Bomb Baby" contains an interpolation of Tigertailz' 1989 single "Love Bomb Baby", written by Ace Finchum, Kim Hooker, Jay Pepper & Pepsi Tate.
  • "Viens Te Faire Chahuter" is a cover of Michel Polnareff's 1985 single.

Charts

Chart Peak
positions
France — Syndicat National de l'Édition Phonographique[4] 68
gollark: ```pythonimport itertoolsimport multiprocessing as mchars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sif __name__ == "__main__": def start(func): proc = m.Process(target=func) proc.start() io_queue = m.Queue(maxsize=128) def printer(): while True: print(io_queue.get()) code_queue = m.Queue(maxsize=128) def generator(): for x in generate(): code_queue.put(x) def executor(): while True: code = code_queue.get() result = None try: result = repr(exec(code)) except Exception as e: result = repr(e) if result != None: io_queue.put(code + ": " + result) start(generator) for _ in range(4): start(executor) printer()```
gollark: Which do you think is slower: the execution or generation of strings?
gollark: ```pythonimport itertoolschars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sfor x in generate(): try: print(exec(x)) except Exception as e: print(f"{e} from {x}")```
gollark: I should multithread this!
gollark: ```pythonimport itertoolschars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sfor x in generate(): print(x)```<@!330678593904443393>

References

  1. HITMAN · 17 mai 2015 (2015-05-17). "Le Poison idéal - Steeve Estatof". SensCritique. Retrieved 2017-10-01.
  2. Poison idéal by Steeve Estatof on Apple Music, 2008-05-16, retrieved 2017-10-01
  3. Jean. "Steeve Estatof nous sert un 'Poison idéal' - evous". Evous.fr. Retrieved 2017-10-01.
  4. Steffen Hung. "Discographie Steeve Estatof". lescharts.com. Retrieved 2017-10-01.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.