- published: 03 Jun 2019
- views: 1289638
'+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; })); }); -->
Alexander was launched in 1803 at Liverpool, but contracted to the Honourable East India Company, which took her measurements in 1804, and which rated her as an East Indiaman of "600 tons". She made seven trips for the Company before she was sold; during her service she was variously referred to as an "extra" ship, one that the Company chartered for particular voyages, and as a "regular' ship, i.e., one that the Company held on long-term contract. When she sailed during wartime she sailed under letters of marque, which authorised her to use her armaments offensively against enemy, i.e., French vessels, and not just defensively. She was sold in 1817.
Captain John Robinson Francklin was issued a letter of marque on 30 May 1804. He sailed her for Bengal, leaving Portsmouth on 10 July. She reached Funchal on 23 July, and Diamond Harbour on 3 December. On her return leg she reached Saugor in the Hooghly river on 13 January 1805. On 2 February she left there, reaching Madras ten days later. By 20 June she was at St Helena, and by 15 September she had returned to Long Reach. East Indiaman traditionally stopped here to lighten their loads before sailing up the Thames to moorings at Blackwall.
Alexander is a masculine given name.
Alexander may also refer to:
Alexander (Greek: Ἀλέξανδρος, flourished 3rd century BC) was a son of the diadochus, the Greek nobleman who was a Macedonian Thessalian Lysimachus by an Odrysian concubine called Macris.
Following the murder of his paternal half-brother Agathocles by the command of his father in 284 BC, he fled into Asia with his brother's widow Lysandra, and solicited the aid of Seleucus I Nicator. As a consequence, war ensued between Seleucus I and Lysimachus, ending in the defeat and death of the latter, who was slain in battle in 281 BC, in the plain of Corius in Phrygia. Alexander conveyed his father's body to Lysimachia, to be buried in a tomb between Cardia and Pactya, where it still stood in the time of Pausanias, four centuries later.
This article incorporates text from a publication now in the public domain: Smith, William, ed. (1870). "article name needed". Dictionary of Greek and Roman Biography and Mythology.
Last Slave Ship Survivor Gave Interview in the 1930s That Surfaced Almost 90 Years Later 60 years after the abolition of slavery, an anthropologist made a remarkable discovery: She located the LAST surviving slave on the last ship to bring Africans to the United States. In his own words, a heartbreaking story of a young African man who had been kidnapped from his home, crammed into a boat for months, and sent off to America to be sold as a slave… ►Image credits: Image: essence.com/ https://bit.ly/2ybRwA0 Image: vulture.com/https://bit.ly/1jozdpL ► SUBSCRIBE US: https://goo.gl/CAyFbx ► Like us Our Facebook Page: https://goo.gl/SBs38W ► Follow On Twitter: https://goo.gl/nvhzU6 ► Follow Us On Instagram : https://goo.gl/3UXcnx ► Audio by Scott Leffler -- scottleffler.com For copyright ma...
Epic History TV brings you a blow-by-blow account of the entire Waterloo campaign in 14 minutes, with animated maps and artwork, plus rarely seen photographs of survivors of Napoleon's army. In 1815, eight miles south of Brussels, two of history's greatest generals met in battle for the first and only time: Napoleon Bonaparte, Emperor of the French, and the Duke of Wellington. The result was an epic, brutal battle that would decide the fate of Europe. Please help Epic History TV to keep making videos by pledging as little as one dollar per video at Patreon: https://www.patreon.com/EpicHistoryTV?ty=h Visit our online bookshop to find great books on this and other topics: UK site - https://uk.bookshop.org/shop/epichist... US site - https://bookshop.org/shop/epichistorytv As a bookshop....
[18th Century Periodicals, Daily Newspapers, London, The Spectator, British Newspapers]. Short video captures condition much better than words. Please watch prior to purchase to ensure a clear understanding of the set. The Spectator, by Joseph Addison and Richard Steele. Published 1803, London, printed by Charles Wittingham. 8 volumes, each c. 400 pages, each with stipple engraved portrait frontis. Period leather bindings, spines nicely gilt lettered & decorated. Bindings all remains tight and sound, front cover of Volume 1 is detached. Some joints cracked but most covers still firmly and well attached. Complete eight (8) volume set, with frontis portraits. Although the original paper only ran for two years (1711-1712), they were highly influential and well regarded and reprinted throu...
Alexander I (Russian: Александр Павлович, Aleksandr Pavlovich; 23 December [O.S. 12 December] 1777 – 1 December [O.S. 19 November] 1825), reigned as Emperor of Russia from 23 March 1801 to 1 December 1825. He was the first Russian King of Poland, reigning from 1815 to 1825, as well as the first Russian Grand Duke of Finland. He was born in Saint Petersburg to Grand Duke Paul Petrovich, later Emperor Paul I and succeeded to the throne after his father was murdered. He ruled Russia during the chaotic period of the Napoleonic Wars. As prince and emperor, Alexander often used liberal rhetoric, but continued Russia's absolutist policies in practice. In the first years of his reign, he initiated some minor social reforms and, in 1803-04, major, liberal educational reforms. He promised constitut...
Tate/Tait “Family Crest” or Coat of Arms - Family History & Surname For ancestry, genealogy research & heraldic merchandise, please visit: https://www.coadb.com [email protected] 785-324-2529 11AM - 9PM (ET) 1) Tate of Park Hill, London - The Tate Baronetcy of Park Hill in Streatham in the County of London, is a title in the baronetage of the United Kingdom created in 1898 for the sugar magnate and philanthropist Sir Henry Tate (1819-1899), son of Rev. William Tate (1773-1836) - Ermine, on a pale invected azure, between four Cornish choughs proper, two roses argent. Crest: A dexter arm embowed vested azure cuff argent the arm charged with two roses argent the hand holding a pine apple erect slipped and two ears of wheat saltirewise, all proper. Motto: Thinck and thancke. 2) Tait of Liverpo...
Welcome to the first of my new "5 minute Friday" strand. In this first episode I am talking about the remarkable John Shipp...His story is absolutely amazing. During the Napoleonic era being promoted from the ranks was more common than most people think. . .But Shipp was still an exceptional man and managed it twice. If you are on Instagram and like looking at photos of the world's battlefields then check me out - https://www.instagram.com/redcoathistory/ I am also on Twitter - https://twitter.com/redcoathistory And I have a website which you can subscribe to - https://redcoathistory.com/newsletter
Dr Thorsten Opper presented this lecture on the 'Sculptures from Hadrian's Villa during the age of the Grand Tour' at Senate House in London on 28th June 2017 as part of the 'Sculptural Display' lectures, by the Hellenic and Roman Societies. The lecture is introduced by Dr Lesley Fitton, Chair & Respondent at the British Museum.
Join us on our trip to Iceland and England, as we explain the history behind the place names of everywhere we visited! From the city of snot to the breast-shaped hills, and some holiday pictures thrown in as a bonus! Thank you to Chris McKinney & Alexander Partridge, our new Patreon supporters! Please check out our Patreon: https://www.patreon.com/TheEndlessKnot Endless Knot merchandise can be found in our store: http://www.cafepress.ca/endlessknot Images: https://en.wikipedia.org/wiki/File:General-Sir-Guy-Carleton_2.jpg https://upload.wikimedia.org/wikipedia/commons/8/89/ColonelSimcoe.jpg https://en.wikipedia.org/wiki/File:Harbour_of_York,_Upper_Canada,_1803.jpg https://en.wikipedia.org/wiki/File:North_York_Locator.png https://en.wikipedia.org/wiki/Prince_Frederick,_Duke_of_York_and_Al...
Provided to YouTube by Triple Vision Record Distribution Disambiguation (Original Mix) · Alexander Johansson Resolution PT 1 ℗ Compound Released on: 2017-05-24 Artist: Alexander Johansson Auto-generated by YouTube.
Alexander Johansson - Disambiguation [COMP47D] https://www.discogs.com/release/10340706-Various-Resolution-Pt-1 Various - Resolution Pt 1 EP Label: Compound – COMP47D Format: 4 x File, MP3, 320 kbps Country: UK Released: Jan 26, 2017 Genre: Electronic Style: Techno ----------TRACKS---------- 01. Glenn Wilson - Give Me Your Soul 02. Alexander Johansson - Disambiguation 03. Distek - INFL8 04. Lisa Oakes - Primeval Chaos
schlatt loses to alex botez in a game of chess original vid: https://www.youtube.com/watch?v=d4MfV03CS6I #jschlatt #schlatt #bigguy #short
Provided to YouTube by Miracle of Bravery DISAMBIGUATION (feat. Alexander Alexandrov, Ivan Ivanov, Roxana Amarandi) · Constantine Phyx Gentschev · Alexander Alexandrov · Ivan Ivanov · Roxana Amarandi Plan B ℗ Miracle of Bravery / Believe Music Released on: 2024-02-29 Producer: Constantine D. Gentschev Composer: Constantine D. Gentschev Lyricist: Constantine D. Gentschev Auto-generated by YouTube.
peter sarsgaard is not related to the skarsgård family and i just wanted to help clear that up for everyone
Variety counts down the Top 10 TV Shows of all time. See the full list on Variety.com. https://variety.com/lists/greatest-tv-shows-of-all-time From prestige dramas to groundbreaking sitcoms, see what we chose as the very best. http://bit.ly/VarietySubscribe http://www.facebook.com/variety http://www.instagram.com/variety http://www.twitter.com/variety
Natural language processing is an indispensable toolkit to build knowledge graphs from unstructured data. However, it comes with a price. Keywords and entities in unstructured texts are ambiguous - the same concept can be expressed by many different linguistic variations. The resulting knowledge graph would thus be polluted with many nodes representing the same entity without any order. In this session, we show how the semantic similarity based on transformer embeddings and agglomerative clustering can help in the domain of academic disciplines and research fields and how Neo4j improves the browsing experience of this knowledge graph. Speakers: Federica Ventruto, Alessia Melania Lonoce Format: Full Session 30-45 min Level: Advanced Topics: #KnowledgeGraph, #MachineLearning...
🌏 Get exclusive NordVPN deal here ➵ https://NordVPN.com/coolworlds It’s risk free with Nord’s 30 day money-back guarantee!✌ What kind of evidence would be needed to convince the world of alien life? Sagan said that "extraordinary claims require extraordinary evidence", but what exactly is "extraordinary"? Today we explore the difficult problem of dealing with potentially ambiguous evidence and how it might affect our search for life. Written & presented by Prof. David Kipping. Edited by Jorge Casas. → Support our research: https://www.coolworldslab.com/support → Get merch: https://teespring.com/stores/cool-worlds-store → Check out our podcast: www.youtube.com/@CoolWorldsPodcast THANK-YOU to D. Smith, M. Sloan, L. Sanborn, C. Bottaccini, D. Daughaday, A. Jones, S. Brownlee, N. Kildal, ...
Using Linked Disambiguated Distributional Networks for Word Sense Disambiguation Alexander Panchenko , Stefano Faralli , Simone Paolo Ponzetto , and Chris Biemann Proceeding of the 1st Workshop on Sense, Concept and Entity Representations and their Applications,pages 72-78,Valencia, Spain, April 4 2017. (スライド) https://speakerdeck.com/masaya82/using-linked-disambiguated-distributional-networks-for-word-sense-disambiguation
Born around 360 BC in Pella, the capital of Macedonia, Lysimachus was the son of Agathocles, a nobleman with connections to the Macedonian royal court. Like many young men of his status, Lysimachus would have been trained in the arts of war and diplomacy, disciplines that would serve him well in the years to come.
This biographical video follows the life and accomplishments of Lysimachus, one of Alexander the Great's successors. #history #documentary #film #biography #inspiration #Shorts #fyp #Reels #ai #art #gpt #elevenlabs #midjourney
The most consistently overlooked and underrated Successor, Lysimachus served alongside Alexander the Great for the entirety of his campaign and then struggled to build a kingdom to call his own for 42 years. This is his story Patreon link: https://www.patreon.com/thersites PayPal link: paypal.me/thersites Twitter link: https://twitter.com/ThersitesAthens Minds.com link: https://www.minds.com/ThersitestheHistorian Steemit/dtube link: https://steemit.com/@thersites/feed Backup Channel: https://www.youtube.com/channel/UCUrD-X8ppnwzNV4NzZ7VOmA
Get the poster: https://usefulcharts.com/products/ancient-history-family-trees CREDITS: Chart: Matt Baker Script/Narration: Matt Baker Editing: Jack Rackam Intro animation: Syawish Rehman Intro music: "Lord of the Land" by Kevin MacLeod and licensed under Creative Commons Attribution license 4.0. Available from http://incompetech.com
Ptolmey on Alexander. Son of Amun. Athena the goddess of Wisdom and War. Alexander's visit to the Oracle of Amun at Siwa was, and still is considered as one of the most fascinating events of his reign. It was so widely publicized in antiquity, that king Lysimachos of Thrace, one of Alexander's successors, struck one of the first issues of posthumous silver tetradrachms in the name of Alexander, featuring the portrait of the Macedonian king on the obverse, bearing the horns of Ammon on his head.
If you find our videos helpful you can support us by buying something from amazon. https://www.amazon.com/?tag=wiki-audio-20 Lysimachus =======Image-Copyright-Info======== License: Creative Commons Attribution 3.0 (CC BY 3.0) LicenseLink: http://creativecommons.org/licenses/by/3.0 Author-Info: Sailko Image Source: https://en.wikipedia.org/wiki/File:Lisimaco_(c.d.),_copia_augustea_(23_ac-14_dc)_da_orig._del_II_sec_ac._6141.JPG =======Image-Copyright-Info======== ☆Video is targeted to blind users Attribution: Article text available under CC-BY-SA image source in video
This video introduces my series on Alexander's Successors by talking about what the series will be like and by going through the historical context that the viewer might need to understand the age of the Successors. Patreon link: https://www.patreon.com/thersites PayPal link: paypal.me/thersites Twitter link: https://twitter.com/ThersitesAthens Minds.com link: https://www.minds.com/ThersitestheHistorian Steemit/dtube link: https://steemit.com/@thersites/feed Backup Channel: https://www.youtube.com/channel/UCUrD-X8ppnwzNV4NzZ7VOmA
Conqueror of the known world, propagator of the Hellenistic way of life, undefeated general. Alexander the Great was much more than a brilliant strategist. His coinage and the way he handled the riches of his many conquered peoples transformed the Greek world and its effects rippled for centuries. Today, we’ll explore the way the coinage of Alexander the great and his successors affected the lives of the peoples under their control, and of course, enjoy their artistic mastery and mysterious messages, on the third episode of the Tetradrachm. Like the drawings on my videos? Get them on a T-SHIRT: https://leob.creator-spring.com/ Would you like to know more about ancient coinage? Books are still the best way to seek knowledge. These affiliate links will take you to my personal recommen...
The conclusion to our series on the wars of the Diadochi, covering Demetrius’ fall and rise and fall again, the death of the last successors to Alexander the Great, and the rise of the next generation of Hellenistic kings and queens. Show Notes: (https://hellenisticagepodcast.wordpress.com/2018/12/31/018-to-the-strongest-the-end-of-the-wars-of-the-diadochi/) Title theme by Lina Palera (https://soundcloud.com/user-994392473) Twitter: (https://twitter.com/HellenisticPod) Instagram: (https://www.instagram.com/hellenistic_age_podcast/) Facebook: (https://www.facebook.com/The-Hellenistic-Age-Podcast-495305561000647/)
Check out Squarespace: http://squarespace.com/biographics for a 10% off on your first purchase →Subscribe for new videos every Monday and Thursday! https://www.youtube.com/c/biographics?sub_confirmation=1 This video is sponsored by Squarespace. Visit our companion website for more: http://biographics.org Credits: Host - Simon Whistler Author - Steve Theunissen Producer - Jennifer Da Silva Executive Producer - Shell Harris Business inquiries to [email protected] Biographies by the book, get NAME'S biography from Amazon: INCLUDING AMAZON LINK FROM SPREADSHEET Other Biographics Videos: Albert Einstein: A Pillar of Modern Physics https://youtu.be/VnVVuLIoSWI Aristotle: History's Most Influential Thinker https://youtu.be/qD5O3vXj9eU Source/Further reading: Thomas R. Martin...
Alexander was launched in 1803 at Liverpool, but contracted to the Honourable East India Company, which took her measurements in 1804, and which rated her as an East Indiaman of "600 tons". She made seven trips for the Company before she was sold; during her service she was variously referred to as an "extra" ship, one that the Company chartered for particular voyages, and as a "regular' ship, i.e., one that the Company held on long-term contract. When she sailed during wartime she sailed under letters of marque, which authorised her to use her armaments offensively against enemy, i.e., French vessels, and not just defensively. She was sold in 1817.
Captain John Robinson Francklin was issued a letter of marque on 30 May 1804. He sailed her for Bengal, leaving Portsmouth on 10 July. She reached Funchal on 23 July, and Diamond Harbour on 3 December. On her return leg she reached Saugor in the Hooghly river on 13 January 1805. On 2 February she left there, reaching Madras ten days later. By 20 June she was at St Helena, and by 15 September she had returned to Long Reach. East Indiaman traditionally stopped here to lighten their loads before sailing up the Thames to moorings at Blackwall.