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

Spanish West Indies

The Spanish West Indies (also known as "Las Antillas Occidentales" or simply "Antillas Españolas" in Spanish) was the contemporary name for the Spanish colonies in the Caribbean. It became a territory of the Viceroyalty of New Spain when the viceroyalty was created in 1535.

It consisted of the present day nations of Cuba, Haiti, the Dominican Republic, Puerto Rico, Saint Martin, the Virgin Islands, Anguilla, Montserrat, Guadalupe and the Lesser Antilles, Jamaica, the Cayman Islands, Trinidad, and the Bay Islands.

The islands that later became the Spanish West Indies were the focus of the voyages of Christopher Columbus in America. Largely due to the familiarity that Europeans gained from Columbus's voyages, the islands were also the first lands to be permanently colonized by Europeans in the Americas. The Spanish West Indies were also the most enduring part of Spain's American Empire, only being surrendered in 1898 at the end of the Spanish–American War. For over three centuries, Spain controlled a network of ports in the Caribbean including Havana (Cuba), San Juan (Puerto Rico), Cartagena de Indias (Colombia), and Veracruz (Mexico) which were connected by galleon routes.

West Indies

The West Indies is a region of the Caribbean Basin and North Atlantic Ocean that includes the many islands and island nations of the Antilles and the Lucayan Archipelago.

After the first of the voyages of Christopher Columbus to the Americas, Europeans began to use the term West Indies to differentiate that region from the Indies (South Asia and Southeast Asia).

History

From the 17th through the 19th century, the European colonial territories of the West Indies were the French West Indies, British West Indies, the Danish West Indies, the Netherlands Antilles (Dutch West Indies), and the Spanish West Indies.

In 1916, Denmark sold the Danish West Indies to the United States for US $25 million in gold, as per the Treaty of the Danish West Indies. The Danish West Indies became an insular area of the US, called the United States Virgin Islands.

Between 1958 and 1962, the United Kingdom reorganised all their West Indies island territories (except the British Virgin Islands and the Bahamas) into the West Indies Federation. They hoped that the Federation would coalesce into a single, independent nation. However, the Federation had limited powers, numerous practical problems, and a lack of popular support; consequently, it was dissolved by the British in 1963, with nine provinces becoming independent sovereign states and four becoming British Overseas Territories.

East Indies

The East Indies or Indies (or East India) is a term that has been used to describe the lands of South and South East Asia. In a more restricted sense, the Indies can be used to refer to the islands of South East Asia, especially the Malay Archipelago. The name "Indies" is derived from the river Indus and is used to connote parts of Asia that came under Indian cultural influence (except Vietnam which came under Chinese cultural influence).

Dutch-held colonies in the area were known for about 300 years as the Dutch East Indies before Indonesian independence, while Spanish-held colonies were known as the Spanish East Indies before the US-conquest and later Philippines' independence. The East Indies may also include the former French-held Indochina, former British territories Brunei and Singapore, and former Portuguese East Timor. It does not, however, include the former Dutch New Guinea western New Guinea (West Papua), which is geographically considered to be part of Melanesia.

The inhabitants of the East Indies are almost never called East Indians, distinguishing them both from inhabitants of the Caribbean (which is also called the West Indies) and from the indigenous peoples of the Americas who are often called "American Indians." In colonial times they were just "natives". However, the peoples of the East Indies comprise a wide variety of cultural diversity, and the inhabitants do not consider themselves as belonging to a single ethnic group. Hinduism, Buddhism and Islam are the most popular religions throughout the region, while Christianity, Sikhism, Jainism and various other traditional beliefs and practices are also prominent in some areas. The major languages in this area draw from a wide variety of language families, and should not be confused with the term Indic, which refers only to a group of Indo-Iranian languages from South Asia.

Indies (disambiguation)

The Indies is used to describe the lands of South and Southeast Asia.

Indies may also refer to:

  • West Indies, the islands in, bordering, or immediately north of the Caribbean Sea
  • Indies Records, a Czech record label
  • Canadian Independent Music Awards, also known as the Indies, a Canadian award
  • See also

  • Indie (disambiguation); "indie" is a short for "independent"
  • India (disambiguation)
  • Podcasts:

    • Captains Performance 💪 | Matthews Hits Unbeaten 60* Off 54 Balls! | West Indies Women v Bangladesh

      Hayley Matthews blasts an unbeaten 69* off 54 balls as West Indies Women beat Bangladesh by 8 wickets. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com

      published: 31 Jan 2025
    • 🔴 LIVE Windward vs Jamaica - Day 3 | West Indies Championship 2025 | 31st January

      Watch Windward Volcanoes vs Jamaica Scorpions in the West Indies Championship 2025. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com

      published: 31 Jan 2025
    • Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A

      Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A #PAKvWI | #RedBallRumble | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/SubscribeSportsCentral

      published: 27 Jan 2025
    • Koffee - West Indies (Official Video)

      Put your headphones on for a simulated 360 Reality Audio experience 🎧 Koffee – West Indies Listen/Download: https://koffee.lnk.to/west-indies Follow Koffee: Official Site: http://originalkoffee.com Facebook: https://www.facebook.com/originalkoffee Twitter: https://twitter.com/originalkoffee Instagram: http://instagram.com/originalkoffee “West Indies” was mixed with an immersive #360RA experience in mind, use headphones for the full effect. Stream “West Indies” in full 360 Reality Audio, now available on Tidal, Amazon and Deezer. Register at the link below to redeem your 3-month free trial! Visit: https://smarturl.it/ffoarq?IQid=youtube *Quantities are limited, while supplies last --

      published: 07 Oct 2021
    • 🔴 LIVE Guyana vs Barbados - Day 3 | West Indies Championship 2025 | 31st January

      Watch Guyana Harpy Eagles v Barbados Prides in the West Indies Championship 2025. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com

      published: 31 Jan 2025
    • Matthews and Dottin Hit Half-Centuries | Highlights | West Indies Women v Bangladesh 1st T20I

      Watch highlights of the 1st T20 between West Indies Women and Bangladesh, during the T20I Series at Warner Park, Basseterre. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com

      published: 28 Jan 2025
    • W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | PCB | M2I1A

      W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A #PAKvWI | #RedBallRumble | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/Subscrib...

      published: 27 Jan 2025
    • 🔴 LIVE WI Academy vs Leeward Island - Day 3 | West Indies Championship 2025 | 31st January

      Watch West Indies Academy vs Leeward Island Hurricanes in the West Indies Championship 2025. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com

      published: 31 Jan 2025
    • West Indies Women vs Bangladesh Women Live | WIW vs BANW Live | 3rd T20I of WI W vs BAN W Live

      Live Cricket Match Today - West Indies Women v Bangladesh Women | WIW v BANW | BANW vs WIW | West Indies Women vs Bangladesh Women | 31st January 2025 | 3rd T20 International Match of Bangladesh Women Cricket Team tour of West Indies 2025 | WIW v BANW | WI W vs BAN W Live | Cricket Live Scorecard Hindi Commentary and Updates | 3rd T20I (N), Basseterre, January 31, 2025, Bangladesh Women tour of West Indies 2025 | Urdu Cricket Commentary | Match Scorecard, Gupshup and Fan Reactions | Imran Sherazi Cricket Info in Hindi Become a member of this channel to get access to perks: https://www.youtube.com/channel/UCLqkzlKQ4w2FLWppM6Gh-qQ/join My Other YouTube Channel Links: Cricket Live ► https://bit.ly/3pnQmtz Imran Sherazi Voice ► https://bit.ly/3slYY5P Cricket Captain ► https://bit.ly/3hmJPe...

      published: 01 Feb 2025
    • Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A

      Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A #PAKvWI | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/SubscribeSportsCentral

      published: 25 Jan 2025
    Captains Performance 💪 | Matthews Hits Unbeaten 60* Off 54 Balls! | West Indies Women v Bangladesh
    13:14

    Captains Performance 💪 | Matthews Hits Unbeaten 60* Off 54 Balls! | West Indies Women v Bangladesh

    • Order:
    • Duration: 13:14
    • Uploaded Date: 31 Jan 2025
    • views: 25405
    Hayley Matthews blasts an unbeaten 69* off 54 balls as West Indies Women beat Bangladesh by 8 wickets. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com
    https://wn.com/Captains_Performance_💪_|_Matthews_Hits_Unbeaten_60_Off_54_Balls_|_West_Indies_Women_V_Bangladesh
    🔴 LIVE Windward vs Jamaica - Day 3 | West Indies Championship 2025 | 31st January
    7:42:05

    🔴 LIVE Windward vs Jamaica - Day 3 | West Indies Championship 2025 | 31st January

    • Order:
    • Duration: 7:42:05
    • Uploaded Date: 31 Jan 2025
    • views: 58273
    Watch Windward Volcanoes vs Jamaica Scorpions in the West Indies Championship 2025. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com
    https://wn.com/🔴_Live_Windward_Vs_Jamaica_Day_3_|_West_Indies_Championship_2025_|_31St_January
    Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A
    8:57

    Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A

    • Order:
    • Duration: 8:57
    • Uploaded Date: 27 Jan 2025
    • views: 783199
    Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A #PAKvWI | #RedBallRumble | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/SubscribeSportsCentral
    https://wn.com/Full_Highlights_|_Pakistan_Vs_West_Indies_|_2Nd_Test_Day_3_|_Pcb_|_M2I1A
    Koffee - West Indies (Official Video)
    4:20

    Koffee - West Indies (Official Video)

    • Order:
    • Duration: 4:20
    • Uploaded Date: 07 Oct 2021
    • views: 18067124
    Put your headphones on for a simulated 360 Reality Audio experience 🎧 Koffee – West Indies Listen/Download: https://koffee.lnk.to/west-indies Follow Koffee: Official Site: http://originalkoffee.com Facebook: https://www.facebook.com/originalkoffee Twitter: https://twitter.com/originalkoffee Instagram: http://instagram.com/originalkoffee “West Indies” was mixed with an immersive #360RA experience in mind, use headphones for the full effect. Stream “West Indies” in full 360 Reality Audio, now available on Tidal, Amazon and Deezer. Register at the link below to redeem your 3-month free trial! Visit: https://smarturl.it/ffoarq?IQid=youtube *Quantities are limited, while supplies last --
    https://wn.com/Koffee_West_Indies_(Official_Video)
    🔴 LIVE Guyana vs Barbados - Day 3 | West Indies Championship 2025 | 31st January
    7:32:43

    🔴 LIVE Guyana vs Barbados - Day 3 | West Indies Championship 2025 | 31st January

    • Order:
    • Duration: 7:32:43
    • Uploaded Date: 31 Jan 2025
    • views: 80657
    Watch Guyana Harpy Eagles v Barbados Prides in the West Indies Championship 2025. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com
    https://wn.com/🔴_Live_Guyana_Vs_Barbados_Day_3_|_West_Indies_Championship_2025_|_31St_January
    Matthews and Dottin Hit Half-Centuries | Highlights | West Indies Women v Bangladesh 1st T20I
    8:04

    Matthews and Dottin Hit Half-Centuries | Highlights | West Indies Women v Bangladesh 1st T20I

    • Order:
    • Duration: 8:04
    • Uploaded Date: 28 Jan 2025
    • views: 63126
    Watch highlights of the 1st T20 between West Indies Women and Bangladesh, during the T20I Series at Warner Park, Basseterre. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com
    https://wn.com/Matthews_And_Dottin_Hit_Half_Centuries_|_Highlights_|_West_Indies_Women_V_Bangladesh_1St_T20I
    W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | PCB | M2I1A
    1:54

    W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | PCB | M2I1A

    • Order:
    • Duration: 1:54
    • Uploaded Date: 27 Jan 2025
    • views: 879726
    W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A #PAKvWI | #RedBallRumble | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/SubscribeSportsCentral
    https://wn.com/W_W_W_W_W_History_Has_Been_Made_Pakistan_Lost_|_Pakistan_Vs_West_Indies_|_Pcb_|_M2I1A
    🔴 LIVE WI Academy vs Leeward Island - Day 3 | West Indies Championship 2025 | 31st January
    6:11:28

    🔴 LIVE WI Academy vs Leeward Island - Day 3 | West Indies Championship 2025 | 31st January

    • Order:
    • Duration: 6:11:28
    • Uploaded Date: 31 Jan 2025
    • views: 17785
    Watch West Indies Academy vs Leeward Island Hurricanes in the West Indies Championship 2025. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com
    https://wn.com/🔴_Live_Wi_Academy_Vs_Leeward_Island_Day_3_|_West_Indies_Championship_2025_|_31St_January
    West Indies Women vs Bangladesh Women Live | WIW vs BANW Live | 3rd T20I of WI W vs BAN W Live
    3:19:22

    West Indies Women vs Bangladesh Women Live | WIW vs BANW Live | 3rd T20I of WI W vs BAN W Live

    • Order:
    • Duration: 3:19:22
    • Uploaded Date: 01 Feb 2025
    • views: 12617
    Live Cricket Match Today - West Indies Women v Bangladesh Women | WIW v BANW | BANW vs WIW | West Indies Women vs Bangladesh Women | 31st January 2025 | 3rd T20 International Match of Bangladesh Women Cricket Team tour of West Indies 2025 | WIW v BANW | WI W vs BAN W Live | Cricket Live Scorecard Hindi Commentary and Updates | 3rd T20I (N), Basseterre, January 31, 2025, Bangladesh Women tour of West Indies 2025 | Urdu Cricket Commentary | Match Scorecard, Gupshup and Fan Reactions | Imran Sherazi Cricket Info in Hindi Become a member of this channel to get access to perks: https://www.youtube.com/channel/UCLqkzlKQ4w2FLWppM6Gh-qQ/join My Other YouTube Channel Links: Cricket Live ► https://bit.ly/3pnQmtz Imran Sherazi Voice ► https://bit.ly/3slYY5P Cricket Captain ► https://bit.ly/3hmJPes Shan e Imamat ► https://bit.ly/3pmv0g1 Social Media Links: ► My Facebook: https://bit.ly/3Ajhazg ► My Twitter: https://bit.ly/3FHJkW1 ► My Facebook Page: https://bit.ly/3fLsIC1 ► My Instagram: https://bit.ly/3GLDZhA ► My TikTok: https://bit.ly/3xe9FKJ #BANvsWI #WIvsBAN #BANWvsWIW #WIWvsBANW #BangladeshvsWestIndies #WestIndiesvsBangladesh #BDvsWI #WIvsBD #CricketInfo #ImranSherazi ​
    https://wn.com/West_Indies_Women_Vs_Bangladesh_Women_Live_|_Wiw_Vs_Banw_Live_|_3Rd_T20I_Of_Wi_W_Vs_Ban_W_Live
    Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A
    27:36

    Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A

    • Order:
    • Duration: 27:36
    • Uploaded Date: 25 Jan 2025
    • views: 714250
    Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A #PAKvWI | #SportsCentral For Latest Updates Follow Us On Facebook & Instagram NOW https://www.facebook.com/Sports-Central-100403292093264/ https://instagram.com/sportscentral_drm Welcome to Sports Central where we bring you all the highlights, interviews, behind the scenes footage and more from sporting events across Pakistan. From Pakistan Super League, International T20 and ODI matches, hockey and Kabaddi to gaming superstars such as Arslan Ash, Sports Central brings you all the sports related updates under one roof. Sports Central is managed by Dot Republic Media. All Copyright Rights Reserved. Subscribe to our YouTube channel: https://bit.ly/SubscribeSportsCentral
    https://wn.com/Full_Highlights_|_Pakistan_Vs_West_Indies_|_2Nd_Test_Day_1_|_Pcb_|_M2I1A
    • The Dutch East India Company: The Richest Company In The World

      #dutcheastindiacompany #voc #history WATCH THIS AND ALL OUR VIDEOS OVER ON SPOTIFY: https://open.spotify.com/show/4ONNqWZ8qsl6DIyIp0uR8s?si=a444627f2aa343d7 CHECK OUT OUR MAP STORE HERE: https://www.redbubble.com/people/MapStory/shop WATCH THIS AND ALL OUR VIDEOS COMPLETELY AD-FREE OVER ON OUR SUBSTACK: https://thisishistory.substack.com/?r=2zq5ao&utm_campaign=pub-share-checklist Visitors to Amsterdam will be familiar with it’s tall, narrow buildings and labyrinth of canals which run past the winding streets with typical Dutch names such as Lindenstraat, Keizersgracht and Damstraat. But away from the well-trodden tourist paths of the city centre, in the eastern district, are some streets with not-so typical Dutch sounding names like Balistraat, Sumatrastraat, and Borneostraat. These a...

      published: 12 Mar 2023
    • How The East India Company Took Over An Entire Country

      #eastindiacompany #history #documentary WATCH THIS AND ALL OUR VIDEOS OVER ON SPOTIFY: https://open.spotify.com/show/4ONNqWZ8qsl6DIyIp0uR8s?si=a444627f2aa343d7 CHECK OUT OUR MAP STORE HERE: https://www.redbubble.com/people/MapStory/shop WATCH THIS AND ALL OUR VIDEOS COMPLETELY AD-FREE OVER ON OUR SUBSTACK: https://thisishistory.substack.com/?r=2zq5ao&utm_campaign=pub-share-checklist The city of London has been the centre of Britain’s economic and commercial activity for centuries, with many of the largest and wealthiest companies in the world choosing to locate their headquarters in the nation’s capital to this day. However, none of these modern businesses can compare to what was undoubtedly the most powerful multinational corporation the world has ever seen. Established over 400 yea...

      published: 25 Jan 2023
    • Neil deGrasse Tyson Explains the Rise of the Dutch East India Company | Joe Rogan Insight

      Dive into this captivating segment of the Joe Rogan Experience, where astrophysicist Neil deGrasse Tyson unfolds the fascinating story of the Dutch East India Trading Company's emergence. Learn how the early European explorations, led by figures like Columbus, set the stage for one of the most powerful corporations in history. Tyson breaks down the interplay of exploration, information, and mercantilism that fueled this historic venture. Join us for a journey through history and the birth of global trade networks. #NeilDeGrasseTyson #JoeRogan #History #DutchEastIndiaCompany #Exploration #Mercantilism #GlobalTrade #HistoricalInsights #Columbus

      published: 16 Dec 2023
    • British India vs Dutch east Indies #onlyeducation #history #viral #empire #india #indonesia#shorts

      published: 17 Dec 2022
    • Dutch East Indies 1602-1949 Part I

      Part I: The Dutch East India Company The Dutch East Indies (Dutch: Nederlands-Indië; Indonesian: Hindia-Belanda) was a Dutch colony that became modern Indonesia following World War II. It was formed from the nationalised colonies of the Dutch East India Company, which came under the administration of the Netherlands government in 1800.

      published: 19 Mar 2012
    • Let's Compare West Indies vs East Indies | Country Comparison | Data Duck

      Let's Compare West Indies vs East Indies | Country Comparison | Data Duck #LetsCompareWestIndiesvsEastIndies #letscompareEastIndiesvsWestIndies #letscompareEastIndiesandwestindiesbecomeaindependentCountries #letscomparewestIndiesandeastindiesbecomeaindependentCountries #whatifwestindiesandeastIndiesbecomeacountries #whatifeastindiesandwestIndiesbecomeacountries #WestIndiesvsEastindies #Lets_Compare_West_Indies_vs_East_Indies #lets_compare_East_Indies_vs_West_Indies #lets_compare_East_Indies_and_west_indies_become_a_independent_Countries #lets_compare_west_Indies_and_east_indies_become_a_independent_Countries #what_if_west_indies_and_east_Indies_become_a_countries #what_if_east_indies_and_west_Indies_become_a_countries

      published: 27 Feb 2024
    • Capitalism and the Dutch East India Company: Crash Course World History 229

      In which John Green teaches you about the Vereenigde Oostindische Compagnie, doing business as the VOC, also known as the Dutch East India Company. In the 16th and 17th centuries, the Dutch managed to dominate world trade, and they did all through the pioneering use of corporations and finance. Well, they did also use some traditional methods like violently enforced monopolies, unfair trade agreements, and plain old warfare. You'll learn how the Dutch invented stuff like joint stock corporations, maritime insurance, and futures trading. Basically, how the Dutch East India Company crashed the US economy in 2008. I'm kidding. Or am I? Citation 1: William J. Bernstein, A Splendid Exchange: How Trade Shaped the World. Grove Press. 2008. p. 218 Citation 2: Stephen R. Bown. Merchant Kings: When...

      published: 19 Mar 2015
    • Battle for the Dutch East Indies - Pacific War #8 Animated DOCUMENTARY

      Get your official Ladyship/Lordship title today and help plant some trees! https://EstablishedTitles.com/Kings use our code KINGS for 10% OFF! Thanks to Established Titles for sponsoring this video! Kings and Generals' historical animated documentary series covering the Pacific War week by week continues with another video on the early days of the war, as Japan is still on the offensive. In this episode we will talk about the early plans around the Japanese attack on the Dutch Indies, as well as the continuing battles in Malaya and the Philippines. Pacific War Podcast: https://thepacificwar.podbean.com Cold War channel: youtube.com/@TheColdWarTV Modern Warfare series: youtube.com/playlist?list=PLaBYW76inbX4NYr_WkbaW5KfYwqTAxn08 Pacific War Prelude 0.1 - How Europe Colonized Asia: https:...

      published: 11 Jan 2022
    • The Fall of Batavia | War on the Sea - Dutch East Indies Campaign

      ►subscribe now: https://www.youtube.com/@PetesHQ?sub_confirmation=1 East Indies Campaign Is a Standalone Map and Mod centering around the Dutch East Indies in early 1942 Background During World War II, ABDACOM (American-British-Dutch-Australian Command) was a short-lived military alliance formed in early 1942 to coordinate the defense of Southeast Asia against the advancing Japanese forces. It comprised military forces from the United States, Britain, the Netherlands, and Australia. However, due to various challenges such as limited resources, communication difficulties, and the overwhelming strength of the Japanese forces, ABDACOM faced significant setbacks. The alliance was unable to effectively coordinate its efforts, and its member nations suffered major defeats, this provides an ...

      published: 22 Feb 2025
    • The Rise And Fall of the Dutch East India Company

      To try everything Brilliant has to offer for free for a full 30 days, visit http://www.brilliant.org/howhistoryworks. You’ll also get 20% off an annual premium subscription. ------ Sign up for my FREE newsletter! - https://www.compoundeddaily.com/ ------ #history #voc #business Link To Our Other Channel: https://www.youtube.com/c/HowMoneyWorks Written By: Sam Video Created By: Svibe Multimedia Studio Editor: Cardan Media Gatherer: Andrea Rivas Footage Courtesy of: Getty Images Music Provided By: Epidemic Sound For sponsorship inquiries, please contact sponsors@worksmedia.group ----- 7.9 trillion dollars. That was the historically adjusted market capitalization of the Dutch East India Trading Company. It was a for profit company larger and more powerful than most of history's ...

      published: 17 Jul 2024
    The Dutch East India Company: The Richest Company In The World
    15:45

    The Dutch East India Company: The Richest Company In The World

    • Order:
    • Duration: 15:45
    • Uploaded Date: 12 Mar 2023
    • views: 680994
    #dutcheastindiacompany #voc #history WATCH THIS AND ALL OUR VIDEOS OVER ON SPOTIFY: https://open.spotify.com/show/4ONNqWZ8qsl6DIyIp0uR8s?si=a444627f2aa343d7 CHECK OUT OUR MAP STORE HERE: https://www.redbubble.com/people/MapStory/shop WATCH THIS AND ALL OUR VIDEOS COMPLETELY AD-FREE OVER ON OUR SUBSTACK: https://thisishistory.substack.com/?r=2zq5ao&utm_campaign=pub-share-checklist Visitors to Amsterdam will be familiar with it’s tall, narrow buildings and labyrinth of canals which run past the winding streets with typical Dutch names such as Lindenstraat, Keizersgracht and Damstraat. But away from the well-trodden tourist paths of the city centre, in the eastern district, are some streets with not-so typical Dutch sounding names like Balistraat, Sumatrastraat, and Borneostraat. These are situated within what is known locally as the Indian neighbourhood and are named in reference to what was once the Dutch controlled East Indies. Constituting much of the modern state of Indonesia, these islands came to be ruled by the Netherlands over 7000 miles away, when the Dutch East India Company established itself in the region some 400 years ago and quickly grew to become the richest company the world had ever seen. Possessing quasi-governmental powers, including the ability to wage war, imprison and execute convicts, negotiate treaties, strike its own coins and establish colonies, it is often considered to be the world’s first multinational corporation and one which set the precedent for how modern business and international trade are conducted to this day. But what inspired these Dutch merchants to undertake the lengthy and perilous journey to the far side of the world? This is the history of the Dutch East India Company. The United East India was a chartered company established on 20 March 1602 by the States General of the Netherlands amalgamating existing companies into the first joint-stock company in the world, granting it a 21-year monopoly to carry out trade activities in Asia. Shares in the company could be bought by any resident of the United Provinces and then subsequently bought and sold in open-air secondary markets (one of which became the Amsterdam Stock Exchange). It is sometimes considered to have been the first multinational corporation. It was a powerful company, possessing quasi-governmental powers, including the ability to wage war, imprison and execute convicts, negotiate treaties, strike its own coins, and establish colonies. Statistically, the VOC eclipsed all of its rivals in the Asia trade. Between 1602 and 1796 the VOC sent almost a million Europeans to work in the Asia trade on 4,785 ships, and netted for their efforts more than 2.5 million tons of Asian trade goods. By contrast, the rest of Europe combined sent only 882,412 people from 1500 to 1795, and the fleet of the English (later British) East India Company, the VOC's nearest competitor, was a distant second to its total traffic with 2,690 ships and a mere one-fifth the tonnage of goods carried by the VOC. The VOC enjoyed huge profits from its spice monopoly through most of the 17th century. Having been set up in 1602 to profit from the Malukan spice trade, the VOC established a capital in the port city of Jayakarta in 1609 and changed its name to Batavia (now Jakarta). Over the next two centuries the company acquired additional ports as trading bases and safeguarded their interests by taking over surrounding territory. It remained an important trading concern and paid an 18% annual dividend for almost 200 years. Much of the labour that built its colonies was from people it had enslaved. Weighed down by smuggling, corruption and growing administrative costs in the late 18th century, the company went bankrupt and was formally dissolved in 1799. Its possessions and debt were taken over by the government of the Dutch Batavian Republic. The former territories owned by the VOC went on to become the Dutch East Indies and were expanded over the course of the 19th century to include the entirety of the Indonesian archipelago. In the 20th century, these islands would form the Republic of Indonesia.
    https://wn.com/The_Dutch_East_India_Company_The_Richest_Company_In_The_World
    How The East India Company Took Over An Entire Country
    15:36

    How The East India Company Took Over An Entire Country

    • Order:
    • Duration: 15:36
    • Uploaded Date: 25 Jan 2023
    • views: 812720
    #eastindiacompany #history #documentary WATCH THIS AND ALL OUR VIDEOS OVER ON SPOTIFY: https://open.spotify.com/show/4ONNqWZ8qsl6DIyIp0uR8s?si=a444627f2aa343d7 CHECK OUT OUR MAP STORE HERE: https://www.redbubble.com/people/MapStory/shop WATCH THIS AND ALL OUR VIDEOS COMPLETELY AD-FREE OVER ON OUR SUBSTACK: https://thisishistory.substack.com/?r=2zq5ao&utm_campaign=pub-share-checklist The city of London has been the centre of Britain’s economic and commercial activity for centuries, with many of the largest and wealthiest companies in the world choosing to locate their headquarters in the nation’s capital to this day. However, none of these modern businesses can compare to what was undoubtedly the most powerful multinational corporation the world has ever seen. Established over 400 years ago, the East India Company, from it’s headquarters on Leadenhall Street, would rise from humble beginnings as a trading company for voyages to India; to effectively becoming the de facto state government of the entire sub-continent. During it’s heyday, the Company would surpass the strength and wealth of even the mightiest nation states, and with it’s own private armies, would push aside the long established native dynasties of India, seizing control of their territories for itself. All this would be achieved by maintaining an iron grip on the most valuable trade routes in the world, which generated staggering amounts of wealth for it’s employees and shareholders. But how did this private corporation come to rule over one of the largest and richest regions on earth in the first place? This is the history of the East India Company. The East India Company (EIC) was an English, and later British, joint-stock company founded in 1600 and dissolved in 1874. It was formed to trade in the Indian Ocean region, initially with the East Indies (the Indian subcontinent and Southeast Asia), and later with East Asia. The company seized control of large parts of the Indian subcontinent and colonised parts of Southeast Asia and Hong Kong. At its peak, the company was the largest corporation in the world. The EIC had its own armed forces in the form of the company's three Presidency armies, totalling about 260,000 soldiers, twice the size of the British army at the time. The operations of the company had a profound effect on the global balance of trade, almost single-handedly reversing the trend of eastward drain of Western bullion, seen since Roman times. Originally chartered as the "Governor and Company of Merchants of London Trading into the East-Indies", the company rose to account for half of the world's trade during the mid-1700s and early 1800s, particularly in basic commodities including cotton, silk, indigo dye, sugar, salt, spices, saltpetre, tea, and opium. The company also ruled the beginnings of the British Empire in India. The company eventually came to rule large areas of India, exercising military power and assuming administrative functions. Company rule in India effectively began in 1757 after the Battle of Plassey and lasted until 1858. Following the Indian Rebellion of 1857, the Government of India Act 1858 led to the British Crown assuming direct control of India in the form of the new British Raj. The company subsequently experienced recurring problems with its finances, despite frequent government intervention. It was dissolved in 1874 under the terms of the East India Stock Dividend Redemption Act enacted one year earlier, as the Government of India Act had by then rendered it vestigial, powerless, and obsolete. The official government machinery of the British Raj had assumed its governmental functions and absorbed its armies.
    https://wn.com/How_The_East_India_Company_Took_Over_An_Entire_Country
    Neil deGrasse Tyson Explains the Rise of the Dutch East India Company | Joe Rogan Insight
    0:25

    Neil deGrasse Tyson Explains the Rise of the Dutch East India Company | Joe Rogan Insight

    • Order:
    • Duration: 0:25
    • Uploaded Date: 16 Dec 2023
    • views: 27194
    Dive into this captivating segment of the Joe Rogan Experience, where astrophysicist Neil deGrasse Tyson unfolds the fascinating story of the Dutch East India Trading Company's emergence. Learn how the early European explorations, led by figures like Columbus, set the stage for one of the most powerful corporations in history. Tyson breaks down the interplay of exploration, information, and mercantilism that fueled this historic venture. Join us for a journey through history and the birth of global trade networks. #NeilDeGrasseTyson #JoeRogan #History #DutchEastIndiaCompany #Exploration #Mercantilism #GlobalTrade #HistoricalInsights #Columbus
    https://wn.com/Neil_Degrasse_Tyson_Explains_The_Rise_Of_The_Dutch_East_India_Company_|_Joe_Rogan_Insight
    British India vs Dutch east Indies #onlyeducation  #history #viral #empire #india #indonesia#shorts
    0:17

    British India vs Dutch east Indies #onlyeducation #history #viral #empire #india #indonesia#shorts

    • Order:
    • Duration: 0:17
    • Uploaded Date: 17 Dec 2022
    • views: 31999
    https://wn.com/British_India_Vs_Dutch_East_Indies_Onlyeducation_History_Viral_Empire_India_Indonesia_Shorts
    Dutch East Indies 1602-1949 Part I
    31:27

    Dutch East Indies 1602-1949 Part I

    • Order:
    • Duration: 31:27
    • Uploaded Date: 19 Mar 2012
    • views: 232463
    Part I: The Dutch East India Company The Dutch East Indies (Dutch: Nederlands-Indië; Indonesian: Hindia-Belanda) was a Dutch colony that became modern Indonesia following World War II. It was formed from the nationalised colonies of the Dutch East India Company, which came under the administration of the Netherlands government in 1800.
    https://wn.com/Dutch_East_Indies_1602_1949_Part_I
    Let's Compare West Indies vs East Indies | Country Comparison | Data Duck
    1:22

    Let's Compare West Indies vs East Indies | Country Comparison | Data Duck

    • Order:
    • Duration: 1:22
    • Uploaded Date: 27 Feb 2024
    • views: 19083
    Let's Compare West Indies vs East Indies | Country Comparison | Data Duck #LetsCompareWestIndiesvsEastIndies #letscompareEastIndiesvsWestIndies #letscompareEastIndiesandwestindiesbecomeaindependentCountries #letscomparewestIndiesandeastindiesbecomeaindependentCountries #whatifwestindiesandeastIndiesbecomeacountries #whatifeastindiesandwestIndiesbecomeacountries #WestIndiesvsEastindies #Lets_Compare_West_Indies_vs_East_Indies #lets_compare_East_Indies_vs_West_Indies #lets_compare_East_Indies_and_west_indies_become_a_independent_Countries #lets_compare_west_Indies_and_east_indies_become_a_independent_Countries #what_if_west_indies_and_east_Indies_become_a_countries #what_if_east_indies_and_west_Indies_become_a_countries
    https://wn.com/Let's_Compare_West_Indies_Vs_East_Indies_|_Country_Comparison_|_Data_Duck
    Capitalism and the Dutch East India Company: Crash Course World History 229
    15:40

    Capitalism and the Dutch East India Company: Crash Course World History 229

    • Order:
    • Duration: 15:40
    • Uploaded Date: 19 Mar 2015
    • views: 2173281
    In which John Green teaches you about the Vereenigde Oostindische Compagnie, doing business as the VOC, also known as the Dutch East India Company. In the 16th and 17th centuries, the Dutch managed to dominate world trade, and they did all through the pioneering use of corporations and finance. Well, they did also use some traditional methods like violently enforced monopolies, unfair trade agreements, and plain old warfare. You'll learn how the Dutch invented stuff like joint stock corporations, maritime insurance, and futures trading. Basically, how the Dutch East India Company crashed the US economy in 2008. I'm kidding. Or am I? Citation 1: William J. Bernstein, A Splendid Exchange: How Trade Shaped the World. Grove Press. 2008. p. 218 Citation 2: Stephen R. Bown. Merchant Kings: When Companies Ruled the World, 1600-1900. New York. St. Martin’s Press. 2009. p. 28 Citation 3: Bernstein p. 223 Citation 4: Bernstein p. 228 Citation 5: Bown p. 53 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/Capitalism_And_The_Dutch_East_India_Company_Crash_Course_World_History_229
    Battle for the Dutch East Indies - Pacific War #8 Animated DOCUMENTARY
    21:13

    Battle for the Dutch East Indies - Pacific War #8 Animated DOCUMENTARY

    • Order:
    • Duration: 21:13
    • Uploaded Date: 11 Jan 2022
    • views: 412935
    Get your official Ladyship/Lordship title today and help plant some trees! https://EstablishedTitles.com/Kings use our code KINGS for 10% OFF! Thanks to Established Titles for sponsoring this video! Kings and Generals' historical animated documentary series covering the Pacific War week by week continues with another video on the early days of the war, as Japan is still on the offensive. In this episode we will talk about the early plans around the Japanese attack on the Dutch Indies, as well as the continuing battles in Malaya and the Philippines. Pacific War Podcast: https://thepacificwar.podbean.com Cold War channel: youtube.com/@TheColdWarTV Modern Warfare series: youtube.com/playlist?list=PLaBYW76inbX4NYr_WkbaW5KfYwqTAxn08 Pacific War Prelude 0.1 - How Europe Colonized Asia: https://youtu.be/MEgIHN63ojU Pacific War Prelude 0.2 - How the Meiji Restoration Turned Japan into an Empire: https://youtu.be/rHgbG1HsIrY Pacific War Prelude 0.3 - Rise of Ultranationalism in Japan: https://youtu.be/7vQ6nxBRGd8 Pacific War Prelude 0.4 - How America Became an Empire: https://youtu.be/DY2CUazAaaY Pacific War Prelude 0.5 - China at War: https://youtu.be/TnYHe80ZvBw Pacific War Prelude 0.6 - War in Europe: https://youtu.be/U4EdDCZ4pCA Pacific War Prelude 0.7 - Why Japan Attacked America: https://youtu.be/NacJi_WO3es Pacific War #1 - Attack on Pearl Harbor: https://youtu.be/ZzS1ZAulpoY Pacific War #2 - Japanese Invasion of Malaya: https://youtu.be/mpBGUC8OjE4 Pacific War #3 - Japanese attack on Guam, Wake and the Phillipines: https://youtu.be/MZ4d7Qeyivk Pacific War #4 - Japan Continues Attacking: Borneo, Philippines: https://youtu.be/MhQrv82HHn8 Pacific War #5 - Fall of Wake Island: https://youtu.be/tgtagewcqKo Pacific War #6 - Battle of Kampar: https://youtu.be/AGYaghICqkY Pacific War #7 - Battle of Slim River: https://youtu.be/meWALqmsXxs Support us on Patreon: http://www.patreon.com/KingsandGenerals or Paypal: http://paypal.me/kingsandgenerals or by joining the youtube membership: https://www.youtube.com/channel/UCMmaBzfCCwZ2KqaBJjkj0fw/join We are grateful to our patrons and sponsors, who made this video possible: https://docs.google.com/document/d/1ooKPbpq0z8ciEjz5Zmrga4-gWRmripm0u4BHMkkXHVc/edit?usp=sharing The video was made by Zakuan Musa (https://www.youtube.com/channel/UC3epmaG-GjZqoTSlbgOwrog/videos), while the script was researched and written by Ivan Moran, while Craig Watson (https://www.youtube.com/c/ThePacificWarChannel) consulted on the script. Narrated by Officially Devin (https://www.youtube.com/channel/UCU0-VII-V376zFxiRGMeZGg & https://www.youtube.com/channel/UC79s7EdN9uXX77-Ly2HmEjQ) ✔ Merch store ► https://teespring.com/stores/kingsandgenerals ✔ Patreon ► https://www.patreon.com/KingsandGenerals ✔ Podcast ► http://www.kingsandgenerals.net/podcast/ ✔ PayPal ► http://paypal.me/kingsandgenerals ✔ Twitter ► https://twitter.com/KingsGenerals ✔ Facebook ► https://www.facebook.com/KingsGenerals ✔ Instagram ►http://www.instagram.com/Kings_Generals Production Music courtesy of Epidemic Sound: http://www.epidemicsound.com #Documentary #PacificWar #WorldWar
    https://wn.com/Battle_For_The_Dutch_East_Indies_Pacific_War_8_Animated_Documentary
    The Fall of Batavia | War on the Sea - Dutch East Indies Campaign
    21:33

    The Fall of Batavia | War on the Sea - Dutch East Indies Campaign

    • Order:
    • Duration: 21:33
    • Uploaded Date: 22 Feb 2025
    • views: 307
    ►subscribe now: https://www.youtube.com/@PetesHQ?sub_confirmation=1 East Indies Campaign Is a Standalone Map and Mod centering around the Dutch East Indies in early 1942 Background During World War II, ABDACOM (American-British-Dutch-Australian Command) was a short-lived military alliance formed in early 1942 to coordinate the defense of Southeast Asia against the advancing Japanese forces. It comprised military forces from the United States, Britain, the Netherlands, and Australia. However, due to various challenges such as limited resources, communication difficulties, and the overwhelming strength of the Japanese forces, ABDACOM faced significant setbacks. The alliance was unable to effectively coordinate its efforts, and its member nations suffered major defeats, this provides an opportunity to rewrite the course of history and reverse the tides of adversity. The Mod incorporates several additional ships and a new map with two campaigns of the Dutch East Indies: Allied Campaign - The ABDACOM Defensive. Japanese Campaign - Centrifugal Offensive. ►Mod Link: https://steamcommunity.com/app/1280780/discussions/3/3182358960695571084/ ►Join the Discord ► https://discord.gg/hUFPGGwZka ►Become a Channel Member ► https://www.youtube.com/channel/UCi6QxTDQ3uAU0UfMowb4APw/join ►Follow On Twitter ► https://twitter.com/PetesHQ
    https://wn.com/The_Fall_Of_Batavia_|_War_On_The_Sea_Dutch_East_Indies_Campaign
    The Rise And Fall of the Dutch East India Company
    18:31

    The Rise And Fall of the Dutch East India Company

    • Order:
    • Duration: 18:31
    • Uploaded Date: 17 Jul 2024
    • views: 408794
    To try everything Brilliant has to offer for free for a full 30 days, visit http://www.brilliant.org/howhistoryworks. You’ll also get 20% off an annual premium subscription. ------ Sign up for my FREE newsletter! - https://www.compoundeddaily.com/ ------ #history #voc #business Link To Our Other Channel: https://www.youtube.com/c/HowMoneyWorks Written By: Sam Video Created By: Svibe Multimedia Studio Editor: Cardan Media Gatherer: Andrea Rivas Footage Courtesy of: Getty Images Music Provided By: Epidemic Sound For sponsorship inquiries, please contact sponsors@worksmedia.group ----- 7.9 trillion dollars. That was the historically adjusted market capitalization of the Dutch East India Trading Company. It was a for profit company larger and more powerful than most of history's greatest empires. [1] If it was around today the world’s first multinational corporation would be worth more than Apple, Microsoft, Amazon, Meta, and still have more than enough money left over to purchase McDonald’s, Walmart and Samsung. Most companies are lucky to last ten years. [2] But The Dutch East India trading company lasted over 200 years, from 1602 until 1799, with an impact that still continues today thanks to its radical business innovations…and *ahem* ‘questionable behaviour’. But its biggest contribution to the world – besides all the killing and invading and enslaving – are shareholders. Besides pioneering corporate governance, the creation of shareholders paved the way for modern business to become more accessible to the average person. This helped popularize employee welfare like health care and pensions, and introduced insurance bonds and joint-stock ownership. So, who were the people that owned the most valuable company of all time? How did the concept of a corporation even start? And how did the board of investors influence the direction of world history? - Sources - https://dutchreview.com/culture/history/how-rich-was-the-dutch-east-india-company/ https://www.bbc.com/news/business-16611040 https://www.britannica.com/topic/Dutch-East-India-Company https://www.thoughtco.com/age-of-exploration-1435006 https://www.worldhistory.org/Dutch_East_India_Company/ https://www.investopedia.com/ask/answers/08/first-company-issue-stock-dutch-east-india.asp https://investoramnesia.com/2022/10/23/legends-of-market-history-isaac-le-maire/ chrome-extension://efaidnbmnnnibpcajpcglclefindmkaj/https://www.sfu.ca/~poitras/ch2_lemaire.pdf https://www.worldsfirststockexchange.com/2020/11/27/going-short-in-1608/ https://www.encyclopedia.com/history/encyclopedias-almanacs-transcripts-and-maps/heeren-xvii https://historyguild.org/the-impacts-of-corporate-globalization-how-the-dutch-east-india-company-changed-the-world/ https://archive.is/SCf9h https://dokumen.pub/the-worlds-first-stock-exchange-9780231537322.html https://www.businesscompendium.co.uk/post/the-rise-and-fall-of-the-dutch-east-india-company https://www.investopedia.com/articles/07/stock-exchange-history.asp https://museum.wa.gov.au/explore/dirk-hartog/voc-united-dutch-east-india-company
    https://wn.com/The_Rise_And_Fall_Of_The_Dutch_East_India_Company
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 25:49:43

    Captains Performance 💪 | Matthews Hits Unbeaten 60* Off 54 Balls! | West Indies Women v Bangladesh

    Hayley Matthews blasts an unbeaten 69* off 54 balls as West Indies Women beat Bangladesh by 8 wickets. This is the official channel for the West Indies cricket team, providing all the latest highlights, interviews and features to keep you up to date with all things Windies. Subscribe to the channel here! https://www.youtube.com/channel/UC2MHTOXktfTK26aDKyQs3cQ?view_as=subscriber Find out more about the Windies at: http://Windiescricket.com
    13:14
    Captains Performance 💪 | Matthews Hits Unbeaten 60* Off 54 Balls! | West Indies Women v Bangladesh
    Hayley Matthews blasts an unbeaten 69* off 54 balls as West Indies Women beat Bangladesh b...
    published: 31 Jan 2025
    Play in Full Screen
    7:42:05
    🔴 LIVE Windward vs Jamaica - Day 3 | West Indies Championship 2025 | 31st January
    Watch Windward Volcanoes vs Jamaica Scorpions in the West Indies Championship 2025. Sub...
    published: 31 Jan 2025
    Play in Full Screen
    8:57
    Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A
    Full Highlights | Pakistan vs West Indies | 2nd Test Day 3 | PCB | M2I1A #PAKvWI | #RedBa...
    published: 27 Jan 2025
    Play in Full Screen
    4:20
    Koffee - West Indies (Official Video)
    Put your headphones on for a simulated 360 Reality Audio experience 🎧 Koffee – West Indie...
    published: 07 Oct 2021
    Play in Full Screen
    7:32:43
    🔴 LIVE Guyana vs Barbados - Day 3 | West Indies Championship 2025 | 31st January
    Watch Guyana Harpy Eagles v Barbados Prides in the West Indies Championship 2025. This is...
    published: 31 Jan 2025
    Play in Full Screen
    8:04
    Matthews and Dottin Hit Half-Centuries | Highlights | West Indies Women v Bangladesh 1st T20I
    Watch highlights of the 1st T20 between West Indies Women and Bangladesh, during the T20I ...
    published: 28 Jan 2025
    Play in Full Screen
    1:54
    W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | PCB | M2I1A
    W - W - W - W - W - History Has Been Made - Pakistan Lost | Pakistan vs West Indies | 2nd ...
    published: 27 Jan 2025
    Play in Full Screen
    6:11:28
    🔴 LIVE WI Academy vs Leeward Island - Day 3 | West Indies Championship 2025 | 31st January
    Watch West Indies Academy vs Leeward Island Hurricanes in the West Indies Championship 202...
    published: 31 Jan 2025
    Play in Full Screen
    3:19:22
    West Indies Women vs Bangladesh Women Live | WIW vs BANW Live | 3rd T20I of WI W vs BAN W Live
    Live Cricket Match Today - West Indies Women v Bangladesh Women | WIW v BANW | BANW vs WIW...
    published: 01 Feb 2025
    Play in Full Screen
    27:36
    Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A
    Full Highlights | Pakistan vs West Indies | 2nd Test Day 1 | PCB | M2I1A #PAKvWI | #Sport...
    published: 25 Jan 2025
    Play in Full Screen

    Spanish West Indies

    The Spanish West Indies (also known as "Las Antillas Occidentales" or simply "Antillas Españolas" in Spanish) was the contemporary name for the Spanish colonies in the Caribbean. It became a territory of the Viceroyalty of New Spain when the viceroyalty was created in 1535.

    It consisted of the present day nations of Cuba, Haiti, the Dominican Republic, Puerto Rico, Saint Martin, the Virgin Islands, Anguilla, Montserrat, Guadalupe and the Lesser Antilles, Jamaica, the Cayman Islands, Trinidad, and the Bay Islands.

    The islands that later became the Spanish West Indies were the focus of the voyages of Christopher Columbus in America. Largely due to the familiarity that Europeans gained from Columbus's voyages, the islands were also the first lands to be permanently colonized by Europeans in the Americas. The Spanish West Indies were also the most enduring part of Spain's American Empire, only being surrendered in 1898 at the end of the Spanish–American War. For over three centuries, Spain controlled a network of ports in the Caribbean including Havana (Cuba), San Juan (Puerto Rico), Cartagena de Indias (Colombia), and Veracruz (Mexico) which were connected by galleon routes.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Dutch East India Company: The Richest Company In The World
      15:45
      The Dutch East India Company: The Richest Company In The Worldremove from playlist
    • How The East India Company Took Over An Entire Country
      15:36
      How The East India Company Took Over An Entire Countryremove from playlist
    • Neil deGrasse Tyson Explains the Rise of the Dutch East India Company | Joe Rogan Insight
      0:25
      Neil deGrasse Tyson Explains the Rise of the Dutch East India Company | Joe Rogan Insightremove from playlist
    • Dutch East Indies 1602-1949 Part I
      31:27
      Dutch East Indies 1602-1949 Part Iremove from playlist
    • Let's Compare West Indies vs East Indies | Country Comparison | Data Duck
      1:22
      Let's Compare West Indies vs East Indies | Country Comparison | Data Duckremove from playlist
    • Capitalism and the Dutch East India Company: Crash Course World History 229
      15:40
      Capitalism and the Dutch East India Company: Crash Course World History 229remove from playlist
    • Battle for the Dutch East Indies - Pacific War #8 Animated DOCUMENTARY
      21:13
      Battle for the Dutch East Indies - Pacific War #8 Animated DOCUMENTARYremove from playlist
    • The Fall of Batavia | War on the Sea - Dutch East Indies Campaign
      21:33
      The Fall of Batavia | War on the Sea - Dutch East Indies Campaignremove from playlist
    • The Rise And Fall of the Dutch East India Company
      18:31
      The Rise And Fall of the Dutch East India Companyremove from playlist
    PLAYLIST TIME: 0:00 / 2:21:49

    The Dutch East India Company: The Richest Company In The World

    #dutcheastindiacompany #voc #history WATCH THIS AND ALL OUR VIDEOS OVER ON SPOTIFY: https://open.spotify.com/show/4ONNqWZ8qsl6DIyIp0uR8s?si=a444627f2aa343d7 CHECK OUT OUR MAP STORE HERE: https://www.redbubble.com/people/MapStory/shop WATCH THIS AND ALL OUR VIDEOS COMPLETELY AD-FREE OVER ON OUR SUBSTACK: https://thisishistory.substack.com/?r=2zq5ao&utm_campaign=pub-share-checklist Visitors to Amsterdam will be familiar with it’s tall, narrow buildings and labyrinth of canals which run past the winding streets with typical Dutch names such as Lindenstraat, Keizersgracht and Damstraat. But away from the well-trodden tourist paths of the city centre, in the eastern district, are some streets with not-so typical Dutch sounding names like Balistraat, Sumatrastraat, and Borneostraat. These are situated within what is known locally as the Indian neighbourhood and are named in reference to what was once the Dutch controlled East Indies. Constituting much of the modern state of Indonesia, these islands came to be ruled by the Netherlands over 7000 miles away, when the Dutch East India Company established itself in the region some 400 years ago and quickly grew to become the richest company the world had ever seen. Possessing quasi-governmental powers, including the ability to wage war, imprison and execute convicts, negotiate treaties, strike its own coins and establish colonies, it is often considered to be the world’s first multinational corporation and one which set the precedent for how modern business and international trade are conducted to this day. But what inspired these Dutch merchants to undertake the lengthy and perilous journey to the far side of the world? This is the history of the Dutch East India Company. The United East India was a chartered company established on 20 March 1602 by the States General of the Netherlands amalgamating existing companies into the first joint-stock company in the world, granting it a 21-year monopoly to carry out trade activities in Asia. Shares in the company could be bought by any resident of the United Provinces and then subsequently bought and sold in open-air secondary markets (one of which became the Amsterdam Stock Exchange). It is sometimes considered to have been the first multinational corporation. It was a powerful company, possessing quasi-governmental powers, including the ability to wage war, imprison and execute convicts, negotiate treaties, strike its own coins, and establish colonies. Statistically, the VOC eclipsed all of its rivals in the Asia trade. Between 1602 and 1796 the VOC sent almost a million Europeans to work in the Asia trade on 4,785 ships, and netted for their efforts more than 2.5 million tons of Asian trade goods. By contrast, the rest of Europe combined sent only 882,412 people from 1500 to 1795, and the fleet of the English (later British) East India Company, the VOC's nearest competitor, was a distant second to its total traffic with 2,690 ships and a mere one-fifth the tonnage of goods carried by the VOC. The VOC enjoyed huge profits from its spice monopoly through most of the 17th century. Having been set up in 1602 to profit from the Malukan spice trade, the VOC established a capital in the port city of Jayakarta in 1609 and changed its name to Batavia (now Jakarta). Over the next two centuries the company acquired additional ports as trading bases and safeguarded their interests by taking over surrounding territory. It remained an important trading concern and paid an 18% annual dividend for almost 200 years. Much of the labour that built its colonies was from people it had enslaved. Weighed down by smuggling, corruption and growing administrative costs in the late 18th century, the company went bankrupt and was formally dissolved in 1799. Its possessions and debt were taken over by the government of the Dutch Batavian Republic. The former territories owned by the VOC went on to become the Dutch East Indies and were expanded over the course of the 19th century to include the entirety of the Indonesian archipelago. In the 20th century, these islands would form the Republic of Indonesia.
    15:45
    The Dutch East India Company: The Richest Company In The World
    #dutcheastindiacompany #voc #history WATCH THIS AND ALL OUR VIDEOS OVER ON SPOTIFY: http...
    published: 12 Mar 2023
    Play in Full Screen
    15:36
    How The East India Company Took Over An Entire Country
    #eastindiacompany #history #documentary WATCH THIS AND ALL OUR VIDEOS OVER ON SPOTIFY: ...
    published: 25 Jan 2023
    Play in Full Screen
    0:25
    Neil deGrasse Tyson Explains the Rise of the Dutch East India Company | Joe Rogan Insight
    Dive into this captivating segment of the Joe Rogan Experience, where astrophysicist Neil ...
    published: 16 Dec 2023
    Play in Full Screen
    0:17
    British India vs Dutch east Indies #onlyeducation #history #viral #empire #india #indonesia#shorts
    published: 17 Dec 2022
    Play in Full Screen
    31:27
    Dutch East Indies 1602-1949 Part I
    Part I: The Dutch East India Company The Dutch East Indies (Dutch: Nederlands-Indië; In...
    published: 19 Mar 2012
    Play in Full Screen
    1:22
    Let's Compare West Indies vs East Indies | Country Comparison | Data Duck
    Let's Compare West Indies vs East Indies | Country Comparison | Data Duck #LetsCompareWes...
    published: 27 Feb 2024
    Play in Full Screen
    15:40
    Capitalism and the Dutch East India Company: Crash Course World History 229
    In which John Green teaches you about the Vereenigde Oostindische Compagnie, doing busines...
    published: 19 Mar 2015
    Play in Full Screen
    21:13
    Battle for the Dutch East Indies - Pacific War #8 Animated DOCUMENTARY
    Get your official Ladyship/Lordship title today and help plant some trees! https://Establi...
    published: 11 Jan 2022
    Play in Full Screen
    21:33
    The Fall of Batavia | War on the Sea - Dutch East Indies Campaign
    ►subscribe now: https://www.youtube.com/@PetesHQ?sub_confirmation=1 East Indies Campaign...
    published: 22 Feb 2025
    Play in Full Screen
    18:31
    The Rise And Fall of the Dutch East India Company
    To try everything Brilliant has to offer for free for a full 30 days, visit http://www.bri...
    published: 17 Jul 2024
    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: spanish west indies

    Edit

    BOOKMAN BILINGUAL 雙語書林: Jambu, Sweetsop and Atemoya 蓮霧、釋迦、鳳梨釋迦

    Taipei Times 16 Mar 2025
    Nature Walks with Culture Talks 走讀自然 .花言樹語. 台北植物生態與人文. By 作 者 蘇正隆 ... Sweetsop (釋迦) ... Atemoya (鳳梨釋迦) ... Sweetsop/sugar apple is native to the tropical regions of the Americas and the West Indies. Spanish traders on Manila galleons brought it to Asia ... J ... .
    • 1
    ×