- published: 18 Dec 2020
- views: 9528337
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
HIDDEN ERROR: Usage of "nationality" is not recognized
Helene Fischer (born 5 August 1984) is a Russian born German singer and entertainer. Since her debut in 2005 she has won numerous awards, including eight Echo awards, four "Die Krone der Volksmusik" awards and the Bambi award. According to record certifications she has sold at least 9,115,000 albums. In June 2014, her multi platinum 2013 album "Farbenspiel" became the most legally downloaded album by a German artist of all time.
Helene Fischer was born in the Siberian city of Krasnoyarsk, Russia (then the Soviet Union) as the second child to Peter and Maria Fischer. Her father worked as a physical education teacher and her mother as an engineer at a university. Her paternal grandparents were Volga Germans who had been deported to Siberia in 1941 by Joseph Stalin. In 1988, at the age of four, she emigrated with her parents and her six year older sister to Wöllstein, Rhineland-Palatine, West Germany.
After graduating from school, Helene Fischer attended the Frankfurt Stage & Musical School for three years, where she studied singing and acting. During this time, Helene performed on stage at the Staatstheater Darmstadt, as well as on the stage of the Volkstheater Frankfurt. Since May 2008 she has been dating Florian Silbereisen. In October 2011 Fischer was presented with her own wax figure in the Berlin Madame Tussauds museum.
UND or Und may refer to:
Howard E. Barker (born 28 June 1946) is a British playwright.
Barker has coined the term "Theatre of Catastrophe" to describe his work. His plays often explore violence, sexuality, the desire for power, and human motivation.
Rejecting the widespread notion that an audience should share a single response to the events onstage, Barker works to fragment response, forcing each viewer to wrestle with the play alone. "We must overcome the urge to do things in unison" he writes. "To chant together, to hum banal tunes together, is not collectivity." Where other playwrights might clarify a scene, Barker seeks to render it more complex, ambiguous, and unstable.
Only through a tragic renaissance, Barker argues, will beauty and poetry return to the stage. "Tragedy liberates language from banality" he asserts. "It returns poetry to speech."
Barker frequently turns to historical events for inspiration. His play Scenes from an Execution, for example, centers on the aftermath of the Battle of Lepanto (1571) and a fictional female artist commissioned to create a commemorative painting of the Venetian victory over the Ottoman fleet. Scenes from an Execution, originally written for Radio 3 and starring Glenda Jackson in 1984, was later adapted for the stage. The short play Judith revolves around the Biblical story of Judith, the legendary heroine who decapitated the invading general Holofernes.
Die Helene Fischer Show - Meine schönsten Momente Vol. 1 https://umg.lnk.to/DieHeleneFischerShow Helene Fischer präsentiert in diesem Jahr eine Spezialausgabe der „Helene Fischer Show“. Und das Beste: „Die Helene Fischer Show – Meine Schönsten Momente Vol. 1“ gibt es auch für zu Hause! 40 eigenhändig von Helene Fischer ausgewählte Songs, versammelt auf einem exklusiven Doppelalbum (2CD, 24-seitiges Booklet) mit einmaligen Duetten, Klassikern, Megahits und jeder Menge Gänsehaut-Momenten. Die Deluxe Edition umfasst zusätzlich eine DVD bzw. Blu-ray, auf der alle Performances der CD in bester Sendequalität enthalten sind. Außerdem besticht das Bundle durch ein liebevoll gestaltetes 60-seitiges Fotobuch. Doppelalbum und Deluxe Edition sind ab jetzt überall erhältlich! Mehr Infos: https://...
Music video by Helene Fischer performing Atemlos durch die Nacht. (C) 2013 Jean Frankfurter, under exclusive license to Polydor/Island, a division of Universal Music GmbH
#helenefischer | Das neue Album „Weihnachten“ und „Weihnachten – Live aus der Hofburg Wien“ bestellen: ► iTunes: http://www.umgt.de/zwXQm8 ► Amazon http://www.umgt.de/Y41zbt ► Media Markt: http://bitly.com/MediaMarktWeihnachten ► Saturn: http://www.umgt.de/S4LUSl Kanal abonnieren http://bitly.com/HeleneFischerOfficial
Helene Fischer / Live From Chemnitz, Germany 02.01.2008. ✅ Playlist: https://www.youtube.com/watch?v=rYO4ap76gEs&list=PLiuMaQ5Uh5KDcT-Bv-ruB8grybOPG2vCJ «The Power of Love» (Сила любви) впервые была записана американской певицей немецкого происхождения Дженнифер Раш и выпущена в Германии в декабре 1984 года. Замечательный кавер этой песни, нежнее нежного. Helene Fischer (Official): https://www.youtube.com/user/helenefischer ......................................................... The whispers in the morning Of lovers sleeping tight Are rolling by like thunder now As I look in your eyes I hold on to your body And feel each move you make Your voice is warm and tender A love that I could not forsake 'Cause I am your lady And you are my man Whenever you reach for me I'll do all that I can ...
#helenefischer Noch mehr aus „Die Helene Fischer Show“ auf der persönlichen Selektion „Meine schönsten Momente“ - mit dabei auch der Auftritt von "Voilà" mit Emma Kok. https://umg.lnk.to/DieHeleneFischerShow Helene Fischer präsentiert die Highlights der diesjährigen Show. Doppelalbum und Deluxe Edition sind ab jetzt überall erhältlich! Mehr Infos: https://www.helene-fischer.de Mit freundlicher Genehmigung des ZDF. #helenefischer Kanal abonnieren http://bitly.com/HeleneFischerOfficial
#helenefischer | "Achterbahn“ aus "Helene Fischer Live - Die Stadion-Tour" Jetzt überall erhältlich: http://www.helene-fischer.de Die Show der Superlative gibt es ab jetzt als 2CD, DVD, Blu-ray, DVD und Fan-Edition (2CDs, DVD & Blu-ray). #Achterbahn #StadionTour Music video by Helene Fischer performing Achterbahn (Live von der Stadion-Tour / Hamburg / 2018). © 2019 Helene Fischer, under exclusive license to Universal Music GmbH http://vevo.ly/a1rY3P
Die Show ungekürzt als limitierte 4rer Box inklusive 2-CD, DVD und BluRay: https://shop.helene-fischer.de/ Am 27.01.2024 um 20.15 Uhr in der ARD, mehr Infos unter: https://www.daserste.de/unterhaltung/musik/musiksendungen-im-ersten/sendung/helene-fischer-rausch-live-100.html Kanal abonnieren http://bitly.com/HeleneFischerOfficial #HeleneFischer #Rausch #Blitz
10 Jahre ATEMLOS! Helene Fischer x Shirin David - Atemlos durch die Nacht (Live von Wetten, dass...?) Den Song hier hören: https://umg.lnk.to/Atemlos10Years Mehr dazu: https://www.helene-fischer.de Website: https://www.helene-fischer.de Facebook: https://www.facebook.com/helenefischer.official Instagram: https://www.instagram.com/helenefischer Folgt @ShirinDavid : INSTAGRAM: https://www.instagram.com/shirindavid TWITTER: https://twitter.com/ShirinDavid SPOTIFY: https://open.spotify.com/intl-de/artist/0JBdTCGs111JKKYfLqOEBa?si=FQLUb5goRXGzHATkZNt-xA&nd=1&dlsi=02308a1fcc77451b TIKTOK: https://www.tiktok.com/@shirindavid Kanal abonnieren http://bitly.com/HeleneFischerOfficial #HeleneFischer #ShirinDavid #Atemlos #10JahreAtemlos #AtemlosdurchdieNacht
#HeleneFischer #FlorianSilbereisen #BeatriceEgli helene fischer in hamburg 2023 helene fischer hamburg konzert 2023 helene fischer hamburg 2023 helene fischer mit thomas seitel helene fischer 11.4.23 helene fischer gestern abend helene hamburg helene fischer hamburg tourstart helene fischer helene fischer in hamburg helene fischer hamburg 2023 tickets helene thomas seitel thomas seitel helene fischer helene fischer 2023 hand in hand helene fischer helene fischer thomas helene fischer tour helene fischer konzert
10 Jahre ATEMLOS! Live von der Stadion Tour 2018. Mehr dazu: https://www.helene-fischer.de Website: https://www.helene-fischer.de Facebook: https://www.facebook.com/helenefischer.official Instagram: https://www.instagram.com/helenefischer Kanal abonnieren http://bitly.com/HeleneFischerOfficial #HeleneFischer #Atemlos #Live #10JahreAtemlos
A recording of a short pre-show lecture given by resident academic, Dr Cynthia Lawford introducing Barker and his work before the performance of 'Lot and his God' at The Print Room 'Lot and His God' by Howard Barker runs until 24 November 2012. Check out the production trailer here: http://www.youtube.com/watch?v=-EaiNIajQBk http://www.the-print-room.org
Innocence De Howard Barker Mise en scène Howard Barker et Gerrard McArthur I Association nÖjd Texte français Sarah Hirschmuller
Slovensko narodno gledaliče Drama Ljubljana / Slovene National Theatre Drama Ljubljana Sezona / Season 2010/2011; Uprizoritev / Performance 13; Premiera / Opening 7. 5. 2011 Howard Barker - Slike z usmrtitve Scenes from an Execution Prva slovenska uprizoritev / First Slovene production Prevajalec / Translator - Zdravko Duša Režiserka / Director - Lindy Davies Dramaturginja / Dramaturg - Darja Dominkuš Scenografinja in kostumografinja / Set & Costume designer - Sanja Jurca Avci Skladateljica / Composer - Cathy Milliken Oblikovanje zvoka in priredba glasbe / Arrangements & soundscapes by Igor Leonardi Lektorica / Language consultant - Tatjana StaniË Oblikovalec luËi / Light designer - Andrej Hajdinjak Prevajalka na vajah / Translator on rehearsals - Lija Pogačnik Asi...
Howard Barker forces us to face innumerable themes of war in The Possibilities. Through various snapshots that take the audience to suspended places in time, our collective human weakness to continually repeat our cruel history is ripped open for examination. The human psyche can be tormented and tricked through oppression, guilt, and feelings of helplessness. As these sensibilities are manipulated, so is our ability to see all the possibilities available to us, and our right to stand by our personal morality. November 13th at 7:30 at the Monument National For tickets visit http://www.monumentnational.com/en/calendar/details/the-possibilities/ For more on the rest of the festival visit: http://imagotheatre.ca/forgotten/
Extracts from The Wrestling School's production of I Saw Myself by Howard barker at the Vanbrugh Theatre, London, April 2008
Extracts from a recording of a live performance of The Wrestling School in The Dying Of Today by Howard Barker Directed by Gerrard McArthur. Recorded at the Arcola Theatre in November 2008 With George Irving as The Barber and Duncan Bell as The Visitor.
“Galaksia“ (Skena nga një ekzekutim) është shfaqja që do të vijë premierë këtë fundjavë me datë 7, 8 dhe 9 shkurt ora 19:00 në ArTurbina. “Galaksia” është cilësuar si vepra më e mirë e autorit bashkëkohor britanik Howard Barker, ku në qendër të saj qëndron një piktore e jashtëzakonshme (Galaksia) e interpretuar nga aktorja Olta Daku, së cilës i duhet të përballet me luftën e pushtetit ndaj artit. Është një vepër aktuale edhe pse ngjarjet e së cilës janë vendosur në Venecian e shek. XVI, ajo flet edhe sot po njësoj. “Galaksia” vjen me regji nga Rovena Lule Kuka dhe në interpretimin e aktorëve më në zë, si Olta Daku, Igli Zarka, Neritan Liçaj, Bujar Asqeriu, Raimonda Bulku, Myzafer Zifla, Lulzim Zeqja, Vikena Kamenica, Paola Kodra, Niada Saliasi, Genti Deçka, Naun Shundi, Bujar Hoxhaj, Uri...
Buy Tickets Online at: http://www.the-print-room.org The Print Room presents the UK Premiere of LOT AND HIS GOD by Howard Barker 3 - 24 November 2012 Mon - Sat 7.30pm, Sat Matinee 3.30pm TICKETS: £20 / £15 conc Buy Tickets Online at: http://www.the-print-room.org Or call us directly on 020 7221 6036. 24hr ticketweb: 08444 77 1000 "I came to the city. I saw the people were filthy. And those who were not filthy were still filthy..." Sodom. The day before the city's total annihilation. Among the grimy tables of a run-down café, an angel tells Lot that God wants him to flee, before the city is obliterated. However, Lot's irresistible wife has other ideas... As the angel and Lot's wife embark on a dangerous game of seduction, cruelty and desire, we are drawn ever deeper into the dark and i...
HIDDEN ERROR: Usage of "nationality" is not recognized
Helene Fischer (born 5 August 1984) is a Russian born German singer and entertainer. Since her debut in 2005 she has won numerous awards, including eight Echo awards, four "Die Krone der Volksmusik" awards and the Bambi award. According to record certifications she has sold at least 9,115,000 albums. In June 2014, her multi platinum 2013 album "Farbenspiel" became the most legally downloaded album by a German artist of all time.
Helene Fischer was born in the Siberian city of Krasnoyarsk, Russia (then the Soviet Union) as the second child to Peter and Maria Fischer. Her father worked as a physical education teacher and her mother as an engineer at a university. Her paternal grandparents were Volga Germans who had been deported to Siberia in 1941 by Joseph Stalin. In 1988, at the age of four, she emigrated with her parents and her six year older sister to Wöllstein, Rhineland-Palatine, West Germany.
After graduating from school, Helene Fischer attended the Frankfurt Stage & Musical School for three years, where she studied singing and acting. During this time, Helene performed on stage at the Staatstheater Darmstadt, as well as on the stage of the Volkstheater Frankfurt. Since May 2008 she has been dating Florian Silbereisen. In October 2011 Fischer was presented with her own wax figure in the Berlin Madame Tussauds museum.
Noch ein Blick zur Uhr, es ist soweit.
Verzaubert ist die Zeit.
Schmetterlinge im Bauch, der erste Ton.
Nur Emotion und Lampenfieber, dafür lebe ich,
für den Traum im Rampenlicht,
ein Gefühl das tief in mir unsterblich ist.
diesen Schritt geh ich allein,
möcht in tausend Herzen sein.
Ganz allein im Licht, ein Mensch aus Glas,
das bin ich heut für dich.
Gefühle, Glück und Leid, ich trag mein Seelenkleid,
hautnah und nur für dich.
Allein im Licht, verwundbar und auch stark,
so siehst du mich.
Mein Herz ist ungeschminkt.
Wenn wir zusammen sind, zählt nur der Augenblick.
Liebe kommt zurück.
Wenn der Vorhang fällt, das Licht geht aus.
Geh ich allein nach Haus.
Make-Up im Gesicht, Gedankenspur,
Glück ganz pur, erfüllte Seele.
Dafür lebe ich, für den Tanz im Rampenlicht,
eine Liebe die mir unsterblich ist.
Ganz egal was auch geschieht,
ich trag dich tief in mir.
Ganz allein im Licht, ein Mensch aus Glas,
das bin ich heut für dich.
Gefühle, Glück und Leid, ich trag mein Seelenkleid,
hautnah und nur für dich.
Allein im Licht, verwundbar und auch stark,
so siehst du mich.
Mein Herz ist ungeschminkt.
Wenn wir zusammen sind, zählt nur der Augenblick.
Liebe kommt zurück.
Gefühle, Glück und Leid, ich trag mein Seelenkleid,
hautnah und nur für dich.
Allein im Licht, verwundbar und auch stark,
so siehst du mich.
Mein Herz ist ungeschminkt.
Wenn wir zusammen sind, allein im Licht.
Allein im Licht.
(Dank an hariotfs für den Text)