Louis Comte

Louis Apollinaire Christien Emmanuel Comte "The King's Conjurer" (born Geneva, June 22, 1788 – Rueil, November 25, 1859), also known simply as Comte, was a celebrated nineteenth-century Parisian magician, greatly admired by Robert-Houdin.

Admission token Théâtre Comte, passage Choiseul, for a family of 4, reverse.
Admission token Théâtre Comte, passage Choiseul, for a family of 4, obverse.

He performed for Louis XVIII at the Tuileries Palace and was made a Chevalier de la Légion d'Honneur by Louis-Philippe. He was sometimes called "The Conjurer of the Three Kings" (Louis XVIII, Charles X, and Louis-Philippe).[1] In 1814, Comte became the first conjurer on record to pull a white rabbit out of a top hat[2] though this is also attributed to the much later John Henry Anderson.[3]

Comte owned the Théâtre Comte passage des Panoramas of the 2nd arrondissement of Paris and another one in the Passage Choiseul.

Bibliography

  • Milbourne Christopher, David Copperfield, The Illustrated History of Magic, 2005, p. 133. ISBN 0-7867-1688-6.
  • Henry Ridgely Evans, The Old and the New Magic, Chicago, 1906. Reprinted 2006, ISBN 1-4286-3672-2. p. 150ff.
  • Paul Courville, Magic Tokens 2020, p. 32-33, ISBN 1727158539 @ www.magictoken.org
gollark: https://esolangs.org/wiki/WHY#WHYJIT
gollark: WHYJIT is now production-unusable!
gollark: _continues WHYJIT development_
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
gollark: I give you... WHYJIT.

References

  1. Jacques Voignier, preface to The Magic of Robert-Houdin: An Artist's Life at The Miracle Factory Archived 2008-11-21 at the Wayback Machine
  2. Colin McDowell, Hats: Status, Style, and Glamour, 1992, p. 74. ISBN 0-8478-1572-2.
  3. QI, A Series, Episode 3
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.