- published: 11 Jul 2019
- views: 1018363
'+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; })); }); -->
Philip (Greek: ฮฆฮฏฮปฮนฯฯฮฟฯ, flourished 4th century BC) was a Greek nobleman who was a Macedonian Thessalian and his fatherโs first youngest brother (one of Philipโs paternal uncles) was Lysimachus one of the Diadochi of Alexander the Great.
Philip was a son born to Alcimachus of Apollonia by unnamed Greek woman and had a brother also called Alcimachus. His known grandparent was his paternal grandfather Agathocles. Philipโs father served as an official, and as an active diplomat and administrator in the latter reign of King Philip II of Macedon who reigned 359 BCโ336 BC and the first years of his son, King Alexander the Great reigned 336 BCโ323 BC. Philip was named in honor of his paternal late uncle Philip, a soldier who died in the service of Alexander the Great.
Philip like his brother, appears to have been born and raised in Apollonia and is known from surviving inscriptional evidence. In a surviving inscription he is mentioned as Philip son of Alcimachus and little is known on him.
Philip (in Greek ฮฆฮนฮปฮนฯฯoฯ; died 318 BC) was satrap of Sogdiana, to which government he was first appointed by Alexander the Great himself in 327 BC. He retained his post, as did most of the satraps of the more remote provinces, in the arrangements which followed the death of the king (323 BC); but in the subsequent partition at Triparadisus, 321 BC, he was assigned the government of Parthia instead. Here he remained until 318 BC, when Peithon, who was then seeking to establish his power over all the provinces of the East, made himself master of Parthia, and put Philip to death.
ย 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.ย
Philip (in Greek ฮฆฮนฮปฮนฯฯoฯ; died 306 BC), son of Antigonus, king of Asia, was sent by his father in 310 BC, at the head of an army, to oppose the revolt of his general Phoenix, and to recover possession of the towns on the Hellespont held by the latter. He died in 306 BC, just as Antigonus was setting out for his expedition against Egypt.
ย 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.ย
Previously we have made an animated historical documentary on the battle of Nisibis http://bit.ly/30vmmwO between the Roman and the Parthian empires. But that battle was far from first - two empires started fighting immediately after their borders touched and that war led to the iconic battle of Carrhae in 53 BC, during which the Romans of the triumvir Marcus Crassus fought against the Parthians of Surena. Support us on Patreon: http://www.patreon.com/KingsandGenerals or Paypal: http://paypal.me/kingsandgenerals We are grateful to our patrons and sponsors, who made this video possible: https://drive.google.com/open?id=1JlqSD0nyP64psCnaLrwFT3zVTZiordU1jnwXeZOu1to The video, alongside Machinima for it was created by Malay Archer http://bit.ly/2HjS2zP while the script video was written by ...
Hey im showing my constructions on my server i wont let ppl connect cuse i will just host it 24/7 of ppl wants to join. plz SUBSCRIBE!!!!!
The Achaemenid Persians took Syria from Babylonia as part of their hegemony of Southwest Asia in 539 BC. The Persians, having spent four centuries under Assyrian rule, retained Imperial Aramaic as the language of the Achaemenid Empire (539 BC- 33O BC), and also the Assyrian name of the satrapy of Aram/Syria Eber-Nari. Syria was conquered by the Greek Macedonian Empire, ruled by Alexander the Great circa 330 BC, and consequently became Coele-Syria province of the Greek Seleucid Empire (323 BC โ 64 BC). It was the Greeks who introduced the name "Syria" to the region. Originally an Indo-European corruption of "Assyria" in northern Mesopotamia, the Greeks used this term not only to describe Assyria itself but the lands to the west which had for centuries been under Assyrian dominion. Thus in...
๐ถ๐๐พ๐ ๐ฃ๐บ๐๐๐๐ ๐ ๐พ๐บ๐๐๐พ๐ฝ ๐๐ฟ ๐ ๐ ๐พ๐๐บ๐๐ฝ๐พ๐'๐ ๐บ๐๐๐๐๐บ๐ผ๐๐๐๐ ๐บ๐๐๐, ๐๐พ ๐ฝ๐พ๐ผ๐๐ฝ๐พ๐ฝ ๐๐ ๐๐พ๐๐๐พ๐บ๐ ๐๐ ๐ก๐บ๐ผ๐๐๐๐บ. ๐ง๐พ ๐ ๐พ๐ฝ ๐๐๐ ๐บ๐๐๐ ๐๐๐๐๐๐๐ ๐๐๐พ ๐ข๐บ๐๐๐๐บ๐ ๐ฆ๐บ๐๐พ๐. ๐ฏ๐พ๐๐๐๐บ๐ ๐ฟ๐๐๐ผ๐พ๐ ๐ป๐พ๐ผ๐บ๐๐พ ๐๐๐ผ๐๐พ๐บ๐๐๐๐๐ ๐ ๐ฝ๐พ๐๐๐๐บ๐ ๐๐๐พ๐ฝ ๐๐๐๐ ๐๐๐พ ๐ผ๐๐๐๐๐บ๐๐ ๐๐๐๐พ๐บ๐ ๐๐ฟ ๐บ ๐๐๐๐๐๐๐๐พ ๐บ๐๐๐บ๐ผ๐ ๐ฟ๐๐๐ ๐ ๐ ๐พ๐๐บ๐๐ฝ๐พ๐, ๐ ๐พ๐บ๐ฝ๐๐๐ ๐๐ ๐๐บ๐๐ ๐ฝ๐พ๐๐พ๐๐๐๐๐๐ ๐บ๐๐ฝ ๐พ๐๐พ๐๐๐๐บ๐ ๐ ๐ ๐บ ๐ผ๐๐๐ ๐ ๐พ๐ฝ ๐ป๐ ๐ก๐พ๐๐๐๐, ๐บ ๐๐บ๐๐๐บ๐, ๐บ๐๐ฝ ๐ญ๐บ๐ป๐บ๐๐๐บ๐๐พ๐, ๐๐๐ ๐๐บ๐๐บ๐๐พ๐ฝ ๐บ๐ ๐ ๐บ๐๐ฝ๐๐พ๐๐ผ๐พ๐ ๐๐๐๐ ๐๐๐พ ๐ช๐๐๐ ๐บ๐๐ฝ ๐๐บ๐ ๐๐ ๐ผ๐๐บ๐๐๐พ ๐๐ฟ ๐๐๐พ ๐๐บ๐ ๐บ๐ผ๐พ ๐๐๐บ๐๐ฝ. ๐ณ๐๐พ ๐๐๐ ๐๐พ๐ ๐๐๐๐๐พ๐๐๐พ๐ฝ ๐๐ ๐ฃ๐บ๐๐๐๐ ๐๐๐บ๐ ๐๐๐พ ๐บ๐๐๐ ๐๐พ๐๐๐๐๐ ๐๐๐ฝ๐พ๐ ๐ก๐พ๐๐๐๐ ๐บ๐๐ฝ ๐๐๐บ๐ ๐๐๐๐พ๐ ๐๐๐๐ ๐ฝ ๐ป๐พ ๐๐๐บ๐๐๐ฟ๐พ๐๐๐พ๐ฝ ๐ป๐บ๐ผ๐ ๐๐ ๐๐๐พ ๐ช๐๐๐ ๐๐๐ผ๐พ ๐ ๐ ๐พ๐๐บ๐๐ฝ๐พ๐ ๐๐บ๐ ๐ฝ๐พ๐ฟ๐พ๐บ๐๐พ๐ฝ. ๐ฃ๐บ๐๐๐๐ ๐๐ป๐๐๐๐๐๐ ๐ ๐ฝ๐๐ฝ ๐๐๐ ๐บ๐ผ๐ผ๐พ๐๐ ๐๐๐๐ ๐๐ ๐บ๐ ๐บ๐๐ฝ ๐๐๐ ๐ผ๐๐๐๐๐๐๐บ๐๐๐๐ ๐ป๐พ๐ผ๐บ๐๐พ ๐๐๐๐พ ๐บ๐๐๐๐๐๐ ๐๐ ๐๐พ๐๐๐๐พ ๐๐๐ ๐ฟ๐๐ ๐๐๐ ๐๐๐ผ๐ผ๐พ๐๐๐๐๐พ ๐ฟ๐บ๐๐ ๐๐๐พ๐ ๐บ๐๐บ๐๐๐๐ ๐ ๐ ๐พ๐๐บ๐๐ฝ๐พ๐ ๐บ๐๐ฝ ๐๐๐ ๐ฟ๐๐๐ผ๐พ๐. ๐ฏ๐บ๐๐๐๐, ๐บ ๐ฆ๐๐พ๐พ๐ ๐๐พ๐๐ผ๐พ๐๐บ๐๐, ๐พ๐๐ผ๐๐๐๐บ๐๐พ๐ฝ ๐ฃ๐บ๐๐๐๐ ๐๐ ๐บ๐ผ๐ผ๐พ๐๐ ๐บ ๐ป๐๐ฝ๐๐๐๐บ๐๐ฝ ๐๐ฟ ๐ฆ๐๐พ๐พ๐ ๐๐พ๐๐ผ๐พ๐๐บ๐...
After Philip is assassinated, Alexander becomes King of Macedonia. I do not own nor take credit for the clips uploaded here. All credit goes to the creatorsowners. I do not take or plan of making profit for any of the videos posted here. I upload the videos for entertainment purposes only.
In the wake of the legendary conqueror Alexander the Great, his mightiest generals vied for dominance over his empire, the largest the world had ever yet seen. One of these was Antigonus Monophthalmus, the One-Eyed. His epic tale is one of power and ambition, with more than a touch of hubris. Had it not been for how worried he made the other Successors, or Diadochi, he may well have remained the most powerful of all. And yet it was precisely his power in life that ultimately led to his death, at the age of 81, in the place he spent all his life - in the front line of battle. As soon as the Partition of Babylon was held, Antigonus went on an expansive spree of war, picking off enemies and annexing lands, one after the other. Accompanied or aided at all times by his son Demetrius, who woul...
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
Following the death of Alexander the Great, his empire split into wearing factions. One of these factions was the Antigonids who took over mainland Greece and Macedon. Discover more about this Ancient Macedonian Dynasty now! Sources: https://www.ancient.eu/ https://www.britannica.com/ SUPPORT ANCIENT HISTORY GUY ON PATREON AND GET A NEW DOCUMENTARY EVERY MONTH! : https://www.patreon.com/ancienthistoryguy BUY OUR MERCH! https://teespring.com/stores/ancient-... ------------------------------------------- Music provided by No Copyright Music: https://www.youtube.com/c/royaltyfree... Music used: Nomadic Sunset by Alexander Nakarada @ SerpentSound Studios https://soundcloud.com/serpentsoundst... Licensed under Creative Commons Attribution 4.0 https://creativecommons.org/licenses/. ------...
Alexander's policy of fusion was held in place by his force of personality and power. After his death the initial challenge from some of his men to this policy became to tear at the fabric of Alexander's vision of empire. The marriage between Roxanne and Alexander which took place in 327 BC has continued to be a point of contention among historians. Was it a marriage of love or a political alliance as Plutarch suggested? Such marriages were something Alexander's father had done on a number of occasions. It is also unlikely that Alexander would have taken advantage of Roxanne without marriage, another violation of his policies. It follows, therefore, that the marriage was in line with Alexander's policy of uniting the two cultures โ Greek and Persian. Alexander would later insist that many...
In this video, I lay out the basic history of Macedon with an emphasis on the age of Philip II, but extending from the Archaic through the Hellenistic periods. I also look at several Greek and Macedonian cities in Macedon, looking at some of their remains and discussing their role in the history of Macedon and the larger Greek world. Patreon link: https://www.patreon.com/thersites PayPal link: paypal.me/thersites https://brave.com/noa557 Twitter link: https://twitter.com/ThersitesAthens Minds.com link: https://www.minds.com/ThersitestheHistorian Steemit/dtube link: https://steemit.com/@thersites/feed BitChute: https://www.bitchute.com/channel/jbyggyAKQvVL/ Backup Channel: https://www.youtube.com/channel/UCUrD-X8ppnwzNV4NzZ7VOmA
At only 18 years of age, Philip V was crowned with the diadem following the death of his uncle Antigonus III Doson in 221. Many believed that the boy was going to be a pushover, easy prey for the machinations of his courtiers and for the many belligerent powers of the Greek Peninsula. Philip however proved to be a king in the mold of Pyrrhus and Alexander, spearheading a campaign against the transgressions of the Aetolian League in the so-called Social War (the War of the Allies) while also side-stepping the plots of corrupt advisors. Show Links Episode Notes: (https://hellenisticagepodcast.wordpress.com/2021/11/11/066-antigonid-macedon-philip-v-and-the-social-war/) Episode 066 Transcript: (https://hellenisticagepodcast.files.wordpress.com/2021/11/066-antigonid-macedon-philip-v-and-the-...
Step into the world of ancient warfare as we delve into the revolutionary Macedonian military tactics that reshaped history. Spearheaded by Philip II and later his son, Alexander the Great, the Macedonian army was a force to be reckoned with. From the Balkans to Egypt, and all the way to the Indian subcontinent, the impact of their groundbreaking strategies still echoes today. Central to Macedonian dominance was the famed Macedonian phalanx, a tight formation of infantry armed with sarissasโa type of long spear far superior to anything their enemies wielded. The sarissa gave Macedonian infantry an unrivaled edge in close combat, making the phalanx almost impenetrable. This innovative use of infantry was only one piece of the puzzle. Add to this the exceptional Companion Cavalry, led perso...
If you find our videos helpful you can support us by buying something from amazon. https://www.amazon.com/?tag=wiki-audio-20 Philip V of Macedon =======Image-Copyright-Info======= Image is in public domain Author-Info: PHGCOM Image Source: https://en.wikipedia.org/wiki/File:Philip_V_of_Macedon_BM.jpg =======Image-Copyright-Info======== โVideo is targeted to blind users Attribution: Article text available under CC-BY-SA image source in video
The long reign of Philip V comes to an end after nearly 42 years on the throne. Following the defeat at Cynoscephalae, the Antigonid ruler spends the next two decades restoring his kingdom through economic and military reforms. By 179, Macedonia was once again a powerhouse to be reckoned with. However, infighting between the two princes Perseus and Demetrius would threaten to undermine the dynasty's unity, as an appropriately Greek tragedy stains the final days of Philip's career. Episode Notes: (https://hellenisticagepodcast.wordpress.com/2024/10/16/101-antigonid-macedon-a-house-divided/) Episode Transcript: (https://hellenisticagepodcast.wordpress.com/wp-content/uploads/2024/10/101-antigonid-macedon-a-house-divided-transcript.pdf) Family Tree (Reign of Philip V): (https://hellenistica...
Philip (Greek: ฮฆฮฏฮปฮนฯฯฮฟฯ, flourished 4th century BC) was a Greek nobleman who was a Macedonian Thessalian and his fatherโs first youngest brother (one of Philipโs paternal uncles) was Lysimachus one of the Diadochi of Alexander the Great.
Philip was a son born to Alcimachus of Apollonia by unnamed Greek woman and had a brother also called Alcimachus. His known grandparent was his paternal grandfather Agathocles. Philipโs father served as an official, and as an active diplomat and administrator in the latter reign of King Philip II of Macedon who reigned 359 BCโ336 BC and the first years of his son, King Alexander the Great reigned 336 BCโ323 BC. Philip was named in honor of his paternal late uncle Philip, a soldier who died in the service of Alexander the Great.
Philip like his brother, appears to have been born and raised in Apollonia and is known from surviving inscriptional evidence. In a surviving inscription he is mentioned as Philip son of Alcimachus and little is known on him.