Yves Beauchemin

Yves Beauchemin (born 26 June 1941) is a Quebec novelist.

Yves Beauchemin in 2012

Born in Rouyn-Noranda, Quebec, Beauchemin received his degree in French literature and art history at the Université de Montréal in 1965. He taught literature at the Collège Garneau and Université Laval. Beauchemin was working as an editor in a Montreal publishing firm when he began contributing essays and stories to magazines and newspapers. In 1969 he accepted a position as a researcher at Radio-Québec.

Beauchemin's first novel, L'enfirouapé (1974), won the Prix France-Québec. His second novel, Le matou (1981), became the all-time best-selling novel in French Quebec literature and has been translated into seventeen languages. Beauchemin won the Prix Jean Giono for his third novel, Juliette Pormerleau (1989).

In his fiction Beauchemin is a detached but caring observer of the contemporary world around him. The panoramic canvases of his novels capture the teeming life of the streets, reflecting their author's appreciation of such great nineteenth-century writers as Balzac, Dickens, Dostoevsky and Gogol.

He resides in Longueuil, Quebec.

Bibliography

  • L'enfirouapé - 1974
  • Le matou - 1981 (translated as The Alley Cat - 1986)
  • Juliette Pormerleau - 1989 (translated as Juliette - 1990), Grand prix des lectrices de Elle
  • Le second violon - 1996 (translated as The Second Violin - 1998)
  • Les Emois d'un Marchand de Café - 1999
  • Charles le téméraire' - 2004 (translated as Charles The Bold - 2007)
  • Charles le téméraire - Un saut dans le vide' - 2005 (translated as The Years of Fire: Charles the Bold, Volume 2 - 2007)
  • Charles le téméraire - Parti pour la gloire' - 2006 (translated as A Very Bold Leap: Charles the Bold, Volume 3 - 2009)
  • Antoine et Alfred- 2006
  • La serveuse du Café Cherrier - 2011
  • Les Empocheurs - 2016
gollark: This is really only useful if you want to actually resolve krist domains for HTTPoidal purposes or something.
gollark: You could stick them in the A record in some simple format (maybe the metadata one).
gollark: And probably AAAA/TXT/etc support.
gollark: <@129553195314839552> You want this with better input validation basically.
gollark: ```javascriptconst dns = require("dns2")const fetch = require("node-fetch")const { Packet } = dns;const server = dns.createServer(async (request, send, rinfo) => { const response = Packet.createResponseFromRequest(request); const [ question ] = request.questions; const { name } = question; if (name.endsWith(".kst")) { const nameWithoutExt = name.replace(/\.kst$/, "") const kstName = await (await fetch(`https://krist.ceriat.net/names/${encodeURIComponent(nameWithoutExt)}`)).json() console.log(kstName) if (kstName.name.a) { response.answers.push({ name, type: Packet.TYPE.A, class: Packet.CLASS.IN, ttl: 300, address: kstName.name.a }); } send(response) } else { // work out how to send NOAUTH here send(response) }});server.on('request', (request, response, rinfo) => { console.log(request.header.id, request.questions[0]);});server.listen(5333);```


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.