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

List of people known as The Great

This is an incomplete list of people known as "The Great". There are many people in history whose names are commonly appended with the phrase "the Great" or the equivalent in their own language. Other languages have their own suffixes such as e Bozorg and e azam in Persian and Urdu respectively and Maha in the devanagari script (Hindi script) as in Mahatma Gandhi.

In Persia, the title "the Great" at first seems to be a colloquial version of the Old Persian title "Great King". This title was first used by the conqueror Cyrus II of Persia. The Persian title was inherited by Alexander III of Macedon (336–323 BC) when he conquered the Persian Empire, and the epithet "Great" eventually became personally associated with him. The first reference (in a comedy by Plautus) assumes that everyone knew who "Alexander the Great" was; however, there is no earlier evidence that Alexander III of Macedon was called "the Great". The early Seleucid kings, who succeeded Alexander in Persia, used "Great King" in local documents, but the title was most notably used for Antiochus the Great (223–187 BC).

Podcasts:

  • List of people known as the Great. Greatest People.

    The Great. Greatest People. From the ancient Greek to the modern day, these people have been known for their accomplishments and influence on their respective fields. Here's a list of some of the most notable Great. Greatest People in history! Alexander the Great (356-323 BC) Alexander the Great was king of Macedon from 356 to 323 BC, and he conquered much of Greece during his reign. He was a military leader and conqueror who expanded his empire as far west as India, and he is considered one of the greatest military commanders in history. Confucius (551 BC - 479 BC) Confucius was a Chinese philosopher and teacher who lived during what is currently referred to as China’s Spring and Autumn period between 770 BC and 221 BC. He founded Confucianism, which emphasizes family values, respect...

    published: 01 Apr 2023
  • List of People Known as The Great

    This is a list of people known as the Great, or the equivalent, in their own language. #comparision #infodata

    published: 10 Nov 2022
  • List of people known as The Great | Wikipedia audio article

    This is an audio version of the Wikipedia Article: https://en.wikipedia.org/wiki/List_of_people_known_as_%22the_Great%22 00:02:50 1 Monarchs 00:02:59 2 Aristocrats 00:04:46 3 Religious figures 00:08:26 4 Military people 00:08:52 5 Legendary people 00:09:17 6 See also 00:09:34 7 Notes Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously...

    published: 08 Feb 2019
  • List of monarchs known as the Great I Imperial Marshal

    List of monarchs known as the Great I Imperial Marshal This is a list of people known as the Great, or the equivalent, in their own language. Other languages have their own suffixes, such as Persian e Bozorg and Urdu e Azam. #ruler #comparison #greatest #monarchs #imperialmarshal Please review the contents. Your opinion matters Thank you for your support.

    published: 01 May 2022
  • W.P.H List of People Known as The Great144p

    Feb 17 2023

    published: 17 Feb 2023
  • Who’s Performing at Trump’s Inauguration? Big Names Revealed, Full Schedule

    US President Inauguration: Carrie Underwood and Village People headline Trump’s 2025 inauguration with performances of iconic hits. From “America the Beautiful” to disco classics like “Y.M.C.A.,” this event promises spectacle and surprises. The festivities kick off with a fireworks display at Trump’s Virginia golf club on January 18. On January 19, Trump will host a “MAGA Victory Rally” at Capital One Arena, featuring another performance by the Village People. Find out who else is on the lineup! #USPresident #DonaldTrump #InaugurationDay2025 #TrumpInauguration #USPresidency The Indian Express covers a wide spectrum of national and international news, including daily updates, political developments, election coverage, gadget and mobile reviews, technology updates, entertainment news, Bol...

    published: 14 Jan 2025
  • list of people known for extensive body modification

    published: 30 Aug 2024
  • 25 Most Disturbing Cults That Are Still Active

    🍿 WATCH OUR OTHER VIDEOS: ►25 Worst Facts About Modern Society: https://www.youtube.com/watch?v=KrHhgFjzKmc ►25 Most Disturbing Mysteries in History: https://www.youtube.com/watch?v=ItMUfn8CKj0&t=14s Defining a “cult” is no easy task. Some will argue that authoritarian regimes, like Stalin’s or Mao’s, were basically giant cults with total control, blind loyalty, and brutal consequences for stepping out of line. Others will point to major religions like Catholicism or Islam, claiming they share certain cult-like traits. However, while both arguments might hold some truth, they don’t quite fit the definition. A cult is smaller, more secretive, and is often built around a leader or ideology that demands absolute loyalty. It thrives on manipulation, isolates its members, and prioritizes the ...

    published: 14 Jan 2025
  • Biden bids farewell: FULL SPEECH

    Just days before leaving the White House, President Biden addressed the nation one last time from the Oval Office. Subscribe to FOX 11 on YouTube: https://www.youtube.com/channel/UCHfF8wFnipMeDpJf8OmMxDg Watch more FOX 11 on YouTube: Police Chases: https://www.youtube.com/playlist?list=PLzQIUTzrLS1G-ozh3Gr_VH_pCAVzipyjb Brazen Crime: https://www.youtube.com/playlist?list=PLzQIUTzrLS1G5JxCcXBOLn1TvLLK2AYSv Homeless Crisis: https://www.youtube.com/playlist?list=PLzQIUTzrLS1FxqzL9-ydLX3UjdJyP2S5F

    published: 16 Jan 2025
  • List of Kings known as "THE GREAT" | World History | Iam Seben - Tamil

    Subscribe my another Channel (English) - https://www.youtube.com/channel/UCTJiaH_9pNRh64vVgj7iPfw Editing - Seben Story& Script - Seben My Instagram link - https://instagram.com/seben_selvan?igshid=1ara2wusptlrs My Facebook link - https://www.facebook.com/seben.seben.16 DO LIKE AND SHARE. DON'T FORGET TO SUBSCRIBE. WATCH MORE VIDEOS IN OUR CHANNEL. #iamseben #worldhistory #indianhistory #greatpeoples #greats #greatestkings

    published: 16 Dec 2020
developed with YouTube
List of people known as the Great. Greatest People.
1:05

List of people known as the Great. Greatest People.

  • Order:
  • Duration: 1:05
  • Uploaded Date: 01 Apr 2023
  • views: 529
The Great. Greatest People. From the ancient Greek to the modern day, these people have been known for their accomplishments and influence on their respective fields. Here's a list of some of the most notable Great. Greatest People in history! Alexander the Great (356-323 BC) Alexander the Great was king of Macedon from 356 to 323 BC, and he conquered much of Greece during his reign. He was a military leader and conqueror who expanded his empire as far west as India, and he is considered one of the greatest military commanders in history. Confucius (551 BC - 479 BC) Confucius was a Chinese philosopher and teacher who lived during what is currently referred to as China’s Spring and Autumn period between 770 BC and 221 BC. He founded Confucianism, which emphasizes family values, respect for authority figures, and service to others. Thomas Jefferson (1743-1826) Thomas Jefferson was an American Founding Father who drafted the Declaration of Independence along with Benjamin Franklin and John Adams. These three men were also involved in writing America’s founding documents: The Bill Of Rights; The United States Constitution; The Federalist Papers; List of people known as the Great. Greatest People. greatest leader greatest emperor people known as the great great khan
https://wn.com/List_Of_People_Known_As_The_Great._Greatest_People.
List of People Known as The Great
3:00

List of People Known as The Great

  • Order:
  • Duration: 3:00
  • Uploaded Date: 10 Nov 2022
  • views: 5536
This is a list of people known as the Great, or the equivalent, in their own language. #comparision #infodata
https://wn.com/List_Of_People_Known_As_The_Great
List of people known as The Great | Wikipedia audio article
9:45

List of people known as The Great | Wikipedia audio article

  • Order:
  • Duration: 9:45
  • Uploaded Date: 08 Feb 2019
  • views: 64
This is an audio version of the Wikipedia Article: https://en.wikipedia.org/wiki/List_of_people_known_as_%22the_Great%22 00:02:50 1 Monarchs 00:02:59 2 Aristocrats 00:04:46 3 Religious figures 00:08:26 4 Military people 00:08:52 5 Legendary people 00:09:17 6 See also 00:09:34 7 Notes Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone. Listen on Google Assistant through Extra Audio: https://assistant.google.com/services/invoke/uid/0000001a130b3f91 Other Wikipedia audio articles at: https://www.youtube.com/results?search_query=wikipedia+tts Upload your own Wikipedia articles through: https://github.com/nodef/wikipedia-tts Speaking Rate: 0.7532250610401459 Voice name: en-AU-Wavenet-A "I cannot teach anybody anything, I can only make them think." - Socrates SUMMARY ======= This is a list of people known as "the Great". There are many people in history whose names are commonly appended with the phrase "the Great" or the equivalent in their own language. Other languages have their own suffixes, such as Persian e Bozorg and Urdu e azam. In Persia, the title "the Great" at first seems to be a colloquial version of the Old Persian title "Great King". This title was first used by the conqueror Cyrus II of Persia. The Persian title was inherited by Alexander III of Macedon (336–323 BC) when he conquered the Persian Empire, and the epithet "Great" eventually became personally associated with him. The first reference (in a comedy by Plautus) assumes that everyone knew who "Alexander the Great" was; however, there is no earlier evidence that Alexander III of Macedon was called "the Great". The early Seleucid kings, who succeeded Alexander in Persia, used "Great King" in local documents, but the title was most notably used for Antiochus the Great (223–187 BC). Later rulers and commanders used the epithet "the Great" as a personal name, like the Roman general Pompey. Others received the surname retrospectively, such as the Carthaginian Hanno and the Indian emperor Ashoka the Great. Once the surname gained currency, it was also used as an honorific surname for people without political careers, like the philosopher Albert the Great. As there are no objective criteria for "greatness", the persistence of using the designation greatly varies. For example, Louis XIV of France was often referred to as "the Great" in his lifetime, but is rarely called such nowadays. German Emperor Wilhelm I was often called "the Great" in the time of his grandson Wilhelm II, but rarely before or after. In contemporary times, Pope John Paul II (1920–2005) is recurringly called "the Great" without official sanction.
https://wn.com/List_Of_People_Known_As_The_Great_|_Wikipedia_Audio_Article
List of monarchs known as the Great I Imperial Marshal
5:16

List of monarchs known as the Great I Imperial Marshal

  • Order:
  • Duration: 5:16
  • Uploaded Date: 01 May 2022
  • views: 5598
List of monarchs known as the Great I Imperial Marshal This is a list of people known as the Great, or the equivalent, in their own language. Other languages have their own suffixes, such as Persian e Bozorg and Urdu e Azam. #ruler #comparison #greatest #monarchs #imperialmarshal Please review the contents. Your opinion matters Thank you for your support.
https://wn.com/List_Of_Monarchs_Known_As_The_Great_I_Imperial_Marshal
W.P.H  List of People Known as The Great144p
3:00

W.P.H List of People Known as The Great144p

  • Order:
  • Duration: 3:00
  • Uploaded Date: 17 Feb 2023
  • views: 13
Feb 17 2023
https://wn.com/W.P.H_List_Of_People_Known_As_The_Great144P
Who’s Performing at Trump’s Inauguration? Big Names Revealed, Full Schedule
4:08

Who’s Performing at Trump’s Inauguration? Big Names Revealed, Full Schedule

  • Order:
  • Duration: 4:08
  • Uploaded Date: 14 Jan 2025
  • views: 3364
US President Inauguration: Carrie Underwood and Village People headline Trump’s 2025 inauguration with performances of iconic hits. From “America the Beautiful” to disco classics like “Y.M.C.A.,” this event promises spectacle and surprises. The festivities kick off with a fireworks display at Trump’s Virginia golf club on January 18. On January 19, Trump will host a “MAGA Victory Rally” at Capital One Arena, featuring another performance by the Village People. Find out who else is on the lineup! #USPresident #DonaldTrump #InaugurationDay2025 #TrumpInauguration #USPresidency The Indian Express covers a wide spectrum of national and international news, including daily updates, political developments, election coverage, gadget and mobile reviews, technology updates, entertainment news, Bollywood trends, sports news and public opinions on daily topics. The Indian Express's comprehensive coverage extends to global events, providing insightful analysis on international affairs. With a focus on both Indian and global perspectives, the Indian Express delivers top-notch editorial analysis and in-depth reporting. Stay informed with the latest news, trends, explained and expert views from India and around the world. You can search us on YouTube by: @indianexpress, indian express, indian express newspaper today,indian express newspaper,indian express editorial analysis,indian express analysis,indian express analysis today,indian express,indian express news,the indian express newspaper analysis,the indian express,the indian express newspaper analysis today,the indian express editorial analysis,the indian express newspaper. Stay Tuned To Indian Express For More Updates: https://indianexpress.com/ Watch Out Our Weekly Shows: 🡆 Political Pulse - https://youtube.com/playlist?list=PLrDg7LoYgk9yWQFKrxgIIWgWV-Mbq2jwC 🡆 Express Explained In 60 Seconds - https://youtube.com/playlist?list=PLrDg7LoYgk9wf6MYiN9rR3zN3f-lWmfaS 🡆 Zero Hour with Derek O' Brien - https://youtube.com/playlist?list=PLrDg7LoYgk9w95L5sHxAhGVlNgsRFhMHq 🡆 Indian Express Explained - https://youtube.com/playlist?list=PLrDg7LoYgk9y8Wm50M57nutw5usWUkb-k 🡆 UPSC Essentials- https://www.youtube.com/watch?v=TuhtH8j4stw&list=PLrDg7LoYgk9wBTnLuSQmbj1_6U1K6IOYI #LatestNews #BreakingNews #EnglishNews Subscribe to our Channel: The Indian Express: http://goo.gl/RjJrX0 Subscribe to our Network Channels: Jansatta (Hindi): https://www.youtube.com/c/Jansatta Loksatta (Marathi): https://www.youtube.com/LOKSATTA The Financial Express https://www.youtube.com/c/FinancialExpress Express Drives (Auto): https://www.youtube.com/c/ExpressDrives Inuth (Youth): https://www.youtube.com/c/InUthdotcom Indian Express Bangla: https://www.youtube.com/c/IndianExpressBangla Indian Express Punjab: https://www.youtube.com/@indianexpresspunjab Indian Express Malayalam: https://www.youtube.com/c/iemalayalam Indian Express Tamil: https://www.youtube.com/@indianexpresstamil Connect with us: Facebook: https://www.facebook.com/indianexpress Twitter: https://twitter.com/indianexpress Indian Express App: http://indianexpress.com/apps/ Official Website: https://indianexpress.com/
https://wn.com/Who’S_Performing_At_Trump’S_Inauguration_Big_Names_Revealed,_Full_Schedule
list of people known for extensive body modification
3:33

list of people known for extensive body modification

  • Order:
  • Duration: 3:33
  • Uploaded Date: 30 Aug 2024
  • views: 4
https://wn.com/List_Of_People_Known_For_Extensive_Body_Modification
25 Most Disturbing Cults That Are Still Active
19:10

25 Most Disturbing Cults That Are Still Active

  • Order:
  • Duration: 19:10
  • Uploaded Date: 14 Jan 2025
  • views: 59457
🍿 WATCH OUR OTHER VIDEOS: ►25 Worst Facts About Modern Society: https://www.youtube.com/watch?v=KrHhgFjzKmc ►25 Most Disturbing Mysteries in History: https://www.youtube.com/watch?v=ItMUfn8CKj0&t=14s Defining a “cult” is no easy task. Some will argue that authoritarian regimes, like Stalin’s or Mao’s, were basically giant cults with total control, blind loyalty, and brutal consequences for stepping out of line. Others will point to major religions like Catholicism or Islam, claiming they share certain cult-like traits. However, while both arguments might hold some truth, they don’t quite fit the definition. A cult is smaller, more secretive, and is often built around a leader or ideology that demands absolute loyalty. It thrives on manipulation, isolates its members, and prioritizes the group’s survival at any cost. With that in mind - here are 25 Most Disturbing Cults That Are Still Active Today Grab your copy of What The Facts now, available on Amazon! Click the link to explore over 500 fun and fascinating facts! 👉👉https://www.amazon.com/WHAT-FACTS-ARE-TALKING-ABOUT-ebook/dp/B0DFNR2KHT/ Please support my channel and get access to perks:https://www.youtube.com/channel/UCWqJpFqlX59OML324QIByZA/join 🔔 Subscribe for more tips just like this: https://bit.ly/3Ewz99H 🚀 Watch our latest List25 Videos: https://www.youtube.com/c/list25/videos 📨 Have a list idea? Submit it here: https://bit.ly/3Mu3gk1 Author: Hestie Bernard Music: Shady Guise - The Soundings Chapters: 0:00 - Intro 0:43 - The Santa Muerte Cults 1:37 - The Brethren 2:06 - The Rajneesh Movement 2:54 - The Congregation for the Light 3:34 - The Order of the Solar Temple 4:05 - The Apostles of Infinite Love 4:42 - AUM Supreme Truth 5:25 - Love Has Won 6:14 - Twelve Tribes 6:52 - Kashi Ashram 7:31 - The Family International 8:15 - Nuwaubian Nation 8:54 - The Nation of Yahweh 9:36 - Church of Bible Understanding 10:12 - The LaRouche Movement 10:53 - Raëlian Movement 11:38 - The Remnant Fellowship 12:12 - Heaven’s Gate 12:55 - Happy Science 13:34 - Branch Davidian 14:15 - NXIVM 15:07 - The Order of Nine Angels 15:49 - Fundamentalist Church of Jesus Christ of Latter-Day Saints (FLDS) 16:26 - Christian Science 17:13 - Scientology List25 Discord: https://discord.gg/ZcKZRspW7f Facebook: http://facebook.com/list25 Instagram: http://instagram.com/list25 Twitter/X: http://twitter.com/list25 Pinterest: http://pinterest.com/list25 Mike Instagram: https://www.instagram.com/michaelbestrin Instagram: https://www.instagram.com/DizMeLife Twitter: https://twitter.com/DizMeLife Twitter: https://twitter.com/MichaelBEstrin Facebook: https://www.facebook.com/mikeestrin/ Cameo: https://www.cameo.com/michaelbestrin Mike's Other Channel: https://www.youtube.com/dizmelife See more lists on our website: http://list25.com Copyright Disclaimer under section 107 of the Copyright Act 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research
https://wn.com/25_Most_Disturbing_Cults_That_Are_Still_Active
Biden bids farewell: FULL SPEECH
19:35

Biden bids farewell: FULL SPEECH

  • Order:
  • Duration: 19:35
  • Uploaded Date: 16 Jan 2025
  • views: 2960
Just days before leaving the White House, President Biden addressed the nation one last time from the Oval Office. Subscribe to FOX 11 on YouTube: https://www.youtube.com/channel/UCHfF8wFnipMeDpJf8OmMxDg Watch more FOX 11 on YouTube: Police Chases: https://www.youtube.com/playlist?list=PLzQIUTzrLS1G-ozh3Gr_VH_pCAVzipyjb Brazen Crime: https://www.youtube.com/playlist?list=PLzQIUTzrLS1G5JxCcXBOLn1TvLLK2AYSv Homeless Crisis: https://www.youtube.com/playlist?list=PLzQIUTzrLS1FxqzL9-ydLX3UjdJyP2S5F
https://wn.com/Biden_Bids_Farewell_Full_Speech
List of Kings known as "THE GREAT"   | World History |   Iam Seben - Tamil
10:51

List of Kings known as "THE GREAT" | World History | Iam Seben - Tamil

  • Order:
  • Duration: 10:51
  • Uploaded Date: 16 Dec 2020
  • views: 53
Subscribe my another Channel (English) - https://www.youtube.com/channel/UCTJiaH_9pNRh64vVgj7iPfw Editing - Seben Story& Script - Seben My Instagram link - https://instagram.com/seben_selvan?igshid=1ara2wusptlrs My Facebook link - https://www.facebook.com/seben.seben.16 DO LIKE AND SHARE. DON'T FORGET TO SUBSCRIBE. WATCH MORE VIDEOS IN OUR CHANNEL. #iamseben #worldhistory #indianhistory #greatpeoples #greats #greatestkings
https://wn.com/List_Of_Kings_Known_As_The_Great_|_World_History_|_Iam_Seben_Tamil
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • List of people known as the Great. Greatest People.
    1:05
    List of people known as the Great. Greatest People.remove from playlist
  • List of People Known as The Great
    3:00
    List of People Known as The Greatremove from playlist
  • List of people known as The Great | Wikipedia audio article
    9:45
    List of people known as The Great | Wikipedia audio articleremove from playlist
  • List of monarchs known as the Great I Imperial Marshal
    5:16
    List of monarchs known as the Great I Imperial Marshalremove from playlist
  • Who’s Performing at Trump’s Inauguration? Big Names Revealed, Full Schedule
    4:08
    Who’s Performing at Trump’s Inauguration? Big Names Revealed, Full Scheduleremove from playlist
  • 25 Most Disturbing Cults That Are Still Active
    19:10
    25 Most Disturbing Cults That Are Still Activeremove from playlist
  • Biden bids farewell: FULL SPEECH
    19:35
    Biden bids farewell: FULL SPEECHremove from playlist
  • List of Kings known as
    10:51
    List of Kings known as "THE GREAT" | World History | Iam Seben - Tamilremove from playlist
developed with YouTube
PLAYLIST TIME:

List of people known as the Great. Greatest People.

The Great. Greatest People. From the ancient Greek to the modern day, these people have been known for their accomplishments and influence on their respective fields. Here's a list of some of the most notable Great. Greatest People in history! Alexander the Great (356-323 BC) Alexander the Great was king of Macedon from 356 to 323 BC, and he conquered much of Greece during his reign. He was a military leader and conqueror who expanded his empire as far west as India, and he is considered one of the greatest military commanders in history. Confucius (551 BC - 479 BC) Confucius was a Chinese philosopher and teacher who lived during what is currently referred to as China’s Spring and Autumn period between 770 BC and 221 BC. He founded Confucianism, which emphasizes family values, respect for authority figures, and service to others. Thomas Jefferson (1743-1826) Thomas Jefferson was an American Founding Father who drafted the Declaration of Independence along with Benjamin Franklin and John Adams. These three men were also involved in writing America’s founding documents: The Bill Of Rights; The United States Constitution; The Federalist Papers; List of people known as the Great. Greatest People. greatest leader greatest emperor people known as the great great khan
1:05
List of people known as the Great. Greatest People.
The Great. Greatest People. From the ancient Greek to the modern day, these people have b...
published: 01 Apr 2023
Play in Full Screen
3:00
List of People Known as The Great
This is a list of people known as the Great, or the equivalent, in their own language. #c...
published: 10 Nov 2022
Play in Full Screen
9:45
List of people known as The Great | Wikipedia audio article
This is an audio version of the Wikipedia Article: https://en.wikipedia.org/wiki/List_of_...
published: 08 Feb 2019
Play in Full Screen
5:16
List of monarchs known as the Great I Imperial Marshal
List of monarchs known as the Great I Imperial Marshal This is a list of people known as ...
published: 01 May 2022
Play in Full Screen
3:00
W.P.H List of People Known as The Great144p
Feb 17 2023
published: 17 Feb 2023
Play in Full Screen
4:08
Who’s Performing at Trump’s Inauguration? Big Names Revealed, Full Schedule
US President Inauguration: Carrie Underwood and Village People headline Trump’s 2025 inaug...
published: 14 Jan 2025
Play in Full Screen
3:33
list of people known for extensive body modification
published: 30 Aug 2024
Play in Full Screen
19:10
25 Most Disturbing Cults That Are Still Active
🍿 WATCH OUR OTHER VIDEOS: ►25 Worst Facts About Modern Society: https://www.youtube.com/wa...
published: 14 Jan 2025
Play in Full Screen
19:35
Biden bids farewell: FULL SPEECH
Just days before leaving the White House, President Biden addressed the nation one last ti...
published: 16 Jan 2025
Play in Full Screen
10:51
List of Kings known as "THE GREAT" | World History | Iam Seben - Tamil
Subscribe my another Channel (English) - https://www.youtube.com/channel/UCTJiaH_9pNRh64vV...
published: 16 Dec 2020
Play in Full Screen

List of people known as The Great

This is an incomplete list of people known as "The Great". There are many people in history whose names are commonly appended with the phrase "the Great" or the equivalent in their own language. Other languages have their own suffixes such as e Bozorg and e azam in Persian and Urdu respectively and Maha in the devanagari script (Hindi script) as in Mahatma Gandhi.

In Persia, the title "the Great" at first seems to be a colloquial version of the Old Persian title "Great King". This title was first used by the conqueror Cyrus II of Persia. The Persian title was inherited by Alexander III of Macedon (336–323 BC) when he conquered the Persian Empire, and the epithet "Great" eventually became personally associated with him. The first reference (in a comedy by Plautus) assumes that everyone knew who "Alexander the Great" was; however, there is no earlier evidence that Alexander III of Macedon was called "the Great". The early Seleucid kings, who succeeded Alexander in Persia, used "Great King" in local documents, but the title was most notably used for Antiochus the Great (223–187 BC).

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