- published: 13 Sep 2023
- views: 61744
'+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; })); }); -->
Nikolaus Harnoncourt (Nikolaus Count de la Fontaine und d'Harnoncourt-Unverzagt, born 6 December 1929) is an Austrian conductor, particularly known for his historically informed performances of music from the Classical era and earlier. Starting out as a classical cellist, he founded his own period instrument ensemble, Concentus Musicus Wien, in the 1950s, and became a pioneer of the Early Music movement. Around 1970, Harnoncourt started to conduct opera and concert performances, soon leading renowned international symphony orchestras, and appearing at leading concert halls, operatic venues and festivals. His repertoire has since widened to include composers of the 19th and 20th centuries. In 2001 and 2003, he conducted the Vienna New Year's Concert. Harnoncourt is also the author of several books, mostly on subjects of performance history and musical aesthetics.
Harnoncourt was born in Berlin, Germany. He was raised in Graz, Austria, and studied music in Vienna. His mother, Ladislaja Gräfin von Meran, Freiin von Brandhoven, was the granddaughter of the Habsburg Archduke Johann, the 13th child of the Emperor Leopold II. He is thus descended from various Holy Roman Emperors and other European royalty. His father, Eberhard de la Fontaine Graf d'Harnoncourt-Unverzagt, was an engineer working in Berlin who had two children from a previous marriage. Two years after Nikolaus's birth, his brother Philipp was born. The family eventually moved to Graz, where Eberhard had obtained a post in the state-government (Landesregierung) of Styria.
Harnoncourt is a surname. Notable people with the surname include:
Faust is the protagonist of a classic German legend. He is a scholar who is highly successful yet dissatisfied with his life, which leads him to make a pact with the Devil, exchanging his soul for unlimited knowledge and worldly pleasures. The Faust legend has been the basis for many literary, artistic, cinematic, and musical works that have reinterpreted it through the ages. "Faust" and the adjective "Faustian" imply a situation in which an ambitious person surrenders moral integrity in order to achieve power and success for a delimited term.
The Faust of early books—as well as the ballads, dramas, movies, and puppet-plays which grew out of them—is irrevocably damned because he prefers human to divine knowledge; "he laid the Holy Scriptures behind the door and under the bench, refused to be called doctor of Theology, but preferred to be styled doctor of Medicine". Plays and comic puppet theatre loosely based on this legend were popular throughout Germany in the 16th century, often reducing Faust and Mephistopheles to figures of vulgar fun. The story was popularised in England by Christopher Marlowe, who gave it a classic treatment in his play, The Tragical History of Doctor Faustus (1604). In Goethe's reworking of the story two hundred years later, Faust becomes a dissatisfied intellectual who yearns for "more than earthly meat and drink" in his life.
Faust is the protagonist of a popular German tale who makes a pact with the Devil; the tale is the basis of many works.
The name may refer to one of these notable works of art based on the tale:
FAUST (Functional AUdio STream) is a domain-specific purely functional programming language for implementing signal processing algorithms in the form of libraries, audio plug-ins, or standalone applications. A FAUST program denotes a signal processor: a mathematical function that is applied to some input signal and then fed out.
The FAUST programming model combines a functional programming approach with a block diagram syntax:
A FAUST program doesn’t describe a sound or a group of sounds, but a signal processor. The program source is organized as a set of definitions with at least the definition of the keyword process
(the equivalent of main
in C):
We all know that Faust made a pact with the devil. But why? And what happened next? Enjoy this fun animated re-telling of the tale which inspired Gounod's masterpiece. Catch INO's production of Faust at the Gaiety Theatre in Dublin from 1-7 October 2023. Beautifully animated by Holly Keating, with witty script by Arthur Riordan. Voice-over by Eoin Conway, Arthur Riordan and Sarah Thursfield.
🟢Get the Literary Companion for this book and save time while learning quickly! The literary companion includes: A plot chart dissecting the story into five acts (Exposition, Rising Action, Climax, Falling Action, and Resolution) A written summary covering the entire plot and every major event in the story An analysis of the story. 🟢 📖 Visit 👉 https://online.fliphtml5.com/yzufd/cyph/ -------------------------------------- By the end of this episode, you will learn everything about Johan Wolfgang Von Goethe’s famous play, Faust. Faust is considered to be the best work of German literature and Goethe’s most impressive composition. It is entirely in rhymed verse, and through the years, it has been performed on countless occasions both internationally and in Germany. Faust was first compose...
Provided to YouTube by Stem Disintermedia Inc. Faust · Mick Gordon LawBreakers (Original Game Soundtrack) ℗ 2018 Boss Key Productions, Inc Released on: 2017-08-08 Auto-generated by YouTube.
A successful scholar is starting to get impatient with the religious limitations imposed on scientific knowledge and is just about ready to sell his soul to the devil for some real enlightenment for a change. See the film at this years Toronto International Film Festival.
Download / Listen: https://Argy.lnk.to/NewWorld Seasoned musical maestro Argy unleashes his long-player, New World. Argy’s varied back catalogue showcases his versatility and deep knowledge of electronic music. An experienced producer and DJ, he channels a lifetime of skill and natural talent into his LP New World. Across 14 tracks, we enter ‘Dreamstates’, utilising ‘Mental Powers’ to explore the ‘Wilderness’ and connect with a ‘Higher Power’. Rooted in an underground sound with an array of impassioned vocals, highly emotive arrangement and potent rhythms, the album demonstrates Argy’s artistic maturity. Join him as he leads us on a voyage into a New World…
Embark upon a wondrous odyssey that delves into the labyrinthine recesses of the human psyche, for we shall unveil the profound mysteries concealed within "The Psychological Odyssey of Faust." Prepare to be enthralled as we traverse the realms of consciousness, exploring the enigmatic depths of this timeless tale. Step into the mystical world of medieval Germany, where an age-old legend of Faust, the seeker of boundless knowledge and worldly pleasures, awaits. 📚✨ Join us on an extraordinary YouTube exploration as we embark on a profound academic analysis of "Faust" that goes beyond the surface of folklore. Through the masterful pen of Johann Wolfgang von Goethe, the Faustian legend transcends time to become an enduring literary masterpiece. But what lies beneath this intriguing tale of h...
God and Satan war over earth; to settle things, they wager on the soul of Faust, a learned and prayerful alchemist.
Taken from episodes 41 & 42 of The Nietzsche Podcast. Support the show on Patreon: www.patreon.com/untimelyreflections Goethe is perhaps the most widely-celebrated author of German literature, and Faust is his most famous tale. While the historical Doctor Faustus had always been portrayed as an essentially evil man, who sold his soul to the devil in exchange for greater power, Goethe reinterpreted the story into a wager between Faust and Mephistopheles, and set it against the backdrop of a metaphysical wager between God and Satan. Faust, as protagonist, stands not for evil, but for the spirit of ceaseless striving. Having mastered all the faculties of the university, and attained the zenith of knowledge available to mankind, Faust feels his lifelong quest has been for naught. He declare...
Am 04.01.2025 gegen 18:45 Uhr wurde die Polizei Bonn zu einer Bedrohung zur Pariser Straße alarmiert. Die angetroffene Person wurde von einer Person mit der Faust gegen den Kopf geschlagen. Es wurde eine Anzeige wegen Körperverletzung und Bedrohung geschrieben. Eine Nahbereichsfahndung blieb negativ. Kanalmitglied werden und exklusive Vorteile erhalten: https://www.youtube.com/channel/UCdQO07TAiovFOgBtgMfWeCQ/join Natürlich wäre es auch super, wenn ihr mir einmalig einen Betrag spendet, damit ich auch weiterhin neutral Videos für euch produzieren kann. Nutzt dafür bitte diese IBAN: DE833706059000037235 69 Ihr könnt auch den Link https://patreon.com/einsatzfahrtenundso?utm_medium=clipboard_copy&utm_source=copyLink&utm_campaign=creatorshare_creator&utm_content=join_link Hier der Link zu m...
„Welch Schauspiel! aber ach! ein Schauspiel nur!“ - Ja, dieses Drama haben Sie bei SOMMERS WELTLITERATUR schon mal gesehen, aber nach fünf Jahren wird es Zeit für eine renovierte Fassung von FAUST - DER TRAGÖDIE ERSTER TEIL von Johann Wolfgang von Goethe. Die Inhaltsangabe dauert elfeinhalb Minuten, danach folgt eine kleine Einordnung mit Kommentar in Form von #MeinSenf Im Prolog im Himmel schließen Gott der Herr und Mephistopheles (ein Teufel) eine Wette darüber ab, ob dieser den Gelehrten Heinrich Faust verführen kann. Auf Erden leidet Faust gerade unter einer Sinnkrise, er hat das Gefühl, die Wissenschaft bringt ihn nicht mehr weiter. Deshalb versucht er es mit einer Geisterbeschwörung, scheitert aber auch hier und will sich töten, wovon ihn jedoch die Glocken der Osternacht abbringen...
Nikolaus Harnoncourt (Nikolaus Count de la Fontaine und d'Harnoncourt-Unverzagt, born 6 December 1929) is an Austrian conductor, particularly known for his historically informed performances of music from the Classical era and earlier. Starting out as a classical cellist, he founded his own period instrument ensemble, Concentus Musicus Wien, in the 1950s, and became a pioneer of the Early Music movement. Around 1970, Harnoncourt started to conduct opera and concert performances, soon leading renowned international symphony orchestras, and appearing at leading concert halls, operatic venues and festivals. His repertoire has since widened to include composers of the 19th and 20th centuries. In 2001 and 2003, he conducted the Vienna New Year's Concert. Harnoncourt is also the author of several books, mostly on subjects of performance history and musical aesthetics.
Harnoncourt was born in Berlin, Germany. He was raised in Graz, Austria, and studied music in Vienna. His mother, Ladislaja Gräfin von Meran, Freiin von Brandhoven, was the granddaughter of the Habsburg Archduke Johann, the 13th child of the Emperor Leopold II. He is thus descended from various Holy Roman Emperors and other European royalty. His father, Eberhard de la Fontaine Graf d'Harnoncourt-Unverzagt, was an engineer working in Berlin who had two children from a previous marriage. Two years after Nikolaus's birth, his brother Philipp was born. The family eventually moved to Graz, where Eberhard had obtained a post in the state-government (Landesregierung) of Styria.