- published: 27 Jun 2021
- views: 785452
'+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; })); }); -->
Libya (Arabic: ليبيا Lībiyā) is a country in the Maghreb region of North Africa bordered by the Mediterranean Sea to the north, Egypt to the east, Sudan to the southeast, Chad and Niger to the south, and Algeria and Tunisia to the west. The three traditional parts of the country are Tripolitania, Fezzan and Cyrenaica. With an area of almost 1.8 million square kilometres (700,000 sq mi), Libya is the fourth largest country in Africa, and is the 16th largest country in the world. Libya has the 10th-largest proven oil reserves of any country in the world.
The largest city and capital, Tripoli, is located in western Libya and contains over one million of Libya's six million people. The other large city is Benghazi, which is located in eastern Libya.
Libya has been inhabited by Berbers since the late Bronze Age. The Phoenicians established trading posts in western Libya, and Ancient Greek colonists established city-states in eastern Libya. Libya was variously ruled by Persians, Egyptians and Greeks before becoming a part of the Roman Empire. Libya was an early center of Christianity. After the fall of the Western Roman Empire, the area of Libya was mostly occupied by the Vandals until the 7th century, when invasions brought Islam and Arab colonization. In the sixteenth century, the Spanish Empire and the Knights of St John occupied Tripoli, until Ottoman rule began in 1551. Libya was involved in the Barbary Wars of the 18th and 19th centuries. Ottoman rule continued until the Italian occupation of Libya resulted in the temporary Italian Libya colony from 1911 to 1943. During the Second World War Libya was an important area of warfare in the North African Campaign. The Italian population then went into decline. Libya became an independent kingdom in 1951.
Libya (from Greek: Λιβύη) is the daughter of Epaphus, King of Egypt, in both Greek and Roman mythology. She personified the land of Ancient Libya in North Africa, from which the name of modern-day Libya originated.
In Greek mythology, Libya, like Ethiopia or Scythia was one of the mythic outlands that encircled the familiar Greek world of the Hellenes and their "foreign" neighbors.
Personified as an individual, Libya was the daughter of Epaphus — King of Egypt and the son of Zeus and Io— and Memphis. Libya was ravished by the god Poseidon to whom she bore twin sons, Belus and Agenor. Some sources name a third son, named Lelex.
In Roman mythology, Libya was the daughter of Epaphus, King of Egypt, and his wife Cassiopeia. She married Neptune, a foreigner of much power whose real name is unknown. Libya and Neptune had a son called Busiris, who became a brutal tyrant of Upper Egypt.
The territory that she ruled, Ancient Libya, and the country of modern day Libya are named after her.
The Latin name Libya (from Greek Λιβύη, Libyē) referred to the region west of the Nile Valley, generally corresponding to modern Northwest Africa. Its people were ancestors of the modern Berber people. Berbers occupied the area for thousands of years before the beginning of human records in Ancient Egypt. Climate changes affected the locations of the settlements. More narrowly, Libya could also refer to the country immediately west of Egypt, viz. Marmarica (Libya Inferior) and Cyrenaica (Libya Superior). The Libyan Sea or Mare Libycum was the part of the Mediterranean south of Crete, between Cyrene and Alexandria.
In the Greek period the Berbers were known as Libyans, a Greek term for the inhabitants of northwest Africa. Their lands were called Libya, and extended from modern Morocco to the western borders of Ancient Egypt. Modern Egypt contains the Siwa Oasis, historically part of Libya, where the Berber Siwi language is still spoken.
The name Libya (in use since 1934 for the modern country formerly known as Tripolitania and Barca) was the Latin designation for the region of Northwest Africa, from the Greek (Ancient Greek: Λιβύη Libúē, Λιβύᾱ Libúā, in the Attic and Doric dialects respectively).
A fascinating day exploring Libya. Still can't believe I made it. Thanks to CuriosityStream for sponsoring today’s video. Go to https://curiositystream.thld.co/Indigo and use code INDIGO to save 25% off today, that’s only $14.99 a year. My Instagram: https://www.instagram.com/indigo.traveller/ -My Patreon (A way to support these videos): https://www.patreon.com/indigotraveller -Where I get music for my videos (free 30 day trial): http://share.epidemicsound.com/indigotraveller -Offset your carbon footprint here: https://www.wren.co/join/indigotraveller -My Facebook: https://www.facebook.com/watch/theindigotraveller/ My e-mail: [email protected] Thanks for watching!
লিবিয়া | মুয়াম্মর গাদ্দাফির দেশ নামেই পরিচিত | বিশ্ব প্রান্তরে | Libya | Bishwo Prantore লিবিয়া আফ্রিকা মহাদেশের একটি দেশ। উত্তর আফ্রিকাতে ভূমধ্যসাগরের দক্ষিণ তীরে অবস্থিত একটি মুসলিম রাষ্ট্র। দেশটি আমাদের কাছে মূয়াম্মার গাদ্দাফীর দেশ হিসেবেই বেশি পরিচিত। আজকে আমরা লিবিয়া সম্পর্কে নানা জানা অজানা তথ্যই জানবো। #লিবিয়া #Libya #বিশ্ব_প্রান্তরে Video Background music Credit - Audio Library –––––––––––––––––––––––––––––– Heaven by Alex-Productions https://soundcloud.com/alexproductionsmusic Creative Commons — Attribution 3.0 Unported — CC BY 3.0 Free Download / Stream: https://bit.ly/3OhH7WN Music promoted by Audio Library https://youtu.be/jpkFFr2w4HI –––––––––––––––––––––––––––––– ☢☢☢ এই ভিডিওতে ব্যবহৃত কিছু ছবি প্রকৃত ব্যক্তি - ঘটনা - সময় বা স্থানকে উপস্থাপন করে না; দৃশ্যের শূণ্যতা প...
How Libya Built Rivers in the Sahara Desert. Gaddafi's Unbelievable Africa Megaproject Libya has long struggled with water scarcity, dating back to the early days of the country. This is not surprising given that 90% of Libya's territory is desert and there are no natural rivers. Rainfall is also scarce, with some areas receiving little to no rain for decades. This has led to a concentration of population in the 10% of the country where rainfall and agriculture are possible, hindering development and prosperity. A plan to create man-made rivers, which would become the largest irrigation system in human history. The oil industry became the backbone of the Libyan economy and continues to play a major role to this day. It is thanks to this discovery that Libya was able to emerge as a major p...
✅ SUBSCRIBE for More Travel Videos: http://bit.ly/2hyQnZ1 📝 Get My Top 100 Travel Pics FREE! https://bit.ly/3Fsk0qo I HAVE MADE IT SAFELY TO LIBYA, COUNTRY #184! All of the stress of getting the visa and acting as a business consultant is behind me now, and I have REALLY ENJOYED exploring the capital and biggest city of Tripoli. This city really caught me by surprise! My intention in making this video is to give you a glimpse of the local life and tell you what it's like to visit Libya as a tourist from my perspective. There will be more stories to follow from Libya over the coming days. Thanks for watching, and share if you enjoyed :) Follow @DrewBinsky on IG Stories for behind-the-scenes footage from my Libya trip! https://instagram.com/drewbinsky #travel #africa #adventure ...
#shorts
NEW CHANNEL: https://www.youtube.com/channel/UCBLhW0Fw1Jvw2ysOHRQHnIQ বন্ধুরা আজকে আমরা আফ্রিকা মহাদেশের একটি দেশ লিবিয়া সম্পর্কে জানবো। এইরকম আরো ভিডিও দেখতে আমাদের চ্যানেলটি ঘুরে আসতে পারেনঃ https://www.youtube.com/channel/UClOcsq2eyhAf5tisO0evIdw লিবিয়া আফ্রিকার বৃহত্তম রাষ্ট্রগুলোর একটি। আকারে বিশাল হলেও জনবসতি খুবই কম। দেশের বেশির ভাগ অংশজুড়ে রয়েছে সাহারা মরুভূমি। তবে একসময় আফ্রিকার সবচেয়ে ধনী রাষ্ট্রের তকমা এই লিবিয়ার গায়ে থাকলেও ভয়ঙ্কর আরব বসন্তের মধ্য দিয়ে তা আস্তে আস্তে হারিয়ে গেছে। বর্তমানে যুদ্ধবিগ্রহে অশান্ত উত্তর আফ্রিকার তেলসম্পদে সমৃদ্ধ এই দেশটি। তাহলে বন্ধুরা চলুন, লিবিয়া দেশ সম্পর্কে আরো কিছু জানা-অজানা এবং প্রয়োজনীয় তথ্য জেনে নেওয়া যাক। Follow me for upcoming videos. Facebook: https://www.facebook.com/worldinbengali Twitter: https://twitter.com/bengali_in Google+: h...
The Great Man-Made River (GMMR) is an extraordinary network of pipelines, hailed as the world's largest irrigation project. Stretching across Libya, it channeled fresh water from the ancient Nubian Sandstone Aquifer System to the bustling northern Mediterranean cities, including Tripoli and Benghazi. Covering a remarkable distance of up to 1,600 kilometers, this system supplied 70% of all freshwater used in Libya, transforming the arid landscape and supporting millions. Beneath the desert sands lies the world's most extensive underground pipe and aqueduct network, spanning 2,820 kilometers. With over 1,300 wells, many deeper than 500 meters, the GMMR delivers an astonishing 6.5 million cubic meters of fresh water daily. The late Libyan leader Muammar Gaddafi once proclaimed it the "Eighth...
Pictures Requiring Attribution: لا روسا: https://commons.wikimedia.org/wiki/File:Goat_Nuweibaa_00_(24).jpg Thomas Lessman : https://en.wikipedia.org/wiki/File:Ptolemaic-Empire_200bc.jpg JOEY Libya: https://en.wikipedia.org/wiki/File:Theatre_Leptis_Magna.jpg Rabieah.com: https://commons.wikimedia.org/wiki/File:Alwaleed.png Nanoxyde: https://en.wikipedia.org/wiki/File:Aghlabids_Dynasty_800_-_909_(AD).svg François BERNARDIN: https://en.wikipedia.org/wiki/File:F_57_Aqueduc_Jouy_aux_Arches_Bassin_collecteur.JPG Kabz15: https://en.wikipedia.org/wiki/File:The_Zirid_Dynasty.jpg Gabagool: https://en.wikipedia.org/wiki/File:Hafsid1400.png E-Pics Bildarchiv online: https://commons.wikimedia.org/wiki/File:ETH-BIB-Tripolis,_Hafen_von_Orologio_-Orologgio--Turm-Dia_247-04330.tif ; https://commo...
Libya has built the world’s largest irrigation project. Called the Great Man-Made River, it utilizes over 1,300 wells and 2,800 kilometers of pipe to transport 6.5 million cubic meters of water a day from the Nubian Sandstone Aquifer System in southern Libya to the populous cities in the north, including Tripoli and Benghazi, providing 70% of all freshwater used in Libya. #libya #greatmanmaderiver #irrigation #tripoli #benghazi #megaproject #future #futurology
i Studio Link : https://goo.gl/9W3naQ Travel To Libya | Full History And Documentary About Libya In Urdu & Hindi | لیبیا کی سیر Video URL: https://youtu.be/ioncHIujdwU ############################## Related Video ############################## Travel To Macedonia | Full History And Documentary About Macedonia In Urdu & Hindi | مقدونیہ کی سیر https://youtu.be/4ujOE9AN0fc Travel To Israel | Full History And Documentary About Israel In Urdu & Hindi | اسرائیل کی سیر https://youtu.be/BKyr4CXzC98 Travel To Grenada | Full History And Documentary About Grenada In Urdu & Hindi | گریناڈا کی سیر https://youtu.be/sHtuKw8iuvg Travel To West Indies | Full History And Documentary About West Indies In Urdu & Hindi | ویسٹ انڈیز کی سیر https://youtu.be/c61OnhlWJMk Travel To Jordan | Full History...
This documentary is a People Profiles Production on the life of Muammar Gaddafi. Please subscribe to their channel for more https://www.youtube.com/@PeopleProfiles 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 'TIMELINE' 👉 https://historyhit.com/subscribe You can find more from us on: https://www.facebook.com/timelineWH https://www.tiktok.com/@timelineworldhistory https://www.instagram.com/timelineWH This channel is part of the History Hit Network. Any queries, please contact [email protected]
HELLO MY #NERRORIST & TEAM NESSIE SAYANG! LIKE, SHARE & SUBSCRIBE if you enjoyed the video please! I luh ya, Nessie For partnership, please contact: [email protected] & [email protected] ............................................................................... FOLLOW ME ON TWITTER: twitter.com/nessiejudge INSTAGRAM: @nessiejudge BLOGSPOT: nessiejudge.blogspot.com ASK.FM: Nessie Judge ------------------------------------------------------------------------ Background music : Youtube Creation Tools ------------------------------------------------------------------------ Semua material yang difitur dalam video dimiliki oleh para pemiliknya yang kami hormati. Kami tidak mengklaim video mereka sebagai milik kami. Semua video/foto/silhouette yang digunakan dalam penjela...
No but seriously. Who else wants to play hide and seek in that abandoned town of Ghadames? Tag! you're it. Check out http://www.GeographyNow.com ! You asked for merch so we made it for you! We now have a Public mailbox too! Feel free to send anything via mail! Our public mailbox address is: 1905 N Wilcox ave, # 432 Los Angeles CA, 90068 SUBSCRIBE: http://bit.ly/1Os7W46 BTS info and tidbits? Check out the Facebook fan page: https://www.facebook.com/GeographyNowFanpage/?fref=ts Twitter: https://twitter.com/geographynow Instagram: http://instagram.com/GeographyNow_Official Become a patron! Donate to help pay for production of GN includin Ken's salary. You also get exclusive BTS footage, pics/ and access to other perks! Go to: http://patreon.com/GeographyNow WATCH MORE: Countries...
#ezsu#libyavuongquocgiaucodendatnuochonloan #lichsu Libya - Từ Vương Quốc Giàu Có Đến Đất Nước Hỗn Loạn - Tóm tắt lịch sử thế giới - EZ Sử =============== Cảm ơn các bạn đã xem video! Nếu thấy hay các bạn nhớ ủng hộ kênh bằng cách like, comment và share, đừng quên đăng ký kênh để xem những video hấp dẫn tiếp theo nhé! FanPage: https://www.facebook.com/ezsu.channel/
The legendary king of Libya, Danaus, was famous for his role in founding Argos, a…… Greek mythological figures—Danaus#Danaus #GreekMythology #GreekGods #MythologyExplained #VIS #VISMYTH
Lamia, cursed and transformed, became a haunting serpent-woman of Greek mythology's tragic lore. In Greek mythology, Lamia was the daughter of King Belus of Libya and a lover of Zeus. She bore Zeus several children, but Hera, Zeus's jealous wife, sought revenge by killing them. Driven mad by grief, Lamia was cursed by Hera to devour her own children. Hera also transformed Lamia into a half-woman, half-serpent monster and inflicted her with eternal sleeplessness. To alleviate her suffering, Zeus allowed Lamia to remove her eyes at will and later restored her sight. Consumed by rage and sorrow, Lamia roamed the night, terrorizing mothers and stealing their children, a haunting figure feared in ancient Greek folklore.
The History of North Africa summarized (The Maghreb + Egypt) Documentary The history of Egypt, Libya, Tunisia, Algeria and Morocco explained and summarized, from ancient to present times. #History #NorthAfrica #Epimetheus #Ancienthistory This video is sponsored by my awesome patrons over on Patreon. https://www.patreon.com/Epimetheus1776
Welcome to The Black Gay History Channel!
Blazeey talks about the history & mythology of Atlantis and relations to Egypt Libya Phonecians Greeks and even Americans. #atlantis #posiedon #moors #greeks #plato #ancienthistory #egypt #kemet #moors #aztecs #tenotititlan #mexico #islands
Title Tags Queen Lamia Lamia Greek Mythology Lamia Curse Hera and Lamia Zeus and Lamia Ancient Libya Greek Mythology Stories Lamia the Demon Lamia Transformation Mythological Monsters Hashtags #QueenLamia #GreekMythology #LamiaCurse #HeraAndLamia #ZeusAndLamia #AncientLibya #Mythology #MythologicalMonsters #GreekLegends #LamiaStory Description “Queen Lamia: The Cursed Beauty of Greek Mythology” Explore the tragic tale of Queen Lamia, a beautiful and wise ruler of ancient Libya, whose life took a dark turn due to the jealousy of Hera, the wife of Zeus. Discover how Lamia’s transformation into a monstrous demon, driven by an insatiable thirst for vengeance, became a cautionary tale in Greek mythology. Key Highlights: Lamia’s rise as a beloved queen of Libya The wrath of Hera and the curse...
The haunting tale of The Danaides, The sisters condemned to an eternity of futile labor in Greek mythology. Discover the origins of their curse, the tragic wedding night that sealed their fate, and the deeper lessons this myth imparts about justice, revenge, and redemption! #danaides #greekmythology #ancientgreece 👀 Also check out this video on The Curse of King Midas & His Golden Touch From Greek Mythology 🏛️🏺 Click here to watch the video: ➡️ https://youtu.be/U5AsEeqKX8c 🎬 Share📣, Like 👍, & subscribe ✅. 🎬 📢 Stay connected: Subscribe for weekly mythological insights and historical revelations: https://youtube.com/@HistoryRealm50 Thanks for joining us on the HistoryRealm – where the past comes alive!
Lamia, Libyan queen and a lover of Zeus in Greek mythology. Lamia is a very beautiful monster, half woman and half snake. Before she was cursed with her new monstrous form, she was a strong but relatively innocent woman. Now, he is a bloodthirsty villain who creeps through the darkness of night, looking for children to devour, or walks in beauty by day, looking for a man to make his desserts.
Thanks for watching 🥳. Help us grow by Subscribing ➕ Giving a Like 👍🏼 Dropping a comment 📥 Share 🤝. Tag your friends 🤩 Other social medias- Instagram- TikTok- @godsofmytho Amazigh, and Imazighen in plural, is a word which means “free people” in the Indigenous Tamazight language. The Indigenous land of Imazighen, is a region called Tamazgha, encompassing Morocco, Algeria, Tunisia, Libya, Mauritania, the Canary Islands, and parts of Egypt, Mali, and Niger. Although the majority of texts about this mythology have been lost or altered, the rituals have survived. Chapters 0:00 Introduction 0:41 Ammon 2:24 Antaeus 4:00 Atlas 5:17 Ifri 6:32 Anzar 8:14 Gurzil 9:38 Aicha Kandicha 11:17 Tafukt & Ayyur 13:04 Outro #amazigh #mythology #imazighen #amazighmythology #tamazight #maroc #morocco #aga...
Subscribe to our channel http://bit.ly/AJSubscribe Subscribe to our channel http://bit.ly/AJSubscribe Libya under Muammar Gaddafi was an unfriendly home for the Amazigh people. Under the country's former ruler, restrictions were placed on many tribes using their language or practicing their traditions, in a bid to create a unified Libyan identity. At Al Jazeera English, we focus on people and events that affect people's lives. We bring topics to light that often go under-reported, listening to all sides of the story and giving a 'voice to the voiceless.' Reaching more than 270 million households in over 140 countries across the globe, our viewers trust Al Jazeera English to keep them informed, inspired, and entertained. Our impartial, fact-based reporting wins worldwide praise and res...
Mythical creatures around the world | Part 41 #mythology #mythic #folklore #urbanlegends #mythical Ignore Tags mythology,greek mythology,mythology explained,norse mythology,mythology stories,egyptian mythology,greek mythology explained,norse mythology explained,egyptian mythology stories,extra mythology,jon solo mythology explained,egyptian mythology explained,greek mythology for kids,greek mythology stories,extra credits mythology,norse mythology stories,mythology and fiction explained,odin mythology,yule mythology,hindu mythology,aztec mythology,mythical creatures,scary mythical creatures,top 10 mythical creatures,mythological creatures,real mythical creatures,mythical creatures that existed in real life,creatures,facts about mythical creatures,real mythical creature,mythical,legendar...
The vast desert country veiled from the East by fear, prejudice and misunderstanding. Adams follows in the wheel tracks of Ancient Rome's 'chariots of fire' - the first wheeled vehicles to cross the Sahara and discover a little-known land of exotic brilliance, ancient cities and forbidding deserts. Welcome to The World History Channel. With new uploads every week, we break down the biggest stories that have shaped human history. From the dawn of ancient civilisations up to the modern age, these are the stories from our past that matter the most. The World History Channel is in partnership with the History Hit network.
Sorry this video was rushed, I'm just working on 2 very long videos that will take a long time to make
Let the Ancestors speak ! Music owned and composed by ITS SHOWTIME !
Feel free to donate to my cashapp here https://cash.app/$PharaohMizraim Join my Patreon here https://www.patreon.com/user?u=30297997. In this video I correct the confusion on who was who in ancient North Africa and reveal the TRUTH.
David and Natalie explore the ruins of Tell Basta (site of ancient Bubastis) and San al-Hagar (site of ancient Tanis) to find out answers about the time of the Meshwesh Libyan rulers of Egypt in the mysterious Third Intermediate Period of Egyptian history. Contents 00:00 Intro 00:45 Mansoura to Tell Basta 05:05 Tell Basta (Bubastis) 22:23 Tell Basta to San al-Hagar 23:53 San al-Hagar (Tanis) 37:10 Supper Thank you for watching this episode of the #antiquitiestravelguide. We hope you enjoy it as much as we enjoyed making it. Follow Natalie Hilder on social media: ►TWITTER: https://twitter.com/NatalieHilder ►INSTAGRAM: https://www.instagram.com/nataliehilder/ Looking for a guide in Egypt? Ehab is a great choice! YOUNG TUT TOURS ►EMAIL: [email protected] ►TELEPHONE: +20 114 760 5...
Libya is Africa’s last great unknown. A vast desert country veiled from the West by fear, prejudice and misunderstanding. Once it was home to the richest cities in Africa. The headquarters for the African empires of Rome & Greece. Now it is reviled as “a desert with a dictator in it”. David Adams follows in the wheel tracks of Ancient Rome’s “chariots of fire” - the first wheeled vehicles to explore the Sahara - and discovers a little-known land of exotic brilliance, ancient cities & forbidding deserts. 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. Real History is part of the History Hit Network. Any queries, please con...
Crossroads of Civilizations - Libya Hello, welcome to Opentiera. Today, we are providing a brief yet comprehensive overview of Libya, a North African nation known for its rich history, cultural diversity, and geographical beauty. We touch upon Libya's significance as a major oil producer, highlight key features of its capital, Tripoli, and explore the mix of Berber, Arab, and other ethnic groups that contribute to its cultural richness. The script also mentions Libya's historical sites, including the ancient Roman city of Leptis Magna, and briefly addresses the contemporary challenges the nation has faced. Stay tuned for a concise exploration of Libya's captivating landscapes and cultural heritage. On Opentiera we will talk about Travel destinations, travel guides, and things to do while...
The Captivating History of Libya: Ancient Crossroads to Modern Nation Libya, a country rich in history and culture, has long stood at the crossroads of ancient civilizations, blending influences from Africa, the Middle East, and Europe. From its ancient Greek and Roman roots to its role in the Arab world and its modern-day challenges, Libya's story is one of resilience and transformation. Its diverse heritage and historical landmarks continue to shape the nation, making it an essential destination for history enthusiasts and travelers alike. Key Highlights: Ancient Ruins of Sabratha and Leptis Magna: Explore the stunning Roman ruins that rival those of any other ancient civilization, showcasing Libya's role as a key center in the Mediterranean world. Cyrene: An ancient Greek city that fl...
Libya has been in the midst of a civil war for the past ten years but it is slowly on a path to peace, with the warring parties coming together to form a government. And that fragile peace in a restless Libya, is bringing back a long-lost artform for Black Libyans, whose town was once one of the most violent places in the decade-long war. Adama Munu explains. #AfroLibyans #BlackCulture #AfricanDiaspora - Also available on TRT World - Saudi Arabia is scrubbing passages from its textbooks that have been deemed "anti-Semitic" and "misogynistic." But here's what many people think of the Kingdom's attempt at cleaning up its image 👉http://trt.world/ffr9
All of North Africa had a negroid or black presence, that was evidenced in the genetics of Tunisa, the craniometrics of the levant and northern egypt and now here we present Ancient Libya.
The vast desert country veiled from the East by fear, prejudice and misunderstanding. Adams follows in the wheel tracks of Ancient Rome's 'chariots of fire' - the first wheeled vehicles to cross the Sahara and discover a little-known land of exotic brilliance, ancient cities and forbidding deserts. Subscribe to see more full documentaries every week: https://bit.ly/2lneXNy TRACKS publishes unique, unexpected and untold stories from across the world every week. From Libya: The Ancient Chariots Of Libya with David Adams Facebook: https://www.facebook.com/TRACKSTravelChannel/ Content licensed from David Adams Film to Little Dot Studios. Any queries, please contact us at: [email protected]
Libya (Arabic: ليبيا Lībiyā) is a country in the Maghreb region of North Africa bordered by the Mediterranean Sea to the north, Egypt to the east, Sudan to the southeast, Chad and Niger to the south, and Algeria and Tunisia to the west. The three traditional parts of the country are Tripolitania, Fezzan and Cyrenaica. With an area of almost 1.8 million square kilometres (700,000 sq mi), Libya is the fourth largest country in Africa, and is the 16th largest country in the world. Libya has the 10th-largest proven oil reserves of any country in the world.
The largest city and capital, Tripoli, is located in western Libya and contains over one million of Libya's six million people. The other large city is Benghazi, which is located in eastern Libya.
Libya has been inhabited by Berbers since the late Bronze Age. The Phoenicians established trading posts in western Libya, and Ancient Greek colonists established city-states in eastern Libya. Libya was variously ruled by Persians, Egyptians and Greeks before becoming a part of the Roman Empire. Libya was an early center of Christianity. After the fall of the Western Roman Empire, the area of Libya was mostly occupied by the Vandals until the 7th century, when invasions brought Islam and Arab colonization. In the sixteenth century, the Spanish Empire and the Knights of St John occupied Tripoli, until Ottoman rule began in 1551. Libya was involved in the Barbary Wars of the 18th and 19th centuries. Ottoman rule continued until the Italian occupation of Libya resulted in the temporary Italian Libya colony from 1911 to 1943. During the Second World War Libya was an important area of warfare in the North African Campaign. The Italian population then went into decline. Libya became an independent kingdom in 1951.