- published: 30 Jul 2024
- views: 347101
'+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; })); }); -->
The Egyptian (Sinuhe egyptiläinen, Sinuhe the Egyptian) is a historical novel by Mika Waltari. It was first published in Finnish in 1945, and in an abridged English translation by Naomi Walford in 1949, apparently from Swedish rather than Finnish. So far, it is the only Finnish novel to be adapted into a Hollywood film, which it was, in 1954.
The Egyptian is the first and the most successful, of Waltari's great historical novels. It is set in Ancient Egypt, mostly during the reign of Pharaoh Akhenaten of the 18th Dynasty, whom some have claimed to be the first monotheistic ruler in the world.
The protagonist of the novel is the fictional character Sinuhe, the royal physician, who tells the story in exile after Akhenaten's fall and death. Apart from incidents in Egypt, the novel charts Sinuhe's travels in then Egyptian-dominated Syria (Levant), in Mitanni, Babylon, Minoan Crete, and among the Hittites.
The main character of the novel is named after a character in an ancient Egyptian text commonly known as The Story of Sinuhe. The original story dates to a time long before that of Akhenaten: texts are known from as early as the 12th dynasty.
The Egyptian is an American 1954 epic drama film made by 20th Century Fox. Filmed in CinemaScope with color by DeLuxe, it was directed by Michael Curtiz and produced by Darryl F. Zanuck. It is based on Mika Waltari's novel of the same name and the screenplay was adapted by Philip Dunne and Casey Robinson. Leading roles were played by Edmund Purdom, Jean Simmons, Victor Mature, Gene Tierney, Peter Ustinov and Michael Wilding. Cinematographer Leon Shamroy was nominated for an Academy Award in 1955.
The Egyptian tells the story of Sinuhe (Edmund Purdom), a struggling physician in 18th dynasty Egypt (14th Century BC.) who is thrown by chance into contact with the pharaoh Akhnaton (Michael Wilding). He rises to and falls from great prosperity, wanders the world, and becomes increasingly drawn towards a new religion spreading throughout Egypt. His companions throughout are his lover, a shy tavern maid named Merit (Jean Simmons), and his corrupt but likable servant, Kaptah (Peter Ustinov).
A creation myth is a symbolic narrative of how the world began and how people first came to inhabit it. While in popular usage the term myth often refers to false or fanciful stories, formally, it does not imply falsehood. Cultures generally regard their creation myths as true. In the society in which it is told, a creation myth is usually regarded as conveying profound truths, metaphorically, symbolically and sometimes in a historical or literal sense. They are commonly, although not always, considered cosmogonical myths—that is, they describe the ordering of the cosmos from a state of chaos or amorphousness.
Creation myths often share a number of features. They often are considered sacred accounts and can be found in nearly all known religious traditions. They are all stories with a plot and characters who are either deities, human-like figures, or animals, who often speak and transform easily. They are often set in a dim and nonspecific past that historian of religion Mircea Eliade termed in illo tempore ("at that time"). Creation myths address questions deeply meaningful to the society that shares them, revealing their central worldview and the framework for the self-identity of the culture and individual in a universal context.
Ancient Egyptian creation myths are the ancient Egyptian accounts of the creation of the world. The Pyramid Texts, tomb wall decorations and writings, dating back to the Old Kingdom (2780 – 2250 B.C.E) have given us most of our information regarding early Egyptian creation myths. These myths also form the earliest religious compilations in the world. The ancient Egyptians had many creator gods and associated legends. Thus the world or more specifically Egypt was created in diverse ways according to different parts of the country.
In all of these myths, the world was said to have emerged from an infinite, lifeless sea when the sun rose for the first time, in a distant period known as zp tpj (sometimes transcribed as Zep Tepi), "the first occasion". Different myths attributed the creation to different gods: the set of eight primordial deities called the Ogdoad, the self-engendered god Atum and his offspring, the contemplative deity Ptah, and the mysterious, transcendent god Amun. While these differing cosmogonies competed to some extent, in other ways they were complementary, as different aspects of the Egyptian understanding of creation.
Egyptian Researchers Discovered An Ancient Tunnel Revealing The Lost Tomb Of Cleopatra Subscribe To Life's Biggest Questions: http://bit.ly/2evqECe Descend into the depths of ancient Egypt as archaeologists uncover the legendary tomb of Cleopatra VII! This video explores a groundbreaking discovery: an intricate tunnel beneath the Taposiris Magna Temple, potentially leading to the final resting place of the iconic queen and Mark Antony. Delve into the temple's history and significance, the tunnel's unique features, and the ongoing search for Cleopatra's tomb. What secrets could this discovery unlock about ancient Egypt? #knowledge #science #facts #history #mystery #hidden #cleopatra #egypt #discovery #grahamhancock #pyramid #lbq #lifesbiggestquestions For business inquiries, please conta...
The Egyptian is a 1954 American epic drama film made by 20th Century Fox. Filmed in CinemaScope with color by DeLuxe, it was directed by Michael Curtiz and produced by Darryl F. Zanuck. It is based on Mika Waltari's 1945 novel of the same name and the screenplay was adapted by Philip Dunne and Casey Robinson. Leading roles were played by Edmund Purdom, Bella Darvi, Jean Simmons, Victor Mature, Gene Tierney, Peter Ustinov, and Michael Wilding. Cinematographer Leon Shamroy was nominated for an Oscar in 1955. Sinuhe (Edmund Purdom), a struggling physician in 18th dynasty Egypt (14th Century BC), is thrown by chance into contact with the pharaoh Akhnaton (Michael Wilding). He rises to and falls from great prosperity, wanders the world, and becomes increasingly drawn towards a new religion spr...
Using the latest technology and research, a missing ancient wonder and once fabled city of the early Egyptian world are discovered beneath the Nile. ➡ Subscribe: http://bit.ly/NatGeoSubscribe ➡ Get more Nat Geo Full Episodes: https://youtube.com/playlist?list=PLivjPDlt6ApSiD2mk9Ngp-5dZ9CDDn72O ➡ Get more Nat Geo Wild Full Episodes: https://youtu.be/qAG2SkTPltw And check out more National Geographic series and specials here: ➡ Disney Plus: https://on.natgeo.com/3q6on5p ➡ Hulu: https://www.hulu.com/welcome ➡ NGTV app: https://www.nationalgeographic.com/tv/ ➡ ABC app: https://abc.com/ #FullEpisode #DrainTheOceans #NationalGeographic Get More National Geographic: Official Site: http://bit.ly/NatGeoOfficialSite Facebook: http://bit.ly/FBNatGeo Twitter: http://bit.ly/NatGeoTwitter Instagram:...
Tuesday's best and worst from the Paris Olympics. Simone Biles' redemption, Nada Hafez reaches round of 16 seven months pregnant, while a kayak coach gets arrested after getting into police brawl over public urination. READ MORE : https://www.euronews.com/2024/07/31/paris-olympics-egyptian-fencer-reveals-she-competed-while-being-seven-months-pregnant Subscribe to our channel: https://www.youtube.com/c/euronews?sub_confirmation=1 Watch our LIVE here: https://www.youtube.com/c/euronews/live Subscribe to our thematic channels: NoComment: https://www.youtube.com/c/nocommenttv?sub_confirmation=1 Euronews Green: http://bit.ly/2sMsaDB Euronews Next: https://www.youtube.com/c/EuronewsNext?sub_confirmation=1 Euronews Travel: https://www.youtube.com/c/EuronewsTravel?sub_confirmation=1 Euronews i...
Egyptian Pharaohs were worshiped like they were gods walking the Earth, but what was an average day like for a Pharaoh? Check out today's epic new video that looks back into ancient history to find out how insane the Egyptian royals lived. 🔔 SUBSCRIBE TO THE INFOGRAPHICS SHOW ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES TikTok ► https://www.tiktok.com/@theinfographicsshow Discord ► https://discord.gg/theinfoshow Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 Find more interesting stuff on: https://www.theinfographicsshow.com 📝 SOURCES:https://pastebin.com/EiP42fZZ All videos are based on publicly available information unless otherwise noted.
Cairo, 1920, an archaeologist is about to discover the secret of the Egyptian Pyramids... Directed by : Corentin Charron, Lise Corriol, Olivier Lafay, Nicolas Mrikhi Music by : Kalina Świątnicka http://www.onectin.fr http://www.nicojak.com http://www.lafayolivier.com http://lisecorriol.wix.com/lise We are the original creators of this film. Made in Supinfocom Arles (MOPA) for the MuCEM museum in 2013.
A scene from the underrated 20th Century Fox epic film "The Egyptian" (1954), directed by Michael Curtiz, produced by Darryl F. Zanuck and music by Bernard Herrmann and Alfred Nyman. The movie is based on a classic historical novel "Sinuhe egyptiläinen" by Finnish writer Mika Waltari. The book is so grand that hopes for the film were perhaps too high, so the film got bad reviews. But when you look at it with fresh eyes now, it really is an enjoyable movie. Starring: Sinuhe: Edmund Burdom Horemheb: Victor Mature Kaptah: Peter Ustinov Pharaoh Akhenaten: Michael Wilding Merit: Jean Simmons
Official Video for "Walk Like an Egyptian” by The Bangles Listen to The Bangles: https://TheBangles.lnk.to/listenYD Watch more videos by The Bangles: https://TheBangles.lnk.to/listenYD/youtube Subscribe to the official The Bangles YouTube channel: https://TheBangles.lnk.to/_subscribeYD Follow The Bangles Facebook: https://TheBangles.lnk.to/followFI Instagram: https://TheBangles.lnk.to/followII Website: https://TheBangles.lnk.to/followWI Spotify: https://TheBangles.lnk.to/followSI YouTube: https://TheBangles.lnk.to/_subscribeYD Ask your voice device to play The Bangles! Lyrics: Foreign types with the hookah pipes say (Way-oh-way-oh, ooh-way-oh-way-oh) Walk like an Egyptian #TheBangles #WalkLikeanEgyptian #OfficialVideo
The ancient Egyptians prospered for 3000 years in a society that was far ahead of most of the ancient world. Their rich culture and complex society can be directly traced back to one key feature of the Egyptian landscape: The River Nile. From the ancient civilizations of years past to the dawn of the Space Race, every week we'll be bringing you award-winning documentaries featuring some of the world's best historians. Subscribe so you don't miss out. Discover the past on History Hit with ad-free exclusive podcasts and documentaries released weekly presented by world renowned historians Dan Snow, Suzannah Lipscomb, Matt Lewis and more. Get 50% off your first 3 months with code REALHISTORY 👉 https://historyhit.com/subscribe Real History is part of the History Hit Network. Any queries, ...
Today on Crash Course Mythology we’re starting in on creation stories. This week, we’ll focus on the creation of the universe out of nothing, or Ex Nihlio creation. Basically, a god decides to make a universe out of nothing. We’ll look at the Genesis story (which has nothing to do with Peter Gabriel or Phil Collins), a Mayan creation tale, a Kono story of the beginning, and we’ll even look at the Big Bang. Sources: The Oxford Companion to World Mythology by David Leeming - https://www.amazon.com/Oxford-Companion-World-Mythology-Leeming/dp/0195387082 The Theogony of Hesiod translated by Hugh G. Evelyn-White - http://www.sacred-texts.com/cla/hesiod/theogony.htm In the Beginning: Creation Stories from Around the World by Virginia Hamilton and Barry Moser - https://www.amazon.com/Beginning...
Do you know all the creation stories from around the world? The story of creation is made of a patchwork of myths and god stories from every culture, this is not just the story of genesis. These elaborate stories of how the world began will make you think about god, creation, and the holy creation of the human race. We are lucky enough to have these creation stories from around the world to share with you. These god stories for kids and adults will have you mesmerized with the elaborate details from many different cultures. Without further ado, here are 25 Creation Stories from Around the World. If you are unfamiliar with stories of creation from the farthest reaches of the globe you are missing out. From marvelous creation gods to powerful animals that led creation these god stories wil...
The Egyptian story of creation from the Big Myth collection. See all 25 of creation stories from different parts of the world in English, German and Dutch on www.bigmyth.com.
Big thanks to patreon pledger Allen W. Barton for requesting this subject! We've spent enough time dabbling in the greek mythosphere, I think it's high time we went back to the past and finally looked at how it all began… PATREON: www.patreon.com/user?u=4664797 MERCH LINKS: Shirts - https://overlysarcasticproducts.threadless.com/designs All the other stuff - http://www.cafepress.com/OverlySarcasticProducts Find us on Twitter @OSPYouTube!
Today we explore the creation myth of Greek Mythology. How Gaia and the other Primordial Gods and Goddesses came to be. How the Earth, the Sky, and the Ocean were formed. Come discover the story that lead to amazing characters, epic adventures, ferocious creatures and incredible legends. Hope you enjoy! Hit the like button and subscribe to the channel if you want to see future videos about mythology, fairytales, and legends. Just a reminder that Greek Mythology has many different versions when it comes to certain myths. For this video I decided on telling my favorite version of this myth with a little addition of my own flare to add depth. Images: https://www.deviantart.com/irenhorrors/art/Nyx-714702956 Music: BEFORE DAWN by Audionautix is licensed under a Creative Commons Attribution...
The creation myth for Dark Souls 1 borrows from many real-world traditions. By understanding what those traditions are, it informs our understanding of how the world of Dark Souls functions. In this video, I will present somethings that I believe are definitive inspirations for Dark Souls, as well as some speculations. The FromSoftware games are an interweaving and reinterpretation of all the great religions of the world. I think if we understand what religions/myths/stories influenced which characters, locations, and stories... we can unlock the hidden secrets of the Dark Souls universe. Here's my first offering. Special thanks to Eliza for the work she did on the thumbnail. Please check out her awesome work here: https://www.artstation.com/elizakormendi SubscribeStar: https://www.subs...
Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundle ebook covering Greek, Norse, and Egyptian mythology here: http://www.captivatinghistory.com/ebook This video on Chinese mythology explains the Chinese creation myth starting from the first god Pangu. In this video, many creation myths have been fused, when often Pangu would be its own answer to the “Creation” question, and Nüwa would be another. With the creation of the humans, the brother and sister myth often does not co-exist with Nüwa, and in some versions, they simply do one test and everything works out. Another version, not included here, has a giant snake give birth to all animals and then finally humans. This said, creation myths are not a dominating aspect of Chinese Mythology and there ...
Whats happening, ApectHistory friends. Brand new series on Ancient Egyptian myths starting today. In this episode, we go over one interpretation of the Ancient Egyptian creation myth. We cover the creation of the universe down to the births of Anubis and Horus. The video today is voiced over for the first time by Sterkkona (she played Francesca Da Rimini in Dante's Inferno, if you go that far back with us). Let us know in the comments what you thought! Also today is the start of our new caption competition, stick around until the end to see the image we want you to caption. Subscribe to us, put your caption in the comments below and you may well be in for some free holiday stuff! MUSICAL CREDITS ************************************************* "Nightdreams" Kevin MacLeod (incompetech...
The Egyptian (Sinuhe egyptiläinen, Sinuhe the Egyptian) is a historical novel by Mika Waltari. It was first published in Finnish in 1945, and in an abridged English translation by Naomi Walford in 1949, apparently from Swedish rather than Finnish. So far, it is the only Finnish novel to be adapted into a Hollywood film, which it was, in 1954.
The Egyptian is the first and the most successful, of Waltari's great historical novels. It is set in Ancient Egypt, mostly during the reign of Pharaoh Akhenaten of the 18th Dynasty, whom some have claimed to be the first monotheistic ruler in the world.
The protagonist of the novel is the fictional character Sinuhe, the royal physician, who tells the story in exile after Akhenaten's fall and death. Apart from incidents in Egypt, the novel charts Sinuhe's travels in then Egyptian-dominated Syria (Levant), in Mitanni, Babylon, Minoan Crete, and among the Hittites.
The main character of the novel is named after a character in an ancient Egyptian text commonly known as The Story of Sinuhe. The original story dates to a time long before that of Akhenaten: texts are known from as early as the 12th dynasty.
[Intro]
[Verse 1:]
Cocaine Cowboys, Heroin Indians
Drug dealer fly, which car to put the Fendi in
I'm in a condo on a Louie couch
New York fly nigga, California gooey out
Mobster, know I got the tooly out
Cops come, you don't even put the doobie out
From the block, them niggas will make a movie out
Everybody fly like they got gear from groovy house
G'd up, know what you out for
I get high riding out to the Outlawz
Broke right hand, load the southpaw
Get off the turnpike, different route ya
How I know they sent a different scout ya
Trying to figure out, how the cat got the mouse ya
Trying to figure out, how the dog got the cat ya
From the hood where they let it go blat! ya
Weird science, simple math
Take a cab wherever you got the rental at
Check the spot wherever the connect sent you at
Check the creditor, homie that fucking lent you that
Word!
[Verse 2:]
Smoke break, at the table bagging up snowflakes
9 mil at my waist, but I don't feel so safe
Cause a lot of niggas is ghostface
I mean two face, bitches get yo'food laced
I don't stay in the spot unless the mood straight
I rather be mad high in my new place
Rather be mad high in my old place
Wondering if the pearly gates is white like Colgate
A lot of dollar bills, can't fold straight
Cause the knot thick, told you that the plots thick
You in the way, you gon' hear the Glock click
God bless this ignorant and obnoxious
[Verse 3:]
European American, V's with the smoke tints
Ten rack, black label suit with the smoke scent
Meet the connect by the ocean
I do my deals on the beach
Up to my neck in the water, and it ain't sweet
Cause trust is an issue
The ice pick tip with the rust gon' hit you
It cut through your tissue
Cause you could go to jail, niggas'll act like they
miss you
It's only when they see you, when you gone they forget
I fell in love with the money, and lust with the pistol
Always hated the cops, they fuck when they get you
I still "Kill Bill" I'll, monster from "300"
Talking money to G's want it
We roll up then we load up
It's a cocaine deal or a hold up?
I could care less about the set that you throws up
[Verse 4:]
Came from nothing, used to have nothing
Now I'm somebody and I got a lil something
Rich nigga, Ritz nigga
You don't know this nigga
I don't like snakes, I'll kill it if it hiss nigga
Rat nigga, snitch nigga
Rap nigga, fuck 'em all
My posse over there tell your girl to go suck em off
They say I'm underated, I just be getting faded
Cause niggas'll have your name all on the affidavit
I find it fascinating
I know how to kill em all, holiday'll kill em off
When ghost procrastinating
You could see the holy ghost
I stretch your flat
And leave some herb in your pocket
You could call that the holy smoke
We ain't cut from the same cloth
I'm the boss, we couldn't work for the same boss
Point blank nigga, I would shoot your brains off
In the spot, the manteca and the cane soft
But you know that the bass hard
Dealer death and there ain't no safe card
That's Alchemist, this is Alchemy
Sniper on the balcony, higher then the Falcon be
It's a pack of wolves and you know I'm where the alpha
Guns go north, but the drugs go south for me
If anybody is out for me
Better go the fuck in, cause I'm gonna go the fuck in
New York fly, California high
Miami hustle when I get up on a pie
Down south lean, midwest bounce