- published: 12 Feb 2025
- views: 70395
'+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; })); }); -->
Anne Haigis (born 9 December 1955) is a German musician and singer. Through the 1980s, she gained commercial success with German language songs, but in the 1990s she focused more on English language material.
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.
Regal in Rekordzeit! Platzwart Udo, meist hektisch und cholerisch, manchmal etwas leichtsinnig und oft im Chaos untergehend hat heute jede Menge vor! Unter anderem will er ein Regal bauen und das in nur 5 Minuten… #werkzeug #deutschland #explosion #rekord
Alle neue Gipfeltreffen in der ARD Mediathek: https://1.ard.de/spasszone #dasistdochdergipfel Wir befriedigen eure dunkelsten Gelüste mit einer neuen Folge vom Gipfeltreffen, dem Idiotentest unter den Comedy-Shows. Olaf Schubert, Torsten Sträter und Johann König erklären euch diesmal, wie sich der Verschleiß des Ruhms anfühlt, wann die Müllabfuhr kommt und wie weit Kannibalen fliegen können. Mut durch Ahnungslosigkeit lautet wie immer das Motto.Außerdem erwartet euch ein Live-Auftritt von Queen und eine Aufführung des Märchenklassikers "Hansel and Gretel in the Peppercakehouse" (OmU). Oven out! Mit Fragen von Felix Lobrecht, Helene Bockhorst, Palina Rojinski, Linda Zervakis, Leonard Lansink, Eva Padberg, Nelson Müller und Gayle Tufts.
Located in Grand Forks, ND. Camera faces west and is mounted on Clifford Hall on the campus of the U. of North Dakota. Thanks for watching! Check out the eastward facing camera at: https://www.youtube.com/watch?v=Jq6C162vNkg
Zwischen Promille und Pöbeleien 😳 REAKTION auf NACHTSCHICHT mit Polizei 🚨 | MontanaBlack Reaktion Video: https://www.youtube.com/watch?v=JhtmL6OmnA8 🎬 MontanaBlack: https://www.youtube.com/MontanaBlack88 https://www.youtube.com/SpontanaBlack https://www.twitch.tv/montanablack88 🥤 Gönrgy: https://goenrgy.de (Werbung) 🎵 Verwendete Musik: Outro: Bosshafte Beats - Rettungsschwimmer
Zig und Sharko - toggo von super rtl Programm, Livestream und mehr: https://www.toggo.de/ Klik hier om u te abonneren op Zig und Sharko Channel : https://www.YouTube.com/channel/UCNv_unt8WPc41OCtc_6gUTA/?sub_confirmation=1 Facebook → https://www.facebook.com/zigsharko.official/ TikTok → https://www.tiktok.com/@zigandsharko_official Instagram → https://www.instagram.com/zigandsharko_official Marina ist eine Meerjungfrau. Ein entzückendes Ding, geradewegs zum Anbeißen. Hyäne Zig meint das leider viel zu wörtlich und wartet jeden Tag auf eine Gelegenheit, Marina in seine Klauen zu bekommen. Ein Leckerbissen, den er sich nicht entgehen lassen will. Und so sitzt Zig tagein, tagaus auf seiner tropischen Insel und hält Ausschau nach Marina. Sein Kumpel, Krabbe Bernie, ist ihm dabei ke...
Vlad spielt einen Superschurken und verhält sich wie ein ungezogenes Kind. Die Mama beschloss, ihm zu erklären, wie Kinder sich nicht benehmen sollten. Jetzt will Vlad ein guter Junge sein. Bitte abonnieren! Unser online-torg https://vladandniki.com/ Google Play-Anwendung: https://play.google.com/store/apps/details?id=me.apptivise.vladnikita App Store-Anwendung: https://apps.apple.com/us/app/vlad-niki/id1497525407 Instagram VLAD - https://www.instagram.com/Vlad.super.Vlad/ NIKITA Instagram - https://www.instagram.com/nikitoys_official/
Semlaki und Billy Verwandeln sich zu SQUID GAME in Minecraft! Merch: https://www.semukri.shop/ 💬 Hier findest du mich: ↪ Insta ► https://www.instagram.com/semlakii/ 🎬 Weitere Minecraft Challenges: #minecraftchallenge #minecraft #gaming ↪ Semlaki und Billy: SQUID GAME Job Überleben Battle in Minecraft! https://youtu.be/Z82oyqlQoTU ↪ Billy GOLEM ARMEE vs SEMLAKI ENDERMAN ARMEE in Minecraft! https://youtu.be/xeL05lD3pD8 ↪ Semlaki ist im Geheimen ein SUPERHELD in Minecraft! https://youtu.be/q-Ot39glbFk Minecraft Bau Challenge, Semlaki und Billy Verwandeln sich zu SQUID GAME in Minecraft! ist eine lustige / funny Minecraft Challenge von Semlak. Viel Spaß mit dem Minecraft Video •Dieses Video dient rein zur Unterhaltung. Aus dramaturgischen Gründen wurden einige Szenen rausgeschnitten• ...
Streaming & Download : https://orcd.co/yoasobi_undead Music : Ayase (https://twitter.com/ayase_0404) Vocal : ikura (https://twitter.com/ikutalilas) Background Chorus English Lyrics:Konnie Aoki Background Chorus : Haley Lewis, Missy Suzki, Leona Ortiz, Dylan Ortiz, Jonas Whitaker 「UNDEAD」原作小説:西尾維新書き下ろし短々編「なでこパスト」「しのぶフューチャー」 https://www.monogatari-series.com/oms/special/novel/ 『〈物語〉シリーズ オフ&モンスターシーズン』主題歌 〈物語〉シリーズ オフ&モンスターシーズン ●配信情報 7月6日より毎週土曜 ABEMAにて配信中 9月29日より各局にて放送開始 『〈物語〉シリーズ オフ&モンスターシーズン』 忍物語PV https://youtu.be/F2ds1V5VeyQ ©西尾維新/講談社・アニプレックス・シャフト -- UNHAPPY? 悩める人の子よ UNLUCKY? 人成らざる者も BE HAPPY! 弛まず目指せよ 生きているんだし 目を逸らした過去も 退屈な未来も カウンセリング やれやれ 古今東西 ピースピース ねえ何だかどうして 戦ってるようなそんな気がするの 触れられない 触れたくもない 過去の自分自分自分自分と もうとっくに死んでる 透明な亡霊と対決 幼気で痛い記憶の奥 残念? もう居ないのに あれ? そっちが良い? アイロニーね 透かされているのは現在の自分?...
Zig und Sharko - toggo von super rtl Programm, Livestream und mehr: https://www.toggo.de/ Klik hier om u te abonneren op Zig und Sharko Channel : https://www.YouTube.com/channel/UCNv_unt8WPc41OCtc_6gUTA/?sub_confirmation=1 Facebook → https://www.facebook.com/zigsharko.official/ TikTok → https://www.tiktok.com/@zigandsharko_official Instagram → https://www.instagram.com/zigandsharko_official Marina ist eine Meerjungfrau. Ein entzückendes Ding, geradewegs zum Anbeißen. Hyäne Zig meint das leider viel zu wörtlich und wartet jeden Tag auf eine Gelegenheit, Marina in seine Klauen zu bekommen. Ein Leckerbissen, den er sich nicht entgehen lassen will. Und so sitzt Zig tagein, tagaus auf seiner tropischen Insel und hält Ausschau nach Marina. Sein Kumpel, Krabbe Bernie, ist ihm dabei ke...
US-Präsident Trump hat in einem Telefonat mit Russlands Präsident Putin vereinbart, „unverzüglich“ über die Zukunft der Ukraine zu verhandeln. Beide hätten sich zu gegenseitig Besuchen eingeladen, heißt es. Der Kreml bestätigte das. Mit der neuen US-Regierung ändert sich vieles, das bekommen jetzt auch die Nato, Europa und die Ukraine zu spüren. Beim ersten Auftritt des neuen US-Verteidigungsministers, Pete Hegseth, in Brüssel ließ dieser wissen: Die USA seien nicht länger bereit für die Sicherheit Europas zu sorgen und zu bezahlen. Mit Blick auf die Ukraine sagte Hegseth: Der Krieg müsse enden, Kiews Forderungen seien aber illusorisch. Dass die Ukraine Nato-Mitglied werde und zu ihren Grenzen von vor 11 Jahren zurückkehre, sei unrealistisch, so der US-Verteidigungsminister weiter. W...
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...
Anne Haigis (born 9 December 1955) is a German musician and singer. Through the 1980s, she gained commercial success with German language songs, but in the 1990s she focused more on English language material.
Tell me you're leaving as you slam the door
You say it's got you beat
I sit and wonder what you waited for
Workink both sides of the street
You've got your alibis I've got mine
We can take easy way out
How can we make it if we both stop trying
That's not what this is all about
And I can't stop you now
You can go where you want to go
Can I find a way to let you know
That it's a beautiful world
A beautiful night
Why don't we take it easy
Why do we have to fight
So lay down here beside me
My beautiful man
Let me make it right now
It's a beautiful world
Now I know there's thinas about me
you can't stand
I hear it often enough
I know it's lonely with a travelling girl
I know it gets pretty rough
But when I'm out there doing my job
Out on the avenue
When you ain'nt there baby something gets lost
I get lonely too
When I roll back home
And you're not there
This is one big empty city
No love left in the air - anywhere
It's a beautiful world
Why don't we take it easy