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

Dalai Lama

The Dalai Lama /ˈdɑːl ˈlɑːmə/ is a monk of the Gelug or "Yellow Hat" school of Tibetan Buddhism, the newest of the schools of Tibetan Buddhism founded by Je Tsongkhapa. The 14th and current Dalai Lama is Tenzin Gyatso.

The Dalai Lama is considered to be the successor in a line of tulkus who are believed to be incarnations of Avalokiteśvara, the Bodhisattva of Compassion, called Chenrezig in Tibetan. The name is a combination of the Mongolic word dalai meaning "ocean" (being the translation of the Tibetan name, 'Gyatso') and the Tibetan word བླ་མ་ (bla-ma) meaning "guru, teacher, mentor". The Tibetan word "lama" corresponds to the better known Sanskrit word "guru".

From 1642 until the 1950s (except for 1705 to 1750), the Dalai Lamas or their regents headed the Tibetan government or Ganden Phodrang which governed all or most of the Tibetan plateau from Lhasa with varying degrees of autonomy, up to complete sovereignty. This government also enjoyed the patronage and protection of firstly Mongol kings of the Khoshut and Dzungar Khanates (1642–1720) and then of the emperors of the Manchu-led Qing dynasty (1720–1912).

Reise, Reise

Reise, Reise (German pronunciation: [ʁaɪzə, ʁaɪzə], a German wake-up call, literally "(a)rise, (a)rise", although it can also be interpreted as meaning "journey, journey", or as a command "travel, travel") is Neue Deutsche Härte band Rammstein's fourth studio album. It was released on September 27, 2004 in Germany and followed shortly by its release across Europe. It was released in North America on November 16, 2004. The album was recorded in a span of two years at El Cortijo Studios in Málaga, Spain. It was produced by the band themselves along with Swedish record producer Jacob Hellner. The album charted in the top ten in several European charts and was a number one hit in Germany, Austria, Switzerland, Iceland, Finland, Estonia and Mexico. As of February 2006, the album has shipped 1.5 million copies globally.

Recording

The album was recorded in Spain (El Cortijo Studio, Malaga) and produced by Jacob Hellner and Rammstein. The band recorded several songs during the sessions for "Reise, Reise" which were omitted from the album's final track listing and were later released on their follow-up album Rosenrot. A statement from the band's management regarding the upcoming collection reads as follows:

Podcasts:

  • Dalai Lama Apologizes After Asking Boy To 'Suck' on His Tongue

    The Dalai Lama, the spiritual leader of the Tibetan community, apologized on Monday after a video of him kissing a young boy on the lips sparked outrage. In the same video, he is heard asking the boy to suck his tongue. The video only started circulating on social media recently but was taken during a public event in India in February. In the video, the young boy asks for a hug and the Dalai Lama tells him to come up to the platform where he is seated. During their interaction, the Dalai Lama gives the boy a kiss on the mouth and pokes out his tongue saying, "suck my tongue.” The office for the Dalai Lama issued an apology, saying the spiritual leader “regrets the incident.” “His Holiness wishes to apologize to the boy and his family, as well as his many friends across the world, for t...

    published: 11 Apr 2023
  • Dalai Lama clashes with Chinese government over future successor

    NBC News' Josh Lederman gives a breakdown on the long-time spiritual feud between the Chinese government and the exiled Dalai Lama. He explains how tensions are reaching new heights amid the search for the leader's successor.   » Subscribe to NBC News: https://www.youtube.com/user/NBCNews NBC News Digital is a collection of innovative and powerful news brands that deliver compelling, diverse and engaging news stories. NBC News Digital features NBCNews.com, MSNBC.com, TODAY.com, Nightly News, Meet the Press, Dateline, and the existing apps and digital extensions of these respective properties. We deliver the best in breaking news, live video coverage, original journalism and segments from your favorite NBC News Shows. Connect with NBC News Online! Breaking News Alerts: https://link.nbcn...

    published: 11 May 2024
  • Dalai Lama kills a Mosquito

    His holiness offers advice on how to deal with pesky insects, in conversation with Bill Moyers

    published: 16 Nov 2007
  • Dalai Lama asks little boy to 'suck my tongue'

    The strange video shows the most senior spiritual figure in Tibetan Buddhism asking a boy to "suck my tongue" during an event in northern India's hillside city of Dharamshala back in February Continue reading at The Mirror: Dalai Lama apologises after viral video shows him asking little boy to 'suck my tongue' https://www.mirror.co.uk/news/world-news/dalai-lama-apologises-after-viral-29671125 The Mirror Homepage: https://www.mirror.co.uk The Mirror Facebook: http://facebook.com/dailymirror The Mirror IG: http://instagram.com/dailymirror The Mirror TikTok: https://www.tiktok.com/@dailymirror The Mirror Twitter: http://twitter.com/DailyMirror Sign up for our newsletters: https://www.mirror.co.uk/email #TheMirror #News #Tibet

    published: 10 Apr 2023
  • Dalai Lama Laughs In Host’s Face at Her Ignorant Question

    Dave Rubin of “The Rubin Report” shares a DM clip of the Dalai Lama shocking BBC News host Rajini Vaidyanathan by laughing in her face when asked if mass migration into Europe was a good idea. Watch Dave Rubin's FULL DIRECT MESSAGE: https://www.youtube.com/watch?v=m8ku9SyIydk&list=PLEbhOtC9klbDG22n--rCDbv02-n8l6agL&index=1&pp=gAQBiAQB WATCH the MEMBER-EXCLUSIVE segment of the show here: https://rubinreport.locals.com/ Check out the NEW RUBIN REPORT MERCH here: https://daverubin.store/ ---------- #RubinReport #dalaiLama #bbcnews #BBC #migrants #migrantcrisis #immigration #DaveRubin The Direct Message segments of the Rubin Report are a chance for Dave Rubin to directly address current events, political news and the topics of the day. Whether it’s encouraging critical thinking, defending...

    published: 08 Jan 2025
  • When Dalai Lama and Lady Gaga discussed kindness

    It was a meeting of the minds in Indianapolis. The His Holiness the 14th Dalai Lama and Lady Gaga sat down for a chat about kindness at the U.S. Conference of Mayors in Indianapolis. The Dalai Lama answered questions Gaga chose from social media about how to deal with injustices in the world. He also praised the benefits of meditation and yoga in the 20-minute Facebook Live chat. The two participated in a plenary session called "The Global Significance of Building Compassionate Cities: Kindness Makes it Happen." ----------------------------------------------------------------------- Subscribe to our channel: http://read.ht/fLZ Follow us on Twitter: https://twitter.com/htTweets Like us on Facebook: https://www.facebook.com/hindustantimes Watch more videos at: http://www.hindustantimes...

    published: 27 Jun 2016
  • Overcoming Negative Emotions

    His Holiness the Dalai Lama speaks on how we can deal with our negative emotions.

    published: 18 Feb 2022
  • Dalai Lama Meets Elderly & Differently-Abled Tibetans in Bylakuppe

    On January 8, 2025, during his stay at Tashi Lhunpo Monastery in Bylakuppe, Karnataka, South India, His Holiness the Dalai Lama met with individuals over the age of 80 and those facing physical or mental challenges, including a 100-year-old Tibetan woman residing in the Tibetan Settlements in Bylakuppe.

    published: 08 Jan 2025
  • Interview with the Dalai Lama - BBC News

    In a wide ranging interview the Dalai Lama talks to the BBC’s Rajini Vaidyanathan about President Trump and his America First agenda, Brexit, the EU, and China’s relationship with the world. The interview also challenges some of the Buddhist spiritual leader’s more controversial statements and explores his views on the institution of the Dalai Lama. Coming just months after a recent health scare – the Dalai Lama shares his thoughts on the state of the world today. The interview also asks the Buddhist spiritual leader what did he mean when he said “Europe was for Europeans”, and why does a female successor have to be attractive? Please subscribe HERE http://bit.ly/1rbfUog

    published: 19 Jul 2019
  • Karl tells the Dalai Lama a joke and it fails miserably

    Subscribe 👉 http://9Soci.al/L72O50GjSJY | "The Dalai Lama walks into a pizza shop..." Wake up with TODAY Weekdays from 5.30AM / Weekends from 7.00am on Channel Nine. Get more TODAY at: http://www.todayshow.com.au/ Like TODAY on Facebook: https://www.facebook.com/iwakeupwithtoday/ Follow TODAY on Twitter: https://twitter.com/TheTodayShow Follow TODAY on Instagram: https://www.instagram.com/thetodayshow/

    published: 10 Jun 2011
Dalai Lama Apologizes After Asking Boy To 'Suck' on His Tongue
0:09

Dalai Lama Apologizes After Asking Boy To 'Suck' on His Tongue

  • Order:
  • Duration: 0:09
  • Uploaded Date: 11 Apr 2023
  • views: 171175
The Dalai Lama, the spiritual leader of the Tibetan community, apologized on Monday after a video of him kissing a young boy on the lips sparked outrage. In the same video, he is heard asking the boy to suck his tongue. The video only started circulating on social media recently but was taken during a public event in India in February. In the video, the young boy asks for a hug and the Dalai Lama tells him to come up to the platform where he is seated. During their interaction, the Dalai Lama gives the boy a kiss on the mouth and pokes out his tongue saying, "suck my tongue.” The office for the Dalai Lama issued an apology, saying the spiritual leader “regrets the incident.” “His Holiness wishes to apologize to the boy and his family, as well as his many friends across the world, for the hurt his words may have caused," the statement reads. “His Holiness often teases people he meets in an innocent and playful way, even in public and before cameras.” #shorts Click here to SUBSCRIBE to VICE Asia: https://bit.ly/2LhqAR9 Connect with VICE Asia: Check out our full video catalog: https://bit.ly/2P3Y0pv Videos, daily editorial and more: http://vice.com/en_asia More videos from the VICE network: https://fb.com/viceasia/videos/ Like VICE Asia on Facebook: http://fb.com/viceasia Follow VICE Asia on Twitter: https://twitter.com/viceasia Follow us on Instagram: https://www.instagram.com/viceasia/
https://wn.com/Dalai_Lama_Apologizes_After_Asking_Boy_To_'Suck'_On_His_Tongue
Dalai Lama clashes with Chinese government over future successor
3:47

Dalai Lama clashes with Chinese government over future successor

  • Order:
  • Duration: 3:47
  • Uploaded Date: 11 May 2024
  • views: 99389
NBC News' Josh Lederman gives a breakdown on the long-time spiritual feud between the Chinese government and the exiled Dalai Lama. He explains how tensions are reaching new heights amid the search for the leader's successor.   » Subscribe to NBC News: https://www.youtube.com/user/NBCNews NBC News Digital is a collection of innovative and powerful news brands that deliver compelling, diverse and engaging news stories. NBC News Digital features NBCNews.com, MSNBC.com, TODAY.com, Nightly News, Meet the Press, Dateline, and the existing apps and digital extensions of these respective properties. We deliver the best in breaking news, live video coverage, original journalism and segments from your favorite NBC News Shows. Connect with NBC News Online! Breaking News Alerts: https://link.nbcnews.com/join/5cj/breaking-news-signup?cid=sm_npd_nn_yt_bn-clip_190621 Visit NBCNews.Com: https://www.nbcnews.com/ Find NBC News on Facebook: https://www.facebook.com/NBCNews Follow NBC News on Twitter: https://twitter.com/NBCNews Get more of NBC News delivered to your inbox: nbcnews.com/newsletters #DalaiLama #China #WorldNews
https://wn.com/Dalai_Lama_Clashes_With_Chinese_Government_Over_Future_Successor
Dalai Lama kills a Mosquito
0:49

Dalai Lama kills a Mosquito

  • Order:
  • Duration: 0:49
  • Uploaded Date: 16 Nov 2007
  • views: 2691501
His holiness offers advice on how to deal with pesky insects, in conversation with Bill Moyers
https://wn.com/Dalai_Lama_Kills_A_Mosquito
Dalai Lama asks little boy to 'suck my tongue'
0:59

Dalai Lama asks little boy to 'suck my tongue'

  • Order:
  • Duration: 0:59
  • Uploaded Date: 10 Apr 2023
  • views: 1746443
The strange video shows the most senior spiritual figure in Tibetan Buddhism asking a boy to "suck my tongue" during an event in northern India's hillside city of Dharamshala back in February Continue reading at The Mirror: Dalai Lama apologises after viral video shows him asking little boy to 'suck my tongue' https://www.mirror.co.uk/news/world-news/dalai-lama-apologises-after-viral-29671125 The Mirror Homepage: https://www.mirror.co.uk The Mirror Facebook: http://facebook.com/dailymirror The Mirror IG: http://instagram.com/dailymirror The Mirror TikTok: https://www.tiktok.com/@dailymirror The Mirror Twitter: http://twitter.com/DailyMirror Sign up for our newsletters: https://www.mirror.co.uk/email #TheMirror #News #Tibet
https://wn.com/Dalai_Lama_Asks_Little_Boy_To_'Suck_My_Tongue'
Dalai Lama Laughs In Host’s Face at Her Ignorant Question
2:09

Dalai Lama Laughs In Host’s Face at Her Ignorant Question

  • Order:
  • Duration: 2:09
  • Uploaded Date: 08 Jan 2025
  • views: 438735
Dave Rubin of “The Rubin Report” shares a DM clip of the Dalai Lama shocking BBC News host Rajini Vaidyanathan by laughing in her face when asked if mass migration into Europe was a good idea. Watch Dave Rubin's FULL DIRECT MESSAGE: https://www.youtube.com/watch?v=m8ku9SyIydk&list=PLEbhOtC9klbDG22n--rCDbv02-n8l6agL&index=1&pp=gAQBiAQB WATCH the MEMBER-EXCLUSIVE segment of the show here: https://rubinreport.locals.com/ Check out the NEW RUBIN REPORT MERCH here: https://daverubin.store/ ---------- #RubinReport #dalaiLama #bbcnews #BBC #migrants #migrantcrisis #immigration #DaveRubin The Direct Message segments of the Rubin Report are a chance for Dave Rubin to directly address current events, political news and the topics of the day. Whether it’s encouraging critical thinking, defending free speech, or fending off political correctness, it’s only by having calm rational conversations about these issues that can help de-escalate the political polarization and help heal our democracy. To hear what Dave has to say on these and a variety of other topics watch this playlist: https://www.youtube.com/playlist?list=PLEbhOtC9klbDG22n--rCDbv02-n8l6agL To make sure you never miss a single Rubin Report video, click here to subscribe: https://www.youtube.com/channel/UCJdKr0Bgd_5saZYqLCa9mng?sub_confirmation=1 Looking for smart and honest conversations about current events, political news and the culture war? Want to increase your critical thinking by listening to different perspectives on a variety of topics? If so, then you’re in the right place because on The Rubin Report Dave Rubin engages the ideas of some of society's most interesting thought leaders, authors, politicians and comedians. The Rubin Report is the largest talk show about free speech and big ideas on YouTube. Dave allows his guests to speak their minds and his audience to think for themselves. New videos every week. The Rubin Report is fan funded through monthly and one-time donations: https://rubinreport.com/support ****** Join Dave's Locals community: https://rubinreport.locals.com/ Order “Don't Burn This Country” the follow up to Dave Rubin’s New York Times bestselling “Don’t Burn This Book” here: https://daverubin.com/book/ Dave Rubin's book, "Don't Burn This Book" is available at: www.dontburnthisbook.com LISTEN to The Rubin Report podcast: www.rubinreport.com/podcast See Dave LIVE: https://daverubin.com/events/ Sign up for our newsletter with the best of The Rubin Report delivered to your inbox once a week: http://www.rubinreport.com/newsletter Official Rubin Report Merchandise: https://rubinreport.myshopify.com/ All art on the set are original works by Caylin Rose Janet. Get a print here: https://www.caylinrosejanet.com/rubinreportart.html ****** Follow Dave on Twitter: https://twitter.com/RubinReport Follow The Rubin Report on Facebook: https://www.facebook.com/rubinreport Follow Dave on Facebook: https://www.facebook.com/daverubin Follow Dave on Instagram: https://www.instagram.com/rubinreport/?hl=en About Dave Rubin: http://daverubin.com/
https://wn.com/Dalai_Lama_Laughs_In_Host’S_Face_At_Her_Ignorant_Question
When Dalai Lama and Lady Gaga discussed kindness
0:38

When Dalai Lama and Lady Gaga discussed kindness

  • Order:
  • Duration: 0:38
  • Uploaded Date: 27 Jun 2016
  • views: 269049
It was a meeting of the minds in Indianapolis. The His Holiness the 14th Dalai Lama and Lady Gaga sat down for a chat about kindness at the U.S. Conference of Mayors in Indianapolis. The Dalai Lama answered questions Gaga chose from social media about how to deal with injustices in the world. He also praised the benefits of meditation and yoga in the 20-minute Facebook Live chat. The two participated in a plenary session called "The Global Significance of Building Compassionate Cities: Kindness Makes it Happen." ----------------------------------------------------------------------- Subscribe to our channel: http://read.ht/fLZ Follow us on Twitter: https://twitter.com/htTweets Like us on Facebook: https://www.facebook.com/hindustantimes Watch more videos at: http://www.hindustantimes.com/video hindustantimes.com © 2015
https://wn.com/When_Dalai_Lama_And_Lady_Gaga_Discussed_Kindness
Overcoming Negative Emotions
3:06

Overcoming Negative Emotions

  • Order:
  • Duration: 3:06
  • Uploaded Date: 18 Feb 2022
  • views: 443235
His Holiness the Dalai Lama speaks on how we can deal with our negative emotions.
https://wn.com/Overcoming_Negative_Emotions
Dalai Lama Meets Elderly & Differently-Abled Tibetans in Bylakuppe
2:18

Dalai Lama Meets Elderly & Differently-Abled Tibetans in Bylakuppe

  • Order:
  • Duration: 2:18
  • Uploaded Date: 08 Jan 2025
  • views: 29942
On January 8, 2025, during his stay at Tashi Lhunpo Monastery in Bylakuppe, Karnataka, South India, His Holiness the Dalai Lama met with individuals over the age of 80 and those facing physical or mental challenges, including a 100-year-old Tibetan woman residing in the Tibetan Settlements in Bylakuppe.
https://wn.com/Dalai_Lama_Meets_Elderly_Differently_Abled_Tibetans_In_Bylakuppe
Interview with the Dalai Lama - BBC News
15:51

Interview with the Dalai Lama - BBC News

  • Order:
  • Duration: 15:51
  • Uploaded Date: 19 Jul 2019
  • views: 492573
In a wide ranging interview the Dalai Lama talks to the BBC’s Rajini Vaidyanathan about President Trump and his America First agenda, Brexit, the EU, and China’s relationship with the world. The interview also challenges some of the Buddhist spiritual leader’s more controversial statements and explores his views on the institution of the Dalai Lama. Coming just months after a recent health scare – the Dalai Lama shares his thoughts on the state of the world today. The interview also asks the Buddhist spiritual leader what did he mean when he said “Europe was for Europeans”, and why does a female successor have to be attractive? Please subscribe HERE http://bit.ly/1rbfUog
https://wn.com/Interview_With_The_Dalai_Lama_BBC_News
Karl tells the Dalai Lama a joke and it fails miserably
1:23

Karl tells the Dalai Lama a joke and it fails miserably

  • Order:
  • Duration: 1:23
  • Uploaded Date: 10 Jun 2011
  • views: 4132033
Subscribe 👉 http://9Soci.al/L72O50GjSJY | "The Dalai Lama walks into a pizza shop..." Wake up with TODAY Weekdays from 5.30AM / Weekends from 7.00am on Channel Nine. Get more TODAY at: http://www.todayshow.com.au/ Like TODAY on Facebook: https://www.facebook.com/iwakeupwithtoday/ Follow TODAY on Twitter: https://twitter.com/TheTodayShow Follow TODAY on Instagram: https://www.instagram.com/thetodayshow/
https://wn.com/Karl_Tells_The_Dalai_Lama_A_Joke_And_It_Fails_Miserably
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Dalai Lama Apologizes After Asking Boy To 'Suck' on His Tongue
    0:09
    Dalai Lama Apologizes After Asking Boy To 'Suck' on His Tongueremove from playlist
  • Dalai Lama clashes with Chinese government over future successor
    3:47
    Dalai Lama clashes with Chinese government over future successorremove from playlist
  • Dalai Lama kills a Mosquito
    0:49
    Dalai Lama kills a Mosquitoremove from playlist
  • Dalai Lama asks little boy to 'suck my tongue'
    0:59
    Dalai Lama asks little boy to 'suck my tongue'remove from playlist
  • Dalai Lama Laughs In Host’s Face at Her Ignorant Question
    2:09
    Dalai Lama Laughs In Host’s Face at Her Ignorant Questionremove from playlist
  • When Dalai Lama and Lady Gaga discussed kindness
    0:38
    When Dalai Lama and Lady Gaga discussed kindnessremove from playlist
  • Overcoming Negative Emotions
    3:06
    Overcoming Negative Emotionsremove from playlist
  • Dalai Lama Meets Elderly & Differently-Abled Tibetans in Bylakuppe
    2:18
    Dalai Lama Meets Elderly & Differently-Abled Tibetans in Bylakupperemove from playlist
  • Interview with the Dalai Lama - BBC News
    15:51
    Interview with the Dalai Lama - BBC Newsremove from playlist
  • Karl tells the Dalai Lama a joke and it fails miserably
    1:23
    Karl tells the Dalai Lama a joke and it fails miserablyremove from playlist
PLAYLIST TIME: 0:00 / 31:09

Dalai Lama Apologizes After Asking Boy To 'Suck' on His Tongue

The Dalai Lama, the spiritual leader of the Tibetan community, apologized on Monday after a video of him kissing a young boy on the lips sparked outrage. In the same video, he is heard asking the boy to suck his tongue. The video only started circulating on social media recently but was taken during a public event in India in February. In the video, the young boy asks for a hug and the Dalai Lama tells him to come up to the platform where he is seated. During their interaction, the Dalai Lama gives the boy a kiss on the mouth and pokes out his tongue saying, "suck my tongue.” The office for the Dalai Lama issued an apology, saying the spiritual leader “regrets the incident.” “His Holiness wishes to apologize to the boy and his family, as well as his many friends across the world, for the hurt his words may have caused," the statement reads. “His Holiness often teases people he meets in an innocent and playful way, even in public and before cameras.” #shorts Click here to SUBSCRIBE to VICE Asia: https://bit.ly/2LhqAR9 Connect with VICE Asia: Check out our full video catalog: https://bit.ly/2P3Y0pv Videos, daily editorial and more: http://vice.com/en_asia More videos from the VICE network: https://fb.com/viceasia/videos/ Like VICE Asia on Facebook: http://fb.com/viceasia Follow VICE Asia on Twitter: https://twitter.com/viceasia Follow us on Instagram: https://www.instagram.com/viceasia/
0:09
Dalai Lama Apologizes After Asking Boy To 'Suck' on His Tongue
The Dalai Lama, the spiritual leader of the Tibetan community, apologized on Monday after ...
published: 11 Apr 2023
Play in Full Screen
3:47
Dalai Lama clashes with Chinese government over future successor
NBC News' Josh Lederman gives a breakdown on the long-time spiritual feud between the Chin...
published: 11 May 2024
Play in Full Screen
0:49
Dalai Lama kills a Mosquito
His holiness offers advice on how to deal with pesky insects, in conversation with Bill M...
published: 16 Nov 2007
Play in Full Screen
0:59
Dalai Lama asks little boy to 'suck my tongue'
The strange video shows the most senior spiritual figure in Tibetan Buddhism asking a boy ...
published: 10 Apr 2023
Play in Full Screen
2:09
Dalai Lama Laughs In Host’s Face at Her Ignorant Question
Dave Rubin of “The Rubin Report” shares a DM clip of the Dalai Lama shocking BBC News host...
published: 08 Jan 2025
Play in Full Screen
0:38
When Dalai Lama and Lady Gaga discussed kindness
It was a meeting of the minds in Indianapolis. The His Holiness the 14th Dalai Lama and L...
published: 27 Jun 2016
Play in Full Screen
3:06
Overcoming Negative Emotions
His Holiness the Dalai Lama speaks on how we can deal with our negative emotions.
published: 18 Feb 2022
Play in Full Screen
2:18
Dalai Lama Meets Elderly & Differently-Abled Tibetans in Bylakuppe
On January 8, 2025, during his stay at Tashi Lhunpo Monastery in Bylakuppe, Karnataka, Sou...
published: 08 Jan 2025
Play in Full Screen
15:51
Interview with the Dalai Lama - BBC News
In a wide ranging interview the Dalai Lama talks to the BBC’s Rajini Vaidyanathan about Pr...
published: 19 Jul 2019
Play in Full Screen
1:23
Karl tells the Dalai Lama a joke and it fails miserably
Subscribe 👉 http://9Soci.al/L72O50GjSJY | "The Dalai Lama walks into a pizza shop..." Wa...
published: 10 Jun 2011
Play in Full Screen

Dalai Lama

The Dalai Lama /ˈdɑːl ˈlɑːmə/ is a monk of the Gelug or "Yellow Hat" school of Tibetan Buddhism, the newest of the schools of Tibetan Buddhism founded by Je Tsongkhapa. The 14th and current Dalai Lama is Tenzin Gyatso.

The Dalai Lama is considered to be the successor in a line of tulkus who are believed to be incarnations of Avalokiteśvara, the Bodhisattva of Compassion, called Chenrezig in Tibetan. The name is a combination of the Mongolic word dalai meaning "ocean" (being the translation of the Tibetan name, 'Gyatso') and the Tibetan word བླ་མ་ (bla-ma) meaning "guru, teacher, mentor". The Tibetan word "lama" corresponds to the better known Sanskrit word "guru".

From 1642 until the 1950s (except for 1705 to 1750), the Dalai Lamas or their regents headed the Tibetan government or Ganden Phodrang which governed all or most of the Tibetan plateau from Lhasa with varying degrees of autonomy, up to complete sovereignty. This government also enjoyed the patronage and protection of firstly Mongol kings of the Khoshut and Dzungar Khanates (1642–1720) and then of the emperors of the Manchu-led Qing dynasty (1720–1912).

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