Jacques Jouet

Jacques Jouet (born 9 October 1947) is a French writer and has been a participating member of the Oulipo literary project since 1983.

Jacques Jouet in 2012.

He is a poet, novelist, short story writer, playwright, essayiste, and plasticine artist specializing in collages. As a member of l'Oulipo, Jouet became its focus in June 2009 when he began publicly writing a serialized novel in five days.[1] He first became involved with Oulipo in 1978, stemming from a writing course directed by Paul Fournel, Georges Perec, and Jacques Roubaud.[2]

His serial The Republic of Mek Ouyes was broadcast simultaneously on radio and on the web, through the site of his publisher, P.O.L.

Jouet wrote Poèmes de métro while riding the underground trains of the Paris Métro.

Works

(incomplete list)

Literary

  • Le directeur du Musée des cadeaux des chefs d'État de l'étranger
  • Annette et l'Etna
  • Poèmes de Métro (Poems of the Paris Underground)
  • Mon bel autocar (My Beautiful Bus)
  • Actes de la machine ronde
  • L'amour comme on l'apprend à l'école hôtelière
  • Une mauvaise maire
  • MRM (Max Jacob Prize 2009)

Collected works

  • Numerous volumes of La Bibliothèque oulipienne, Seghers and Le Castor astral
  • Les Papous dans la tête, l'anthologie, with Bertrand Jérôme and Françoise Treussard, Gallimard, 2007
  • Le Dictionnaire des Papous dans la tête, with Françoise Treussard, Gallimard, 2007

Théâtre

(incomplete list)

  • Mitterrand et Sankara, staged in 2005, reopened in 2008 at the Théâtre Nanterre-Amandiers
  • La République de Mek Ouyes, staged in 2006 at the Théâtre Nanterre-Amandiers
  • L'amour au travail
  • La chatte bottée
gollark: Enterprise-level, fully deterministic execution of random code. Totally secure!
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!

References

  1. Lundin, Leigh; Grassiot-Gandet (7 June 2009). "L'Oulipo". Criminal Brief. Retrieved 8 June 2009.
  2. Lapprand, Marc (2007). L'Oeuvre ronde : essai sur Jacques Jouet, suivi d'un entretien avec l'auteur (1 ed.). Limoges: Lambert-Lucas. p. 236.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.