- published: 01 Jun 2018
- views: 238682
'+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; })); }); -->
Marco Polo (i/ˈmɑːrkoʊ ˈpoʊloʊ/; Italian pronunciation: [ˈmarko ˈpɔːlo]; September 15, 1254 – January 8–9, 1324) was an Italian merchant traveller whose travels are recorded in Livres des merveilles du monde (Book of the Marvels of the World, also known as The Travels of Marco Polo, c. 1300), a book that introduced Europeans to Central Asia and China.
He learned the mercantile trade from his father and uncle, Niccolò and Maffeo, who travelled through Asia, and met Kublai Khan. In 1269, they returned to Venice to meet Marco for the first time. The three of them embarked on an epic journey to Asia, returning after 24 years to find Venice at war with Genoa; Marco was imprisoned and dictated his stories to a cellmate. He was released in 1299, became a wealthy merchant, married, and had three children. He died in 1324 and was buried in the church of San Lorenzo in Venice.
Marco Polo was not the first European to reach China (see Europeans in Medieval China), but he was the first to leave a detailed chronicle of his experience. This book inspired Christopher Columbus and many other travellers. There is a substantial literature based on Polo's writings; he also influenced European cartography, leading to the introduction of the Fra Mauro map.
Marco Polo (also known as L'avventura di un italiano in Cina) is a 1961 Italian-French historical adventure film directed by Piero Pierotti and Hugo Fregonese.
Marco Polo is the completely missing fourth serial in the British science fiction television series Doctor Who, which was first broadcast in seven weekly parts from 22 February to 4 April 1964. The story is set in China, in the year 1289, with the regular series characters interacting with Venetian merchant-explorer Marco Polo and Mongolian Emperor Kublai Khan. The historical period and context avoids science fiction elements beyond establishing the way by which the Doctor and his companions have travelled to the past. Although audio recordings and still photographs of the story exist, no footage of this serial is known to have survived.
The TARDIS crew lands in the Himalayas of Cathay in 1289, their ship badly damaged, and are picked up by Marco Polo's caravan on its way along the fabled Silk Road to see the Emperor Kublai Khan. The story concerns the Doctor and his companions' attempts to thwart the machinations of Tegana, who attempts to sabotage the caravan along its travels through the Pamir Plateau and across the treacherous Gobi Desert, and ultimately to assassinate Kublai Khan in Peking, at the height of his imperial power. The Doctor and his companions also attempt to regain the TARDIS, which Marco Polo has taken to give to Kublai Khan in effort to regain the Emperor's good graces. Susan gets the key from Ping-Cho but is captured by Tegana before they can depart. They are finally able to thwart Tegana, who kills himself, and, in doing so, regain the Emperor's respect for Marco Polo, who allows them to depart.
Book of the Marvels of the World (French: Livre des Merveilles du Monde) or Description of the World (Devisement du Monde), in Italian Il Milione (The Million) or Oriente Poliano and in English commonly called The Travels of Marco Polo, is a 13th-century travelogue written down by Rustichello da Pisa from stories told by Marco Polo, describing Polo's travels through Asia between 1276 and 1291, and his experiences at the court of Kublai Khan.
The book was written in Old French by romance writer Rustichello da Pisa, who worked from accounts which he had heard from Marco Polo when they were imprisoned together in Genoa. From the beginning, there has been incredulity over Polo's sometimes fabulous stories, as well as a scholarly debate in recent times. Some have questioned whether Marco had actually traveled to China or was just repeating stories that he had heard from other travelers.
Supporters of the book's basic accuracy have replied—economic historian Mark Elvin concludes that recent work "demonstrates by specific example after specific example the ultimately overwhelming probability of the broad authenticity" of Polo's account, and that the book is, "in essence, authentic, and, when used with care, in broad terms to be trusted as a serious though obviously not always final, witness."
Marco Polo is an American drama series inspired by Marco Polo's early years in the court of Kublai Khan, the Khagan of the Mongol Empire and the founder of the Yuan dynasty (1271–1368), in Khanbaliq (modern Beijing). The show premiered on Netflix on December 12, 2014. The series was written and created by John Fusco and stars Lorenzo Richelmy in the title role with Benedict Wong as Kublai Khan. The series is produced by The Weinstein Company. On January 7, 2015, Marco Polo was renewed by Netflix for a 10-episode second season.
Naxos Records is a record label specializing in classical music. Through a number of imprints, Naxos also releases genres including Chinese music, jazz, world music, and early rock & roll. The company was founded in 1987 by Klaus Heymann, a German-born resident of Hong Kong.
Naxos is the largest independent classical label in the world and one of the two largest-selling classical labels. It is also one of the largest distributors of independent classical record labels in the world. Since 2009 the company has distributed blu-ray discs, streaming web radio and podcasts. The company allows members of subscribing Public Libraries and Music Schools such as Hong Kong Public Libraries, Auckland Libraries, and Wellington City Libraries free streaming of Naxos classical and jazz collections.
The company originally was known for its budget pricing of discs, with simpler artwork and design than most other labels. In the 1980s, Naxos primarily recorded central and eastern European symphony orchestras, often with lesser-known conductors to minimize recording costs and maintain its budget prices.
Marco Polo Cycling–Donckers Koffie (UCI Code: MPC) is a UCI Continental cycling team, registered in Ethiopia. The team is named after traveller Marco Polo, and has title sponsorship from Belgian coffee company Donckers Koffie.
The idea of the team came in 1998 and in 2001 the team was registered in Hong Kong. In 2003 it became a UCI Continental team and from 2005 the team was registered in China becoming the first professional cycling team from China.
Li Fuyu rode with the team for two years from 2005 before joining the Discovery Channel team. This led to a partnership between the teams, resulting in the 2007 Discovery Channel Marco Polo team. In 2008, Trek became the sponsor and the name became Trek-Marco Polo. The team has a house in the Netherlands for riders.
After a ten-year run the team did not have a sponsor for 2013 season.
As of 23 February 2012.
Classroom learning is not only enough for kids, Here TheOpenBook providing printable and online worksheets to help younger kids to learn their alphabets, numbers, shapes, colors and other basic skills. For more info visit our website: http://theopenbook.in/ Subscribe to our Channel : https://www.youtube.com/theopenbook Facebook : https://www.facebook.com/theopenbookedu Subscribe : https://www.youtube.com/theopenbook Add Us on Google+ : https://plus.google.com/u/0/108040655... Twitter : https://twitter.com/thenewopenbook blogger : https://smartedukids.blogspot.in/ The Travels of Marco Polo Born in Venice in 1254 Marco polo travelled with his father and uncle to Asia and chronicled his travels. He jocularly said “I did not write half of what I saw, for I knew I would not be...
In this second video about great explorers, let's retrace the Travels of Marco Polo across Asia, accompanied by his father and his uncle. -------- Support the channel on Patreon: https://www.patreon.com/geohistory -------- English translation & voiceover: Matthew Bates https://www.epicvoiceover.com/ -------- Original French version: https://youtu.be/8r7oLK1vLGQ Russian version: https://youtu.be/5CyCgFhEXO4 Arabic version: https://youtu.be/THGsHvo4Umg Spanish version: https://youtu.be/LCZG7RecP8g Portuguese version (Brazil): Coming soon Japanese version: https://youtu.be/dpt0T6Sa680 German version: https://youtu.be/HNV_wlAhYIU -------- Music: Violet Vape - Cheel (YouTube Library) -------- Software: Adobe After Effects -------- Chapters 00:00 Context 00:41 The travel of Niccolo et Maffeo...
On his death-bed, Marco Polo simply said: "I have not told half of what I saw." This shows what he did say and what you can learn from it. Get the book on Amazon → http://geni.us/faa3OzF Like this? Watch my video on Elon Musk ✨ https://goo.gl/HBOhAi ✨ Share on Facebook 👍 https://goo.gl/Mk8tjN Subscribe to this channel for more videos like this → http://goo.gl/RI6aWR ~ http://twitter.com/OEudaimonia http://instagram.com/obtaineudaimonia http://facebook.com/ObtainEudaimonia http://google.com/+obtaineudaimonia http://obtaineudaimonia.com
Check out Vincero Watches: http://vincerowatches.com/biographics and use the promo code "biographics" for a special discount. Check my other channel TodayIFoundOut! https://www.youtube.com/user/TodayIFoundOut →Subscribe for new videos every Monday and Thursday! https://www.youtube.com/c/biographics?sub_confirmation=1 Visit our companion website for more: http://biographics.org Credits: Host - Simon Whistler Author - Shannon Quinn Producer - Jennifer Da Silva Executive Producer - Shell Harris Business inquiries to [email protected] Other Biographics Videos: Grigori Rasputin: The Devil Incarnate https://youtu.be/NZOHQwzA0bM Mark Zuckerberg: Tech Visionary or Supervillain? https://youtu.be/3WCLFrb5Umo Source/Further reading: https://books.google.com/books?id=VovVAAAAMAAJ&...
The biography of Marco Polo tells the story of one of the most famous explorers of all time. Leaving Venice with his father and uncle, he spent 24 years going all the way from Israel to China, where he lived for 17 years. His life story involves working for the great Kublai Khan personally, surviving perilous journeys, and eventually writing one of the greatest travelogues of all time. To read more facts about Marco Polo, go here: https://www.ranker.com/list/marco-polo-facts/mike-rothschild?utm_source=facebook&utm_medium=historypost&pgid=642850749204637&utm_campaign=marco-polo-facts&fbclid=IwAR0d87wBwbmIu9tNW5lOeUxAlY9BfhHl8AT_zY4c8ir1mbPQQtkut_Ykkws #marcopolo #explorer #WeirdHistory
“In the Footsteps of Marco Polo” chronicles the journey of two ordinary guys as they set out to follow Polo's historic route. Equal parts travelogue, adventure story, history trek and buddy movie, the film weaves footage from the duo's often perilous voyage with Marco Polo's descriptions and experiences. #PBSAmerica #InTheFootstepsOfMarcoPolo #China #History About PBS America: Welcome to PBS America, a British TV channel from America’s public service broadcaster, PBS, showcasing award-winning American history, science, current affairs, plus arts and culture shows alongside the works of living legend Ken Burns, output is all hand-picked by a British team. Get More PBS America: Website: https://www.pbsamerica.co.uk/ Twitter: https://twitter.com/pbsamerica Facebook: https://www.facebook.c...
Did Marco Polo, the most illustrious traveler in history, ever go to China? A dispute lingers to this day; with some scholars still doubting whether the Venetian’s book is a genuine personal account of China’s 13th-century Middle Kingdom and its marvels. Scientists, western scholars, and Chinese historians have uncovered striking new proof that the son of Venetian merchants actually had been in China. This is a journey of opulent vistas, re-enacting Marco Polo’s experiences in 13th-century China and sheds light on the pivotal role, played by an obscure writer of chivalric novels, in producing the manuscript of the Travels of Marco Polo. -- Welcome to the official Get.factual youtube channel! 🌍 We are a documentary streaming channel covering history, science, technology, and nature. Explor...
Marco Polo’s legendary journey from Venice to the far reaches of the Mongol Empire, which he started in 1271, was a monumental leap of human exploration. His travels 700 years ago revealed an exotic world of riches the West had little knowledge of. But how does his journey look today? Welcome to Chronicle; your home for all things medieval history! With documentaries covering everything from the collapse of the Roman Empire to the beginnings of the Renaissance, from Hastings to Charlemagne, we'll be exploring everything the Middle Ages have to offer. Subscribe now so you don't miss out! Chronicle is part of the History Hit Network. To get in touch please email [email protected]. It's like Netflix for history... 📺 Sign up to History Hit, the world's best history docum...
Signup for your FREE trial to The Great Courses Plus here: http://ow.ly/zzmJ30qK1D4 When asked about Marco Polo, people today are more familiar with the game of tag played in a swimming pool than the thirteenth century explorer. But the book,"The travels of Marco Polo" opened Europe's eyes to the Great Mongol Empire. The History Guy recalls the amazing adventures of a man whose travels inspired the Age Of Discovery. This is original content based on research by The History Guy. Images in the Public Domain are carefully selected and provide illustration. As very few images of the actual event are available in the Public Domain, images of similar objects and events are used for illustration. You can purchase the bow tie worn in this episode at The Tie Bar: https://www.thetiebar.com/?u...
Marco Polo was a trader and explorer from the Venetian Republic who is well-known for his worldwide travels. Learn more about this fascinating man. Every day a new episode -- It's here: http://bit.ly/147hvgz SUBSCRIBE! The official channel of all "Once upon a time..." series! Follow the adventures of Maestro, the famous character with the long white beard who will introduce you to Man, Space, Life, The Americas, The Discoverers, The Explorers, Our Earth, and Solar Impulse... #HelloMaestro #onceuponatime
Marco Polo (i/ˈmɑːrkoʊ ˈpoʊloʊ/; Italian pronunciation: [ˈmarko ˈpɔːlo]; September 15, 1254 – January 8–9, 1324) was an Italian merchant traveller whose travels are recorded in Livres des merveilles du monde (Book of the Marvels of the World, also known as The Travels of Marco Polo, c. 1300), a book that introduced Europeans to Central Asia and China.
He learned the mercantile trade from his father and uncle, Niccolò and Maffeo, who travelled through Asia, and met Kublai Khan. In 1269, they returned to Venice to meet Marco for the first time. The three of them embarked on an epic journey to Asia, returning after 24 years to find Venice at war with Genoa; Marco was imprisoned and dictated his stories to a cellmate. He was released in 1299, became a wealthy merchant, married, and had three children. He died in 1324 and was buried in the church of San Lorenzo in Venice.
Marco Polo was not the first European to reach China (see Europeans in Medieval China), but he was the first to leave a detailed chronicle of his experience. This book inspired Christopher Columbus and many other travellers. There is a substantial literature based on Polo's writings; he also influenced European cartography, leading to the introduction of the Fra Mauro map.
Woke to find some blood on the workbench
And forgot where it came from
Over time we get so careless with all the tools to make progress
It's defensive silence that cracks into canyons and grows
Oh no
I'm glad you grew up stronger
I'm glad we grew apart
â'Cause now we laugh much harder and that's a start
We're bitter in our own special ways
We're better now with time spent off stage
It's hard when you have to share half a brain
The other half gets to big for the space
If you want me to find you I'll probably go
We can cheat for each other in Marco Polo
When we still act like brothers it's nothing at all
There's nothing too small
Just don't ask for it all