- published: 17 Dec 2021
- views: 8514979
'+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; })); }); -->
Pharaoh (/ˈfeɪ.roʊ/, /fɛr.oʊ/ or /fær.oʊ/) is the common title of the Kings of Ancient Egypt until the Macedonian conquest.
The word pharaoh ultimately was derived from a compound word represented as pr-3, written with the two biliteral hieroglyphs pr "house" and ꜥꜣ "column". It was used only in larger phrases such as smr pr-aa 'Courtier of the High House', with specific reference to the buildings of the court or palace. From the twelfth dynasty onward, the word appears in a wish formula 'Great House, may it live, prosper, and be in health', but again only with reference to the royal palace and not the person.
During the reign of Thutmose III (circa 1479–1425 BC) in the New Kingdom, after the foreign rule of the Hyksos during the Second Intermediate Period, pharaoh became the form of address for a person who was king.
The earliest instance where pr-aa is used specifically to address the ruler is in a letter to Amenhotep IV (Akhenaten), who reigned circa 1353–1336 BC, which is addressed to 'Pharaoh, all life, prosperity, and health!. During the eighteenth dynasty (16th to 14th centuries BC) the title pharaoh was employed as a reverential designation of the ruler. About the late twenty-first dynasty (10th century BC), however, instead of being used alone as before, it began to be added to the other titles before the ruler's name, and from the twenty-fifth dynasty (eighth to seventh centuries BC) it was, at least in ordinary usage, the only epithet prefixed to the royal appellative.
Pharaoh (Polish: Faraon) is the fourth and last major novel by the Polish writer Bolesław Prus (1847–1912). Composed over a year's time in 1894–95 and published in 1897, it was the sole historical novel by an author who had earlier disapproved of historical novels on the ground that they inevitably distort history.
Pharaoh has been described by Czesław Miłosz as a "novel on... mechanism[s] of state power and, as such, ... probably unique in world literature of the nineteenth century.... Prus, [in] selecting the reign of 'Pharaoh Ramses XIII' in the eleventh century BCE, sought a perspective that was detached from... pressures of [topicality] and censorship. Through his analysis of the dynamics of an ancient Egyptian society, he... suggest[s] an archetype of the struggle for power that goes on within any state."
Pharaoh is set in the Egypt of 1087–85 BCE as that country experiences internal stresses and external threats that will culminate in the fall of its Twentieth Dynasty and New Kingdom. The young protagonist Ramses learns that those who would challenge the powers that be are vulnerable to co-option, seduction, subornation, defamation, intimidation and assassination. Perhaps the chief lesson, belatedly absorbed by Ramses as pharaoh, is the importance, to power, of knowledge.
In Latter-day Saint theology, Pharaoh is the proper name of the first king of Egypt, as found in the Book of Abraham in the Pearl of Great Price.
Non-Biblical accounts of Abraham's life are replete with stories of his life being in danger. While the story of the Egyptian priest is absent, there are others of Abraham life being sought when he was an infant, of the magicians of the king's court seeking his life, of his life being in danger for preaching against idolatry to Nimrod the king, of his being cast into a fiery furnace and receiving no harm, etc. These stories contain elements common to the Abraham 1 story, including:
Narmer was an ancient Egyptian king of the Early Dynastic Period. Probably the successor to the Protodynastic kings Scorpion and/or Ka, some consider him the unifier of Egypt and founder of the First Dynasty, therefore the first king of a unified Egypt.
The identity of Narmer is the subject of ongoing debate, although mainstream Egyptological consensus identifies Narmer with the First Dynasty pharaoh Menes, who is also credited with the unification of Egypt, as the first pharaoh. This conclusion is based on the Narmer Palette which shows Narmer as the unifier of Egypt and the two necropolis seals from the necropolis of Abydos that show him as the first king of the First Dynasty.
The approximate date of Narmer/Menes is mostly estimated as close to the 31st or 32nd century BCE, although recent Egyptological literature comprises estimates of anywhere between the 34th and the 30th centuries BCE.
The famous Narmer Palette, discovered by James E. Quibell in 1898 in Hierakonpolis, shows Narmer displaying the insignia of both Upper and Lower Egypt, giving rise to the theory that he unified the two kingdoms. Since its discovery, it has been debated whether the Narmer Palette represents a historic event or was purely symbolic. In 1993, however, Günter Dreyer discovered in Abydos a year label of Narmer depicting the same event as that on the Narmer Palette which clearly shows that the Narmer Palette depicts an actual historic event.
LISTEN: https://bfan.link/akid DIRECTED: VISNU DOP: ILUXA100 EXECUTIVE PRODUCER: SNEZHANNA DUBROVSKAYA PRODUCED BY DEAD DYNASTY ARTIST MANAGEMENT: EVGENIA SILANTYEVA, YASYA KALIMULINA, VALENTIN RASSKAZOV, YURI MOLOSTOV MUAH & HAIR: YULIA RASCHETOVA SFX: SHEIN ALEKSANDR, SHELEPOVA ALEKSANDRA, IVANOV ROMAN, BABIVSKIJ ALEXEY CAMERA TECHNIC: KONSTANTIN IVANOV FOCUS-PULLER: BARANOV ARTUR PLAYBACK: ALEKSANDR BARSYUKOV GAFFER: EGOROV ILYA LIGHT TECHNICIAN: VALKAEV SULTAN, FOMIN EVGENIY, KOCHETOV ALEXANDR EDITOR: VISNU COLORIST: LEV SUHININ CAST: 39, DIMA ROUX, MAIB, BRYTE, MUTE, DOMIMATOR, KONOPLEV, DIMAN PSYCHO, VALENTIN RASSKAZOV, IOANN RASSKAZOV, ARTEM SEREGIN, VARVARA LAPTEVA, SAVICKAYA POLINA, MARIYA GODLEVSKAYA, BULACHEVA TATYANA PRODUCER ASSISTANT: NIKITA SVETLOLOBOV SUPPORT: LEV VASIL...
Far in the distance, three colossal shapes tower over the desert horizon… In this episode, we travel to the Nile Valley, and tell the story of one of the most iconic cultures ever produced by humankind – the civilizations of ancient Egypt. I want to show how this series of related cultures grew up in the floodplains of their great river, and built some of the most enduring and recognizable structures in the world. And I want to tell the story of what happened to bring the age of the Pharaohs finally and cataclysmically to an end. SOURCES: https://www.patreon.com/posts/sources-for-18-96846659 ** Fall of Civilizations is now available in book form! ** BUY HERE: https://linktr.ee/fallofcivilizations Credits: Michael Hajiantonis Nick Denton Paul Casselle Alexandra Boulton Tom Marshall-L...
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.
6 октября, Москва: https://bit.ly/2HuQ7sP 13 октября, Санкт-Петербург: https://bit.ly/2vQxbPF PINK PHLOYD MIXTAPE IS OUT NOW: https://pinkphloyd.lnk.to/ddg7gTW AUTUMN TOUR 2017: https://lonelystar.art/ filmed by VISNU / mixed by BRYTE free download: http://bit.ly/29YnUue support: http://apple.co/2adE6TR DEAD DYNASTY: https://twitter.com/DynastyDead http://deaddynastyofficial.tumblr.com/ https://soundcloud.com/coldsiemens https://vk.com/deaddynasty VISNU: https://vk.com/visnuproduct https://vimeo.com/visnu BRYTE: https://vk.com/trillionairexx https://twitter.com/BRYTEDXPE YUNGRUSSIA: https://vk.com/yungrussia https://yungrussia.tumblr.com https://instagram.com/yungrussia_
Thank you for watching! Please subscribe for more and don’t forget to hit the bell icon so you don’t miss our new videos. https://www.youtube.com/@PeopleProfiles?sub_confirmation=1 Watch our videos advert free, listen to podcast episodes, along with much more, please join us via our website. https://www.peopleprofiles.com/join/ You can also watch marathon People Profiles videos on our second channel The People Profiles Extra https://www.youtube.com/@PeopleProfilesExtra Or follow us on Twitter! https://twitter.com/tpprofiles All footage, images and music used in People Profiles Documentaries are sourced from free media websites or are purchased with commercial rights from online media archives. 0:00:00 Khufu 00:53:09 Ramesses II 01:53:05 Akhenaten 02:46:23 Tutankhamun #Biography #Histor...
Are these great Pharaohs and Gods from an extraterrestrial background? See more in this compilation from Ancient Aliens. Watch all new episodes of Ancient Aliens, Fridays at 9/8c, and stay up to date on all of your favorite shows on The HISTORY Channel website at http://history.com/schedule. #AncientAliens Subscribe for more from Ancient Aliens and other great The HISTORY Channel shows: http://histv.co/SubscribeHistoryYT Find out more about the show and watch full episodes on our site: https://histv.co/AncientAliens Check out exclusive The HISTORY Channel content: History Newsletter - https://histv.co/newsletter Website - https://histv.co/History Facebook - https://histv.co/Facebook Twitter - https://histv.co/Twitter "Ancient Aliens" explores the controversial theory that extraterres...
Technology reveals the hidden secrets of Tutankhamun’s treasures, and a team on the search for Tutankhamun’s lost quarry makes a surprising find. Lost Treasures of Egypt | S2, E1 Explore the World with National Geographic subscriptions: http://natgeo.com/ytngmagazine ➡ 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 ➡ Watch more Lost Treasures of Egypt: https://bit.ly/LostTreasuresofEgypt And check out more National Geographic series and specials here: ➡ Disney Plus: https://on.natgeo.com/3q6on5p ➡ Hulu: https://on.natgeo.com/3Qor0Ko ➡ NGTV app: https://www.nationalgeographic.com/tv/ ➡ ABC app: https://abc.com/ Check out Na...
#TheTenCommandments #Moses #Pharaoh
Tags: #pharaohsconcubine #khuccabienvahat #sungphicuapharaoh #manhua #manhuaedit #manhuarecommendation #shortvideo
PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAABEjxmPTM Pharaoh: A Novel of Ancient Egypt Authored by Wilbur Smith Narrated by Mike Grady 0:00 Intro 0:03 0:03 15:09 Outro #wilbursmith #pharaohanovelofancientegypt — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION An epic historical adventure set in Ancient Egypt from the New York Times bestselling legend Stephen King has called the ""best historical novelist."" One of the world’s bestselling authors, Wilbur Smith returns to Ancient Eg...
Today in this video: Pharaoh by Boleslaw Prus. Outside Views Books: 👉On this new channel, we publish videos with book recommendations. But this is not about heavy fare or huge textbooks and brain-knotting papers. From thrillers to science fiction, from crime novels to horror - reading is totally relaxing. There are new books, but also classics, e.g. from the 90s, which he can read again and again with pleasure and which are still available in bookshops. 🖋️Please like and leave a comment. And please subscribe to the channel and also click the bell to get notifications when another video goes online. 🖖And you can easily support our work via Paypal: https://paypal.me/Marc181 And if you have a good reading tip, just write it in the comments below a video. Merch: https://outside-views.m...
Pen it! Publications presents... A powerful fast-paced Egyptian telling that will transport readers into the Golden Age of Africa. The untold story of destiny, triumph and epic battles. The historical rise of the Queen-Pharaoh, "Hatshepsut" and expansionist Warrior-Pharaoh, "Thutmose III," who is also called, "Black Pharaoh." A vision is given to the sorcerer by way of dream, about the coming birth of a child that would become a mighty conqueror of nations, Black Pharaoh. But his birth would be darkened with betrayal, deceit and eminent death to the royal throne. Against all odds, his majesty will rise and face the greatest obstacles that an Egyptian ruler has ever beheld... Purchase the novel here on Amazon: https://www.amazon.com/Black-Pharaoh-Golden-Age-Triumph/dp/1954868812 Websi...
Please visit https://thebookvoice.com/podcasts/1/audiobook/275474 to listen full audiobooks. Title: Pharaoh: A Novel of Ancient Egypt Series: #6 of Ancient Egypt Author: Wilbur Smith Narrator: Mike Grady Format: Unabridged Audiobook Length: 13 hours 50 minutes Release date: October 18, 2016 Ratings: Ratings of Book: 4.36 of Total 14 Ratings of Narrator: 4.8 of Total 5 Genres: Suspense Publisher's Summary: An epic historical adventure set in Ancient Egypt from the New York Times bestselling legend Stephen King has called the ''best historical novelist.'' One of the world’s bestselling authors, Wilbur Smith returns to Ancient Egypt in a breathtaking epic that conjures the magic, mystery, romance, and bloody intrigue of a fascinating lost world. Taita, the Pharaoh’s advisor and hero of Des...
A novel is a powerful mythological story based on the Historical. Please support us via Patreon: https://www.patreon.com/sankofapanafrica?gclid=Cj0KCQiA5OuNBhCRARIsACgaiqU5sify1mNwjEDvc-y1X1be2kOEro_Ndc7-fpRA_Kz87qAf7xUuYCcaAgJQEALw_wcB Buy me a Coffee:https://www.buymeacoffee.com/DrBunmiOyinsan or Join as a YouTube member: https://www.youtube.com/channel/UCqSyyTlZjSXfRC5iO44tcPQ?sub_confirmation=1 Visit our African children's storybook website: https://sankofastorybooks.com/ Visit our Telegram Channel: https://t.me/sankofapanafricanseries You can now listen to our series via podcasts Anchor - https://anchor.fm/sakonfapanafricaseries Spotify - https://open.spotify.com/show/2ZbOTJx2B6E91T8NsV85M7 Breaker - https://www.breaker.audio/sankofa-pan-african-series Google Podcast -https://podcast...
Welcome to International Reading Club with Rutuja. Rutuja Ramteke interviews. Best Selling Author Emmanuel Kulu, Jr. on his New Book, “I, Black Pharaoh Golden Age of Triumph”. Kulu gives a deep dive into the challenges he had to overcome to make this fantastic story come to life. Purchase the 🌟🌟🌟🌟🌟 novel on Amazon here: https://www.amazon.com/gp/product/B0961C52G8?storeType=ebooks International Broadcast Programming (IBP) Media Group: "We are here to change and diversify the narrative of mainstream media. For the People, by the people." Subscribe for more videos like this: https://www.youtube.com/channel/UCiU2BX3npoTg5oHBzkafYVg Facebook: https://www.facebook.com/ibpmediagroup/ Instagram: http://Instagram.com/ibpmediagroup/ Twitter: https://twitter.com/ibpmediagroup/ #ancientegypt #b...
Like Dante’s epic, which begins in the Inferno, John Milton’s grand epic Paradise Lost begins in Hell, a hell however as yet only inhabited by Satan and the rebel angels because the centrepiece of Milton’s account is to recount how mankind lost paradise. ❤️ If you find my channel helpful, become a channel member: www.youtube.com/c/DrScottMasson ❤️ Subscribe to my Substack: https://drscottmasson.substack.com/ ❤️ Support my channel and assist me in providing better content: https://www.paypal.com/donate/?token=FZN9nCjKxWQNUnF_jsASfpjiVyRpj1H_mdGvxmYj9wIO-ZgrxM5vR1V-nTy3kKygP1gh10&fromUL=true&country.x=CA&locale.x=en_US/?token=FZN9nCjKxWQNUnF_jsASfpjiVyRpj1H_mdGvxmYj9wIO-ZgrxM5vR1V-nTy3kKygP1gh10&fromUL=true&country.x=CA&locale.x=en_US
PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAIAWm3gbfM Pharaoh Authored by Wilbur Smith Narrated by Mike Grady 0:00 Intro 0:03 0:03 15:09 Outro #wilbursmith #pharaoh — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION The Worldwide Number One Bestseller Wilbur Smith returns to Ancient Egypt in a captivating new novel that will transport you to extraordinary times. EGYPT IS UNDER ATTACK. Pharaoh Tamose lies mortally wounded. The ancient city of Luxor is surrounded, All seems lost. ...
Pharaoh (/ˈfeɪ.roʊ/, /fɛr.oʊ/ or /fær.oʊ/) is the common title of the Kings of Ancient Egypt until the Macedonian conquest.
The word pharaoh ultimately was derived from a compound word represented as pr-3, written with the two biliteral hieroglyphs pr "house" and ꜥꜣ "column". It was used only in larger phrases such as smr pr-aa 'Courtier of the High House', with specific reference to the buildings of the court or palace. From the twelfth dynasty onward, the word appears in a wish formula 'Great House, may it live, prosper, and be in health', but again only with reference to the royal palace and not the person.
During the reign of Thutmose III (circa 1479–1425 BC) in the New Kingdom, after the foreign rule of the Hyksos during the Second Intermediate Period, pharaoh became the form of address for a person who was king.
The earliest instance where pr-aa is used specifically to address the ruler is in a letter to Amenhotep IV (Akhenaten), who reigned circa 1353–1336 BC, which is addressed to 'Pharaoh, all life, prosperity, and health!. During the eighteenth dynasty (16th to 14th centuries BC) the title pharaoh was employed as a reverential designation of the ruler. About the late twenty-first dynasty (10th century BC), however, instead of being used alone as before, it began to be added to the other titles before the ruler's name, and from the twenty-fifth dynasty (eighth to seventh centuries BC) it was, at least in ordinary usage, the only epithet prefixed to the royal appellative.
Роден съм в черна немотия
тъй както дядо ми и аз!
Баща ми също бе от тия
родените в злощастен час!
Отдавна мъката е с нас
и както моите деди!
В бедняшки гроб ще легна аз!
Над мене няма герб да бди!
Отдавна мъката е с нас!
Родените в злощастен час!