'+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; })); }); -->

Podcasts:

  • The Lost City Of Knowledge: What Life Was Like In Ancient Alexandria | Metropolis | Timeline

    Alexandria, a royal Greek city in the land of the Pharaohs. Along the sandy banks of the Nile delta on the African Mediterranean coast, the most powerful metropolis of its time rose from virtually nothing. The Hellenistic culture mingled with the legacy of the Pharaohs and bore the fruits of a glorious new heritage. 📺 It's like Netflix for history... Sign up to History Hit, the world's best history documentary service and get 50% off using the code 'TIMELINE' http://bit.ly/3a7ambu 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 owned-enquiries@littledotstudios.com

    published: 18 Oct 2022
  • What Really Happened To Ancient Alexandria?

    The story of a city founded out of the desert by Alexander the Great in 331 BC to become the world's first global centre of culture, into which wealth and knowledge poured from across the world. Odyssey is your journey into the world of Ancient History; from the dawn of Mesopotamia to the fall of Rome. We'll be bringing you only the best documentaries that journey into the mysteries and ruins of worlds long lost. Subsribe so you don't miss out! It's like Netflix for History: the world's finest documentary streaming service -- use the code 'Odyssey' to get 50% off your History Hit subscription! 👉 https://bit.ly/3cX9hGo Follow us on Facebook: https://www.facebook.com/OdysseyAncientHistory Odyssey is part of the History Hit Network. For any queries, please contact owned-enquiries@little...

    published: 29 Jan 2021
  • 13 BEST Things to do in Alexandria, Egypt | Travel Guide

    How to find cheap flights and travel more: https://travelforalmostfree.com/ref=beforeyougo2 // Here are the best things to do in Alexandria. ------------------- Recommended Tours in Alexandria: Alexandria Full Day Tour: https://www.viator.com/tours/Alexandria/Archaeological-and-Real-life-guided-Tours/d4376-169242P1?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-alexandria-desc Mirette Tour in Alexandria from Alexandria hotels and Alexandria Port: https://www.viator.com/tours/Alexandria/Mirette-Tour-in-Alexandria-from-alexandria-hotels/d4376-118258P5?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-alexandria-desc ------------------- Welcome to our video on the top things to do in Alexandria, Egypt's second-largest city and a historic ce...

    published: 11 May 2023
  • Egyptian Street Food - 24 HOURS in Alexandria, Egypt!!

    🇪🇬 Watch More Egyptian Food: https://www.youtube.com/watch?v=H_TK4ObpQnA&list=PL5E204DE4DEF02AD7&index=3 👉 SUBSCRIBE for more: https://www.youtube.com/@MarkWiens 👕 T-shirts: https://store.migrationology.com/ Today we’re going on an ultimate Egyptian street food tour in Alexandria, on the Mediterranean Coast of Egypt! This is the second largest city in Egypt, and it has a completely different feel from Cairo with a different food scene. So our mission is to eat some of the best local Egyptian food today in Alexandria! It’s also special because Abanoub, who has been taking me around Egypt - this is his hometown, and so we are in very good hands with an Alexandrian local! Am Zaghloul (https://maps.app.goo.gl/bot9zysZVrzbKkBPA) - You can’t resist eating fuul and falafel for breakfast...

    published: 25 Mar 2025
  • Top Things To Do On A Day Trip In Alexandria, Egypt

    In this visual, you'll see our day trip itinerary in Alexandria, Egypt, our last stop on our two-week trip around Egypt. Trip taken: November 2022 Tour Company we used: iEgypt Tours, https://www.iegypttravels.com/ Private tour for day trip to Alexandria, Egypt = $100 USD pp 0:15 How long do you need in Alexandria, Egypt ? 0:25 Tour company in Cairo to Alexandria 1:05 Citadel of Qaitbay in Alexandria, Egypt 3:00 Catacombs of Kom El Shokafa in Alexandria, Egypt (aka Catacombs of Kom El Shuqafa) 4:15 Tigrane Tomb in Alexandria, Egypt 4:50 Alexandria Bibliotheca (One of the largest library in the world) 5:45 Where to eat lunch in Alexandria, Egypt - Branzino 7:12 Photos we took around Alexandria, Egypt ---------- TRAVEL MEDICAL INSURANCE for only $42 per 4 weeks (product prices are high...

    published: 22 Oct 2023
  • WHY YOU SHOULD VISIT ALEXANDRIA, How To Egypt Travel Guide 2024

    Is a trip to Egypt worth it in 2024? Yes! Here are several reasons why! Obviously you want to see Cairo and the pyramids, but there is so much more to Egypt and Alexandria is one of these places. In this video I am going to show you, why it is worth visiting Alexandria, the 2nd largest city in Egypt! One of the reasons is, that it is not overly touristy and crowded. But it is also beautiful and you can see and learn more about Egypts history. On my trip, I visited Alexandria, Cairo, Giza, Memphis and Saqqara and there are so many other places, that I still haven't seen yet. Parts of Egypt might be underwhelming or over-hyped, but all in all, if you pick the right places and the right people to go together with, I promise you, you will have an amazing time! 🎵 Music Music by Prath - Calm Co...

    published: 31 Jan 2024
  • Exploring ALEXANDRIA, Egypt's Great Port City 🇪🇬 الإسكندرية

    I spend the day exploring Alexandria, Egypt's great ancient Port City, with a long and diverse history dating back thousands of years. ► Get $42 Off AIRBNB Using My Link ►►► https://www.airbnb.com/c/jasonb22163?currency=GBP My Social Media ► Website ►►► https://www.jasonbillamtravel.com/ ► Instagram ►►► https://www.instagram.com/jasonbillamtravel/ ► Facebook ►►► https://www.facebook.com/jasonbillamtravel/ ► Get Month-by-Month Travel Insurance ►►► https://safetywing.com/a/jasonbillamtravel Music: Luwaks - Below Horizon #alexandria #egypt #travelvlog

    published: 06 Nov 2020
  • Hypatia And The Great Fall Of Alexandria | Alexandria | Timeline

    Once the biggest and most influential city on the planet, founded by Alexander the Great and home to Cleopatra, Archimedes and the largest library in the world. How did this shining beacon for civilisation and knowledge meet its classical demise? Featuring stunning visualisations from the major movie Agora, acclaimed historian Bettany Hughes looks at Alexandria past and present, unearthing archaeological gems and following in the footsteps of Hypatia, the city’s last great female philosopher and guardian of great Library of Alexandria - whose murder would bring down the curtain not just on an era but on the ancient world as a whole. It's like Netflix for history... Sign up to History Hit, the world's best history documentary service, at a huge discount using the code 'TIMELINE' ---ᐳ htt...

    published: 03 Jul 2017
  • Byzantine Saints: Martyr Thomais of Alexandria (13 April)

    https://www.oca.org/saints/lives 🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴 Support Catholic Businesses here - https://sensusfidelium.com/catholic-businesses/ Sensus Fidelium Press - https://sensusfideliumpress.com/ Sensus Fidelium Apps - https://sensusfidelium.tv/ Support Sensus Fidelium - https://sensusfidelium.com/donate-support/ 🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴 🙏🏻PLEASE HELP OUR CHANNEL GROW 🙏🏻 ▶️ 1. Become a Channel Patron: https://www.patreon.com/SensusFidelium ▶️ 2. Visit the website https://www.sensusfidelium.com for Gueranger, Saint of the Day, Apologetics, Meditation by the Saints, Scripture Study and more. ▶️ 3. Subscribe to Other Video Platforms 🔴 SensusFidelium.TV - https://sensusfidelium.tv/@SensusFidelium 🔴 BitChute --- https://www.bitchute.com/channel/Sensus_Fideliu...

    published: 13 Apr 2025
  • Full Remarks: AOC in Los Angeles, California | Alexandria Ocasio-Cortez

    I hope you see that this movement is not about partisan labels or purity tests, but about class solidarity - the over 36,000 people who came out to Los Angeles to stand here together and say: our lives deserve dignity and our work deserves respect.

    published: 13 Apr 2025
  • Hypatia of Alexandria 💔 #history #art #painting

    published: 14 Feb 2025
  • ALEXANDRIA | The Second Largest City in Egypt

    A fascinating day of exploring in the very historic city of Alexandria, Egypt, founded by Alexander the Great, home of Cleopatra and attacked by Julius Caesar. Support this channel on Patreon: https://www.patreon.com/gabrieltraveler Books written by Gabriel Morris: https://www.amazon.com/Gabriel-Morris/e/B001JS0KOS/ Follow on Instagram: https://www.instagram.com/gabrieltraveler Essays and travel stories: https://medium.com/@gabrieltraveler Music during the video (in order): "Kul Riddim" by Konrad OldMoney & "Where Kings Walk" by Jon Sumner & "Call of Muezzin" by Sight of Wonders & "Desert Wasteland" by Deskant & "Three Kinds of Suns" by Norma Rockwell & "Egyptian Treasures" by Sight of Wonders & "Over the Dunes" by Jon Sumner Need some good music for your Youtube videos? I use and recom...

    published: 25 Sep 2024
  • Top 10 Best Places to Visit in Alexandria Egypt 😳😍 #shorts #egypt #trending #top10 #travel #viral

    published: 22 Feb 2023
  • Sage asked me to speak to her more and this is what happened #shorts

    published: 06 Dec 2022
The Lost City Of Knowledge: What Life Was Like In Ancient Alexandria | Metropolis | Timeline
52:00

The Lost City Of Knowledge: What Life Was Like In Ancient Alexandria | Metropolis | Timeline

  • Order:
  • Duration: 52:00
  • Uploaded Date: 18 Oct 2022
  • views: 1280887
Alexandria, a royal Greek city in the land of the Pharaohs. Along the sandy banks of the Nile delta on the African Mediterranean coast, the most powerful metropolis of its time rose from virtually nothing. The Hellenistic culture mingled with the legacy of the Pharaohs and bore the fruits of a glorious new heritage. 📺 It's like Netflix for history... Sign up to History Hit, the world's best history documentary service and get 50% off using the code 'TIMELINE' http://bit.ly/3a7ambu 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 owned-enquiries@littledotstudios.com
https://wn.com/The_Lost_City_Of_Knowledge_What_Life_Was_Like_In_Ancient_Alexandria_|_Metropolis_|_Timeline
What Really Happened To Ancient Alexandria?
47:27

What Really Happened To Ancient Alexandria?

  • Order:
  • Duration: 47:27
  • Uploaded Date: 29 Jan 2021
  • views: 259193
The story of a city founded out of the desert by Alexander the Great in 331 BC to become the world's first global centre of culture, into which wealth and knowledge poured from across the world. Odyssey is your journey into the world of Ancient History; from the dawn of Mesopotamia to the fall of Rome. We'll be bringing you only the best documentaries that journey into the mysteries and ruins of worlds long lost. Subsribe so you don't miss out! It's like Netflix for History: the world's finest documentary streaming service -- use the code 'Odyssey' to get 50% off your History Hit subscription! 👉 https://bit.ly/3cX9hGo Follow us on Facebook: https://www.facebook.com/OdysseyAncientHistory Odyssey is part of the History Hit Network. For any queries, please contact owned-enquiries@littledotstudios.com
https://wn.com/What_Really_Happened_To_Ancient_Alexandria
13 BEST Things to do in Alexandria, Egypt | Travel Guide
9:20

13 BEST Things to do in Alexandria, Egypt | Travel Guide

  • Order:
  • Duration: 9:20
  • Uploaded Date: 11 May 2023
  • views: 78048
How to find cheap flights and travel more: https://travelforalmostfree.com/ref=beforeyougo2 // Here are the best things to do in Alexandria. ------------------- Recommended Tours in Alexandria: Alexandria Full Day Tour: https://www.viator.com/tours/Alexandria/Archaeological-and-Real-life-guided-Tours/d4376-169242P1?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-alexandria-desc Mirette Tour in Alexandria from Alexandria hotels and Alexandria Port: https://www.viator.com/tours/Alexandria/Mirette-Tour-in-Alexandria-from-alexandria-hotels/d4376-118258P5?pid=P00104625&mcid=42383&medium=link&medium_version=selector&campaign=yt-alexandria-desc ------------------- Welcome to our video on the top things to do in Alexandria, Egypt's second-largest city and a historic center of culture and trade. Located on the Mediterranean coast, Alexandria boasts a rich history and a unique blend of ancient and modern architecture, making it a must-visit destination for any traveler. First on our list is a visit to the famous Library of Alexandria, one of the largest and most important libraries in the ancient world. Reconstructed in the early 2000s, the library now houses millions of books, manuscripts, and artifacts, as well as a range of modern amenities, including a planetarium and a conference center. Next up is a trip to the Catacombs of Kom el Shoqafa, a unique underground complex of tombs dating back to the second century BC. Visitors can explore the elaborate chambers, which feature a blend of ancient Egyptian, Greek, and Roman influences, as well as intricate carvings and artwork. For a taste of local culture, head to the bustling district of El Mansheya, where you'll find a range of traditional markets and street vendors selling everything from spices and textiles to handmade crafts and jewelry. This area is also home to a number of historic mosques and churches, including the famous St. Mark's Cathedral. Another must-see attraction is the Alexandria National Museum, which showcases the city's rich history and cultural heritage through a range of exhibits and artifacts. Visitors can learn about ancient Egyptian civilization, as well as the city's more recent history under Greek, Roman, and Islamic rule. For those seeking a bit of relaxation, head to the Alexandria Corniche, a scenic waterfront promenade that stretches along the Mediterranean coast. Here you can enjoy a stroll, a bike ride, or a leisurely meal at one of the many cafes and restaurants lining the boardwalk. Last but not least, don't miss the chance to explore the city's stunning architecture, which ranges from ancient landmarks like the Roman Amphitheater to modern marvels like the Bibliotheca Alexandrina. Be sure to take a stroll through the city's historic neighborhoods, like the charming El-Raml district, to discover hidden gems and local favorites. There you have it, our top picks for the best things to do in Alexandria. Whether you're interested in history and culture, shopping and cuisine, or just soaking up the Mediterranean sun, this city has something for everyone. So what are you waiting for? Start planning your trip today and discover all that Alexandria has to offer. Keep watching to see the top things to do in the Alexandria, top attractions in Alexandria, places to visit in the Alexandria and Middle East travel guides. Subscribe for travel inspiration videos and travel guides! Inspired by Touropia, expedia, Wolters World, Beautiful Destinations, MojoTravels & Tourradar. Inspired by Top 10 places to visit in Alexandria Egypt | Travel guide Inspired by Exploring ALEXANDRIA, Egypt's Great Port City 🇪🇬 الإسكندرية Inspired by Alexandria - Egypt - Lonely Planet travel videos Inspired by The Unseen Side of ALEXANDRIA, EGYPT Travel Vlog Inspired by Alexandria, Egypt | Amazing Drone, Aerial View Video 4K | Also check out: 10 BEST Things to Do in Jeddah, Saudi Arabia https://youtu.be/dMwntdgw9qY Also check out: 13 BEST Things to Do in Sharm El Sheikh, Egypt https://youtu.be/uwLjkqfo20s Also check out: 11 BEST Things to do in Tehran, Iran https://youtu.be/sPFZRwdnoQk - - - - - Music by INOSSI Listen: https://spoti.fi/2EzvEA6 Watch: https://www.youtube.com/watch?v=aGKJB1TpY9E - - - - - (PG Clean, Family Friendly For kids, No Swearing)
https://wn.com/13_Best_Things_To_Do_In_Alexandria,_Egypt_|_Travel_Guide
Egyptian Street Food - 24 HOURS in Alexandria, Egypt!!
42:37

Egyptian Street Food - 24 HOURS in Alexandria, Egypt!!

  • Order:
  • Duration: 42:37
  • Uploaded Date: 25 Mar 2025
  • views: 612939
🇪🇬 Watch More Egyptian Food: https://www.youtube.com/watch?v=H_TK4ObpQnA&list=PL5E204DE4DEF02AD7&index=3 👉 SUBSCRIBE for more: https://www.youtube.com/@MarkWiens 👕 T-shirts: https://store.migrationology.com/ Today we’re going on an ultimate Egyptian street food tour in Alexandria, on the Mediterranean Coast of Egypt! This is the second largest city in Egypt, and it has a completely different feel from Cairo with a different food scene. So our mission is to eat some of the best local Egyptian food today in Alexandria! It’s also special because Abanoub, who has been taking me around Egypt - this is his hometown, and so we are in very good hands with an Alexandrian local! Am Zaghloul (https://maps.app.goo.gl/bot9zysZVrzbKkBPA) - You can’t resist eating fuul and falafel for breakfast in Egypt everyday, it’s too good.! And this favorite spot in Alexandria is extremely popular for their trays of Egyptian breakfast. Total price - 415 EGP ($8.20) Awlad Abdo (https://maps.app.goo.gl/K4FUiTrtGocJTnnr9) - Next up, Abanoub took me to his favorite Egyptian sandwich stall, that specializes in these mini sandwiches that have tons of flavor - from Egyptian soguk to cheese and seafood, there are so many combinations, and very tasty. Price for everything - 180 EGP ($3.56) Malek el Semman (https://maps.app.goo.gl/A6Wjv7ta1GsEi57S6) - This legendary restaurant is known for their grilled quails. The quails are marinated in a paste of seasoning, then grilled over hot fire. They are extremely tasty, even more than expected. Price - 745 EGP ($14.72) El Kalaa (https://maps.app.goo.gl/sddAmGoxb9Rqte5E9) - After walking around the Mediterranean Coast in Alexandria we are continuing with this Egyptian street food tour to eat at a few spots that are extremely popular. El Kayla specializes in Egyptian style feteer, a thin flaky dough that’s wrapped up with tons of fillings - from sausage and soguk to cheese, and sweet versions, then baked until crispy. It was phenomenal. Price - 415 EGP ($8.20) Al Kayyal Butchery (https://maps.app.goo.gl/zkSDuunzZn477WzE7) - We had hawawshi in Cairo, but in Alexandria they do things a little differently. This local hawawshi is intense with so many people and so many things going on. We got the soguk and cheese stuffed hawawshi, baked to crispy perfection. Price - 280 EGP ($5.53) Balbaa (https://maps.app.goo.gl/M9yEhho83VBN7jt18) - One of the most legendary food institutions in Alexandria, this is one of those restaurants you have to go to to say you’ve been to Alexandria. Their chicken marinated in onions and grilled is fantastic, and their lamb chops are among the best you’ll ever have. 986 El Falah (https://maps.app.goo.gl/J8SNESB1GY87kUVBA) - When Egyptians think about Alexandria food, one of the things everyone thinks about is liver sandwich, and this place is legendary. Price - 52 EGP ($1.03) for 4 sandwiches Chapters: 0:00 Intro to Alexandria, Egypt 0:43 Egyptian Breakfast at Am Zaghloul 8:03 Sandwiches at Awlad Abdo 12:56 Quails at Malek el Semman 18:08 History of Alexandria, Egypt 19:00 Feteer at El Kalaa 25: 41 Hawawshi at Al Kayyal Butchery 33:28 Grills at Balbaa 39:30 Liver Sandwich at El Falah 42:01 Ending We had an incredible day of Egyptian food in Alexandria and I hope you enjoyed this food tour! Follow on Social Media: ►Facebook: https://www.facebook.com/markwiensfoodvideos ►Instagram: https://www.instagram.com/migrationology/ ►Tiktok: https://www.tiktok.com/@markwiens 👕 T-shirts: https://store.migrationology.com/ 🌶 Ghost Chili: https://amzn.to/3PNTvNQ 🎥 Camera gear I use: https://amzn.to/3FVdBUd (some of these are affiliate links and I will make a small commission from any sales)
https://wn.com/Egyptian_Street_Food_24_Hours_In_Alexandria,_Egypt
Top Things To Do On A Day Trip In Alexandria, Egypt
7:27

Top Things To Do On A Day Trip In Alexandria, Egypt

  • Order:
  • Duration: 7:27
  • Uploaded Date: 22 Oct 2023
  • views: 13566
In this visual, you'll see our day trip itinerary in Alexandria, Egypt, our last stop on our two-week trip around Egypt. Trip taken: November 2022 Tour Company we used: iEgypt Tours, https://www.iegypttravels.com/ Private tour for day trip to Alexandria, Egypt = $100 USD pp 0:15 How long do you need in Alexandria, Egypt ? 0:25 Tour company in Cairo to Alexandria 1:05 Citadel of Qaitbay in Alexandria, Egypt 3:00 Catacombs of Kom El Shokafa in Alexandria, Egypt (aka Catacombs of Kom El Shuqafa) 4:15 Tigrane Tomb in Alexandria, Egypt 4:50 Alexandria Bibliotheca (One of the largest library in the world) 5:45 Where to eat lunch in Alexandria, Egypt - Branzino 7:12 Photos we took around Alexandria, Egypt ---------- TRAVEL MEDICAL INSURANCE for only $42 per 4 weeks (product prices are higher if your travels include certain countries or add-ons) We recommend getting travel medical insurance with SafetyWing - (ambassador link) https://safetywing.com/?referenceID=trizzinc&utm_source=trizzinc&utm_medium=Ambassador ----------- Subscribe to follow along where Maui and Trizzy’s adventure bug has brought them Connect with us: IG @mauiandtrizzy TikTok @mauiandtrizzy MAUI Blog: www.yourbasictraveler.com TRIZZY IG: @trizzinc Youtube: @trizzinc Podcast: @Ticket2Anywhere email: mauiandtrizzy@gmail.com ----------- Music courtesy of www.epidemicsound.com Get a 7-day free trial of Epidemic Sound membership here - https://share.epidemicsound.com/15jrwp (referral link)
https://wn.com/Top_Things_To_Do_On_A_Day_Trip_In_Alexandria,_Egypt
WHY YOU SHOULD VISIT ALEXANDRIA, How To Egypt Travel Guide 2024
12:47

WHY YOU SHOULD VISIT ALEXANDRIA, How To Egypt Travel Guide 2024

  • Order:
  • Duration: 12:47
  • Uploaded Date: 31 Jan 2024
  • views: 35161
Is a trip to Egypt worth it in 2024? Yes! Here are several reasons why! Obviously you want to see Cairo and the pyramids, but there is so much more to Egypt and Alexandria is one of these places. In this video I am going to show you, why it is worth visiting Alexandria, the 2nd largest city in Egypt! One of the reasons is, that it is not overly touristy and crowded. But it is also beautiful and you can see and learn more about Egypts history. On my trip, I visited Alexandria, Cairo, Giza, Memphis and Saqqara and there are so many other places, that I still haven't seen yet. Parts of Egypt might be underwhelming or over-hyped, but all in all, if you pick the right places and the right people to go together with, I promise you, you will have an amazing time! 🎵 Music Music by Prath - Calm Coffeee - https://thmatc.co/?l=206D5F71 Music by Sam Celentano - Westbound - https://thmatc.co/?l=F3664822 The Egypt by raspberrymusic (Envato License) Egypt by INPLUSMUSIC (Envato License) Egypt by iCENTURY (Envato License) 🌸 Follow me on Social Media 🌸 → Website http://tinahuegel.com/ → Twitter https://twitter.com/tinaH_travel → Instagram https://www.instagram.com/tina_huegel_travelguide/ → Threads https://www.threads.net/@tina_huegel_travelguide → TikTok https://www.tiktok.com/@tinas_travel_diaries → Facebook https://www.facebook.com/tina.huegel.official/ → Artwork https://www.instagram.com/tina_huegel_artwork/ 📩 Business Inquiries / Collaborations  tina.huegel.business@gmail.com ⭐️ Support this Channel ⭐️ - My Personal Recommendations on Amazon Amazon Store Front https://amzn.to/3uAD4zb Travel Essentials https://amzn.to/417YYq5 Anime, Manga & Games https://amzn.to/3uJgvsu * By buying the items on my storefront, I am going to earn a commission from Amazon. - Become a Patreon https://www.patreon.com/tinahuegel - My Amazon Wishlist Amazon Japan - https://bit.ly/3hcYt5c Amazon Germany - https://bit.ly/3urc4Cr Amazon US - https://bit.ly/3G7xxCL *depending on which account you used - Become a professional Content Creator by joining Lost Creator Academy https://lostcreatoracademy.com/?aff=5272 - Plan your trip to Japan with Klook http://bit.ly/3qxssiV *Use my code TOKYODIARIES5OFF to get a discount. * Buy your JR Pass on Klook http://bit.ly/3NrkW20 * Buy a ticket for Tokyo Disney Land http://bit.ly/45UIovP * Buy a Universal Studio Pass http://bit.ly/3JxBlj9 * Get a Tokyo Subway Ticket http://bit.ly/3CpQHlz * Shibuya Sky Observation http://bit.ly/3qHACoP Use my code TOKYODIARIES5OFF to get a discount. Book your Accomodation on Hostelworld - Hostelworld. https://prf.hn/l/55aed9j - Find your Accommodation in Tokyo, Japan https://prf.hn/l/G9axELZ Hostels with best Ratings for Tokyo - Cocts Akihabara https://prf.hn/l/QLyoWxd - Tomariya Ueno https://prf.hn/l/DLGM2NB 📷 Equipment  Travel Vlogs Canon G7X markii https://bit.ly/3WfrS57 ULANZI MT-08 https://bit.ly/43D2hWa Cinematic Shots Sony Alpha a7 III Digital Camera https://amzn.to/3xbT8E2 Sony 16-35mm Vario-Tessar T FE F4 ZA OSS E-Mount Lens https://amzn.to/3hEKQhJ GoPro HERO8 Black https://amzn.to/3A7g7CN Joby Gorilla Tripod https://amzn.to/2KMfsh4 Mic Rode NT-USB USB Condenser Mic https://amzn.to/3Db5aU2 Saramonic Blink 500 B2 https://amzn.to/3Blbjf0 Editing: Final Cut Pro Disclaimer: The products and services that I link on my social media platforms, including Youtube, may be affiliate links. If you click on any of those affiliate links and make a purchase within a certain time frame, I’ll earn a small commission. The commission is paid by the retailer and at no cost to you. alexandria egypt, why visit alexandria egypt, is alexandria egypt safe, things to do in alexandria egypt, what is alexandria egypt famous for, is alexandria egypt worth visiting, alexandria egypt to cairo, worth visiting, alexandria egypt catacombs, alexandria pompeyes pillar, alexandria city, alexandria egypt port, alexandria egypt bridge, alexandria egypt famous, alexandria egypt travel guide, alexandria egypt, what is alexandria egypt like, egypt travel guide, places to visit in egypt, egypt travel tips, egypt best places to visit, alexandria, egypt, alexandria egypt historical sites, alexandria egypt library, alexandria egypt, what to see in alexandria egypt, what to do in alexandria egypt, alexandria city in egypt, alexandria travel, alexandria 4K, alexandria egypt food, alexandria egypt history, alexandria egypt port, alexandria egypt tour, alexandria egypt vlog
https://wn.com/Why_You_Should_Visit_Alexandria,_How_To_Egypt_Travel_Guide_2024
Exploring ALEXANDRIA, Egypt's Great Port City 🇪🇬 الإسكندرية
14:39

Exploring ALEXANDRIA, Egypt's Great Port City 🇪🇬 الإسكندرية

  • Order:
  • Duration: 14:39
  • Uploaded Date: 06 Nov 2020
  • views: 292255
I spend the day exploring Alexandria, Egypt's great ancient Port City, with a long and diverse history dating back thousands of years. ► Get $42 Off AIRBNB Using My Link ►►► https://www.airbnb.com/c/jasonb22163?currency=GBP My Social Media ► Website ►►► https://www.jasonbillamtravel.com/ ► Instagram ►►► https://www.instagram.com/jasonbillamtravel/ ► Facebook ►►► https://www.facebook.com/jasonbillamtravel/ ► Get Month-by-Month Travel Insurance ►►► https://safetywing.com/a/jasonbillamtravel Music: Luwaks - Below Horizon #alexandria #egypt #travelvlog
https://wn.com/Exploring_Alexandria,_Egypt's_Great_Port_City_🇪🇬_الإسكندرية
Hypatia And The Great Fall Of Alexandria | Alexandria | Timeline
47:46

Hypatia And The Great Fall Of Alexandria | Alexandria | Timeline

  • Order:
  • Duration: 47:46
  • Uploaded Date: 03 Jul 2017
  • views: 2424642
Once the biggest and most influential city on the planet, founded by Alexander the Great and home to Cleopatra, Archimedes and the largest library in the world. How did this shining beacon for civilisation and knowledge meet its classical demise? Featuring stunning visualisations from the major movie Agora, acclaimed historian Bettany Hughes looks at Alexandria past and present, unearthing archaeological gems and following in the footsteps of Hypatia, the city’s last great female philosopher and guardian of great Library of Alexandria - whose murder would bring down the curtain not just on an era but on the ancient world as a whole. It's like Netflix for history... Sign up to History Hit, the world's best history documentary service, at a huge discount using the code 'TIMELINE' ---ᐳ http://bit.ly/3a7ambu You can find more from us on: https://www.facebook.com/timelineWH https://www.instagram.com/timelineWH This channel is part of the History Hit Network. Any queries, please contact owned-enquiries@littledotstudios.com
https://wn.com/Hypatia_And_The_Great_Fall_Of_Alexandria_|_Alexandria_|_Timeline
Byzantine Saints: Martyr Thomais of Alexandria (13 April)
3:33

Byzantine Saints: Martyr Thomais of Alexandria (13 April)

  • Order:
  • Duration: 3:33
  • Uploaded Date: 13 Apr 2025
  • views: 276
https://www.oca.org/saints/lives 🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴 Support Catholic Businesses here - https://sensusfidelium.com/catholic-businesses/ Sensus Fidelium Press - https://sensusfideliumpress.com/ Sensus Fidelium Apps - https://sensusfidelium.tv/ Support Sensus Fidelium - https://sensusfidelium.com/donate-support/ 🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴 🙏🏻PLEASE HELP OUR CHANNEL GROW 🙏🏻 ▶️ 1. Become a Channel Patron: https://www.patreon.com/SensusFidelium ▶️ 2. Visit the website https://www.sensusfidelium.com for Gueranger, Saint of the Day, Apologetics, Meditation by the Saints, Scripture Study and more. ▶️ 3. Subscribe to Other Video Platforms 🔴 SensusFidelium.TV - https://sensusfidelium.tv/@SensusFidelium 🔴 BitChute --- https://www.bitchute.com/channel/Sensus_Fidelium/ 🔴 Rumble --- https://rumble.com/c/c-298311 🔴 My Catholic Tube - https://mycatholictube.com/videos/sensus-fidelium-channel/ 🔴 LBRY.tv --- https://lbry.tv/@SensusFidelium:c 🔴 ODYSEE - https://odysee.com/@SensusFidelium:c 🔴 UGETube - https://videos.utahgunexchange.com/@Sensus%20Fidelium 🔴 BrandNewTube - https://brandnewtube.com/@SensusFidelium 🔴 GabTV - https://tv.gab.com/channel/Sensus_Fidelium 🔴 GloriaTV - https://gloria.tv/Sensus%20Fidelium 🔴 Brighteon - https://www.brighteon.com/channels/sensusfidelium ▶️ 4. Paypal, Bitcoin, Anedot, Stripe, Square & PO Box donations - https://sensusfidelium.com/donate-support/ ▶️ 5. YouTube: Click Subscribe, then Click "Notification Bell" = 🔔 Please "Like" our videos so that Youtube shares it to others by clicking the "Like" thumbs-up under the video = 👍🏻 ▶️ 6. Please share this video 📲, and help others find Christ inside the Catholic Church! Please share this video on Facebook and Twitter using the share button. ▶️ 7. Follow on Social Media: 🔴 Facebook: https://www.facebook.com/SensusFidelium/ 🔴 Twitter: https://https://twitter.com/Sensus_Fidelium 🔴 YouTube: Click Subscribe, then Click "Notification Bell" = 🔔 🔴 Parler: https://parler.com/profile/Sensusfidelium/posts 🔴 SP3RN: https://www.sp3rn.com/community/pages/14-sensus-fidelium 🔴 GAB: https://gab.com/Sensus_Fidelium 🔴 Bastyon: https://bastyon.com/sensusfidelium 🔴 GETTR: https://gettr.com/user/sensus_fidelium 🔴 INSTAGRAM: https://www.instagram.com/sensusfidelium/ 🔴 Telegram: https//t.me/RealSensusFidelium 🔴 Truth Social - @SensusFidelium ▶️ 8. Follow on iTunes: 🔴 https://podcasts.apple.com/us/podcast/sensus-fidelium-catholic-podcast/id1477010758 🙏🏻PLEASE HELP OUR CHANNEL GROW 🙏🏻 ▶️ 1. Become a Channel Patron: https://www.patreon.com/SensusFidelium ▶️ 2. Visit the website https://www.sensusfidelium.com for Gueranger, Saint of the Day, Apologetics, Meditation by the Saints, Scripture Study and more. ▶️ 3. Subscribe to Other Video Platforms 🔴 SensusFidelium.TV - https://sensusfidelium.tv/@SensusFidelium 🔴 BitChute --- https://www.bitchute.com/channel/Sensus_Fidelium/ 🔴 Rumble --- https://rumble.com/c/c-298311 🔴 My Catholic Tube - https://mycatholictube.com/videos/sensus-fidelium-channel/ 🔴 LBRY.tv --- https://lbry.tv/@SensusFidelium:c 🔴 ODYSEE - https://odysee.com/@SensusFidelium:c 🔴 UGETube - https://videos.utahgunexchange.com/@Sensus%20Fidelium 🔴 BrandNewTube - https://brandnewtube.com/@SensusFidelium 🔴 GabTV - https://tv.gab.com/channel/Sensus_Fidelium 🔴 GloriaTV - https://gloria.tv/Sensus%20Fidelium 🔴 Brighteon - https://www.brighteon.com/channels/sensusfidelium ▶️ 4. Paypal, Bitcoin, Anedot, Stripe, Square & PO Box donations - https://sensusfidelium.com/donate-support/ ▶️ 5. YouTube: Click Subscribe, then Click "Notification Bell" = 🔔 Please "Like" our videos so that Youtube shares it to others by clicking the "Like" thumbs-up under the video = 👍🏻 ▶️ 6. Please share this video 📲, and help others find Christ inside the Catholic Church! Please share this video on Facebook and Twitter using the share button. ▶️ 7. Follow on Social Media: 🔴 Facebook: https://www.facebook.com/SensusFidelium/ 🔴 Twitter: https://https://twitter.com/Sensus_Fidelium 🔴 YouTube: Click Subscribe, then Click "Notification Bell" = 🔔 🔴 Parler: https://parler.com/profile/Sensusfidelium/posts 🔴 SP3RN: https://www.sp3rn.com/community/pages/14-sensus-fidelium 🔴 GAB: https://gab.com/Sensus_Fidelium 🔴 Bastyon: https://bastyon.com/sensusfidelium 🔴 GETTR: https://gettr.com/user/sensus_fidelium 🔴 INSTAGRAM: https://www.instagram.com/sensusfidelium/ 🔴 Telegram: https//t.me/RealSensusFidelium 🔴 Truth Social - @SensusFidelium ▶️ 8. Follow on iTunes: 🔴 https://podcasts.apple.com/us/podcast/sensus-fidelium-catholic-podcast/id1477010758 #catholicchurch #saintsoftheday #catholicsaints #jesus
https://wn.com/Byzantine_Saints_Martyr_Thomais_Of_Alexandria_(13_April)
Full Remarks: AOC in Los Angeles, California | Alexandria Ocasio-Cortez
22:07

Full Remarks: AOC in Los Angeles, California | Alexandria Ocasio-Cortez

  • Order:
  • Duration: 22:07
  • Uploaded Date: 13 Apr 2025
  • views: 109023
I hope you see that this movement is not about partisan labels or purity tests, but about class solidarity - the over 36,000 people who came out to Los Angeles to stand here together and say: our lives deserve dignity and our work deserves respect.
https://wn.com/Full_Remarks_Aoc_In_Los_Angeles,_California_|_Alexandria_Ocasio_Cortez
Hypatia of Alexandria 💔 #history #art #painting
0:22

Hypatia of Alexandria 💔 #history #art #painting

  • Order:
  • Duration: 0:22
  • Uploaded Date: 14 Feb 2025
  • views: 1420897
https://wn.com/Hypatia_Of_Alexandria_💔_History_Art_Painting
ALEXANDRIA | The Second Largest City in Egypt
39:10

ALEXANDRIA | The Second Largest City in Egypt

  • Order:
  • Duration: 39:10
  • Uploaded Date: 25 Sep 2024
  • views: 22760
A fascinating day of exploring in the very historic city of Alexandria, Egypt, founded by Alexander the Great, home of Cleopatra and attacked by Julius Caesar. Support this channel on Patreon: https://www.patreon.com/gabrieltraveler Books written by Gabriel Morris: https://www.amazon.com/Gabriel-Morris/e/B001JS0KOS/ Follow on Instagram: https://www.instagram.com/gabrieltraveler Essays and travel stories: https://medium.com/@gabrieltraveler Music during the video (in order): "Kul Riddim" by Konrad OldMoney & "Where Kings Walk" by Jon Sumner & "Call of Muezzin" by Sight of Wonders & "Desert Wasteland" by Deskant & "Three Kinds of Suns" by Norma Rockwell & "Egyptian Treasures" by Sight of Wonders & "Over the Dunes" by Jon Sumner Need some good music for your Youtube videos? I use and recommend Epidemic Sound. To get a free 30-day trial click here: http://share.epidemicsound.com/sSvpV Video created by Gabriel Morris, who is the owner of all video or photo content. Filmed with a DJI Osmo Action: https://amzn.to/3gSi8rA Gabriel is a traveler, outdoors enthusiast and travel writer who has been adventuring around the world since his first trip to Europe in the summer of 1990 when he was 18 years old. He is author of "Following My Thumb", "Gabe's Guide to Budget Travel" and several other books. Disclaimer: Gabriel Morris is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to www.amazon.com. As an Amazon Associate, Gabriel earns revenue from qualifying purchases.
https://wn.com/Alexandria_|_The_Second_Largest_City_In_Egypt
Top 10 Best Places to Visit in Alexandria Egypt 😳😍 #shorts #egypt #trending #top10 #travel #viral
0:37

Top 10 Best Places to Visit in Alexandria Egypt 😳😍 #shorts #egypt #trending #top10 #travel #viral

  • Order:
  • Duration: 0:37
  • Uploaded Date: 22 Feb 2023
  • views: 6381
https://wn.com/Top_10_Best_Places_To_Visit_In_Alexandria_Egypt_😳😍_Shorts_Egypt_Trending_Top10_Travel_Viral
Sage asked me to speak to her more and this is what happened #shorts
0:47

Sage asked me to speak to her more and this is what happened #shorts

  • Order:
  • Duration: 0:47
  • Uploaded Date: 06 Dec 2022
  • views: 45748
https://wn.com/Sage_Asked_Me_To_Speak_To_Her_More_And_This_Is_What_Happened_Shorts
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Lost City Of Knowledge: What Life Was Like In Ancient Alexandria | Metropolis | Timeline
    52:00
    The Lost City Of Knowledge: What Life Was Like In Ancient Alexandria | Metropolis | Timelineremove from playlist
  • What Really Happened To Ancient Alexandria?
    47:27
    What Really Happened To Ancient Alexandria?remove from playlist
  • 13 BEST Things to do in Alexandria, Egypt | Travel Guide
    9:20
    13 BEST Things to do in Alexandria, Egypt | Travel Guideremove from playlist
  • Egyptian Street Food - 24 HOURS in Alexandria, Egypt!!
    42:37
    Egyptian Street Food - 24 HOURS in Alexandria, Egypt!!remove from playlist
  • Top Things To Do On A Day Trip In Alexandria, Egypt
    7:27
    Top Things To Do On A Day Trip In Alexandria, Egyptremove from playlist
  • WHY YOU SHOULD VISIT ALEXANDRIA, How To Egypt Travel Guide 2024
    12:47
    WHY YOU SHOULD VISIT ALEXANDRIA, How To Egypt Travel Guide 2024remove from playlist
  • Exploring ALEXANDRIA, Egypt's Great Port City 🇪🇬 الإسكندرية
    14:39
    Exploring ALEXANDRIA, Egypt's Great Port City 🇪🇬 الإسكندريةremove from playlist
  • Hypatia And The Great Fall Of Alexandria | Alexandria | Timeline
    47:46
    Hypatia And The Great Fall Of Alexandria | Alexandria | Timelineremove from playlist
  • Byzantine Saints: Martyr Thomais of Alexandria (13 April)
    3:33
    Byzantine Saints: Martyr Thomais of Alexandria (13 April)remove from playlist
  • Full Remarks: AOC in Los Angeles, California | Alexandria Ocasio-Cortez
    22:07
    Full Remarks: AOC in Los Angeles, California | Alexandria Ocasio-Cortezremove from playlist
  • ALEXANDRIA | The Second Largest City in Egypt
    39:10
    ALEXANDRIA | The Second Largest City in Egyptremove from playlist
PLAYLIST TIME: 0:00 / 5:00:39

The Lost City Of Knowledge: What Life Was Like In Ancient Alexandria | Metropolis | Timeline

Alexandria, a royal Greek city in the land of the Pharaohs. Along the sandy banks of the Nile delta on the African Mediterranean coast, the most powerful metropolis of its time rose from virtually nothing. The Hellenistic culture mingled with the legacy of the Pharaohs and bore the fruits of a glorious new heritage. 📺 It's like Netflix for history... Sign up to History Hit, the world's best history documentary service and get 50% off using the code 'TIMELINE' http://bit.ly/3a7ambu 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 owned-enquiries@littledotstudios.com
52:00
The Lost City Of Knowledge: What Life Was Like In Ancient Alexandria | Metropolis | Timeline
Alexandria, a royal Greek city in the land of the Pharaohs. Along the sandy banks of the N...
published: 18 Oct 2022
Play in Full Screen
47:27
What Really Happened To Ancient Alexandria?
The story of a city founded out of the desert by Alexander the Great in 331 BC to become t...
published: 29 Jan 2021
Play in Full Screen
9:20
13 BEST Things to do in Alexandria, Egypt | Travel Guide
How to find cheap flights and travel more: https://travelforalmostfree.com/ref=beforeyougo...
published: 11 May 2023
Play in Full Screen
42:37
Egyptian Street Food - 24 HOURS in Alexandria, Egypt!!
🇪🇬 Watch More Egyptian Food: https://www.youtube.com/watch?v=H_TK4ObpQnA&list=PL5E204DE4DE...
published: 25 Mar 2025
Play in Full Screen
7:27
Top Things To Do On A Day Trip In Alexandria, Egypt
In this visual, you'll see our day trip itinerary in Alexandria, Egypt, our last stop on o...
published: 22 Oct 2023
Play in Full Screen
12:47
WHY YOU SHOULD VISIT ALEXANDRIA, How To Egypt Travel Guide 2024
Is a trip to Egypt worth it in 2024? Yes! Here are several reasons why! Obviously you want...
published: 31 Jan 2024
Play in Full Screen
14:39
Exploring ALEXANDRIA, Egypt's Great Port City 🇪🇬 الإسكندرية
I spend the day exploring Alexandria, Egypt's great ancient Port City, with a long and div...
published: 06 Nov 2020
Play in Full Screen
47:46
Hypatia And The Great Fall Of Alexandria | Alexandria | Timeline
Once the biggest and most influential city on the planet, founded by Alexander the Great a...
published: 03 Jul 2017
Play in Full Screen
3:33
Byzantine Saints: Martyr Thomais of Alexandria (13 April)
https://www.oca.org/saints/lives 🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴🔴 Support Catholic Businesses here...
published: 13 Apr 2025
Play in Full Screen
22:07
Full Remarks: AOC in Los Angeles, California | Alexandria Ocasio-Cortez
I hope you see that this movement is not about partisan labels or purity tests, but about ...
published: 13 Apr 2025
Play in Full Screen
0:22
Hypatia of Alexandria 💔 #history #art #painting
published: 14 Feb 2025
Play in Full Screen
39:10
ALEXANDRIA | The Second Largest City in Egypt
A fascinating day of exploring in the very historic city of Alexandria, Egypt, founded by ...
published: 25 Sep 2024
Play in Full Screen
0:37
Top 10 Best Places to Visit in Alexandria Egypt 😳😍 #shorts #egypt #trending #top10 #travel #viral
published: 22 Feb 2023
Play in Full Screen
0:47
Sage asked me to speak to her more and this is what happened #shorts
published: 06 Dec 2022
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: Alexandria

Edit

Alexandria Ocasio-Cortez won't seek the top Democratic seat on the House Oversight Committee

NBC News 06 May 2025
After speaking to colleagues, the progressive New York congresswoman said she believed Democrats would favor a more senior member in the role, as they did in the previous race ... .
Edit

Alexandria Ocasio-Cortez Says She Won't Seek Top Spot On Oversight Committee

Huffington Post 06 May 2025
AOC had previously sought the "ranking member" position but is no longer interested now that it's up for grabs again ... .
Edit

Housing 2040 Discusses Financial Tools and Homeowner Programs at Virtual May AHAAC Meeting (City of Alexandria, VA)

Public Technologies 06 May 2025
The Alexandria Housing Affordability Advisory Committee (AHAAC)will hold its next monthly meeting virtually on Wednesday, May 14, at 7 p.m ... to address Alexandria's housing needs through 2025.
Edit

Mark Your Calendars and Get Ready for Fun: Eco-City Festival happening this Saturday, May 10! (City of Alexandria, VA)

Public Technologies 06 May 2025
Join the City of Alexandria for the 2025 Eco-City Festivalon Saturday, May 10th, from 10 a.m ... at Ben Brenman Park, 4800 Brenman Park Dr, Alexandria, VA 22304 ... Meet the Animal Welfare League of Alexandria and adoptable animals from 10 a.m.
Edit

AOC Won’t Seek House Oversight Committee Role

New York Times 06 May 2025
Representative Alexandria Ocasio-Cortez said Democrats’ emphasis on seniority led her not to seek a leadership role on the powerful Oversight Committee ... .
Edit

Louisiana Lottery Powerball results for May 5, 2025

Town Talk 06 May 2025
The Louisiana Lottery offers several draw games for those aiming to win big. Here’s a look at May 5, 2025, results for each game.. Winning Powerball numbers from May 5 drawing. 16-34-40-45-66, Powerball. 19, Power Play. 2 ... Louisiana Lottery Headquarters.
Edit

Alexandria woman likes to make others happy with her creations

Town Talk 05 May 2025
Walking the Stations of the Cross in downtown Alexandria ... Market in Alexandria, Louisiana.Williams uses various themes in her designs, including children, blue herons and inspirational messages.
Edit

Johnstown, Alexandria, Granville ask EPA to OK joint utility, Jersey Township sues

Newark Advocate 05 May 2025
Albans Township and proposed a large sewage-treatment facility and a future water-treatment facility within a few miles of Alexandria and Granville ... Alexandria Mayor Sean Barnes said in the coalition’s response to the lawsuit.
Edit

How many juvenile courts operate within Louisiana?

Town Talk 05 May 2025
Louisiana operates four specialized juvenile courts in Caddo, Orleans, Jefferson, and East Baton Rouge parishes, with exclusive original juvenile jurisdiction ... Louisiana law defines a juvenile as a child between the age of 10 and 17.
Edit

‘Pain. Grief. Anger’: Families heartbroken as Trump backlash smashes adoption dreams

Raw Story 05 May 2025
At Christa Webb’s home in suburban Atlanta, a bicycle collects dust in the garage and a bedroom sits empty, its walls painted light pink, its closet full of clothes ...It's the kind of thing that governments do ... “That's the big picture ... Sens ... in 2023.
Edit

Exclusive: First Parkinson’s disease patient in DC area to use adaptive ‘pacemaker for the brain’

Wtop 05 May 2025
Rick Schena, of Alexandria, Virginia, and his doctor at MedStar Health, in McLean, have begun use the latest technology — adaptive deep brain stimulation — in his treatment for Parkinson’s disease, a neurodegenerative disorder. “Mr.
Edit

City of Alexandria Announces Continuation of Curbside Composting After Successful Pilot (City of Alexandria, VA)

Public Technologies 04 May 2025
On Sunday, April 27, 2025, the City of Alexandria proudly celebrated the official proclamation of International Compost Awareness Week, observed from May 4 to May 10 ... Want to learn more about the services available to you as an Alexandria resident?.
Edit

Gov. JB Pritzker and Alexandria Ocasio-Cortez: A billionaire and a former bartender emerge as Trump ...

Chicago Tribune 04 May 2025
ATLANTA — The billionaire heir and the former bartender ... But two disparate figures, Gov ... Alexandria Ocasio-Cortez of New York, have seen their national profiles rise by delivering messages that excite a demoralized and fractured party ... 19 ... Roosevelt.
×