'+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:

  • Columbus, Vasco da Gama, and Zheng He - 15th Century Mariners: Crash Course World History #21

    In which John Green teaches you about the beginning of the so-called Age of Discovery. You've probably heard of Christopher Columbus, who "discovered" America in 1492, but what about Vasco da Gama? How about Zheng He? Columbus gets a bad rap from many modern historians, but it turns out he was pretty important as far as the history of the world goes. That said, he wasn't the only pioneer plying the seas in the 1400s. In Portugal, Vasco da Gama was busy integrating Europe into the Indian Ocean Trade by sailing around Africa. Chinese admiral Zheng He was also traveling far and wide in the largest wooden ships ever built. Columbus, whether portrayed as a hero or a villain, is usually credited as the great sailor of the 15th century, but he definitely wasn't the only contender. What better way...

    published: 15 Jun 2012
  • I Had A Fight With A Man From The 15th Century

    i genuinely was quite scared for my life towards the end of that! Thank you so much for Christian and the rest of the group for making me feel so welcome... not you Kai, you can take your sword elsewhere. If you want to join them or find a little bit more about them you can check them out here: https://www.facebook.com/invicta.bh

    published: 22 Aug 2021
  • This 15th Century Weapon of War Fired 100 Arrows at Once

    A German weapons expert is attempting to recreate a 15th century Korean rocket launcher, known as a ‘Hwacha.’ Essentially, it’s a device that is lit from the back to fire off a hundred arrows at the same time. From the Series: World of Weapons: Attack From Above http://bitly.com/2PQA8HQ

    published: 12 Mar 2020
  • Fall of The Roman Empire...in the 15th Century: Crash Course World History #12

    In which John Green teaches you about the fall of the Roman Empire, which happened considerably later than you may have been told. While the Western Roman Empire fell to barbarians in 476 CE, the Byzantines in Constantinople continued the Eastern Empire nicely, calling themselves Romans for a further 1000 years. Find out what Justinian and the rest of the Byzantine emperors were up to over there, and how the Roman Empire dragged out its famous Decline well into medieval times. In addition to all this, you'll learn about ancient sports riots and hipster barbarians, too. Chapters: Introduction: The Fall of Rome 00:00 Why Did the Roman Empire Fall? Barbarians at the Gates 0:30 Why Did the Roman Empire Fall? Barbarians Inside the Gates 2:07 An Open Letter to Pants 4:10 Constantine and the Ea...

    published: 13 Apr 2012
  • Did Medieval Billmen Exist in the 15th Century? (Wars of the Roses) Crazy Theories or Not?

    Many assumptions are made and repeated about the 15th century. Many people think 'billmen' were a standard troop type in the Wars of the Roses - but were they? 3 extra videos each month on Patreon, which hugely helps support this channel: https://www.patreon.com/scholagladiatoria Facebook & Twitter updates, info and fun: https://www.facebook.com/historicalfencing/ https://twitter.com/scholagladiato1 Schola Gladiatoria HEMA - sword fighting classes in the UK: https://www.swordfightinglondon.com Matt Easton's website & Pinterest: https://www.matt-easton.co.uk/ https://www.pinterest.co.uk/matt_easton/_saved/ Easton Antique Arms: https://www.antique-swords.co.uk/ #medieval #medievalhistory #war #armor #soldier #history #wargaming #polearm #spear

    published: 27 Oct 2023
  • A Short Summary of the 15th Century

    #15thcentury In Europe, the 15th century includes parts of the Late Middle Ages, the Early Renaissance, and the early modern period. Many technological, social and cultural developments of the 15th century can in retrospect be seen as heralding the "European miracle" of the following centuries. The architectural perspective, and the modern fields which are known today as banking and accounting were founded in Italy. Constantinople, known as the Capital of the World and the Capital of the Byzantine Empire (today's Turkey), fell to the emerging Muslim Ottoman Turks, marking the end of the tremendously influential Byzantine Empire and, for some historians, the end of the Middle Ages. This led to the migration of Greek scholars and texts to Italy, while Johannes Gutenberg's invention of a me...

    published: 16 Dec 2022
  • Medieval Weapons of the 15th Century | Polearms & Side Arms | Wars of the Roses

    In this video, Medieval Weapons of the 15th Century, Kevin Hicks joins his son Josh and Steve Arnold of the Oxford Household re-enactment group to share their collection of polearms and side arms, weapons that would have been used by a man at arms or a common billman during the 15th Century, Wars of the Roses period. They'll be explaining and demonstrating how the weapons would have been used. #warsoftheroses, #medieval #MiddleAges #medievalweapons #manatarms #15thCentury #15C #weapons #polearms #poleaxe #sidearms For more information on the Oxford Household re-enactment society check out their website at https://www.oxfordhousehold.com or their Facebook page https://www.facebook.com/groups/1045229015584366 For more medieval films in the playlist: https://youtube.com/playlist?list=PLZ...

    published: 06 Jul 2022
  • You live in the 15th Century in

    The 15th century or the 1400s is a crazy time in history. Great for memes Discord: https://discord.gg/xzREzuxage My Twitch: https://bit.ly/3k0csQ9 My Tik Tok: https://bit.ly/3q0M902 Support me on Patreon: https://bit.ly/3nVO1om Song list: Age of Empires 3 Ottomans Theme Shogun 2 Total War Ona Hei EU4 - Kairis Soundtrack Emperors Road EU4 - March on Granada Age of Empires 3 Aztecs Theme Mongol Dance music 13 century Bury the Light - Vergil's battle theme from Devil May Cry 5 Jotaro's Theme Egypt Mix - JoJo's Copyright Free Adventures To-In Egypt OST Amen Medieval 2 Total War ost Source: I made it up Thank you to my generous Patrons Frameber59 Julian Feliks Federative CodyTheBruh omega21 TataRojito Fatcat17 Marfin, Albert Comrade LoreNut_Nor Logan Aaron Orlando Joshua, Juhani Yuri19...

    published: 12 May 2022
  • CH- DELHI:12th To 15th Century |NCERT Class 7th History| Easy explanation✅

    #class7 #class7history #history #ncert #cbse #study #school #viralvideo #easyexplaination

    published: 14 Aug 2024
  • Operating the Landsknecht arquebuse of the late 15th century - TEASER

    Stay tuned for a full coverage of the tinder lock Landsknecht arquebuse of the late 15th - early 16th century on the Capandball YouTube channel. Please support us at https://www.patreon.com/capandball For buying Capandball Civil War cartridge boxes, cartridge formers, arsenal label stamps, traditional flintlock tools and US arsenal Stadias: http://stores.ebay.com/Capandball?_trksid=p2047675.l2563 or the Capandball webpage: https://capandball.com/termekkategoria/capandball-products-2/

    published: 09 Jan 2022
Columbus, Vasco da Gama, and Zheng He - 15th Century Mariners: Crash Course World History #21
10:38

Columbus, Vasco da Gama, and Zheng He - 15th Century Mariners: Crash Course World History #21

  • Order:
  • Duration: 10:38
  • Uploaded Date: 15 Jun 2012
  • views: 4215377
In which John Green teaches you about the beginning of the so-called Age of Discovery. You've probably heard of Christopher Columbus, who "discovered" America in 1492, but what about Vasco da Gama? How about Zheng He? Columbus gets a bad rap from many modern historians, but it turns out he was pretty important as far as the history of the world goes. That said, he wasn't the only pioneer plying the seas in the 1400s. In Portugal, Vasco da Gama was busy integrating Europe into the Indian Ocean Trade by sailing around Africa. Chinese admiral Zheng He was also traveling far and wide in the largest wooden ships ever built. Columbus, whether portrayed as a hero or a villain, is usually credited as the great sailor of the 15th century, but he definitely wasn't the only contender. What better way to settle this question than with a knock-down, drag-out, no holds barred, old-fashioned battle royal? We were going to make it a cage match, but welding is EXPENSIVE. Chapters: Introduction 00:00 Notable Sailors of the 15th Century 0:39 Zheng He, Chinese Admiral 1:23 Reasons for China's 15th Century Naval Expeditions 2:57 Vasco da Gama, Portuguese Explorer 4:24 Vasco da Gama's Motivations and Strategies 5:05 Myths about Christopher Columbus 6:33 An Open Letter to the Line of Demarcation 7:21 Christopher Columbus's First Voyage 8:15 Who Was the Greatest Mariner of the 15th Century? 9:29 Credits 10:00 Resources: The Age of Reconnaissance by JH Parry - An explanation of the technologies that made these voyages possible, and a nice detailed record of many of the important voyages. https://bit.ly/3uCvKRg When China Ruled the Sea by Louise Levathes: A history of the Ming dynasty's ventures into maritime exploration. https://bit.ly/3jB0Rqb Unknown Seas by Ronald Watkins: A highly readable account of Vasco da Gama's introduction of Europe into the Indian Ocean trade. https://bit.ly/3M0QvMh Want to find Crash Course elsewhere on the internet? Facebook - http://www.facebook.com/YouTubeCrashCourse Twitter - http://www.twitter.com/TheCrashCourse Instagram - https://www.instagram.com/thecrashcourse/ CC Kids: http://www.youtube.com/crashcoursekids
https://wn.com/Columbus,_Vasco_Da_Gama,_And_Zheng_He_15Th_Century_Mariners_Crash_Course_World_History_21
I Had A Fight With A Man From The 15th Century
10:37

I Had A Fight With A Man From The 15th Century

  • Order:
  • Duration: 10:37
  • Uploaded Date: 22 Aug 2021
  • views: 391801
i genuinely was quite scared for my life towards the end of that! Thank you so much for Christian and the rest of the group for making me feel so welcome... not you Kai, you can take your sword elsewhere. If you want to join them or find a little bit more about them you can check them out here: https://www.facebook.com/invicta.bh
https://wn.com/I_Had_A_Fight_With_A_Man_From_The_15Th_Century
This 15th Century Weapon of War Fired 100 Arrows at Once
2:26

This 15th Century Weapon of War Fired 100 Arrows at Once

  • Order:
  • Duration: 2:26
  • Uploaded Date: 12 Mar 2020
  • views: 2655992
A German weapons expert is attempting to recreate a 15th century Korean rocket launcher, known as a ‘Hwacha.’ Essentially, it’s a device that is lit from the back to fire off a hundred arrows at the same time. From the Series: World of Weapons: Attack From Above http://bitly.com/2PQA8HQ
https://wn.com/This_15Th_Century_Weapon_Of_War_Fired_100_Arrows_At_Once
Fall of The Roman Empire...in the 15th Century: Crash Course World History #12
12:44

Fall of The Roman Empire...in the 15th Century: Crash Course World History #12

  • Order:
  • Duration: 12:44
  • Uploaded Date: 13 Apr 2012
  • views: 8809649
In which John Green teaches you about the fall of the Roman Empire, which happened considerably later than you may have been told. While the Western Roman Empire fell to barbarians in 476 CE, the Byzantines in Constantinople continued the Eastern Empire nicely, calling themselves Romans for a further 1000 years. Find out what Justinian and the rest of the Byzantine emperors were up to over there, and how the Roman Empire dragged out its famous Decline well into medieval times. In addition to all this, you'll learn about ancient sports riots and hipster barbarians, too. Chapters: Introduction: The Fall of Rome 00:00 Why Did the Roman Empire Fall? Barbarians at the Gates 0:30 Why Did the Roman Empire Fall? Barbarians Inside the Gates 2:07 An Open Letter to Pants 4:10 Constantine and the Eastern Roman (Byzantine) Empire 5:10 Comparing the Eastern & Western Roman Empires 6:57 Emperor Justinian 8:08 The Orthodox and Catholic Churches Split 10:38 Credits 12:06 Crash Course is on Patreon! You can support us directly by signing up at http://www.patreon.com/crashcourse Want to find Crash Course elsewhere on the internet? Facebook - http://www.facebook.com/YouTubeCrashCourse Twitter - http://www.twitter.com/TheCrashCourse Instagram - https://www.instagram.com/thecrashcourse/ CC Kids: http://www.youtube.com/crashcoursekids
https://wn.com/Fall_Of_The_Roman_Empire...In_The_15Th_Century_Crash_Course_World_History_12
Did Medieval Billmen Exist in the 15th Century? (Wars of the Roses) Crazy Theories or Not?
17:44

Did Medieval Billmen Exist in the 15th Century? (Wars of the Roses) Crazy Theories or Not?

  • Order:
  • Duration: 17:44
  • Uploaded Date: 27 Oct 2023
  • views: 69034
Many assumptions are made and repeated about the 15th century. Many people think 'billmen' were a standard troop type in the Wars of the Roses - but were they? 3 extra videos each month on Patreon, which hugely helps support this channel: https://www.patreon.com/scholagladiatoria Facebook & Twitter updates, info and fun: https://www.facebook.com/historicalfencing/ https://twitter.com/scholagladiato1 Schola Gladiatoria HEMA - sword fighting classes in the UK: https://www.swordfightinglondon.com Matt Easton's website & Pinterest: https://www.matt-easton.co.uk/ https://www.pinterest.co.uk/matt_easton/_saved/ Easton Antique Arms: https://www.antique-swords.co.uk/ #medieval #medievalhistory #war #armor #soldier #history #wargaming #polearm #spear
https://wn.com/Did_Medieval_Billmen_Exist_In_The_15Th_Century_(Wars_Of_The_Roses)_Crazy_Theories_Or_Not
A Short Summary of the 15th Century
2:54

A Short Summary of the 15th Century

  • Order:
  • Duration: 2:54
  • Uploaded Date: 16 Dec 2022
  • views: 690
#15thcentury In Europe, the 15th century includes parts of the Late Middle Ages, the Early Renaissance, and the early modern period. Many technological, social and cultural developments of the 15th century can in retrospect be seen as heralding the "European miracle" of the following centuries. The architectural perspective, and the modern fields which are known today as banking and accounting were founded in Italy. Constantinople, known as the Capital of the World and the Capital of the Byzantine Empire (today's Turkey), fell to the emerging Muslim Ottoman Turks, marking the end of the tremendously influential Byzantine Empire and, for some historians, the end of the Middle Ages. This led to the migration of Greek scholars and texts to Italy, while Johannes Gutenberg's invention of a mechanical movable type began the printing press. These two events played key roles in the development of the Renaissance. The Roman Papacy was split in two parts in Europe for decades (the so-called Western Schism), until the Council of Constance. The division of the Catholic Church and the unrest associated with the Hussite movement would become factors in the rise of the Protestant Reformation in the following century. Islamic Spain (Al-Andalus) became dissolved through the Christian Reconquista, followed by the forced conversions and the Muslim rebellion, ending over seven centuries of Islamic rule and returning Spain, Portugal and Southern France to Christian rulers. The search for the wealth and prosperity of India's Bengal Sultanate led to the colonization of the Americas by Christopher Columbus in 1492 and the Portuguese voyages by Vasco da Gama, which linked Europe with the Indian subcontinent, ushering the period of Iberian empires. The Hundred Years' War ended with a decisive French victory over the English in the Battle of Castillon. Financial troubles in England following the conflict resulted in the Wars of the Roses, a series of dynastic wars for the throne of England. The conflicts ended with the defeat of Richard III by Henry VII at the Battle of Bosworth Field, establishing the Tudor dynasty in the later part of the century. In Asia, the Timurid Empire collapsed, and the Afghan Pashtun Lodi dynasty was founded under the Delhi Sultanate. Under the rule of the Yongle Emperor, who built the Forbidden City and commanded Zheng He to explore the world overseas, the Ming Dynasty's territory reached its pinnacle. In Africa, the spread of Islam lead to the destruction of the Christian kingdoms of Nubia, by the end of the century, leaving only Alodia (which was to collapse in 1504). The formerly vast Mali Empire teetered on the brink of collapse, under pressure from the rising Songhai Empire. In the Americas, both the Inca Empire and the Aztec Empire reached the peak of their influence, but the European colonization of the Americas changed the course of modern history.
https://wn.com/A_Short_Summary_Of_The_15Th_Century
Medieval Weapons of the 15th Century | Polearms & Side Arms | Wars of the Roses
9:07

Medieval Weapons of the 15th Century | Polearms & Side Arms | Wars of the Roses

  • Order:
  • Duration: 9:07
  • Uploaded Date: 06 Jul 2022
  • views: 90353
In this video, Medieval Weapons of the 15th Century, Kevin Hicks joins his son Josh and Steve Arnold of the Oxford Household re-enactment group to share their collection of polearms and side arms, weapons that would have been used by a man at arms or a common billman during the 15th Century, Wars of the Roses period. They'll be explaining and demonstrating how the weapons would have been used. #warsoftheroses, #medieval #MiddleAges #medievalweapons #manatarms #15thCentury #15C #weapons #polearms #poleaxe #sidearms For more information on the Oxford Household re-enactment society check out their website at https://www.oxfordhousehold.com or their Facebook page https://www.facebook.com/groups/1045229015584366 For more medieval films in the playlist: https://youtube.com/playlist?list=PLZ5bkawra-DhZjVjTuzuY7rZZKWthp2u0 If you like the video and the channel, you can further support us through: https://www.patreon.com/thehistorysquad Facebook: https://www.facebook.com/historysquad Twitter: https://twitter.com/history_hicks Website: https://www.historysquad.ca
https://wn.com/Medieval_Weapons_Of_The_15Th_Century_|_Polearms_Side_Arms_|_Wars_Of_The_Roses
You live in the 15th Century in
0:51

You live in the 15th Century in

  • Order:
  • Duration: 0:51
  • Uploaded Date: 12 May 2022
  • views: 431583
The 15th century or the 1400s is a crazy time in history. Great for memes Discord: https://discord.gg/xzREzuxage My Twitch: https://bit.ly/3k0csQ9 My Tik Tok: https://bit.ly/3q0M902 Support me on Patreon: https://bit.ly/3nVO1om Song list: Age of Empires 3 Ottomans Theme Shogun 2 Total War Ona Hei EU4 - Kairis Soundtrack Emperors Road EU4 - March on Granada Age of Empires 3 Aztecs Theme Mongol Dance music 13 century Bury the Light - Vergil's battle theme from Devil May Cry 5 Jotaro's Theme Egypt Mix - JoJo's Copyright Free Adventures To-In Egypt OST Amen Medieval 2 Total War ost Source: I made it up Thank you to my generous Patrons Frameber59 Julian Feliks Federative CodyTheBruh omega21 TataRojito Fatcat17 Marfin, Albert Comrade LoreNut_Nor Logan Aaron Orlando Joshua, Juhani Yuri192802 Not yet a Yee Yee Anubassx Sparkee Donovan ThatOneLoser ManOfCulture Jackkarol Magnus Aleksandr Birb xSONOHx #history #meme #15th century
https://wn.com/You_Live_In_The_15Th_Century_In
CH- DELHI:12th To 15th Century |NCERT Class 7th History| Easy explanation✅
4:47

CH- DELHI:12th To 15th Century |NCERT Class 7th History| Easy explanation✅

  • Order:
  • Duration: 4:47
  • Uploaded Date: 14 Aug 2024
  • views: 14
#class7 #class7history #history #ncert #cbse #study #school #viralvideo #easyexplaination
https://wn.com/Ch_Delhi_12Th_To_15Th_Century_|Ncert_Class_7Th_History|_Easy_Explanation✅
Operating the Landsknecht arquebuse of the late 15th century - TEASER
1:35

Operating the Landsknecht arquebuse of the late 15th century - TEASER

  • Order:
  • Duration: 1:35
  • Uploaded Date: 09 Jan 2022
  • views: 613129
Stay tuned for a full coverage of the tinder lock Landsknecht arquebuse of the late 15th - early 16th century on the Capandball YouTube channel. Please support us at https://www.patreon.com/capandball For buying Capandball Civil War cartridge boxes, cartridge formers, arsenal label stamps, traditional flintlock tools and US arsenal Stadias: http://stores.ebay.com/Capandball?_trksid=p2047675.l2563 or the Capandball webpage: https://capandball.com/termekkategoria/capandball-products-2/
https://wn.com/Operating_The_Landsknecht_Arquebuse_Of_The_Late_15Th_Century_Teaser
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Columbus, Vasco da Gama, and Zheng He - 15th Century Mariners: Crash Course World History #21
    10:38
    Columbus, Vasco da Gama, and Zheng He - 15th Century Mariners: Crash Course World History #21remove from playlist
  • I Had A Fight With A Man From The 15th Century
    10:37
    I Had A Fight With A Man From The 15th Centuryremove from playlist
  • This 15th Century Weapon of War Fired 100 Arrows at Once
    2:26
    This 15th Century Weapon of War Fired 100 Arrows at Onceremove from playlist
  • Fall of The Roman Empire...in the 15th Century: Crash Course World History #12
    12:44
    Fall of The Roman Empire...in the 15th Century: Crash Course World History #12remove from playlist
  • Did Medieval Billmen Exist in the 15th Century? (Wars of the Roses) Crazy Theories or Not?
    17:44
    Did Medieval Billmen Exist in the 15th Century? (Wars of the Roses) Crazy Theories or Not?remove from playlist
  • A Short Summary of the 15th Century
    2:54
    A Short Summary of the 15th Centuryremove from playlist
  • Medieval Weapons of the 15th Century | Polearms & Side Arms | Wars of the Roses
    9:07
    Medieval Weapons of the 15th Century | Polearms & Side Arms | Wars of the Rosesremove from playlist
  • You live in the 15th Century in
    0:51
    You live in the 15th Century inremove from playlist
  • Operating the Landsknecht arquebuse of the late 15th century - TEASER
    1:35
    Operating the Landsknecht arquebuse of the late 15th century - TEASERremove from playlist
PLAYLIST TIME: 0:00 / 1:13:23

Columbus, Vasco da Gama, and Zheng He - 15th Century Mariners: Crash Course World History #21

In which John Green teaches you about the beginning of the so-called Age of Discovery. You've probably heard of Christopher Columbus, who "discovered" America in 1492, but what about Vasco da Gama? How about Zheng He? Columbus gets a bad rap from many modern historians, but it turns out he was pretty important as far as the history of the world goes. That said, he wasn't the only pioneer plying the seas in the 1400s. In Portugal, Vasco da Gama was busy integrating Europe into the Indian Ocean Trade by sailing around Africa. Chinese admiral Zheng He was also traveling far and wide in the largest wooden ships ever built. Columbus, whether portrayed as a hero or a villain, is usually credited as the great sailor of the 15th century, but he definitely wasn't the only contender. What better way to settle this question than with a knock-down, drag-out, no holds barred, old-fashioned battle royal? We were going to make it a cage match, but welding is EXPENSIVE. Chapters: Introduction 00:00 Notable Sailors of the 15th Century 0:39 Zheng He, Chinese Admiral 1:23 Reasons for China's 15th Century Naval Expeditions 2:57 Vasco da Gama, Portuguese Explorer 4:24 Vasco da Gama's Motivations and Strategies 5:05 Myths about Christopher Columbus 6:33 An Open Letter to the Line of Demarcation 7:21 Christopher Columbus's First Voyage 8:15 Who Was the Greatest Mariner of the 15th Century? 9:29 Credits 10:00 Resources: The Age of Reconnaissance by JH Parry - An explanation of the technologies that made these voyages possible, and a nice detailed record of many of the important voyages. https://bit.ly/3uCvKRg When China Ruled the Sea by Louise Levathes: A history of the Ming dynasty's ventures into maritime exploration. https://bit.ly/3jB0Rqb Unknown Seas by Ronald Watkins: A highly readable account of Vasco da Gama's introduction of Europe into the Indian Ocean trade. https://bit.ly/3M0QvMh Want to find Crash Course elsewhere on the internet? Facebook - http://www.facebook.com/YouTubeCrashCourse Twitter - http://www.twitter.com/TheCrashCourse Instagram - https://www.instagram.com/thecrashcourse/ CC Kids: http://www.youtube.com/crashcoursekids
10:38
Columbus, Vasco da Gama, and Zheng He - 15th Century Mariners: Crash Course World History #21
In which John Green teaches you about the beginning of the so-called Age of Discovery. You...
published: 15 Jun 2012
Play in Full Screen
10:37
I Had A Fight With A Man From The 15th Century
i genuinely was quite scared for my life towards the end of that! Thank you so much for ...
published: 22 Aug 2021
Play in Full Screen
2:26
This 15th Century Weapon of War Fired 100 Arrows at Once
A German weapons expert is attempting to recreate a 15th century Korean rocket launcher, k...
published: 12 Mar 2020
Play in Full Screen
12:44
Fall of The Roman Empire...in the 15th Century: Crash Course World History #12
In which John Green teaches you about the fall of the Roman Empire, which happened conside...
published: 13 Apr 2012
Play in Full Screen
17:44
Did Medieval Billmen Exist in the 15th Century? (Wars of the Roses) Crazy Theories or Not?
Many assumptions are made and repeated about the 15th century. Many people think 'billmen'...
published: 27 Oct 2023
Play in Full Screen
2:54
A Short Summary of the 15th Century
#15thcentury In Europe, the 15th century includes parts of the Late Middle Ages, the Earl...
published: 16 Dec 2022
Play in Full Screen
9:07
Medieval Weapons of the 15th Century | Polearms & Side Arms | Wars of the Roses
In this video, Medieval Weapons of the 15th Century, Kevin Hicks joins his son Josh and St...
published: 06 Jul 2022
Play in Full Screen
0:51
You live in the 15th Century in
The 15th century or the 1400s is a crazy time in history. Great for memes Discord: https:...
published: 12 May 2022
Play in Full Screen
4:47
CH- DELHI:12th To 15th Century |NCERT Class 7th History| Easy explanation✅
#class7 #class7history #history #ncert #cbse #study #school #viralvideo #easyexplaination
published: 14 Aug 2024
Play in Full Screen
1:35
Operating the Landsknecht arquebuse of the late 15th century - TEASER
Stay tuned for a full coverage of the tinder lock Landsknecht arquebuse of the late 15th -...
published: 09 Jan 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: 15th century

Edit

Crossbasket Castle review: where the 17th century meets the Roaring Twenties

The Times/The Sunday Times 09 May 2025
Midway between Hamilton and East Kilbride, the building began life as a 15th-century tower, expanding to full baronial-style castle status in the 17th century. A litany of wealthy 18th and 19th-century ...
Edit

Make tracks to Bernkastel-Kues’ cardinal points of tribute to beloved genius

Stars and Stripes 08 May 2025
Roughly an hour and 10 minutes from Ramstein Air Base by car, it’s a veritable monument to a 15th-century native son named Nicholas of Cusa, a cardinal who embodied the term “Renaissance man.”.
Edit

Cardinals begin voting for pope

The Daily Tribune - Bahrain 08 May 2025
The cardinal electors had earlier gathered in the nearby Pauline Chapel in silent prayer before proceeding to the 15th-century Sistine Chapel, where tables and chairs have been laid out beneath Michelangelo’s frescoes.
Edit

Cardinals to vote anew for pope after second black smoke - Jamaica Observer

Jamaica Observer 08 May 2025
The 133 cardinals began their secretive conclave in the 15th-century Sistine ...
Edit

All eyes on Sistine Chapel chimney as conclave enters day two

Independent online (SA) 08 May 2025
After first gathering for silent prayer in the Vatican's Pauline Chapel, they proceeded in a colourful procession escorted by Swiss Guards to the famed 15th-century chapel decorated by Michelangelo's frescoes.
Edit

Papal conclave: Cardinals resume discussions on new pope

The Irish Times 08 May 2025
57 minutes ago. Main Points ... Today’s vote again takes place in secret inside the famous 15th century Sistine Chapel, we are unlikely to have a result one way or another until after 11am.Best reads. Patsy McGarry in Rome ... .
Edit

White smoke billows from Sistine Chapel, new pope elected

The New Arab 08 May 2025
The 133 cardinals began their secretive conclave in the 15th-century Sistine Chapel on Wednesday afternoon, seeking a successor to Pope Francis as head of the world's 1.4 billion Catholics.
Edit

HBL PSL 2025: Hasan, Rossouw slam tons as Gladiators rout United

Dawn 08 May 2025
The left-hander showed his leg-side prowess again in the 15th, bringing up his century — his third PSL ton — in only 44 balls, before holing Imad out to Jason Holder at long-on.
Edit

French tapestry of scene from ‘Spirited Away’ shown in Nagoya

Asahi News 08 May 2025
17 ... Aubusson tapestry-making, a craft originating in the Creuse region of central France, boasts a rich history dating back to the 15th century ... So far, four tapestries have been completed ... .
Edit

What is a conclave and when does the Vatican vote?

The Daily Telegraph 08 May 2025
The centuries-old tradition must be held between 15 and 20 days after the Pope’s death ... Two metal stoves are installed inside the 15th-century chapel, connected by a long metal pipe to the chimney on the roof.
Edit

Cardinals to return to Sistine Chapel to elect new pope

RTE 08 May 2025
By the numbers ... What the Church needs ... After first gathering for silent prayer in the Vatican's Pauline Chapel, they proceeded in a colourful procession escorted by Swiss Guards to the famed 15th-century chapel decorated by Michelangelo's frescoes.
Edit

Black smoke rises again, as voting for pope continues

Taipei Times 08 May 2025
AFP, VATICAN CITY ... Sequestered away from the world, they communicate their progress by burning their ballot papers and sending up smoke through the chimney of the frescoed 15th-century chapel ... “It is very, very exciting to be here,” he said ... .
Edit

Cardinals proceed to further ballot as no pope elected

RTE 08 May 2025
By the numbers. The arithmetic behind the papal conclave ... After first gathering for silent prayer in the Vatican's Pauline Chapel, they proceeded under escort by Swiss Guards to the famed 15th-century chapel decorated with Michelangelo's frescoes.
Edit

Black smoke billows; cardinals set to vote again

The Manila Times 08 May 2025
Among the thousands of Catholics and curious tourists massed in St ... Sequestered away from the world, they communicate their progress by burning their ballot papers and sending up smoke through the chimney of the frescoed 15th-century chapel ... Waiting.
Edit

Black smoke: Cardinals fail to elect new pope on first try

Knoxville Daily Sun 08 May 2025
The cardinal electors had earlier gathered in the nearby Pauline Chapel in silent prayer before proceeding to the 15th-century Sistine Chapel, where tables and chairs were laid out beneath Michelangelo's frescoes.�.
×