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

Malaysian

Malaysian may refer to:

  • Something from or related to Malaysia, a country in Southeast Asia
  • Malaysian language, spoken mainly in Malaysia
  • Malaysian people, people who are identified with the country of Malaysia regardless of their ethnicities. Most Malaysians are of Malay, Chinese and Indian descent.
  • Malaysian diaspora, Malaysian emigrants and their descendants around the world
  • Malaysian cuisine, the food and food culture of Malaysia
  • Malaysian culture, culture associated with Malaysia
  • See also

  • Malaysian names, names as used by the Malaysian people
  • All pages beginning with "Malaysian"
  • Malaya (disambiguation)
  • Malaysian language

    The Malaysian language (Malay: Bahasa Malaysia), or Standard Malay is the name regularly applied to the Malay language used in Malaysia. Constitutionally, however, the official language of Malaysia is Malay, but the government from time to time refers to it as Malaysian. Malaysian is a standardised register of the Johore-Riau dialect of Malay. It is over 80% cognate with Indonesian. It is spoken by most of the Malaysian population as a second language. It is a compulsory subject in primary and secondary school.

    The Malaysian name for the language is Bahasa Malaysia (literally "the language of Malaysia"). This term is occasionally found in English.

    History

    Article 152 of the Federation designates Malay as the official language. Between 1986 and 2007, the official term Bahasa Malaysia was replaced by "Bahasa Melayu". Today, to recognise that Malaysia is composed of many ethnic groups (and not only the ethnic Malays), the term Bahasa Malaysia has once again become the government's preferred designation for the "Bahasa Kebangsaan" (National Language) and the "Bahasa Persatuan/Pemersatu" (unifying language/lingua franca). The language is sometimes simply referred to as Bahasa or BM.

    Malaysia Airlines Flight 370

    Malaysia Airlines Flight 370 (MH370/MAS370) was a scheduled international passenger flight that disappeared on 8 March 2014, while flying from Kuala Lumpur International Airport near Kuala Lumpur, Malaysia, to Beijing Capital International Airport in Beijing, China. The flight last made voice contact with air traffic control at 01:19 MYT, 8 March (17:19 UTC, 7 March) when it was over the South China Sea, less than an hour after takeoff. The aircraft disappeared from air traffic controllers' radar screens at 01:22 MYT. Malaysian military radar continued to track the aircraft as it deviated from its planned flight path and crossed the Malay Peninsula. It left the range of Malaysian military radar at 02:22 while over the Andaman Sea, 200 nautical miles (370 km) northwest of Penang in northwestern Malaysia. The aircraft, a Boeing 777-200ER, was carrying 12 Malaysian crew members and 227 passengers from 15 nations.

    Podcasts:

    • 5 Shocking Facts about Malaysia 😮

      #malaysia #facts #shorts #america #shocking #kualalumpur #malaysian

      published: 04 Oct 2023
    • Visiting the worst country in Asia 🇲🇾 Malaysia

      published: 17 Aug 2024
    • Linus went to Malaysia

      https://lmg.gg/secretlablmgclips Thanks to Secretlab for being the title sponsor of LMG Clips this year! Check out their ergonomic gaming chairs at the link above. Your back will thank you! Check out Dell laptops at: https://lmg.gg/dellprowanclips [YT DESCRIPTION BLURB] Watch the full WAN Show: https://www.youtube.com/watch?v=W7dLlJPtkW0 ► GET MERCH: https://lttstore.com ► GET EXCLUSIVE CONTENT ON FLOATPLANE: https://lmg.gg/lttfloatplane ► SPONSORS, AFFILIATES, AND PARTNERS: https://lmg.gg/partners

      published: 27 Mar 2025
    • Must Try! Popular Watermelon Juice of Malacca, Malaysia

      Must Try! Popular Watermelon Juice of Malacca, Malaysia - Malaysian Street Food Price : RM 15 / USD 3.2 Location : Hdn.Menara.Jam Besar, Banda Hilir, 75000 Melaka google map : https://maps.app.goo.gl/ULrp2CQFbftHgCpp6 #shorts #malaysia #donafood

      published: 21 Jul 2024
    • Amazing Places to visit in Malaysia - Travel Video

      Malaysia is the crowning jewel that lies at the very end of Southeast Asia, jutting out with the Malaccan Straits to meet the islands of Indonesia and the Java Sea. This remarkable land attracts more and more nature lovers from around the world. Why would that be? Well, this country has a lot to offer for everyone’s taste! Enjoy memorable experiences in its most fabulous spots… let’s take a look! Chapters: 00:00 Why visiting Malaysia 00:35 Kuala Lumpur 01:18 Malacca 02:12 Penang 03:02 Mount Kinabalu 03:40 Perhentian Islands 04:41 Taman Negara National Park 05:48 Gunung Mulu National Park 06:33 Cameron Highlands 07:30 Langkawi Island 08:11 Genting Highlands 09:06 Reason for visiting Malaysia #Malaysia #Places #Travel

      published: 13 Dec 2022
    • Evolution of Malaysia #shorts #history #geography

      • Hello everyone, Today in this video, We made a video about the "Evolution of Malaysia" ✔ Note: This video is based on research and discussions. The data, numbers, facts, and images may not be current or in a specific order. ✅If you enjoy this type of content, don't forget to hit that subscribe button and the little bell icon to turn on notifications. Your support means so much! ❤️ ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ ------------------------------------------------------------------------------------ Timestamps: • Join our Discord server here to connect with other history enthusiasts and discuss all things country transformations! 👇🏼👇🏼👇🏼 - https://discord.gg/jJzNMznUSh • We'll see you in the next Video!" Tags: #countries #transform...

      published: 25 Jan 2025
    • Rating Viral Street Food At A Malaysian Night Market 🇲🇾

      Get a NordVPN 2Y plan + 4 months extra ➼ https://nordvpn.com/safiya 🦑 It’s risk-free with Nord’s 30-day money-back guarantee! The dish sambal pari is also known by the name ikan pari bakar - so sorry if we got it wrong!! HELLO FRIENDS!! And welcome to another food video!! Have you guys ever been sucked into the night market side of youtube?? Well that happened to me - and ever since, I have been strategizing how to get these viral street food items from the screen - to my mouth. SO while we were in Malaysia a few months ago, we stopped by the famous Jalan Alor Food Street and went wild - there were sticks, stinky tofu, and a whole lot of durian, oh my. Which dish would you want to try?? My Instagram: https://www.instagram.com/safiyany/ My TikTok: https://www.tiktok.com/@safiyany Tyler's...

      published: 15 Mar 2025
    • How does Malaysian switch languages like this?

      published: 11 Apr 2024
    • 24 Hours In Malaysia With Uncle Guga... Can He Handle It?

      Remember to check out Uncle Guga weejio: https://youtu.be/nmlqj1gNe5s?si=fdnJCq8vd1JR9lqt Many thanks to Uncle Guga for coming to Malaysia, and to all the restaurants we visited! Uncle Roger's favorite noodles and dumplings (US only): https://eatmila.com/pages/uncleroger Check out my restaurant: https://www.instagram.com/fuiyohitsuncleroger/ 💰 Support me so I can keep making weejios for you! Merch: https://unclerogermerch.com/ Channel membership: https://www.youtube.com/channel/UCVjlpEjEY9GpksqbEesJnNA/join Shoutouts: https://www.cameo.com/mrnigelng --- Uncle Roger is the creation of comedian Nigel Ng. Follow my socials for more content ⬇️ 📸 Instagram: https://www.instagram.com/mrnigelng/ 🤖 Reddit: https://www.reddit.com/r/UncleRoger/ 💬 Discord: https://discord.gg/R3A5kbfZ 👪 Facebook...

      published: 12 Jan 2025
    • Malaysia STREET FOOD Heaven!! 🇲🇾 27 Meals Best Malaysian Food in Penang! [Full Documentary]

      🇲🇾 Malaysian Street Food in Penang: https://youtu.be/iVsn8X5K7pw?si=tI7mMq_Cvn-JJd_f 👉 SUBSCRIBE for more: https://www.youtube.com/@MarkWiens 👕 T-shirts: https://store.migrationology.com/ Penang is a Malaysian Street Food Paradise, and in this full documentary we are spending the next 7 days eating our way around the entire state. From some of the best and legendary street food in Georgetown to hidden food gems in Penang Mainland, we’re going far and wide to eat the best Malaysian food that locals eat. Get ready for one of the great food trips ever! Chapters: 00:00 Intro 00:45 Where is Penang, Malaysia? 04:18 Penang Street Food Tour in Georgetown 26:36 Indian Street Food Tour in Penang 49:13 Breakfast Soup Noodles 52:16 Best Peranakan Food in Penang 57:52 Malaysian Ramly Burg...

      published: 15 Oct 2024
    5 Shocking Facts about Malaysia 😮
    0:32

    5 Shocking Facts about Malaysia 😮

    • Order:
    • Duration: 0:32
    • Uploaded Date: 04 Oct 2023
    • views: 795146
    #malaysia #facts #shorts #america #shocking #kualalumpur #malaysian
    https://wn.com/5_Shocking_Facts_About_Malaysia_😮
    Visiting the worst country in Asia 🇲🇾 Malaysia
    0:46

    Visiting the worst country in Asia 🇲🇾 Malaysia

    • Order:
    • Duration: 0:46
    • Uploaded Date: 17 Aug 2024
    • views: 1236799
    https://wn.com/Visiting_The_Worst_Country_In_Asia_🇲🇾_Malaysia
    Linus went to Malaysia
    25:55

    Linus went to Malaysia

    • Order:
    • Duration: 25:55
    • Uploaded Date: 27 Mar 2025
    • views: 105861
    https://lmg.gg/secretlablmgclips Thanks to Secretlab for being the title sponsor of LMG Clips this year! Check out their ergonomic gaming chairs at the link above. Your back will thank you! Check out Dell laptops at: https://lmg.gg/dellprowanclips [YT DESCRIPTION BLURB] Watch the full WAN Show: https://www.youtube.com/watch?v=W7dLlJPtkW0 ► GET MERCH: https://lttstore.com ► GET EXCLUSIVE CONTENT ON FLOATPLANE: https://lmg.gg/lttfloatplane ► SPONSORS, AFFILIATES, AND PARTNERS: https://lmg.gg/partners
    https://wn.com/Linus_Went_To_Malaysia
    Must Try! Popular Watermelon Juice of Malacca, Malaysia
    0:36

    Must Try! Popular Watermelon Juice of Malacca, Malaysia

    • Order:
    • Duration: 0:36
    • Uploaded Date: 21 Jul 2024
    • views: 594533764
    Must Try! Popular Watermelon Juice of Malacca, Malaysia - Malaysian Street Food Price : RM 15 / USD 3.2 Location : Hdn.Menara.Jam Besar, Banda Hilir, 75000 Melaka google map : https://maps.app.goo.gl/ULrp2CQFbftHgCpp6 #shorts #malaysia #donafood
    https://wn.com/Must_Try_Popular_Watermelon_Juice_Of_Malacca,_Malaysia
    Amazing Places to visit in Malaysia - Travel Video
    10:02

    Amazing Places to visit in Malaysia - Travel Video

    • Order:
    • Duration: 10:02
    • Uploaded Date: 13 Dec 2022
    • views: 1360192
    Malaysia is the crowning jewel that lies at the very end of Southeast Asia, jutting out with the Malaccan Straits to meet the islands of Indonesia and the Java Sea. This remarkable land attracts more and more nature lovers from around the world. Why would that be? Well, this country has a lot to offer for everyone’s taste! Enjoy memorable experiences in its most fabulous spots… let’s take a look! Chapters: 00:00 Why visiting Malaysia 00:35 Kuala Lumpur 01:18 Malacca 02:12 Penang 03:02 Mount Kinabalu 03:40 Perhentian Islands 04:41 Taman Negara National Park 05:48 Gunung Mulu National Park 06:33 Cameron Highlands 07:30 Langkawi Island 08:11 Genting Highlands 09:06 Reason for visiting Malaysia #Malaysia #Places #Travel
    https://wn.com/Amazing_Places_To_Visit_In_Malaysia_Travel_Video
    Evolution of Malaysia #shorts #history #geography
    0:56

    Evolution of Malaysia #shorts #history #geography

    • Order:
    • Duration: 0:56
    • Uploaded Date: 25 Jan 2025
    • views: 739857
    • Hello everyone, Today in this video, We made a video about the "Evolution of Malaysia" ✔ Note: This video is based on research and discussions. The data, numbers, facts, and images may not be current or in a specific order. ✅If you enjoy this type of content, don't forget to hit that subscribe button and the little bell icon to turn on notifications. Your support means so much! ❤️ ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ ------------------------------------------------------------------------------------ Timestamps: • Join our Discord server here to connect with other history enthusiasts and discuss all things country transformations! 👇🏼👇🏼👇🏼 - https://discord.gg/jJzNMznUSh • We'll see you in the next Video!" Tags: #countries #transformations #history #ancientcivilizations #education #geography #world #travel #culture #shorts
    https://wn.com/Evolution_Of_Malaysia_Shorts_History_Geography
    Rating Viral Street Food At A Malaysian Night Market 🇲🇾
    25:57

    Rating Viral Street Food At A Malaysian Night Market 🇲🇾

    • Order:
    • Duration: 25:57
    • Uploaded Date: 15 Mar 2025
    • views: 579937
    Get a NordVPN 2Y plan + 4 months extra ➼ https://nordvpn.com/safiya 🦑 It’s risk-free with Nord’s 30-day money-back guarantee! The dish sambal pari is also known by the name ikan pari bakar - so sorry if we got it wrong!! HELLO FRIENDS!! And welcome to another food video!! Have you guys ever been sucked into the night market side of youtube?? Well that happened to me - and ever since, I have been strategizing how to get these viral street food items from the screen - to my mouth. SO while we were in Malaysia a few months ago, we stopped by the famous Jalan Alor Food Street and went wild - there were sticks, stinky tofu, and a whole lot of durian, oh my. Which dish would you want to try?? My Instagram: https://www.instagram.com/safiyany/ My TikTok: https://www.tiktok.com/@safiyany Tyler's channel: https://www.youtube.com/@tylerwilliams Our YouTube Shorts channel: https://www.youtube.com/@safiyashorts Check out our merch shop here!! https://fiendishbehavior.com MUSIC Via AudioNetwork Executive Producers: Safiya Nygaard & Tyler Williams Managing Producer: Lona Smith Associate Producer: Ishara Mathews Short Form Producer: Scott Marcin Editor: Andrew Lainhart Junior Editor: Leslie Alcantar Graphic Designer: Dayana Espinoza CHAPTERS: 00:00 Intro 03:00 Where And What Is Jalan Alor? 04:58 Stinky Tofu 07:14 Colorful Dim Sum 09:57 Fruity Refreshment Break 11:54 Deep Fried Squid on a Stick 14:00 Lok Lok (on a Stick) 16:14 Grilled Stingray 18:40 Chili Frog 20:43 Durian Fest!! 21:33 Durian Ice Cream…On A Stick 22:52 Durian Fritter 23:40 The Original Fresh Cut Durian #foodie #streetfood #nightmarket #travel #vlog
    https://wn.com/Rating_Viral_Street_Food_At_A_Malaysian_Night_Market_🇲🇾
    How does Malaysian switch languages like this?
    0:35

    How does Malaysian switch languages like this?

    • Order:
    • Duration: 0:35
    • Uploaded Date: 11 Apr 2024
    • views: 20956178
    https://wn.com/How_Does_Malaysian_Switch_Languages_Like_This
    24 Hours In Malaysia With Uncle Guga... Can He Handle It?
    24:20

    24 Hours In Malaysia With Uncle Guga... Can He Handle It?

    • Order:
    • Duration: 24:20
    • Uploaded Date: 12 Jan 2025
    • views: 2547695
    Remember to check out Uncle Guga weejio: https://youtu.be/nmlqj1gNe5s?si=fdnJCq8vd1JR9lqt Many thanks to Uncle Guga for coming to Malaysia, and to all the restaurants we visited! Uncle Roger's favorite noodles and dumplings (US only): https://eatmila.com/pages/uncleroger Check out my restaurant: https://www.instagram.com/fuiyohitsuncleroger/ 💰 Support me so I can keep making weejios for you! Merch: https://unclerogermerch.com/ Channel membership: https://www.youtube.com/channel/UCVjlpEjEY9GpksqbEesJnNA/join Shoutouts: https://www.cameo.com/mrnigelng --- Uncle Roger is the creation of comedian Nigel Ng. Follow my socials for more content ⬇️ 📸 Instagram: https://www.instagram.com/mrnigelng/ 🤖 Reddit: https://www.reddit.com/r/UncleRoger/ 💬 Discord: https://discord.gg/R3A5kbfZ 👪 Facebook: https://www.facebook.com/nigelngcomedy/ 🕺 tiktok: https://www.tiktok.com/@mrnigelng 🐦 Twitter: https://twitter.com/MrNigelNg 🌎 If you want me to tour your area, put your city in here: http://bit.ly/nigelngmail © Orange Heart Productions
    https://wn.com/24_Hours_In_Malaysia_With_Uncle_Guga..._Can_He_Handle_It
    Malaysia STREET FOOD Heaven!! 🇲🇾 27 Meals Best Malaysian Food in Penang! [Full Documentary]
    2:28:39

    Malaysia STREET FOOD Heaven!! 🇲🇾 27 Meals Best Malaysian Food in Penang! [Full Documentary]

    • Order:
    • Duration: 2:28:39
    • Uploaded Date: 15 Oct 2024
    • views: 2508641
    🇲🇾 Malaysian Street Food in Penang: https://youtu.be/iVsn8X5K7pw?si=tI7mMq_Cvn-JJd_f 👉 SUBSCRIBE for more: https://www.youtube.com/@MarkWiens 👕 T-shirts: https://store.migrationology.com/ Penang is a Malaysian Street Food Paradise, and in this full documentary we are spending the next 7 days eating our way around the entire state. From some of the best and legendary street food in Georgetown to hidden food gems in Penang Mainland, we’re going far and wide to eat the best Malaysian food that locals eat. Get ready for one of the great food trips ever! Chapters: 00:00 Intro 00:45 Where is Penang, Malaysia? 04:18 Penang Street Food Tour in Georgetown 26:36 Indian Street Food Tour in Penang 49:13 Breakfast Soup Noodles 52:16 Best Peranakan Food in Penang 57:52 Malaysian Ramly Burger 01:07:55 Butterworth Street Food Tour 01:28:33 Malaysian Seafood Tour 01:46:42 Balik Pulau Street Food Tour 02:01:39 Best Durian in Penang 02:11:58 Breakfast and Coffee 02:20:22 Final Nasi Kandar 02:27:07 Goodbye Penang You can watch the full series of videos here: https://youtu.be/iVsn8X5K7pw?si=uF0AkiNJtys0BChc Follow on Social Media: ►Facebook: https://www.facebook.com/markwiensfoodvideos ►Instagram: https://www.instagram.com/migrationology/ ►Tiktok: https://www.tiktok.com/@markwiens 👕 T-shirts: https://store.migrationology.com/ 🌶 Ghost Chili: https://amzn.to/3PNTvNQ 🎥 Camera gear I use: https://amzn.to/3FVdBUd (some of these are affiliate links and I will make a small commission from any sales)
    https://wn.com/Malaysia_Street_Food_Heaven_🇲🇾_27_Meals_Best_Malaysian_Food_In_Penang_Full_Documentary
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 3:58:18

    5 Shocking Facts about Malaysia 😮

    #malaysia #facts #shorts #america #shocking #kualalumpur #malaysian
    0:32
    5 Shocking Facts about Malaysia 😮
    #malaysia #facts #shorts #america #shocking #kualalumpur #malaysian
    published: 04 Oct 2023
    Play in Full Screen
    0:46
    Visiting the worst country in Asia 🇲🇾 Malaysia
    published: 17 Aug 2024
    Play in Full Screen
    25:55
    Linus went to Malaysia
    https://lmg.gg/secretlablmgclips Thanks to Secretlab for being the title sponsor of LMG Cl...
    published: 27 Mar 2025
    Play in Full Screen
    0:36
    Must Try! Popular Watermelon Juice of Malacca, Malaysia
    Must Try! Popular Watermelon Juice of Malacca, Malaysia - Malaysian Street Food Price : R...
    published: 21 Jul 2024
    Play in Full Screen
    10:02
    Amazing Places to visit in Malaysia - Travel Video
    Malaysia is the crowning jewel that lies at the very end of Southeast Asia, jutting out wi...
    published: 13 Dec 2022
    Play in Full Screen
    0:56
    Evolution of Malaysia #shorts #history #geography
    • Hello everyone, Today in this video, We made a video about the "Evolution of Malaysia" ...
    published: 25 Jan 2025
    Play in Full Screen
    25:57
    Rating Viral Street Food At A Malaysian Night Market 🇲🇾
    Get a NordVPN 2Y plan + 4 months extra ➼ https://nordvpn.com/safiya 🦑 It’s risk-free with ...
    published: 15 Mar 2025
    Play in Full Screen
    0:35
    How does Malaysian switch languages like this?
    published: 11 Apr 2024
    Play in Full Screen
    24:20
    24 Hours In Malaysia With Uncle Guga... Can He Handle It?
    Remember to check out Uncle Guga weejio: https://youtu.be/nmlqj1gNe5s?si=fdnJCq8vd1JR9lqt ...
    published: 12 Jan 2025
    Play in Full Screen
    2:28:39
    Malaysia STREET FOOD Heaven!! 🇲🇾 27 Meals Best Malaysian Food in Penang! [Full Documentary]
    🇲🇾 Malaysian Street Food in Penang: https://youtu.be/iVsn8X5K7pw?si=tI7mMq_Cvn-JJd_f 👉 SU...
    published: 15 Oct 2024
    Play in Full Screen

    Malaysian

    Malaysian may refer to:

  • Something from or related to Malaysia, a country in Southeast Asia
  • Malaysian language, spoken mainly in Malaysia
  • Malaysian people, people who are identified with the country of Malaysia regardless of their ethnicities. Most Malaysians are of Malay, Chinese and Indian descent.
  • Malaysian diaspora, Malaysian emigrants and their descendants around the world
  • Malaysian cuisine, the food and food culture of Malaysia
  • Malaysian culture, culture associated with Malaysia
  • See also

  • Malaysian names, names as used by the Malaysian people
  • All pages beginning with "Malaysian"
  • Malaya (disambiguation)
  • '); } 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: malaysian

    Edit

    COMMENT | What makes you ashamed to be Malaysian?

    Malaysia Kini 21 Apr 2025
    To feel ashamed, you need a sense of morality or conscience. .
    Edit

    The Future Of Foodservice In Malaysia To 2029: Consumer Segmentation Unveiled - What Drives Malaysian ...

    MENA FN 21 Apr 2025
    (MENAFN - GlobeNewsWire - Nasdaq) Explore the evolving Malaysian foodservice market with our comprehensive report, highlighting key industry trends and consumer demands. Delve into profit sector ... .
    Edit

    Kulit Wayang, a Malaysian movie packed with local and Indonesian stars, win many hearts with ...

    The Star 21 Apr 2025
    The two-day cultural festival with South-East Asian flavour held in Kuala Lumpur recently was part of the unique promotional campaign for the movie. Read full story ... .
    Edit

    Tourist areas in Narathiwat still safe for Malaysians visit, says Thai tourist police

    The Star 21 Apr 2025
    KOTA BHARU. Thailand's Tourist Police stated that the tourist areas in Ban Thon, Narathiwat, remain safe to visit after a bomb blast incident on Sunday (April 20), but advised visitors to use the main routes to reach the destination ... .
    Edit

    Malaysian Catholics mourn the passing of Pope Francis

    The Star 21 Apr 2025
    KUALA LUMPUR. Catholics across Malaysia are mourning the passing of Pope Francis, the head of the Roman Catholic Church, who died on Monday (April 21). Read full story ... .
    Edit

    NO CHANGES TO UNITED STATES VISA POLICIES FOR MALAYSIANS (Ministry of Foreign Affairs of Malaysia)

    Public Technologies 21 Apr 2025
    NO CHANGES TO UNITED STATES VISA POLICIES FOR MALAYSIANS ... While recent reports have highlighted immigration-related developments in the United States, the Ministry wishes to clarify that these developments were not specifically targeted at Malaysians.
    Edit

    Scholarships, study programmes highlighted at Malaysian Education Expo

    The News International 21 Apr 2025
    Provincial minister for education Syed Sardar Ali Shah speaks during a two-day Malaysian Educational Expo on April 19, 2025 ... A two-day Malaysian Educational Expo kicked off at a local hotel in Karachi, ...
    Edit

    Insights | Malaysian official: tariffs and trade barriers undermine global economic stability

    ECNS 21 Apr 2025
    (ECNS) -- A senior Malaysian official voiced support for free trade and multilaterisam at the Beijing Promotion Symposium for the 25th China International Fair for Investment and Trade (CIFIT) on Thursday in Beijing.
    Edit

    Global Times: The neighborhood diplomatic concepts of 'amity, sincerity, mutual benefit and inclusiveness' are very important, says former Malaysian PM Mahathir

    PR Newswire 21 Apr 2025
    Chinese President&nbsp;Xi Jinping visited Vietnam, Malaysia and Cambodia from April 14 to 18, highlighting the guiding role of head-of-state diplomacy in neighborhood relations ... We understand the Chinese way, and China understands the Malaysian way ... .
    Edit

    Malaysian durian sales surge in China amid growing demand for naturally ripened fruit

    South China Morning Post 20 Apr 2025
    While Thailand dominates durian sales in China, sales of the Malaysian fruit have grown tenfold from last year, industry insiders say ... .
    Edit

    GLOBALink | Chinese Malaysian man contributes to rural revitalization in China's Fuzhou

    Xinhua 20 Apr 2025
    A Chinese Malaysian man moved back to his ancestral home in China's Fujian Province after retirement ... Comments. Comments (0). Send. You may like ... More from GLOBALink ... Chinese Malaysian man contributes to rural revitalization in China's Fuzhou. .
    Edit

    Xi Jinping’s Southeast Asia tour boosts regional diplomacy and cooperation

    Blitz 20 Apr 2025
    In particular, Xi and Malaysian Prime Minister Anwar Ibrahim underscored the importance of pioneering “new quality productive forces” in Asia ... China’s continued openness to Malaysian ...
    ×