- published: 26 Dec 2017
- views: 194222659
'+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; })); }); -->
Thus Spoke Zarathustra: A Book for All and None (German: Also sprach Zarathustra: Ein Buch für Alle und Keinen, also translated as Thus Spake Zarathustra) is a philosophical novel by German philosopher Friedrich Nietzsche, composed in four parts between 1883 and 1885 and published between 1883 and 1891. Much of the work deals with ideas such as the "eternal recurrence of the same", the parable on the "death of God", and the "prophecy" of the Übermensch, which were first introduced in The Gay Science.
Thus Spoke Zarathustra was conceived while Nietzsche was writing The Gay Science; he made a small note, reading "6,000 feet beyond man and time," as evidence of this. More specifically, this note related to the concept of the eternal recurrence, which is, by Nietzsche's admission, the central idea of Zarathustra; this idea occurred to him by a "pyramidal block of stone" on the shores of Lake Silvaplana in the Upper Engadine, a high alpine region whose valley floor is at 6,000 feet (1,800 m). Nietzsche planned to write the book in three parts over several years. He wrote that the ideas for Zarathustra first came to him while walking on two roads surrounding Rapallo, according to Elisabeth Förster-Nietzsche in the introduction of Thomas Common's early translation of the book.
André Léon Marie Nicolas Rieu (born 1 October 1949) is a Dutch violinist and conductor best known for creating the waltz-playing Johann Strauss Orchestra. Together they have turned classical and waltz music into a worldwide concert touring act, as successful as some of the biggest global pop and rock music acts. For his work, Rieu has been awarded such honours as the Order of the Netherlands Lion by the Netherlands, the Knight of the Ordre des Arts et des Lettres by France, and the Honorary Medal by his native Province of Limburg.
Rieu began studying violin at the age of five. He created the Maastricht Salon Orchestra in 1978, and went on to create the Johann Strauss Orchestra in 1988.
The name Rieu is of French Huguenot origin. Rieu's father, of the same name, was conductor of the Maastricht Symphony Orchestra. Showing early promise, André began studying violin at the age of five. From a very young age, he developed a fascination with orchestra. He studied violin at the Conservatoire Royal in Liège and at the Conservatorium Maastricht, (1968–1973), studying under Jo Juda and Herman Krebbers. From 1974 to 1977, he attended the Music Academy in Brussels, studying with André Gertler, finally receiving his degree "Premier Prix" from the Royal Conservatory of Brussels.
Zoroaster (/ˌzɒroʊˈæstər/ or /ˈzɒroʊˌæstər/, from Greek Ζωροάστρης Zōroastrēs), also known as Zarathustra (/ˌzɑːrəˈθuːstrə/; Avestan: 𐬰𐬀𐬭𐬀𐬚𐬎𐬱𐬙𐬭𐬀 (Zaraθuštra); Persian: زرتشت Zartosht, زردشت Zardosht), or as Zarathushtra Spitama, was the founder of Zoroastrianism. Though he was a native speaker of Old Avestan and lived in the eastern part of the Iranian Plateau, his birthplace is uncertain. Zoroastrianism was the official religion of Persia and its distant subdivisions from 600 BCE to 650 CE. Zoroaster is often dated to the 10th century BC, though the religion named for him is not attested to historically until the 5th century BC.
He is credited with the authorship of the Yasna Haptanghaiti as well as the Gathas, hymns which are at the liturgical core of Zoroastrian thinking. Most of his life is known through the Zoroastrian texts.
Zoroaster's name in his native language, Avestan, was probably Zaraϑuštra. His English name, "Zoroaster", derives from a later (5th century BCE) Greek transcription, Zōroastrēs (Ζωροάστρης), as used in Xanthus's Lydiaca (Fragment 32) and in Plato's First Alcibiades (122a1). This form appears subsequently in the Latin Zōroastrēs and, in later Greek orthographies, as Zōroastris. The Greek form of the name appears to be based on a phonetic transliteration or semantic substitution of Avestan zaraϑ- with the Greek zōros (literally "undiluted") and the Avestan -uštra with astron ("star").
Zoroaster is a sludge metal band from Atlanta, Georgia formed in 2003. The original line-up was Brent Anderson on bass and vocals with Will Fiore (guitar, vocals) and Todd Fiore (drums), all of whom had previously been members of Terminal Doom Explosion. So far they have released four studio albums, Zoroaster in 2005, Dog Magic in 2007, Voice of Saturn in 2009, and Matador in 2010. They are currently signed to E1 Music.
Zoroaster is the debut album by stoner metal band Acid King. It was released in August 1995 on CD and vinyl through Sympathy for the Record Industry. In 2006 it was combined with the band's debut EP, Acid King, and released as the compilation album The Early Years.
Zoroaster was the last Acid King album to feature their original bassist, Peter Lucas.
All songs written by Lori S., except where noted.
André Rieu & Gheorghe Zamfir performing The Lonely Shepherd live in Romania. For concert dates and tickets visit: http://www.andrerieu.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Subscribe to André Rieu's YouTube channel at: http://smarturl.it/5ubscribe Or follow André Rieu at: http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - © 2017 -- André Rieu Productions | www.andrerieu.com
André Rieu performing Shostakovich' "The Second Waltz" live in Maastricht, The Netherlands. For concert dates and tickets visit: http://www.andrerieu.com http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu
André Rieu's Christmas recording 'Home for Christmas'. For concert dates and tickets visit: http://www.andrerieu.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Subscribe to André Rieu's YouTube channel at: http://smarturl.it/5ubscribe Or follow André Rieu at: https://instagram.com/andrerieu http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - © 2019 -- André Rieu Productions | www.andrerieu.com
André Rieu & His Johann Strauss Orchestra performing Hallelujah as a tribute to Leonard Cohen live in London. Taken from the DVD "Christmas in London". For concert dates and tickets visit: http://www.andrerieu.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Subscribe to André Rieu's YouTube channel at: http://smarturl.it/5ubscribe Or follow André Rieu at: http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - © 2016 -- André Rieu Productions | www.andrerieu.com
André Rieu & Lou Bega performing Mambo No. 5 live in Maastricht. Taken from the DVD Falling In Love. For Tour Dates visit: http://www.andrerieu.com Official Lyrics: Ladies and gentlemen This is Mambo No. 5! One, two, three, four, five Everybody in the car, so come on let's ride To the liquor store around the corner The boys say they want some gin and juice But I really don't wanna Beer bust, like I had last week I must stay deep, 'cause talk is cheap I like Angela, Pamela, Sandra and Rita And as I continue you know they're getting sweeter So what can I do? I really beg you, my Lord To me flirting is just like a sport Anything fly, it's all good let me dump it Please set in the trumpet A little bit of Monica in my life A little bit of Erica by my side A little bit of Rita is all I need...
André Rieu & His Johann Strauss Orchestra performing My Heart Will Go On live in Vienna. Taken from the DVD André Rieu Live at Schönbrunn, Vienna. For concert dates and tickets visit: http://www.andrerieu.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Subscribe to André Rieu's YouTube channel at: http://www.youtube.com/andrerieuTV Or follow André Rieu at: http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - © 2015 -- André Rieu Productions | www.andrerieu.com
André Rieu & his Johann Strauss Orchestra playing "The Beautiful Blue Danube" (An der schönen blauen Donau) by composer Johann Strauss II. Recorded live at Empress Sisi's castle; Schönbrunn Palace Vienna, Austria with dancers from the famous Austrian Elmayer Dancing School. Clip from the DVD "André Rieu At Schönbrunn, Vienna". One of André's biggest and most beautiful special ever. Tracklist: 01. Einzugsmarsch 02. Trumpet Voluntary 03. Auf der Jagd 04. Fächerpolonaise 05. Rosen aus dem Süden 06. Heia in den Bergen 07. G'schichten aus dem Wienerwald 08. Der dritte Mann 09. Freunde, das Leben ist lebenswert 10. Die Mädis vom Chantant 11. Die Czárdásfürstin Potpourri 12. Ohne Sorgen 13. Feuerfest 14. My Heart Will Go On 15. Wenn ich mit meinem Dackel 16. Heut' kommen d'Engerln auf Urlaub na...
André Rieu & The Johann Strauss Orchestra performing "Ballade pour Adeline" live in Vienna. Taken from André Rieu's breathtaking live spectacle on DVD and Blu-ray "André Rieu - And the waltz goes on" featuring Sir. Anthony Hopkins' Waltz. For tour dates visit: http://www.andrerieu.com http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu
Established in 1929, Decca is the legendary British record label, home to some of the greatest recording artists ever. Visit the Decca Store at https://decca.lnk.to/StoreID Join the official mailing list for news and offers in your inbox: https://decca.lnk.to/NewsletterSignUpID André Rieu's Magic Of The Movies is out now.
André Rieu & the Johann Strauss Orchestra performing Ravel's Boléro live in Maastricht. Taken from the DVD/Blu-Ray "André Rieu - Under the Stars - Live in Maastricht 5." For tour dates visit: http://www.andrerieu.com http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu
Listen to André Rieu - Falling In Love here: https://decca.lnk.to/RieuFILID Buy the CD and DVD of André Rieu - Falling In Love here: http://po.st/RieuFILeCVE Music video by André Rieu performing And The Waltz Goes On. (C) 2011 Universal Music Domestic Pop, a division of Universal Music GmbH
Tab For A Cause is quick and easy to use just head to https://tab.gladly.io/cogito/ and start helping charities with the click of a button. Watch this video ad-free over on Nebula: https://nebula.tv/videos/cogito-what-is-zoroastrianism What do Emperor Xerxes, Freddie Mercury, and Ireland’s richest citizen Pallonji Mistry have in common? All of them are Zoroastrians. The ancient religion of Iran. This is one of the oldest ongoing religions and altered the course of history by influencing Judaism, Christanity, Islam, and Greek philosophy. Zoroastrianism was born in ancient Iran at least 3,500 years ago. It all began around 1500BCE give or take a few centuries with the Prophet Zarathustra or Zoroaster as the ancient Greeks called him and so English speakers do too. While we call the relig...
Join us at: http://www.inspiringphilosophy.org To help support this ministry click here: https://www.patreon.com/inspiringphilosophy Was Jesus based on the Iranian prophet Zoroaster? Many on the internet seem to think so, and this video addresses this claim. Sources: The Image of Zoroaster - Jenny Rose The Shaping of Western Civilization - Michael Burger Zoroaster, The Prophet of Ancient Iran - A. V. W. Jackson A History of Zoroastrianism: The Early Period - Mary Boyce The Dawn and Twilight of Zoroastrianism - R.C. Zaehner Zoroastrianism - John Waterhouse *If you are caught excessively commenting, being disrespectful, insulting, or derailing then your comments will be removed. If you do not like it you can watch this video: http://www.youtube.com/watch?v=mn0Hq-... "Copyright ...
Zoroastrianism was ancient when Jesus was born. Its followers believe we are connected to the environment, good and evil exist in all of us, and that God is neither a he nor a she. Subscribe to the God Forbid podcast at http://www.abc.net.au/radionational/programs/godforbid/
I have finally remade one of the earliest videos on this channel - exploring Zoroastrianism in depth in what is the longest video ever on this channel. Dive into the fascinating world of Zoroastrianism, its ancient hsitory and ethical teachings, from its origins with the prophet Zarathushtra through the Achaemenid, Parthian and Sasanian empires and all the way until today. Discover how Zoroastrianism might be one of the most important religions in history, influencing some of the most famous and popular religons and philosophies in the world. Check out my linktree for more: https://linktr.ee/filipholm Support Let's Talk Religion on Patreon: https://www.patreon.com/letstalkreligion Or through a one-time donation: https://paypal.me/talkreligiondonate Also check out the Let's Talk Relig...
Yes, Zoroaster and Islam go together like a horse and carriage. Original video: https://www.youtube.com/watch?v=ZyER_vJUdts&pp=ygUVc2hhYmlyIGFsbHkgem9yb2FzdGVy Join this channel to get access to perks: https://www.youtube.com/channel/UCiyIXknJOnGXmnYB3UrXaHQ/join Critical Islamic law (Sharia) resource: Reliance of the Traveller, with Appendix W - https://www.dropbox.com/s/0f1ga9cvekt18au/Reliance-of-the-Traveller-AppendixW.pdf Full Archive: https://drive.google.com/drive/folders/1BGrC1fxB-ym-ZQ64TtfYEG0vQtYCOIL6?usp=sharing The Hedaya: Commentary on the Islamic Laws - Vol 2 https://archive.org/details/hedaysorguide00hamigoog/page/n6/mode/2up Useful and Related files on Islam https://www.dropbox.com/sh/holn27xssr4m3ww/AACcM8Hzqb9btheDPpyA6C1Qa Please support my work. Contribute via:...
In this video I give a short introduction to the religion Zoroastrianism - possibly the oldest monotheistic religion in the world. Sources/Suggested reading: Boyce, Mary (2000). "Zoroastrians: Their Religious Beliefs and Practices". Routledge. Mehr, Farhang (2003). "The Zoroastrian Tradition". Mazda Publishers, U.S. Boyd, James W. & Donald A. Crosby (1979). "Is Zoroastrianism Dualistic or Monotheistic?". Journal of the American Academy of Religion. Oxford University Press. ----------------------------------------------------------- Links to videos used: Indian Diplomacy: https://www.youtube.com/watch?v=Y0ILoUCbhDg Zoroastrian Religion: https://www.youtube.com/watch?v=atB7i7DnmGU GORDONLAWRENCEVIDEOS: https://www.youtube.com/watch?v=l0w9CkQ_3dE
You may never have heard of it, but you’ve likely been influenced by it. This little-known religion has inspired Voltaire, Nietzsche, and Freddy Mercury. George R.R. Martin based his Game of Thrones character, the Lord of Light on it. Mazda was named after its main god. Judaism, Christianity, and Islam have all been profoundly shaped by it. And yet only a very few people follow it today. We’re talking about Zoroastrianism, arguably the world’s oldest monotheistic religion. But what made it such an influential faith and how did it shape the world? Music by - Serge Quadrado Music https://pixabay.com/music/world-islam-dream-13409/ Read the article here: https://symbolsage.com/zoroastrianism-influence-in-west/ Timecodes: 00:00 - Intro 00:35 - Prophet Zarathustra (Zoroaster) 02:50 - Zoroas...
Patreon: https://www.patreon.com/AmericanEsoteric Venmo: https://venmo.com/u/Collin-Conkwright Instagram: https://www.instagram.com/american.esoteric/ BIBLIOGRAPHY: The Sacred Books of the East, Edited by Max Muller. The Bundahisn, E. W. West, from Sacred Books of the East, volume 5, Oxford University Press, 1897. The Gathas [simplified], translated by Mobed Firouz Azargoshasb, printed by the Council of Iranian Mobeds of North America in March 1988. Isis and Osiris, Plutarch, Loeb Classics In this video I cover Zoroastrian Cosmology as told in the Bundahisn, or 'the Primal Creation,' a sacred Zoroastrian text. Zoroastrianism was the dominant pre-Islamic religion of Ancient Persia. It painted life in the material world entirely in dualistic terms. The teachings of Zarathustra (Zoroas...
Zoroastrianism counts the classical monotheism with Cosmic dualism
Bill Donahue http://www.hiddenmeanings.com Visit the web site to review Bills written work The Play List has all of Bills videos sorted by category
Thus Spoke Zarathustra: A Book for All and None (German: Also sprach Zarathustra: Ein Buch für Alle und Keinen, also translated as Thus Spake Zarathustra) is a philosophical novel by German philosopher Friedrich Nietzsche, composed in four parts between 1883 and 1885 and published between 1883 and 1891. Much of the work deals with ideas such as the "eternal recurrence of the same", the parable on the "death of God", and the "prophecy" of the Übermensch, which were first introduced in The Gay Science.
Thus Spoke Zarathustra was conceived while Nietzsche was writing The Gay Science; he made a small note, reading "6,000 feet beyond man and time," as evidence of this. More specifically, this note related to the concept of the eternal recurrence, which is, by Nietzsche's admission, the central idea of Zarathustra; this idea occurred to him by a "pyramidal block of stone" on the shores of Lake Silvaplana in the Upper Engadine, a high alpine region whose valley floor is at 6,000 feet (1,800 m). Nietzsche planned to write the book in three parts over several years. He wrote that the ideas for Zarathustra first came to him while walking on two roads surrounding Rapallo, according to Elisabeth Förster-Nietzsche in the introduction of Thomas Common's early translation of the book.