Tetje Mierendorf

Tetje Mierendorf (born April 18, 1972 in Hamburg) is a German comedian, musical theatre, and voice actor.[1]

Biography

After his Abitur he completed an apprenticeship as bank teller. In 2004, he played the leading part of the German adaption of My Big Fat Obnoxious Fiance. Later he was a permanent member of the ensemble of the improv comedy show Schillerstraße. In December 2005, he played the role of the elephant seal "Seele-Fant" in the TV-adaption of the children's book Urmal From the Ice Age from German writer Max Kruse. His most important musical theatre roles were "The Big Bopper" in the German production of Buddy – The Buddy Holly Story and "Edna Turnblad" in the German production of the musical Hairspray.

Theatre engagements (choosing)

  • April 1995 to February 1997, Imperial Theater Hamburg, Grease, role: Vince Fontaine/Teen Angel
  • December 1999 to April 2000, Imperial Theater Hamburg, The Rocky Horror Show, role: Eddie/Dr. Scott
  • April 1997 to April 2001, Theater im Hafen Hamburg, Buddy - The Buddy Holly Story, role: The Big Bopper
  • 2003 to 2004, Improvisational theatre Springmaus. Tour.
  • März 2005 to August 2005, Schmidts Tivoli Hamburg, "XXLvis"
  • May 30, 2006, to June 11, 2006, Schmidt-Theater Hamburg, "Emmi – Die Salomé vom Spielbudenplatz oder Sing, wenn du kannst" (Emmi- The Salomé of Spielbudenplatz or sing if you can)
  • December 2009 to September 2010, Musical Dome Cologne, Hairspray, role: Edna Turnblad (alternate first cast).
  • as from December 2, 2010, Operettenhaus Hamburg, Sister Act, role: Bones
gollark: <@!341618941317349376>
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)```

References

  1. "Sister Act: Artists" (in German). Stage Entertainment. Retrieved 29 October 2010.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.