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

Latin America

Latin America is the group of territories and countries in the Americas where Romance languages are spoken. The term originated in 19th century France to include French-speaking territories in the Americas within the larger group of countries that speak Spanish and Portuguese. It is therefore marginally broader than the term Iberian America or Spanish America, though it excludes French-speaking Quebec. Latin America consists of twenty sovereign states and several territories and dependencies which cover an area that stretches from the southern border of the United States to the southern tip of South America, including the Caribbean. It has an area of approximately 19,197,000 km2 (7,412,000 sq mi), almost 13% of the earth's land surface area.

As of 2015, its population was estimated at more than 626 million and in 2014, Latin America had a combined nominal GDP of 5,573,397 million USD and a GDP PPP of 7,531,585 million USD. The term "Latin America" was first used in 1861 in La revue des races Latines, a magazine "dedicated to the cause of Pan-Latinism".

Podcasts:

  • Why Is Latin America still Poor

    Why is Latin America poorer than North America? The massive differences in wealth between a rich United States and a relatively poor central and south America is startling and hard to explain at first. In the video we delve into the key historical, political and economic factors that have led to this inequality, finding that the answer is more startling and interesting than initially expected. Please Subscribe! https://www.youtube.com/c/CasualScholar?sub_confirmation=1 --Contents of this video-------------------------------- 00:00 - A Tale of Two Cities 01:29 - A Tale of Two Continents 04:03 - Spanish Colonization 07:09 - Enslaving Empire's 09:18 - The Mountain of Silver (Cerro Rico) 12:00 - English Colonization 13:30 - Why The United States is So Rich 15:38 - Why Latin America is Sti...

    published: 06 Jan 2022
  • War and Nation Building in Latin America: Crash Course World History 225

    In which John Green teaches you about nation-building and nationalism in Latin America. Sometimes, the nations of Latin America get compared to the nations of Europe and are found wanting. This is kind of a silly comparison. The rise of democratic, economically powerful nations in Europe came about under a very different set of circumstances than the way nations arose in Latin America, so the regions are necessarily a lot different. But why? John will explore whether it was a lack of international war which impeded Latin America's growth, which sounds like a crazy thing to say, but you should hear him out. Citations: Citation 1: Centeno, Miguel Angel. Blood and Debt: War and the Nation-state in Latin America. Penn State U. Press. University Park, PA. 2002 p. 86 Citation 2: Centeno p. 90 ...

    published: 12 Feb 2015
  • From Baja to Patagonia (Full Episode) | Sobrevolando: Latin America from Above

    Narrated by Gina Rodriguez, this stunning journey celebrates the beauty and culture of Latin America. From the crystalline beaches of Baja to the icy desert of Patagonia, we explore this cultural region through an aerial perspective. Featuring spectacular images filmed at the very highest resolution, along with untold stories and curious facts. Enjoy a free trial of National Geographic right here: https://ngmdomsubs.nationalgeographic.com/servlet/OrdersGateway?cds_mag_code=NG9&cds_page_id= ➡ Subscribe: http://bit.ly/NatGeoSubscribe ➡ Get more Nat Geo Full Episodes: https://youtube.com/playlist?list=PLivjPDlt6ApSiD2mk9Ngp-5dZ9CDDn72O ➡ Get more Nat Geo Wild Full Episodes: https://youtu.be/qAG2SkTPltw And check out more National Geographic series and specials here: ➡ Disney Plus: https://...

    published: 17 Sep 2023
  • The Latin American happiness advantage

    published: 29 Oct 2024
  • The Best Countries to Live in Latin America (NOT Mexico)

    Win for free the Ebook "Moving Abroad: What I Wish I Knew Before Sitting on a Plane" by subscribing to our list here: https://bit.ly/win-ebook What are the best countries to live in Latin America? We discovered why some of the best places to live and retire in Latin America are in countries like Costa Rica, Panamá, and more. We also revealed important pros and cons of the best places in Latin America. Later, watch also this video: https://youtu.be/YvbwFkfBaEU?si=jHFon8OEnLZelUGF 💡Subscribe to @the_expat, we upload new episodes every week! For traveling, I recommend these 3 providers that I personally use: ⚕️Travel insurance: Ekta https://ektatraveling.tp.st/8C2dGJXE ✈️Airline, hotels, and train tickets: CheapOair https://cheapoair.tp.st/QYxto0v2 📸Tours, museum tickets, and fantasti...

    published: 06 Apr 2024
  • The Truth About Race In Latin America

    What race are Latin Americans? Find out about the three ancestral populations that gave birth to modern Latinos. 🧬 You took a DNA test and want to learn more about your ancestry? Get 30% off your report here ➡️ https://www.world-genetics.com Socials Instagram: https://www.instagram.com/worldgenetics TikTok: https://www.tiktok.com/@worldgenetics Facebook: https://www.facebook.com/worldgeneticsfb/ Studies Latin Americans show wide-spread Converso ancestry and imprint of local Native ancestry on physical appearance - Chacón-Duque et al. 2018 🇧🇷🇨🇱🇨🇴🇲🇽🇵🇪 Link: https://www.nature.com/articles/s41467-018-07748-z Admixture in Latin America: Geographic Structure, Phenotypic Diversity and Self-Perception of Ancestry Based on 7,342 Individuals - Ruiz-Linares et al. 2014 🇧🇷🇨🇱🇨🇴🇲🇽🇵🇪 Link: https:/...

    published: 24 Aug 2024
  • Brief Political History of Latin America

    This video explores the basics of Latin American history and politics to explain why the continent still faces vast inequality that lingers from colonial times, how it develops and the problems it is currently dealing with. It begins with Spanish and Portuguese colonization, explores independence and goes all the way through democratization in the 1980s, the pink wave in the 2010s, to the present.

    published: 18 May 2021
  • The Forgotten Immigration To Latin America

    🧬 You took a DNA test and want to learn more about your ancestry? Get 30% off your report here ➡️ https://www.world-genetics.com Socials Instagram: instagram.com/worldgenetics TikTok: tiktok.com/@worldgenetics Facebook: facebook.com/worldgeneticsfb

    published: 30 Jan 2025
  • Billion-Dollar Mindset Secrets from Latin America's Top Investor

    Latin America is a market of extremes—high risk, massive challenges, but also one of the biggest growth opportunities in the world. Can startups really thrive here? How do investors separate winners from the ones that won’t make it? Ariel Arrieta, one of Latin America's top venture capitalists, breaks it all down. Having invested in unicorns like Auth0, Nuvem Shop, and Mural, he knows exactly what it takes to build and scale a billion-dollar business in one of the most complex markets on the planet. In this episode, we cover: 🔹 Latin America: A goldmine or a minefield? The real risks & rewards 🔹 How to survive & scale in a volatile economy 🔹 The mindset of unicorn founders who make it big 🔹 Why foreign startups struggle in LatAm—and how they can win 🔹 What VCs REALLY look for before writ...

    published: 26 Feb 2025
  • South America vs Latin America: What's the Difference? #shorts #countries #geography

    What is the difference between South America and Latin America? South America and Latin America are two terms that are often used to refer to regions in the Americas, but they have slightly different meanings. South America is a continent in the western hemisphere that is bordered by North America to the north, the Caribbean Sea to the northeast, and the Atlantic Ocean to the east. On the other hand, Latin America is the name for the parts of the Americas where Romance languages are spoken, like Spanish, Portuguese, and French. This region includes all of South America, as well as Central America and the Caribbean. Subscribe for more great content 👉 https://bit.ly/3P3qBZZ ✔ CONNECT WITH ME Instagram 👉 https://www.instagram.com/primotraveller/ Facebook 👉 https://facebook.com/primotra...

    published: 11 Jan 2023
Why Is Latin America still Poor
22:29

Why Is Latin America still Poor

  • Order:
  • Duration: 22:29
  • Uploaded Date: 06 Jan 2022
  • views: 6003366
Why is Latin America poorer than North America? The massive differences in wealth between a rich United States and a relatively poor central and south America is startling and hard to explain at first. In the video we delve into the key historical, political and economic factors that have led to this inequality, finding that the answer is more startling and interesting than initially expected. Please Subscribe! https://www.youtube.com/c/CasualScholar?sub_confirmation=1 --Contents of this video-------------------------------- 00:00 - A Tale of Two Cities 01:29 - A Tale of Two Continents 04:03 - Spanish Colonization 07:09 - Enslaving Empire's 09:18 - The Mountain of Silver (Cerro Rico) 12:00 - English Colonization 13:30 - Why The United States is So Rich 15:38 - Why Latin America is Still Poor 20:33 - Why is Latin America Poorer than North America ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CASUAL SCHOLAR IS MADE POSSIBLE BY OUR PATREON COMMUNITY! Support the channel by becoming a Patron today! 👉 https://www.patreon.com/CasualScholar The video you’re watching right now would not exist without the monthly support provided by our generous Patrons: Talon Hickey, Hayden Haun, Emmanuel Fredenrich, Pulaski, Adrian Willenbücher ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --Sources used--------------------------------------------- Books: - Why Nations Fail: The Origins of Power, Prosperity, and Poverty - Bulmer-Thomas, V. (2003). The Economic History of Latin America since Independence (2nd ed., Cambridge Latin American Studies). Cambridge: Cambridge University Press. doi:10.1017/CBO9780511817397 Scholarly Articles: - https://projects.iq.harvard.edu/files/history-culture-society-workshop/files/acemoglu_2.pdf - Coatsworth, John H. “Inequality, Institutions and Economic Growth in Latin America.” Journal of Latin American Studies, vol. 40, no. 3, Cambridge University Press, 2008, pp. 545–69, http://www.jstor.org/stable/40056706. - https://www.nber.org/system/files/chapters/c10652/c10652.pdf #WhyisLatinAmericaPoorerthanNorthAmerica #LatinAmerica #Venezuela #Mexico #Economics #WhyisTheUnitedStatesSoRich
https://wn.com/Why_Is_Latin_America_Still_Poor
War and Nation Building in Latin America: Crash Course World History 225
12:14

War and Nation Building in Latin America: Crash Course World History 225

  • Order:
  • Duration: 12:14
  • Uploaded Date: 12 Feb 2015
  • views: 1831132
In which John Green teaches you about nation-building and nationalism in Latin America. Sometimes, the nations of Latin America get compared to the nations of Europe and are found wanting. This is kind of a silly comparison. The rise of democratic, economically powerful nations in Europe came about under a very different set of circumstances than the way nations arose in Latin America, so the regions are necessarily a lot different. But why? John will explore whether it was a lack of international war which impeded Latin America's growth, which sounds like a crazy thing to say, but you should hear him out. Citations: Citation 1: Centeno, Miguel Angel. Blood and Debt: War and the Nation-state in Latin America. Penn State U. Press. University Park, PA. 2002 p. 86 Citation 2: Centeno p. 90 Citation 3: Centeno p. 175 Citation 4: Centeno p. 275 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/War_And_Nation_Building_In_Latin_America_Crash_Course_World_History_225
From Baja to Patagonia (Full Episode) | Sobrevolando: Latin America from Above
44:17

From Baja to Patagonia (Full Episode) | Sobrevolando: Latin America from Above

  • Order:
  • Duration: 44:17
  • Uploaded Date: 17 Sep 2023
  • views: 214307
Narrated by Gina Rodriguez, this stunning journey celebrates the beauty and culture of Latin America. From the crystalline beaches of Baja to the icy desert of Patagonia, we explore this cultural region through an aerial perspective. Featuring spectacular images filmed at the very highest resolution, along with untold stories and curious facts. Enjoy a free trial of National Geographic right here: https://ngmdomsubs.nationalgeographic.com/servlet/OrdersGateway?cds_mag_code=NG9&cds_page_id= ➡ Subscribe: http://bit.ly/NatGeoSubscribe ➡ Get more Nat Geo Full Episodes: https://youtube.com/playlist?list=PLivjPDlt6ApSiD2mk9Ngp-5dZ9CDDn72O ➡ Get more Nat Geo Wild Full Episodes: https://youtu.be/qAG2SkTPltw And check out more National Geographic series and specials here: ➡ Disney Plus: https://on.natgeo.com/3q6on5p ➡ Hulu: https://on.natgeo.com/3Qor0Ko ➡ NGTV app: https://www.nationalgeographic.com/tv/ ➡ ABC app: https://abc.com/ #LatinAmericaFromAbove #FullEpisode #NationalGeographic Get More National Geographic: Official Site: http://bit.ly/NatGeoOfficialSite Facebook: http://bit.ly/FBNatGeo Twitter: http://bit.ly/NatGeoTwitter Instagram: http://bit.ly/NatGeoInsta TikTok: http://www.tiktok.com/@natgeo Tenor: http://on.natgeo.com/31b3Koc About National Geographic: National Geographic is the world's premium destination for science, exploration, and adventure. Through their world-class scientists, photographers, journalists, and filmmakers, Nat Geo gets you closer to the stories that matter and past the edge of what's possible. From Baja to Patagonia (Full Episode) | Sobrevolando: Latin America from Above https://youtu.be/U_0_0gsJKoo National Geographic https://www.youtube.com/natgeo
https://wn.com/From_Baja_To_Patagonia_(Full_Episode)_|_Sobrevolando_Latin_America_From_Above
The Latin American happiness advantage
1:00

The Latin American happiness advantage

  • Order:
  • Duration: 1:00
  • Uploaded Date: 29 Oct 2024
  • views: 1077980
https://wn.com/The_Latin_American_Happiness_Advantage
The Best Countries to Live in Latin America (NOT Mexico)
9:51

The Best Countries to Live in Latin America (NOT Mexico)

  • Order:
  • Duration: 9:51
  • Uploaded Date: 06 Apr 2024
  • views: 568061
Win for free the Ebook "Moving Abroad: What I Wish I Knew Before Sitting on a Plane" by subscribing to our list here: https://bit.ly/win-ebook What are the best countries to live in Latin America? We discovered why some of the best places to live and retire in Latin America are in countries like Costa Rica, Panamá, and more. We also revealed important pros and cons of the best places in Latin America. Later, watch also this video: https://youtu.be/YvbwFkfBaEU?si=jHFon8OEnLZelUGF 💡Subscribe to @the_expat, we upload new episodes every week! For traveling, I recommend these 3 providers that I personally use: ⚕️Travel insurance: Ekta https://ektatraveling.tp.st/8C2dGJXE ✈️Airline, hotels, and train tickets: CheapOair https://cheapoair.tp.st/QYxto0v2 📸Tours, museum tickets, and fantastic attractions: Viator https://viator.tp.st/Gqsg96gg 🧳 Luggage storage all over the world(never walk with your luggage around!): Radical Storage https://radicalstorage.tp.st/DCGYzdBe This video is based on this article: https://expatriateconsultancy.com/best-latin-american-countries-to-live-in/ Subscribe to our channel (it is free)! Planning to move abroad? Read one of these 3 📚books BEFORE: 📚 1 - https://amzn.to/3UkgWUn 📚 2 - https://amzn.to/3U6gacp 📚 3 - https://amzn.to/441oWwJ ➡️Twitter: https://twitter.com/an_expatriate 📚Best-selling books about living and traveling abroad @ Amazon https://www.amazon.com/Levi-Borba/e/B082X6GSZF%3Fref=dbs_a_mng_rwt_scns_share ➡️Podcast "The Expatriate": https://www.spreaker.com/podcast/the-expatriate--5406772 🚨 QUESTION - Which country or city you would like us to talk about? 🔴 *** ABOUT THE CHANNEL *** From ten years living as an expatriate in the Middle East, South America, and Eastern Europe, to facts from reliable sources. Straightforward, no-nonsense guides for every expat. Some of the links posted and mentioned may be affiliate links, meaning that the author will have a commission for any transaction. 🔴 *** ABOUT THE CHANNEL *** From ten years living as an expatriate in the Middle East, South America, and Eastern Europe, to the best advice we wish we had before boarding. All that in two straightforward, no-nonsense guides for every expat. 💡 TOPICS IN THIS VIDEO 💡 best cities to live in south america, best countries in south america to live, best countries to immigrate in latin america, best countries to live in latin america, best countries to retire in latin america, best country to live in latin america, best country to retire in south america, best place to retire in south america, best places in latin america, best places to live in latin america, best places to live in south america, best places to retire in central america, best places to retire in latin america, best places to retire in south america, best places to retire in the world, best towns to retire in south america, cheap countries in latin america, cheap countries to retire in latin america, cheapest countries to retire, cheapest place to live in south america, cost of living in south america, countries to retire in latin america, latin american countries to retire, living in south america, living in south america pros and cons, living in south america the pros and cons, retire in chile, retire in latin america, retire in panama, spanish speaking countries to retire, the best countries to live in latin america #travel #retirement #latinamerica 🔎 VIDEO EXCERPT 🔎 The Living Cost Index is a measure of how expensive it is to live in a particular place. The US has a cost of living index of 73, so if a country has an index of, for example, 36.5, it means that the cost of living there is on average only half of the cost of living in the US. Now that you know all the criteria, time to start our top 8! In the 8th place is El Salvador. Until a few years ago El Salvador was a VERY dangerous place. In fact, the most dangerous in the world. In the last few years, it went through a dramatic transformation that turned it into the SAFEST country in the entire continent. You heard it right. El Salvador today has a homicide rate of only 2.4 in 2023. This is the same homicide rate of the European continent. To put it into perspective, the homicide rate of the US is 6.4. The cost of living index there is also very low, only 29.6, meaning that on average life costs less than half of what you would pay in the US. Despite recent improvements, the Human Development Index (HDI) in El Salvador is still quite low, only 0.674, so maybe that is why it is below the other countries in this list. In 7th place in Costa Rica With an HDI of 0.81, Costa Rica has a development level similar to Thailand or the Bahamas. If you watched our other videos, probably you noticed that Costa Rica figures among the best on a lot of lists. It was in our ranking of the best countries to retire to and is also one of the best Spanish-speaking countries to visit. The link to both of these videos I will put in the comment section.
https://wn.com/The_Best_Countries_To_Live_In_Latin_America_(Not_Mexico)
The Truth About Race In Latin America
16:07

The Truth About Race In Latin America

  • Order:
  • Duration: 16:07
  • Uploaded Date: 24 Aug 2024
  • views: 452379
What race are Latin Americans? Find out about the three ancestral populations that gave birth to modern Latinos. 🧬 You took a DNA test and want to learn more about your ancestry? Get 30% off your report here ➡️ https://www.world-genetics.com Socials Instagram: https://www.instagram.com/worldgenetics TikTok: https://www.tiktok.com/@worldgenetics Facebook: https://www.facebook.com/worldgeneticsfb/ Studies Latin Americans show wide-spread Converso ancestry and imprint of local Native ancestry on physical appearance - Chacón-Duque et al. 2018 🇧🇷🇨🇱🇨🇴🇲🇽🇵🇪 Link: https://www.nature.com/articles/s41467-018-07748-z Admixture in Latin America: Geographic Structure, Phenotypic Diversity and Self-Perception of Ancestry Based on 7,342 Individuals - Ruiz-Linares et al. 2014 🇧🇷🇨🇱🇨🇴🇲🇽🇵🇪 Link: https://journals.plos.org/plosgenetics/article?id=10.1371/journal.pgen.1004572 A systematic scoping review of the genetic ancestry of the Brazilian population - Souza et al. 2019 🇧🇷 Link: https://www.scielo.br/j/gmb/a/fk6kLTxZknvrJjmC9hdcZBC# Pharmacogenetics in the Brazilian Population - Suarez-Kurtz et al. 2010 🇧🇷 Link: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3153000/ Genetic ancestry, admixture and health determinants in Latin America - Norris et al. 2018 🇨🇴🇲🇽🇵🇪🇵🇷 Link: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6288849/ Genomic Insights into the Ancestry and Demographic History of South America - Hamburger et al. 2015 🇦🇷🇨🇱🇨🇴🇪🇨🇵🇪 Link: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4670080/ Outlining the Ancestry Landscape of Colombian Admixed Populations - Ossa et al. 2016 🇨🇴 Link: https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0164414 Unravelling the hidden ancestry of American admixed populations - Montinaro et al. 2015 🌎 🇩🇴 Link: https://www.nature.com/articles/ncomms7596 Reconstructing the Population Genetic History of the Caribbean - Moreno-Estrada et al. 2013 🌎 🇩🇴 Link: https://journals.plos.org/plosgenetics/article?id=10.1371/journal.pgen.1003925 Forensic parameters and admixture in Mestizos from five geographic regions of Mexico based on 20 autosomal STRs (Powerplex 21 system) - Aguilar-Velázquez et al. 2018 🇲🇽 Link: https://www.researchgate.net/publication/323495846_Forensic_parameters_and_admixture_in_Mestizos_from_five_geographic_regions_of_Mexico_based_on_20_autosomal_STRs_Powerplex_21_system The three-hybrid genetic composition of an Ecuadorian population using AIMs-InDels compared with autosomes, mitochondrial DNA and Y chromosome data - Zambrano et al. 2019 🇪🇨 Link: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6592923/ Higher native Peruvian genetic ancestry proportion is associated with tuberculosis progression risk - Asgari et al. 2022 🇵🇪 Link: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC9306274/ Admixture in Argentina - Kirkegaard et al. 2017 🇦🇷 Link: https://www.researchgate.net/publication/317552097_Admixture_in_Argentina Exploring Cuba’s population structure and demographic history using genome-wide data - Fortes-Lima et al. 2018 🇨🇺 Link: https://www.nature.com/articles/s41598-018-29851-3 Cuba: Exploring the History of Admixture and the Genetic Basis of Pigmentation Using Autosomal and Uniparental Markers - Marcheco-Teruel et al. 2014 🇨🇺 Link: https://journals.plos.org/plosgenetics/article?id=10.1371/journal.pgen.1004488 Breast cancer risk and genetic ancestry: a case–control study in Uruguay - Bonilla et al. 2015 🇺🇾 Link: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4341228/ Development of a Panel of Genome-Wide Ancestry Informative Markers to Study Admixture Throughout the Americas - Galanter et al. 2012 🌎 🇵🇷 Link: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3297575/ Admixture in the Americas: Regional and National Differences - Kierkegaard et al. 2016 🌎 🇻🇪 Link: https://www.researchgate.net/publication/298214364_Admixture_in_the_Americas_Regional_and_National_Differences POS-424 Genetic Admixture of U.S. Hispanics from Central America - Horimoto et al. 2021 🇨🇷🇸🇻🇬🇹🇭🇳🇳🇮🇵🇦 Link: https://www.kireports.org/article/S2468-0249(21)00593-3/fulltext The Genetic Legacy of the Pre-Colonial Period in Contemporary Bolivians - Taboada-Echalar et al. 2013 🇧🇴 Link: https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0058980 Subtypes of Native American ancestry and leading causes of death: Mapuche ancestry-specific associations with gallbladder cancer risk in Chile - Bermejo et al. 2017 🇨🇱 Link: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5444600/ Gene admixture in the Costa Rican population - Morera et al. 2003 🇨🇷 Link: https://pubmed.ncbi.nlm.nih.gov/12556237/ Genetic Ancestry of the Panamanian Population: Polymorphic Structure, Chibchan Amerindian Genes; and Biological Perspectives on Diseases - Castro Pérez et al. 2016 🇵🇦 Link: https://bit.ly/3DeIeFq The Ancestry of Eastern Paraguay: A Typical South American Profile with a Unique Pattern of Admixture - Simão et al. 2021 🇵🇾 Link: https://bit.ly/4faNh7f
https://wn.com/The_Truth_About_Race_In_Latin_America
Brief Political History of Latin America
20:23

Brief Political History of Latin America

  • Order:
  • Duration: 20:23
  • Uploaded Date: 18 May 2021
  • views: 81739
This video explores the basics of Latin American history and politics to explain why the continent still faces vast inequality that lingers from colonial times, how it develops and the problems it is currently dealing with. It begins with Spanish and Portuguese colonization, explores independence and goes all the way through democratization in the 1980s, the pink wave in the 2010s, to the present.
https://wn.com/Brief_Political_History_Of_Latin_America
The Forgotten Immigration To Latin America
0:44

The Forgotten Immigration To Latin America

  • Order:
  • Duration: 0:44
  • Uploaded Date: 30 Jan 2025
  • views: 711095
🧬 You took a DNA test and want to learn more about your ancestry? Get 30% off your report here ➡️ https://www.world-genetics.com Socials Instagram: instagram.com/worldgenetics TikTok: tiktok.com/@worldgenetics Facebook: facebook.com/worldgeneticsfb
https://wn.com/The_Forgotten_Immigration_To_Latin_America
Billion-Dollar Mindset Secrets from Latin America's Top Investor
38:21

Billion-Dollar Mindset Secrets from Latin America's Top Investor

  • Order:
  • Duration: 38:21
  • Uploaded Date: 26 Feb 2025
  • views: 2122
Latin America is a market of extremes—high risk, massive challenges, but also one of the biggest growth opportunities in the world. Can startups really thrive here? How do investors separate winners from the ones that won’t make it? Ariel Arrieta, one of Latin America's top venture capitalists, breaks it all down. Having invested in unicorns like Auth0, Nuvem Shop, and Mural, he knows exactly what it takes to build and scale a billion-dollar business in one of the most complex markets on the planet. In this episode, we cover: 🔹 Latin America: A goldmine or a minefield? The real risks & rewards 🔹 How to survive & scale in a volatile economy 🔹 The mindset of unicorn founders who make it big 🔹 Why foreign startups struggle in LatAm—and how they can win 🔹 What VCs REALLY look for before writing a check 🔹 The biggest mistakes founders make when expanding into the region 💰 Latin America is set to be one of the world’s fastest-growing markets. If you're a founder, investor, or just curious about the startup scene, this episode is a must-watch. 🔥 Latin America is rising. Are you ready? Like, comment and hit SUBSCRIBE for more game-changing insights from the biggest minds in startups & venture capital. #BornToUnicorn #ArielArrieta #LatinAmericaStartups #VCinLatAm #TechEntrepreneurs #StartupFunding #InvestingInStartups #UnicornStartups #ScalingStartups #EntrepreneurMindset #LatAmVC #GrowthHacking #RaisingCapital #HighRiskHighReward #VCSecrets #FounderAdvice #StartupGrowth
https://wn.com/Billion_Dollar_Mindset_Secrets_From_Latin_America's_Top_Investor
South America vs Latin America: What's the Difference? #shorts #countries #geography
0:46

South America vs Latin America: What's the Difference? #shorts #countries #geography

  • Order:
  • Duration: 0:46
  • Uploaded Date: 11 Jan 2023
  • views: 357501
What is the difference between South America and Latin America? South America and Latin America are two terms that are often used to refer to regions in the Americas, but they have slightly different meanings. South America is a continent in the western hemisphere that is bordered by North America to the north, the Caribbean Sea to the northeast, and the Atlantic Ocean to the east. On the other hand, Latin America is the name for the parts of the Americas where Romance languages are spoken, like Spanish, Portuguese, and French. This region includes all of South America, as well as Central America and the Caribbean. Subscribe for more great content 👉 https://bit.ly/3P3qBZZ ✔ CONNECT WITH ME Instagram 👉 https://www.instagram.com/primotraveller/ Facebook 👉 https://facebook.com/primotraveller Twitter 👉 https://twitter.com/PrimoTraveller Website 👉 https://primotraveller.com
https://wn.com/South_America_Vs_Latin_America_What's_The_Difference_Shorts_Countries_Geography
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Why Is Latin America still Poor
    22:29
    Why Is Latin America still Poorremove from playlist
  • War and Nation Building in Latin America: Crash Course World History 225
    12:14
    War and Nation Building in Latin America: Crash Course World History 225remove from playlist
  • From Baja to Patagonia (Full Episode) | Sobrevolando: Latin America from Above
    44:17
    From Baja to Patagonia (Full Episode) | Sobrevolando: Latin America from Aboveremove from playlist
  • The Best Countries to Live in Latin America (NOT Mexico)
    9:51
    The Best Countries to Live in Latin America (NOT Mexico)remove from playlist
  • The Truth About Race In Latin America
    16:07
    The Truth About Race In Latin Americaremove from playlist
  • Brief Political History of Latin America
    20:23
    Brief Political History of Latin Americaremove from playlist
  • The Forgotten Immigration To Latin America
    0:44
    The Forgotten Immigration To Latin Americaremove from playlist
  • Billion-Dollar Mindset Secrets from Latin America's Top Investor
    38:21
    Billion-Dollar Mindset Secrets from Latin America's Top Investorremove from playlist
  • South America vs Latin America: What's the Difference? #shorts #countries #geography
    0:46
    South America vs Latin America: What's the Difference? #shorts #countries #geographyremove from playlist
PLAYLIST TIME: 0:00 / 2:46:12

Why Is Latin America still Poor

Why is Latin America poorer than North America? The massive differences in wealth between a rich United States and a relatively poor central and south America is startling and hard to explain at first. In the video we delve into the key historical, political and economic factors that have led to this inequality, finding that the answer is more startling and interesting than initially expected. Please Subscribe! https://www.youtube.com/c/CasualScholar?sub_confirmation=1 --Contents of this video-------------------------------- 00:00 - A Tale of Two Cities 01:29 - A Tale of Two Continents 04:03 - Spanish Colonization 07:09 - Enslaving Empire's 09:18 - The Mountain of Silver (Cerro Rico) 12:00 - English Colonization 13:30 - Why The United States is So Rich 15:38 - Why Latin America is Still Poor 20:33 - Why is Latin America Poorer than North America ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CASUAL SCHOLAR IS MADE POSSIBLE BY OUR PATREON COMMUNITY! Support the channel by becoming a Patron today! 👉 https://www.patreon.com/CasualScholar The video you’re watching right now would not exist without the monthly support provided by our generous Patrons: Talon Hickey, Hayden Haun, Emmanuel Fredenrich, Pulaski, Adrian Willenbücher ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --Sources used--------------------------------------------- Books: - Why Nations Fail: The Origins of Power, Prosperity, and Poverty - Bulmer-Thomas, V. (2003). The Economic History of Latin America since Independence (2nd ed., Cambridge Latin American Studies). Cambridge: Cambridge University Press. doi:10.1017/CBO9780511817397 Scholarly Articles: - https://projects.iq.harvard.edu/files/history-culture-society-workshop/files/acemoglu_2.pdf - Coatsworth, John H. “Inequality, Institutions and Economic Growth in Latin America.” Journal of Latin American Studies, vol. 40, no. 3, Cambridge University Press, 2008, pp. 545–69, http://www.jstor.org/stable/40056706. - https://www.nber.org/system/files/chapters/c10652/c10652.pdf #WhyisLatinAmericaPoorerthanNorthAmerica #LatinAmerica #Venezuela #Mexico #Economics #WhyisTheUnitedStatesSoRich
22:29
Why Is Latin America still Poor
Why is Latin America poorer than North America? The massive differences in wealth between ...
published: 06 Jan 2022
Play in Full Screen
12:14
War and Nation Building in Latin America: Crash Course World History 225
In which John Green teaches you about nation-building and nationalism in Latin America. So...
published: 12 Feb 2015
Play in Full Screen
44:17
From Baja to Patagonia (Full Episode) | Sobrevolando: Latin America from Above
Narrated by Gina Rodriguez, this stunning journey celebrates the beauty and culture of Lat...
published: 17 Sep 2023
Play in Full Screen
1:00
The Latin American happiness advantage
published: 29 Oct 2024
Play in Full Screen
9:51
The Best Countries to Live in Latin America (NOT Mexico)
Win for free the Ebook "Moving Abroad: What I Wish I Knew Before Sitting on a Plane" by su...
published: 06 Apr 2024
Play in Full Screen
16:07
The Truth About Race In Latin America
What race are Latin Americans? Find out about the three ancestral populations that gave bi...
published: 24 Aug 2024
Play in Full Screen
20:23
Brief Political History of Latin America
This video explores the basics of Latin American history and politics to explain why the c...
published: 18 May 2021
Play in Full Screen
0:44
The Forgotten Immigration To Latin America
🧬 You took a DNA test and want to learn more about your ancestry? Get 30% off your report ...
published: 30 Jan 2025
Play in Full Screen
38:21
Billion-Dollar Mindset Secrets from Latin America's Top Investor
Latin America is a market of extremes—high risk, massive challenges, but also one of the b...
published: 26 Feb 2025
Play in Full Screen
0:46
South America vs Latin America: What's the Difference? #shorts #countries #geography
What is the difference between South America and Latin America? South America and Latin A...
published: 11 Jan 2023
Play in Full Screen

Latin America

Latin America is the group of territories and countries in the Americas where Romance languages are spoken. The term originated in 19th century France to include French-speaking territories in the Americas within the larger group of countries that speak Spanish and Portuguese. It is therefore marginally broader than the term Iberian America or Spanish America, though it excludes French-speaking Quebec. Latin America consists of twenty sovereign states and several territories and dependencies which cover an area that stretches from the southern border of the United States to the southern tip of South America, including the Caribbean. It has an area of approximately 19,197,000 km2 (7,412,000 sq mi), almost 13% of the earth's land surface area.

As of 2015, its population was estimated at more than 626 million and in 2014, Latin America had a combined nominal GDP of 5,573,397 million USD and a GDP PPP of 7,531,585 million USD. The term "Latin America" was first used in 1861 in La revue des races Latines, a magazine "dedicated to the cause of Pan-Latinism".

'); } 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: latin america

Edit

Latam Insights: Bukele’s US Tour, Panamanian Crypto Bill

BitRSS 31 Mar 2025
Welcome to Latam Insights, a compendium of the most relevant crypto and economic news from Latin America over the past week. In this week’s edition, El Salvador’s Nayib Bukele announces a visit to the U.S., a Panamanian crypto bill... .
Edit

Min Woo Lee holds off Scheffler and Woodland to win in Houston. Chacarra wins Indian Open

Wtop 31 Mar 2025
Ryan Grider made birdie on the first playoff hole to defeat Joey Vrzich and win the 93 Abierto del Centro in Argentina for his first PGA Tour Americas title. The victory secures his status for the remainder of the year in Latin America and Canada ... ___.
Edit

The Cerruti Case: When Italy Almost Invaded Colombia

Colombia One 30 Mar 2025
At an early age, Cerruti moved to Latin America, where he saw great potential for economic development ... Colombia, but throughout Latin America, which still remembered European colonial interventions.
Edit

AP PHOTOS: Bolivian street food finds its place at the fine dining table

Wtop 30 Mar 2025
Llusco is one of a growing wave of Latin American chefs drawing inspiration from their roots, elevating ... Follow AP’s coverage of Latin America and the Caribbean at https.//apnews.com/hub/latin-america.
Edit

Grider outlasts Vrzich in playoff for victory at 93 Abierto Telecom del Centro presentado por Zurich

TSN Canada 30 Mar 2025
1 in the Fortinet Cup and&nbsp;secures exempt membership on PGA TOUR Americas for the remainder of the 2025 season and through the Latin America Swing of 2026.
Edit

Rubio says he is putting ‘Americas, first’ but the Cuba fixation might drive neighbors away

CNN 30 Mar 2025
Heads of state in Latin America and the Caribbean have long complained that the region is treated as an after-thought by most US administrations ... Some Latin American diplomats privately grumble that ...
Edit

Philippines to buck emerging markets' weak growth outlook—Capital Economics

Manila Bulletin 30 Mar 2025
The think tank nonetheless noted that "there's a wide degree of variation at a country level, with rapid growth still likely in parts of Asia (such as India and the Philippines), while Latin America is likely to lag behind.".
Edit

The Future Left the Group (IV): National Security

The American Spectator 30 Mar 2025
Legal immigration has made — and will continue to make — America great ... On the horizon, Russia, China, Iran, and Latin America’s Bolivarian bloc are concerns.
Edit

We are entering a new age of empire. Britain must look to its own interests

AOL 30 Mar 2025
Pentagon war games find America would lose a Pacific war against China ... Think about American interventions in Latin America, and policies like extraordinary rendition and the extradition of foreign businessmen on extraterritorial offences.
Edit

The riches of Poverty Flat | Ross Eric Gibson, Local History

Santa Cruz Sentinel 30 Mar 2025
They discovered their million dollars was gone, some of their backers had losses in the stock market that stopped their contributions, and if it wasn’t for Latin America, which adored Michelena, none of their films would approach profitability.
Edit

‘Farewell, junk food!’: Mexico bans sale of salty and sweet treats in schools to fight ...

CNN 30 Mar 2025
Mexico’s children consume more junk food than anywhere else in Latin America, according to UNICEF, which classifies the nation’s childhood obesity epidemic as an emergency.
Edit

Mexico bans junk food sales in schools in latest salvo against child obesity

Detroit news 30 Mar 2025
Mexico’s children consume more junk food than anywhere else in Latin America, according to UNICEF, which classifies the nation’s childhood obesity epidemic as an emergency.
Edit

In 12 months, the Diageo share price could be…

The Motley Fool 30 Mar 2025
DGE) share price ... Sales have taken a hit in Latin American and the Chinese economic slowdown hasn’t helped ... Overstocking issues in Latin America, a key force behind last year’s profit warning, appear to have been resolved ... AI Revolution Awaits ... .
Edit

China’s BYD expands globally to boost EV exports

Beijing News 30 Mar 2025
SHANGHAI, China ... He added that the company sees "great opportunities" in Latin America and Southeast Asia, where both governments and consumers are more receptive to Chinese brands ... He did not provide a timeline ... "We have abundant funding," Wang said ... .
×