'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Podcasts:

  • Why Southeast Asia is a hotbed for Chinese criminal gangs

    Subscribe to our YouTube channel for free here: https://sc.mp/subscribe-youtube Read more about this: https://sc.mp/a741e4 Scam centres in Southeast Asia have drawn fresh attention after the high-profile abduction and release of a Chinese actor in Thailand. Criminal gangs have trafficked hundreds of thousands of people who are forced to work in such operations that generate illicit revenues estimated at billions of dollars a year, according to the United Nations. Most of the scam compounds are operated by criminal gangs from China and originate from loosely regulated casinos and online gambling in the region, according to the non-profit organisation United States Institute of Peace. Support us: https://subscribe.scmp.com Follow us on: Website: https://www.scmp.com Facebook: https://...

    published: 24 Mar 2025
  • When God Moves | Kyle Idleman

    When God moves, He invites us to move with Him with the kind of all-in commitment that defined the early church. Our prayer is Southeast would be marked by this same spirit of movement and generosity, creating ripples that impact generations to come. (Acts 20) ---------- Southeast Christian Church has multiple campuses spread out across the Kentuckiana region. United as one family, our vision is to unleash the full force of the church to love people one at a time. ---------- #Kentucky #Indiana #ChurchOnline #southeastchristianchurch #worship #praise #faith #christianchurch ---------- Worship Service 00:00 - SE Online Pre-Service 03:52 - Song // Everything That Has Breath (Praise) 08:08 - Song // Great Are You Lord 11:00 - Communion 13:23 - Song // Amazing Grace 14:47 - Song // King of Kin...

    published: 23 Mar 2025
  • Gita Wirjawan: This Is How Southeast Asia Can Attract More Investments | @BlavatnikSchool Oxford

    Gita Wirjawan spoke at Oxford's Blavatnik School of Government, reflecting on his transition from a successful banking career to public service in Indonesia. He highlighted the importance of credibility in attracting foreign investment, advocating for a long-term vision that acknowledges structural challenges while demonstrating commitment to reforms. Gita also addressed Indonesia’s underrepresentation on the global stage, emphasizing Southeast Asia’s strategic potential in a multipolar world. He underscored the necessity of investing in education, infrastructure, and governance to enhance regional competitiveness, stressing that Southeast Asia must cultivate its narrative and global influence through pragmatic leadership and strategic autonomy. #Endgame #GitaWirjawan --------------...

    published: 19 Mar 2025
  • 5 Best places to visit in SOUTHEAST ASIA

    Today we share the 5 best places to visit in South East Asia, including the most beautiful places in South Asia, the best places in Southeast Asia and how to plan a trip to Southeast Asia. For those planning a trip to Southeast Asia, we also include backpacking Southeast Asia, South East Asia travel tips and some beautiful places in Asia. MORE TIPS: CAMBODIA TRAVEL GUIDE - https://bit.ly/36oQ3Gp SINGAPORE TRAVEL GUIDE - https://bit.ly/2YF3nkK PHILIPPINES TRAVEL GUIDE - https://bit.ly/3kxjKuS VIETNAM TRAVEL GUIDE - https://bit.ly/3D9i3eH THAILAND TRAVEL GUIDE - https://bit.ly/3kwU8yu Affiliates, links and resources ______________________ Our favourite Travel Insurance - https://bit.ly/32c2u4K​​ We recommend this drone - https://amzn.to/3iznv34 We recommend this camera - https://amz...

    published: 12 Nov 2021
  • Sociological structure of Southeast Asia explained in ONE MINUTE!!

    published: 13 Jan 2025
  • 21 Best Places to Visit in Southeast Asia - Travel Video

    Check out all the places seen in this video: https://www.touropia.com/best-places-to-visit-in-southeast-asia/ Southeast Asia is a group of diverse countries between the Indian Ocean and the Pacific Ocean, featuring indigenous cultures influenced by Indian, Chinese and Western culture. It has long been a favorite corner of the world for globe-tramping backpackers, known for its perfect beaches, tasty cuisine and low prices. The region represents a totally different culture for Western travelers. Instead of cathedrals, they’ll find temples. Instead of cold temperatures in the winter, they’ll be bathed in a tropical climate. They may find simple accommodations in remote fishing villages but also luxurious hotels in the cities and on the islands. Here’s a look at the best places to visit in S...

    published: 01 Nov 2019
  • 𝗝𝘂𝗿𝗮𝗿𝗱 𝗶𝘀 𝘁𝗼𝗼 𝗦𝗼𝘂𝘁𝗵𝗲𝗮𝘀𝘁 𝗔𝘀𝗶𝗮𝗻 𝗳𝗼𝗿 𝗦𝗵𝗶𝗼𝗿𝗶【Hololive EN】

    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-= Please do consider checking out the original streams and subscribe to the talents if you haven't already. Don't forget to like comment and subscribe if you like this clip :3 Stream Source : https://www.youtube.com/watch?v=TQOwH3u2FPo Thumbnail Source: https://x.com/koizumi_arata Gawr Gura Ch : https://www.youtube.com/@GawrGura Gawr Gura Twitter : https://twitter.com/gawrgura Ninomae Ina'nis Ch : https://www.youtube.com/@NinomaeInanis Ninomae Ina'nis Twitter : https://twitter.com/ninomaeinanis Takanashi Kiara Ch : https://www.youtube.com/@TakanashiKiara Takanashi Kiara Twitter : https://twitter.com/takanashikiara Amelia Watson Ch : https://www.youtube.com/@WatsonAmelia Amelia W...

    published: 23 Mar 2025
  • Southeast Asian Countries #shorts

    Southeast Asian Countries #shorts Transcript: How many countries are there in Southeast Asia? Well, there are 11 of them! We've got Indonesia, Philippines, Vietnam, Thailand, Myanmar (which used to be called Burma), Malaysia, Cambodia, Laos, Singapore, East Timor, and Brunei Darussalam. Southeast Asia is home to approximately 675 million people, which makes up about 8.5% of the world's population. Now, let's talk about some interesting facts about a few of these countries: Indonesia holds the title of being the largest and most populated country in Southeast Asia. On the flip side, Brunei Darussalam is the smallest in terms of population. It's also the only absolute monarchy in the region. As for East Timor, it's the newest addition to the Southeast Asian family, the region had been...

    published: 13 Apr 2024
  • Carstensz Esports vs Call911 EPL World Series Southeast Asia Season 4

    00:00:00 Do Not Waste Your Time 00:09:10 Draft Of Game 1 Carstensz Esports vs Call911 00:19:20 Game 1 Carstensz Esports vs Call911 00:47:00 Break 01:00:30 Draft Of Game 2 Carstensz Esports vs Call911 01:10:20 Game 2 Carstensz Esports vs Call911 More Dota 2, funny moments, new item builds, fresh combos, unpredictable Results & professional behavior Subscribe To https://shorturl.at/kprS8 On the Crazy Fellow channel, you will find fresh content from Dota 2. Each video is a part of the tournament. You can also retreat all moments in your memory by finding your game in the playlists section. Be In Touch https://shorturl.at/fsDKO #crazyfellow #crazyfellowdota #crazyDota2Felow #cfdota2 #dota2 #epl

    published: 23 Mar 2025
  • Wonders of Southeast Asia | The Most Amazing Places in Southeast Asia | Travel Video 4K

    Wonders of Southeast Asia | The Most Amazing Places in Southeast Asia | Travel Video 4K Subscribe to the channel here, it's free but means a lot to us: https://www.youtube.com/channel/UCEtkDdEZ0D8BiYnDRIHqYnQ?sub_confirmation=1 00:00 Welcome to Southeast Asia 04:38 Angkor Wat, Cambodia 06:35 Bali, Indonesia 09:01 Ha Long Bay, Viet Nam 11:31 Bangkok, ThaiLand 13:35 Bagan, Myanmar 15:32 Ifugao Rice Terraces, Philippines* 17:37 Borobudur, Indonesia 20:03 Luang Prabang, Laos 22:17 Ko Phi Phi, ThaiLand 24:15 Singapore 26:47 Komodo National Park, Indonesia 28:46 Mount Kinabalu, Malaysia 30:32 Boracay, Philippines 32:33 Yangon, Myanmar 34:29 Hoi An, Viet Nam 36:54 Palawan, Philippines 38:56 Chiang Mai, ThaiLand 41:09 Phnom Penh, Cambodia 42:53 Gili Islands, Indonesia 45:04 Kuala Lumpur, Malay...

    published: 02 Dec 2024
Why Southeast Asia is a hotbed for Chinese criminal gangs
8:07

Why Southeast Asia is a hotbed for Chinese criminal gangs

  • Order:
  • Duration: 8:07
  • Uploaded Date: 24 Mar 2025
  • views: 86753
Subscribe to our YouTube channel for free here: https://sc.mp/subscribe-youtube Read more about this: https://sc.mp/a741e4 Scam centres in Southeast Asia have drawn fresh attention after the high-profile abduction and release of a Chinese actor in Thailand. Criminal gangs have trafficked hundreds of thousands of people who are forced to work in such operations that generate illicit revenues estimated at billions of dollars a year, according to the United Nations. Most of the scam compounds are operated by criminal gangs from China and originate from loosely regulated casinos and online gambling in the region, according to the non-profit organisation United States Institute of Peace. Support us: https://subscribe.scmp.com Follow us on: Website: https://www.scmp.com Facebook: https://facebook.com/scmp Twitter: https://twitter.com/scmpnews Instagram: https://instagram.com/scmpnews Linkedin: https://www.linkedin.com/company/south-china-morning-post/ #scmp #Asia #SoutheastAsia
https://wn.com/Why_Southeast_Asia_Is_A_Hotbed_For_Chinese_Criminal_Gangs
When God Moves | Kyle Idleman
1:24:35

When God Moves | Kyle Idleman

  • Order:
  • Duration: 1:24:35
  • Uploaded Date: 23 Mar 2025
  • views: 3545
When God moves, He invites us to move with Him with the kind of all-in commitment that defined the early church. Our prayer is Southeast would be marked by this same spirit of movement and generosity, creating ripples that impact generations to come. (Acts 20) ---------- Southeast Christian Church has multiple campuses spread out across the Kentuckiana region. United as one family, our vision is to unleash the full force of the church to love people one at a time. ---------- #Kentucky #Indiana #ChurchOnline #southeastchristianchurch #worship #praise #faith #christianchurch ---------- Worship Service 00:00 - SE Online Pre-Service 03:52 - Song // Everything That Has Breath (Praise) 08:08 - Song // Great Are You Lord 11:00 - Communion 13:23 - Song // Amazing Grace 14:47 - Song // King of Kings 19:27 - Song // Holy Forever 25:00 - Message | Kyle Idleman 1:06:27 - Song // Move of God 1:10:16 - Song // My Empty Grave 1:15:33 - SE Online Post-Service __ Join us every Sunday for Southeast Online, live at 9:15am and 11:30am, and you can also join us for our 2pm and 8pm replay with live chat. Available on YouTube Live, Facebook Live, www.southeastchristian.org, Roku, and Apple TV __ Subscribe to our Southeast Christian YouTube channel to see more messages: https://www.youtube.com/user/southeastchrist __ Follow Southeast Christian Church on Instagram: https://www.instagram.com/southeastchrist/ __ Follow Southeast Christian Church on Facebook: https://www.facebook.com/southeastchrist __ Subscribe to our Southeast Online YouTube channel for more content: https://www.youtube.com/user/southeastonline
https://wn.com/When_God_Moves_|_Kyle_Idleman
Gita Wirjawan: This Is How Southeast Asia Can Attract More Investments |   @BlavatnikSchool Oxford
1:12:44

Gita Wirjawan: This Is How Southeast Asia Can Attract More Investments | @BlavatnikSchool Oxford

  • Order:
  • Duration: 1:12:44
  • Uploaded Date: 19 Mar 2025
  • views: 50885
Gita Wirjawan spoke at Oxford's Blavatnik School of Government, reflecting on his transition from a successful banking career to public service in Indonesia. He highlighted the importance of credibility in attracting foreign investment, advocating for a long-term vision that acknowledges structural challenges while demonstrating commitment to reforms. Gita also addressed Indonesia’s underrepresentation on the global stage, emphasizing Southeast Asia’s strategic potential in a multipolar world. He underscored the necessity of investing in education, infrastructure, and governance to enhance regional competitiveness, stressing that Southeast Asia must cultivate its narrative and global influence through pragmatic leadership and strategic autonomy. #Endgame #GitaWirjawan ----------------------- Read Gita's papers here: https://sgpp.me/money-matters https://sgpp.me/the-paradox-of-sustainability https://sgpp.me/the-paradox-of-the-internet ----------------------- Thank you, Oxford Blavatnik School of Government, for supporting this episode. Recorded 27 November 2024. ----------------------- About Gita Wirjawan: An Indonesian entrepreneur, educator, and Honorary Professor of Politics and International Relations at the University of Nottingham. He is also a visiting scholar at Stanford University’s Shorenstein Asia-Pacific Research Center (APARC) and a fellow at Harvard Kennedy School's Belfer Center for Science and International Affairs. ----------------------- Visit and subscribe: @SGPPIndonesia @Endgame_Clips ----------------------- CHAPTERS 1:00 - Why did Gita decide to join the government? 7:41 - Finding the middle ground between to sell and not to oversell 10:20 - What the world should know from Southeast Asia 14:18 - What needs to change from the current global order 17:37 - Key for Southeast Asia to kick off 20:36 - Prabowo’s internationalist outlook 25:12 - How has Indonesia managed its diversity? 36:22 - Why liberal democratization is imperative in SEA 40:05 - Do you think that it’s important for policymakers to also speak the language of businesses? How do you make sure that the trade and investment that goes into our country is not extractive, noting that there’s SDGs? 44:44 - What’s the thinking behind your meandering career journey? 51:14 - Should a country ‘micromanaging’ its people? 53:00 - Ensuring investment for the people 54:29 - How can Indonesia change its attitude to be more outward? 55:42 - Do you think Indonesia’s unique political system contributes to its relative peace and stability (meaning doesn’t need a change)? Or we need some changes there? 1:11:52 - What’s the best thing about being in a government? 1:13:34 - Message for SEA on sustainability realism ------------------ To collaborate, contact us: https://sgpp.me/contactus ------------------------ Listen to more lectures: https://youtu.be/RIFc4Fz4mF4 https://youtu.be/oeAAgLHeq3M https://youtu.be/ipzt9DEgAuQ https://youtu.be/13Vn1FD9_Kk
https://wn.com/Gita_Wirjawan_This_Is_How_Southeast_Asia_Can_Attract_More_Investments_|_Blavatnikschool_Oxford
5 Best places to visit in SOUTHEAST ASIA
4:10

5 Best places to visit in SOUTHEAST ASIA

  • Order:
  • Duration: 4:10
  • Uploaded Date: 12 Nov 2021
  • views: 46452
Today we share the 5 best places to visit in South East Asia, including the most beautiful places in South Asia, the best places in Southeast Asia and how to plan a trip to Southeast Asia. For those planning a trip to Southeast Asia, we also include backpacking Southeast Asia, South East Asia travel tips and some beautiful places in Asia. MORE TIPS: CAMBODIA TRAVEL GUIDE - https://bit.ly/36oQ3Gp SINGAPORE TRAVEL GUIDE - https://bit.ly/2YF3nkK PHILIPPINES TRAVEL GUIDE - https://bit.ly/3kxjKuS VIETNAM TRAVEL GUIDE - https://bit.ly/3D9i3eH THAILAND TRAVEL GUIDE - https://bit.ly/3kwU8yu Affiliates, links and resources ______________________ Our favourite Travel Insurance - https://bit.ly/32c2u4K​​ We recommend this drone - https://amzn.to/3iznv34 We recommend this camera - https://amzn.to/3wdXnP5 Our Vlogging Camera - https://amzn.to/3iyvi0J Our Microphone - https://amzn.to/2RJG6OF Our Mic stand - https://amzn.to/2TlBzm9 Follow us everywhere _________________________ SUBSCRIBE ► http://bit.ly/CTGTV​​​​​​​​​​ If you have any more questions, let us know them in the comments below! Read our travel guides on www.CreativeTravelGuide.com Read more about Thailand on www.ThatBangkokLife.com Read more about theme parks on www.ThemePark247.com Chapters ________________________ 00:00 BEST PLACES TO VISIT IN SOUTHEAST ASIA 00:32 CAMBODIA 01:12 SINGAPORE 01:56 PHILIPPINES 02:36 VIETNAM 03:13 THAILAND ________________________
https://wn.com/5_Best_Places_To_Visit_In_Southeast_Asia
Sociological structure of Southeast Asia explained in ONE MINUTE!!
1:01

Sociological structure of Southeast Asia explained in ONE MINUTE!!

  • Order:
  • Duration: 1:01
  • Uploaded Date: 13 Jan 2025
  • views: 4043535
https://wn.com/Sociological_Structure_Of_Southeast_Asia_Explained_In_One_Minute
21 Best Places to Visit in Southeast Asia - Travel Video
27:50

21 Best Places to Visit in Southeast Asia - Travel Video

  • Order:
  • Duration: 27:50
  • Uploaded Date: 01 Nov 2019
  • views: 2212060
Check out all the places seen in this video: https://www.touropia.com/best-places-to-visit-in-southeast-asia/ Southeast Asia is a group of diverse countries between the Indian Ocean and the Pacific Ocean, featuring indigenous cultures influenced by Indian, Chinese and Western culture. It has long been a favorite corner of the world for globe-tramping backpackers, known for its perfect beaches, tasty cuisine and low prices. The region represents a totally different culture for Western travelers. Instead of cathedrals, they’ll find temples. Instead of cold temperatures in the winter, they’ll be bathed in a tropical climate. They may find simple accommodations in remote fishing villages but also luxurious hotels in the cities and on the islands. Here’s a look at the best places to visit in Southeast Asia:
https://wn.com/21_Best_Places_To_Visit_In_Southeast_Asia_Travel_Video
𝗝𝘂𝗿𝗮𝗿𝗱 𝗶𝘀 𝘁𝗼𝗼 𝗦𝗼𝘂𝘁𝗵𝗲𝗮𝘀𝘁 𝗔𝘀𝗶𝗮𝗻 𝗳𝗼𝗿 𝗦𝗵𝗶𝗼𝗿𝗶【Hololive EN】
4:23

𝗝𝘂𝗿𝗮𝗿𝗱 𝗶𝘀 𝘁𝗼𝗼 𝗦𝗼𝘂𝘁𝗵𝗲𝗮𝘀𝘁 𝗔𝘀𝗶𝗮𝗻 𝗳𝗼𝗿 𝗦𝗵𝗶𝗼𝗿𝗶【Hololive EN】

  • Order:
  • Duration: 4:23
  • Uploaded Date: 23 Mar 2025
  • views: 9282
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-= Please do consider checking out the original streams and subscribe to the talents if you haven't already. Don't forget to like comment and subscribe if you like this clip :3 Stream Source : https://www.youtube.com/watch?v=TQOwH3u2FPo Thumbnail Source: https://x.com/koizumi_arata Gawr Gura Ch : https://www.youtube.com/@GawrGura Gawr Gura Twitter : https://twitter.com/gawrgura Ninomae Ina'nis Ch : https://www.youtube.com/@NinomaeInanis Ninomae Ina'nis Twitter : https://twitter.com/ninomaeinanis Takanashi Kiara Ch : https://www.youtube.com/@TakanashiKiara Takanashi Kiara Twitter : https://twitter.com/takanashikiara Amelia Watson Ch : https://www.youtube.com/@WatsonAmelia Amelia Watson Twitter : https://twitter.com/watsonameliaEN Mori Calliope Ch : https://www.youtube.com/@MoriCalliope Mori Calliope Twitter : https://twitter.com/moricalliope Nanashi Mumei Ch : https://www.youtube.com/@NanashiMumei Nanashi Mumei Twitter : https://twitter.com/nanashimumei_en Ouro Kronii Ch : https://www.youtube.com/@OuroKronii Ouro Kronii Twitter : https://twitter.com/ourokronii Hakos Baelz Ch : https://www.youtube.com/@HakosBaelz Hakos Baelz Twitter : https://twitter.com/hakosbaelz IRyS Ch : https://www.youtube.com/@IRyS IRyS Twitter : https://twitter.com/hololive_En Ceres Fauna Ch : https://www.youtube.com/@CeresFauna Ceres Fauna Twitter : https://twitter.com/ceresfauna Shiori Novella Ch : https://www.youtube.com/@ShioriNovella Shiori Novella Twitter : https://twitter.com/shiorinovella Koseki Bijou Ch : https://www.youtube.com/@KosekiBijou Koseki Bijou Twitter : https://twitter.com/kosekibijou Nerissa Ravencroft Ch : https://www.youtube.com/@NerissaRaven... Nerissa Ravencroft Twitter : https://twitter.com/nerissa_en FUWAMOCO Ch : https://www.youtube.com/@FUWAMOCOch FUWAMOCO Twitter : https://twitter.com/fuwamoco_en Elizabeth Rose Bloodflame Ch : https://www.youtube.com/@holoen_erbloodflame Elizabeth Rose Bloodflame Twitter : https://twitter.com/ERBloodflame Gigi Murin Ch : https://www.youtube.com/@holoen_gigimurin Gigi Murin Twitter : https://twitter.com/gigimurin Cecilia Immergreen Ch : https://www.youtube.com/@holoen_ceciliaimmergreen Cecilia Immergreen Twitter : https://twitter.com/ceciliaimgreen Raora Panthera Ch : https://www.youtube.com/@holoen_raorapanthera Raora Panthera Twitter : https://twitter.com/raorapanthera You'll find hololive and ホロライブ and hololive en and hololive english and vtuber and hololive reaction and hololive animation and mococo noeh and mococo hoeh and mogojan and holoadvent and hololive advent and gawr gura and nanashi mumei and mori calliope and takanashi kiara and ninomae ina'nis and ouro kronii and watson amelia and dokibird and ceres fauna and IRyS and hakos baelz and mumei and fauna and gura and calli and ame and bae and ina and kiara and kronii and nijisanji and holocouncil and mint fantome and michi mochievee and holomyth and nerissa ravencroft and koseki bijou and shiori novella and doki and fuwamoco and nerissa and bijou and biboo and fuwawa and mococo and shiori and holo x break and hololive fuwamoco and nerissa sister and nerissa mom and raora panthera and cecilia immergreen and gigi murin and elizabeth rose bloodflame and hololive justice here Tag : #ホロライブ #hololive #vtuber #holoEN #hololiveEN #hololiveEnglish #holoAdvent #holoJustice
https://wn.com/𝗝𝘂𝗿𝗮𝗿𝗱_𝗶𝘀_𝘁𝗼𝗼_𝗦𝗼𝘂𝘁𝗵𝗲𝗮𝘀𝘁_𝗔𝘀𝗶𝗮𝗻_𝗳𝗼𝗿_𝗦𝗵𝗶𝗼𝗿𝗶【Hololive_En】
Southeast Asian Countries #shorts
1:00

Southeast Asian Countries #shorts

  • Order:
  • Duration: 1:00
  • Uploaded Date: 13 Apr 2024
  • views: 3422913
Southeast Asian Countries #shorts Transcript: How many countries are there in Southeast Asia? Well, there are 11 of them! We've got Indonesia, Philippines, Vietnam, Thailand, Myanmar (which used to be called Burma), Malaysia, Cambodia, Laos, Singapore, East Timor, and Brunei Darussalam. Southeast Asia is home to approximately 675 million people, which makes up about 8.5% of the world's population. Now, let's talk about some interesting facts about a few of these countries: Indonesia holds the title of being the largest and most populated country in Southeast Asia. On the flip side, Brunei Darussalam is the smallest in terms of population. It's also the only absolute monarchy in the region. As for East Timor, it's the newest addition to the Southeast Asian family, the region had been a Portuguese colony up until 1975 and was under Indonesian sovereignty from 1976 to 1999, and unfortunately, it's also not so well economically. #southeastasia #asia #geography #geographyfacts #indonesia #philippines #vietnam #myanmar #malaysia #cambodia #landborders #singapore #easttimor #brunei #gdp #economy #history #historyfacts #asian #facts #countries #map #coggnize
https://wn.com/Southeast_Asian_Countries_Shorts
Carstensz Esports vs Call911 EPL World Series Southeast Asia Season 4
1:43:30

Carstensz Esports vs Call911 EPL World Series Southeast Asia Season 4

  • Order:
  • Duration: 1:43:30
  • Uploaded Date: 23 Mar 2025
  • views: 425
00:00:00 Do Not Waste Your Time 00:09:10 Draft Of Game 1 Carstensz Esports vs Call911 00:19:20 Game 1 Carstensz Esports vs Call911 00:47:00 Break 01:00:30 Draft Of Game 2 Carstensz Esports vs Call911 01:10:20 Game 2 Carstensz Esports vs Call911 More Dota 2, funny moments, new item builds, fresh combos, unpredictable Results & professional behavior Subscribe To https://shorturl.at/kprS8 On the Crazy Fellow channel, you will find fresh content from Dota 2. Each video is a part of the tournament. You can also retreat all moments in your memory by finding your game in the playlists section. Be In Touch https://shorturl.at/fsDKO #crazyfellow #crazyfellowdota #crazyDota2Felow #cfdota2 #dota2 #epl
https://wn.com/Carstensz_Esports_Vs_Call911_Epl_World_Series_Southeast_Asia_Season_4
Wonders of Southeast Asia | The Most Amazing Places in Southeast Asia | Travel Video 4K
1:02:05

Wonders of Southeast Asia | The Most Amazing Places in Southeast Asia | Travel Video 4K

  • Order:
  • Duration: 1:02:05
  • Uploaded Date: 02 Dec 2024
  • views: 56273
Wonders of Southeast Asia | The Most Amazing Places in Southeast Asia | Travel Video 4K Subscribe to the channel here, it's free but means a lot to us: https://www.youtube.com/channel/UCEtkDdEZ0D8BiYnDRIHqYnQ?sub_confirmation=1 00:00 Welcome to Southeast Asia 04:38 Angkor Wat, Cambodia 06:35 Bali, Indonesia 09:01 Ha Long Bay, Viet Nam 11:31 Bangkok, ThaiLand 13:35 Bagan, Myanmar 15:32 Ifugao Rice Terraces, Philippines* 17:37 Borobudur, Indonesia 20:03 Luang Prabang, Laos 22:17 Ko Phi Phi, ThaiLand 24:15 Singapore 26:47 Komodo National Park, Indonesia 28:46 Mount Kinabalu, Malaysia 30:32 Boracay, Philippines 32:33 Yangon, Myanmar 34:29 Hoi An, Viet Nam 36:54 Palawan, Philippines 38:56 Chiang Mai, ThaiLand 41:09 Phnom Penh, Cambodia 42:53 Gili Islands, Indonesia 45:04 Kuala Lumpur, Malaysia 47:11 Phuket, ThaiLand 49:19 Vang Vieng, Laos 51:17 Hanoi, Viet Nam 53:07 Perhentian Islands, Malaysia 55:18 Sapa, Viet Nam 57:46 Sihanoukville, Cambodia 59:23 Vientiane, Laos 1:01:06 Outro #southeastasiatravel #southeastasiaplacestovisit #southeastasiaplaces
https://wn.com/Wonders_Of_Southeast_Asia_|_The_Most_Amazing_Places_In_Southeast_Asia_|_Travel_Video_4K
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Why Southeast Asia is a hotbed for Chinese criminal gangs
    8:07
    Why Southeast Asia is a hotbed for Chinese criminal gangsremove from playlist
  • When God Moves | Kyle Idleman
    1:24:35
    When God Moves | Kyle Idlemanremove from playlist
  • Gita Wirjawan: This Is How Southeast Asia Can Attract More Investments |   @BlavatnikSchool Oxford
    1:12:44
    Gita Wirjawan: This Is How Southeast Asia Can Attract More Investments | @BlavatnikSchool Oxfordremove from playlist
  • 5 Best places to visit in SOUTHEAST ASIA
    4:10
    5 Best places to visit in SOUTHEAST ASIAremove from playlist
  • 21 Best Places to Visit in Southeast Asia - Travel Video
    27:50
    21 Best Places to Visit in Southeast Asia - Travel Videoremove from playlist
  • 𝗝𝘂𝗿𝗮𝗿𝗱 𝗶𝘀 𝘁𝗼𝗼 𝗦𝗼𝘂𝘁𝗵𝗲𝗮𝘀𝘁 𝗔𝘀𝗶𝗮𝗻 𝗳𝗼𝗿 𝗦𝗵𝗶𝗼𝗿𝗶【Hololive EN】
    4:23
    𝗝𝘂𝗿𝗮𝗿𝗱 𝗶𝘀 𝘁𝗼𝗼 𝗦𝗼𝘂𝘁𝗵𝗲𝗮𝘀𝘁 𝗔𝘀𝗶𝗮𝗻 𝗳𝗼𝗿 𝗦𝗵𝗶𝗼𝗿𝗶【Hololive EN】remove from playlist
  • Southeast Asian Countries #shorts
    1:00
    Southeast Asian Countries #shortsremove from playlist
  • Carstensz Esports vs Call911 EPL World Series Southeast Asia Season 4
    1:43:30
    Carstensz Esports vs Call911 EPL World Series Southeast Asia Season 4remove from playlist
  • Wonders of Southeast Asia | The Most Amazing Places in Southeast Asia | Travel Video 4K
    1:02:05
    Wonders of Southeast Asia | The Most Amazing Places in Southeast Asia | Travel Video 4Kremove from playlist
PLAYLIST TIME:

Why Southeast Asia is a hotbed for Chinese criminal gangs

Subscribe to our YouTube channel for free here: https://sc.mp/subscribe-youtube Read more about this: https://sc.mp/a741e4 Scam centres in Southeast Asia have drawn fresh attention after the high-profile abduction and release of a Chinese actor in Thailand. Criminal gangs have trafficked hundreds of thousands of people who are forced to work in such operations that generate illicit revenues estimated at billions of dollars a year, according to the United Nations. Most of the scam compounds are operated by criminal gangs from China and originate from loosely regulated casinos and online gambling in the region, according to the non-profit organisation United States Institute of Peace. Support us: https://subscribe.scmp.com Follow us on: Website: https://www.scmp.com Facebook: https://facebook.com/scmp Twitter: https://twitter.com/scmpnews Instagram: https://instagram.com/scmpnews Linkedin: https://www.linkedin.com/company/south-china-morning-post/ #scmp #Asia #SoutheastAsia
8:07
Why Southeast Asia is a hotbed for Chinese criminal gangs
Subscribe to our YouTube channel for free here: https://sc.mp/subscribe-youtube Read mor...
published: 24 Mar 2025
Play in Full Screen
1:24:35
When God Moves | Kyle Idleman
When God moves, He invites us to move with Him with the kind of all-in commitment that def...
published: 23 Mar 2025
Play in Full Screen
1:12:44
Gita Wirjawan: This Is How Southeast Asia Can Attract More Investments | @BlavatnikSchool Oxford
Gita Wirjawan spoke at Oxford's Blavatnik School of Government, reflecting on his transiti...
published: 19 Mar 2025
Play in Full Screen
4:10
5 Best places to visit in SOUTHEAST ASIA
Today we share the 5 best places to visit in South East Asia, including the most beautiful...
published: 12 Nov 2021
Play in Full Screen
1:01
Sociological structure of Southeast Asia explained in ONE MINUTE!!
published: 13 Jan 2025
Play in Full Screen
27:50
21 Best Places to Visit in Southeast Asia - Travel Video
Check out all the places seen in this video: https://www.touropia.com/best-places-to-visit...
published: 01 Nov 2019
Play in Full Screen
4:23
𝗝𝘂𝗿𝗮𝗿𝗱 𝗶𝘀 𝘁𝗼𝗼 𝗦𝗼𝘂𝘁𝗵𝗲𝗮𝘀𝘁 𝗔𝘀𝗶𝗮𝗻 𝗳𝗼𝗿 𝗦𝗵𝗶𝗼𝗿𝗶【Hololive EN】
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=--=-=-...
published: 23 Mar 2025
Play in Full Screen
1:00
Southeast Asian Countries #shorts
Southeast Asian Countries #shorts Transcript: How many countries are there in Southeast ...
published: 13 Apr 2024
Play in Full Screen
1:43:30
Carstensz Esports vs Call911 EPL World Series Southeast Asia Season 4
00:00:00 Do Not Waste Your Time 00:09:10 Draft Of Game 1 Carstensz Esports vs Call911 00:1...
published: 23 Mar 2025
Play in Full Screen
1:02:05
Wonders of Southeast Asia | The Most Amazing Places in Southeast Asia | Travel Video 4K
Wonders of Southeast Asia | The Most Amazing Places in Southeast Asia | Travel Video 4K ...
published: 02 Dec 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: southeast

Edit

W.P. Carey buys cold-storage facility in southeast L.A. County

Business Journal 07 May 2025
The 302,850-square-foot cold storage warehouse is fully leased and under renovation, receiving upgrades to its refrigeration system ... .
Edit

U.S. issues ‘do not travel’ warning to parts of this Southeast Asian vacation spot

Lehigh Valley 07 May 2025
If you’re planning a trip to this Southeast Asian vacation destination anytime soon, take note that there are some parts of the country where you shouldn’t travel ....
Edit

TDCX retains rank as the top Southeast Asian outsourced CX provider

The Galveston Daily News 07 May 2025
Among top 17 globally in OA500 Index that evaluates BPO firms worldwide ....
Edit

Grass fire doused southeast of Calgary’s zoo

CTV 07 May 2025
The Calgary Fire Department doused a grass fire in the city on Tuesday evening. .
Edit

Rapid customs clearance boosts Southeast Asian durian access in China

ECNS 07 May 2025
Among the more than 150 international trade routes from Nansha Port to Belt and Road partner countries, about half are bound for Southeast Asia ... Southeast Asian fruits like durian, longan, bananas, ...
Edit

Busy highway stretch to close for 10 days in Southeast Michigan

Michigan Live 07 May 2025
Oakland County drivers who travel west on I-696 may want to seek a new route in the short term. The westbound highway between I-75 and M-10 will be completely shut down for 10 days, beginning Friday evening, May 9 ... Related ... Stories by Justin P. Hicks.
Edit

Global Wealth Management Named on USA TODAY's Best Financial Advisory Firms 2025 List, #1 Advisory Firm in Southeast Florida

PR Newswire 07 May 2025
GWM proudly secured the #85 spot nationwide, ranked #6 in Florida, and earned the #1 position among firms based in Southeast Florida.
Edit

New Report Highlights Need for Ecosystem Approach to Help MSMEs in Southeast Asia Adopt More Sustainable Practices

Vietnam News 07 May 2025
New Report Highlights Need for Ecosystem Approach to Help MSMEs in Southeast Asia Adopt More Sustainable Practices ... "MSMEs are the backbone of Southeast Asia's economies and essential partners in advancing sustainable supply chains," said Ms.
Edit

Movies playing in Southeast Michigan, new releases May 9

Press & Guide 07 May 2025
The following list includes movies available at local theaters, and movies that are available to watch through online streaming and video on demand services including ... Showing at theaters. • “Shadow Force” (R) ... In theaters, May 9 ... In theaters, May 9 ... Fox.
Edit

Operation Sindoor and beyond: India’s retaliation and the regional costs of Pakistan’s proxy warfare

Blitz 07 May 2025
The way forward ... Furthermore, while there are 57 Muslim-majority countries in the world, the majority in West Asia and Southeast Asia prioritize regional security and prosperity, with religion playing a minor role in foreign policy ... ....
×