- published: 13 Apr 2022
- views: 558273
'+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; })); }); -->
Twelver (Arabic: اثنا عشرية, Athnā‘ashariyyah or Ithnā‘ashariyyah; Persian: شیعه دوازده امامی, pronounced [ʃiːʔe-je dævɑzdæh emɑmiː]) Shia Islam or Imamiyyah (Arabic: إمامية) is the largest branch of Shia Islam. The term Twelver refers to its adherents' belief in twelve divinely ordained leaders, known as the Twelve Imams, and their belief that the last Imam, Muhammad al-Mahdi, lives in occultation and will reappear as the promised Mahdi.
Twelvers believe that the Twelve Imams are the spiritual and political successors to the Islamic prophet Muhammad. According to the theology of Twelvers, the Twelve Imams are exemplary human individuals who not only rule over the community in justice, but also are able to keep and interpret sharia and the esoteric meaning of the Quran. The words and deeds (Sunnah) of Muhammad and the Imams are a guide and model for the community to follow; as a result, Muhammad and the Imams must be free from error and sin, known as Ismah or infallibility, and must be chosen by divine decree, or nass, through Muhammad.
Shia (/ˈʃiːə/; Arabic: شيعة Shīʿah), an abbreviation of Shīʻatu ʻAlī (شيعة علي, "followers of Ali"), is a branch of Islam which holds that the Islamic prophet Muhammad's proper successor as Caliph was his son-in-law and cousin Ali ibn Abi Talib. Shia Islam primarily contrasts with Sunni Islam, whose adherents believe that Muhammad's father-in-law Abu Bakr was his proper successor.
Adherents of Shia Islam are called Shias or the Shi'a as a collective or Shi'i individually. Shia Islam is the second-largest branch of Islam: in 2009, Shia Muslims constituted 10–13% of the world's Muslim population.Twelver Shia (Ithnā'ashariyyah) is the largest branch of Shia Islam. In 2012 it was estimated that perhaps 85 percent of Shias were Twelvers.
Shia Islam is based on the Quran and the message of the Islamic prophet Muhammad attested in hadith recorded by the Shia, and certain books deemed sacred to the Shia (Nahj al-Balagha). Shia consider Ali to have been divinely appointed as the successor to Muhammad, and as the first Imam. The Shia also extend this "Imami" doctrine to Muhammad's family, the Ahl al-Bayt ("the People of the House"), and certain individuals among his descendants, known as Imams, who they believe possess special spiritual and political authority over the community, infallibility, and other divinely-ordained traits. Although there are myriad Shia subsects, modern Shia Islam has been divided into three main groupings: Twelvers, Ismailis and Zaidis, with Twelver Shia being the largest and most influential group among Shia.
Pita-Ten (Japanese: ぴたテン, Hepburn: Pitaten) is a Japanese manga by Koge-Donbo. It was serialized in Dengeki Comic Gao! between the October 1999 and August 2003 issues and was later collected into eight volumes. The eight volumes were localized for North America by Tokyopop; Madman Entertainment used Tokyopop's translations for distribution in Australasia. The plot follows Kotarou Higuchi who becomes acquainted with the angel Misha and the demon Shia.
Pita-Ten has spun off an anthology manga, art books, a light novel series, and an anime; the anime resulted in a radio program and audio disc releases such as soundtracks and image songs. Tokyopop's volumes of Pita-Ten have appeared on ICv2's monthly top one-hundred selling graphic novels. English reviewers gave small praise for the plot and artwork and generally described the series as cute.
Kotarou Higuchi is befriended by his neighbor Misha, an angel-in-training.[ch. 1] He is later acquainted with Shia, a demon, who is searching for something she had forgotten.[ch. 7] Kotarou continues his daily life until Shia absorbs his life energy and leaves town.[ch. 28] Kotarou investigates and discovers Shia is his great-grandmother who is searching for his dying great-grandfather, Taro Higuchi.[ch. 35] After the revelation, Shia mourns Taro's death before she also dies.[ch. 38] Afterwards, Kotarou learns that Misha's test involves helping Kotarou find happiness; regardless of the result, the two will separate when the test's deadline is reached.[ch. 45] Realizing Heaven's true intent, Kotarou asks Misha to rid him of his ability to see angels as he has to search for happiness himself. His actions allow Misha to become an angel and the two return to their separate lives.[ch. 47]
Shia refers to the second largest denomination of Islam.
Shia or Shias may also refer to:
Doctrine (from Latin: doctrina) is a codification of beliefs or a bodys, taught principles or positions, as the essence of teachings in a given branch of knowledge or belief system. The Greek analogue is the etymology of catechism.
Often doctrine specifically suggests a body of religious principles as it is promulgated by a church, but not necessarily; doctrine is also used to refer to a principle of law, in the common law traditions, established through a history of past decisions, such as the doctrine of self-defense, or the principle of fair use, or the more narrowly applicable first-sale doctrine. In some organizations, doctrine is simply defined as "that which is taught", in other words the basis for institutional teaching of its personnel internal ways of doing business.
Examples of religious doctrines include:
The Doctrine Project (or Doctrine) is a set of PHP libraries primarily focused on providing persistence services and related functionality. Its prize projects are an object-relational mapper (ORM) and the database abstraction layer it is built on top of.
One of Doctrine's key features is the option to write database queries in a proprietary object oriented SQL dialect called Doctrine Query Language (DQL).
Entities in Doctrine 2 are lightweight PHP Objects that contain persistable properties. A persistable property is an instance variable of the entity that is saved into and retrieved from the database by Doctrine’s data mapping capabilities via the Entity Manager - an implementation of the data mapper pattern:
Doctrine 1.x follows the active record pattern for working with data, where a class corresponds with a database table. For instance, if a programmer wanted to create a new "User" object in a database, he/she would no longer need to write SQL queries, but instead could use the following PHP code:
Doctrine is the sixth studio album by Dutch technical death metal band Pestilence, which was released on April 24, 2011. The album was recorded and mixed at Woodshed Studio in southern Germany with engineer Victor "V.Santura" Bullok. The artwork was designed by Marko Saarelainen. The album represents a second release by the reformed Pestilence, with two new members: Yuma van Eekelen and Jeroen Paul Thesseling, who was a member of the band during the Spheres era. Technically, the album is an experimentation with very low tunings, with Mameli and Uterwijk playing on 8-string guitars, and Thesseling playing a 7-string fretless bass.
The album has received mixed reviews, with much of the controversy being pointed to the album's down tuned guitar sound, as well as Patrick Mameli's vocals.
In this episode, I attempt to give you an overview of the vast and complex Twelver school of Shi'ism across history. This is a collaboration with Hikma History, so don't forget to check out his channel: https://www.youtube.com/c/HikmaHistory Support Let's Talk Religion on Patreon: https://www.patreon.com/letstalkreligion Or through a one-time donation: https://www.paypal.com/paypalme/letstalkreligion Check out the Let's Talk Religion Podcast: https://open.spotify.com/show/0ih4sqtWv0wRIhS6HFgerb?si=795bddac17914a4e Sources/Suggested Reading: Abdulsater, Hussein Ali (2017). "Shi'i Doctrine, Mu'tazili Theology: Al-Sharif al-Murtada and Imami Discourse". Edinburgh University Press. Amir-Moezzi, Mohammad Ali (1994). "The Divine Guide in Early Shi'ism: The Sources of Esotericism in Islam". ...
Support our work: https://www.patreon.com/AdnanRashid Facebook: https://www.facebook.com/MrAdnanRashid Twitter: https://twitter.com/MrAdnanRashid Contact: [email protected] PayPal: [email protected] #adnanrashid #uk #history #islam #shia
Hadi Qazwini, Ph.D. candidate at the University of Southern California, presents an overview of the multifaceted doctrine of Imamology in Twelver-Shiʿite thought. Specifically, he explores Imamology’s relationship to Divine Grace and Prophetology, and the ways in which this relationship produces several major doctrines that Twelver-Shiʿites would come to regard as “essentials of faith.” This lecture is supported by the Imam Ali Chair for the Study of Shi’i Islam and Dialogue Among Islamic Legal Schools.
In Sunni-Shia polemics, Sunnis and Shias often end up debating minute theological, historical and jurisprudential technicalities such that they often overlook the bigger picture. The implications of entire historical narratives are thus neglected as polemicists passionately debate specific details from those narratives. However, the question that must be asked is: how do such narratives, at the end of the day, depict the Prophet and Islam? In this video, we shall dissect Shia Islam from the neutral perspective of a non-Muslim bystander. Don't forget to comment, like and subscribe. Turn notifications on to make sure you don't miss our latest content. Our website: http://www.twelvershia.net/ Twitter: @TheSunniDefense #ShiasInsultTheProphet
Buy the Asian Royal Family Trees chart: https://usefulcharts.com/collections/royal-family-trees/products/asian-royal-family-trees Abbasid Family Tree https://www.youtube.com/watch?v=B5mCvrBsOV0 CREDITS: Script by Syawish Rehman Narration by Matt Baker Audio editing by Ali Shahwaiz Intro music: "Lord of the Land" by Kevin MacLeod and licensed under Creative Commons Attribution license 4.0. Available from http://incompetech.com
#assim Instagram: https://instagram.com/assimalhakeem Website: http://www.assimalhakeem.net Ask a Question: https://www.assimalhakeem.net/ask-a-question/ Facebook: https://www.facebook.com/SheikhAssimAlhakeemTeam Twitter: https://twitter.com/Assimalhakeem
Twelvers, Twelver Shī'ite or Imamiyyah (Imami Shi'a Islam) (Arabic: اثنا عشرية, Athnā‘ashariyyah or Ithnā‘ashariyyah; Persian: شیعه دوازدهامامی, pronounced [ʃiːʔe-je dævɑzdæh emɑmiː]) is the largest branch of Shī'ī (Shi'a) Islam. Adherents of Twelver Shī'ism are commonly referred to as Twelvers, which is derived from their belief in twelve divinely ordained leaders, known as the Twelve Imāms, and their belief that the Mahdi will be the returned Twelfth Imam who disappeared and is believed by Twelvers to be in occultation. Twelvers share many tenets of Shī'ism with related sects, such as the belief in Imāms, but the Ismā'īlī and Zaydī Shī'ī sects each believe in a different number of Imāms and, for the most part, a different path of succession regarding the Imāmate. They also differ in t...
https://www.ias.edu/events/st-lee-lecture-0 More videos on http://video.ias.edu
Shia and Sunni Muslims practice two similar versions of Islam, but what's the difference? Subscribe for more videos: http://www.youtube.com/channel/UCV3Nm3T-XAgVhKH9jT0ViRg?sub_confirmation=1 Like us on Facebook: https://www.facebook.com/ajplusenglish Download the AJ+ app at http://www.ajplus.net/ Follow us on Twitter: https://twitter.com/ajplus
In this episode, I attempt to give you an overview of the vast and complex Twelver school of Shi'ism across history. This is a collaboration with Hikma History, so don't forget to check out his channel: https://www.youtube.com/c/HikmaHistory Support Let's Talk Religion on Patreon: https://www.patreon.com/letstalkreligion Or through a one-time donation: https://www.paypal.com/paypalme/letstalkreligion Check out the Let's Talk Religion Podcast: https://open.spotify.com/show/0ih4sqtWv0wRIhS6HFgerb?si=795bddac17914a4e Sources/Suggested Reading: Abdulsater, Hussein Ali (2017). "Shi'i Doctrine, Mu'tazili Theology: Al-Sharif al-Murtada and Imami Discourse". Edinburgh University Press. Amir-Moezzi, Mohammad Ali (1994). "The Divine Guide in Early Shi'ism: The Sources of Esotericism in Islam". ...
How did Shi'ism arise? What are the similarities and differences between Shi’i and Sunni Muslims? What are the sources of contention, and how can both sides overcome their distrust of each other? Host Dr. Safiyyah Ally speaks with Syed Ali Imran. Syed Ali is the religious superintendent at Al Haadi school in Toronto, an instructor at the Mizan Institute, and an author on IqraOnline.net. He studied in the seminary of Qom, Iran for nearly 10 years where he focused on theology, jurisprudence, legal theory, and philosophy. If you enjoy this video, please support our work financially by visiting our website http://www.quranspeaks.com OR sending an etransfer to [email protected] OR subscribing monthly at patreon.com/quranspeaks ► DONATE: http://www.quranspeaks.com/ ► SUBSCRIBE: https://www...
The Shia-Sunni divide has torn apart West Asia for decades. What is the root cause of this conflict? Is it driven by religion or politics? On Gravitas Plus, Palki Sharma decodes the underlying tensions behind the great Islamic schism. #ShiaSunni #GravitasPlus #PalkiSharmaLive About Channel: WION -The World is One News, examines global issues with in-depth analysis. We provide much more than the news of the day. Our aim to empower people to explore their world. With our Global headquarters in New Delhi, we bring you news on the hour, by the hour. We deliver information that is not biased. We are journalists who are neutral to the core and non-partisan when it comes to the politics of the world. People are tired of biased reportage and we stand for a globalised united world. So for us th...
In this second part in our series about Shia Islam, we explore the esoteric Isma'ilis, their history and Neoplatonist-influenced theology. Thanks to Dr. Khalil Andani for the help. Check out his channel here: https://www.youtube.com/@KhalilAndani Support Let's Talk Religion on Patreon: https://www.patreon.com/letstalkreligion Or through a one-time donation: https://www.paypal.com/paypalme/letstalkreligion Also check out the Let's Talk Religion Podcast: https://open.spotify.com/show/0ih4sqtWv0wRIhS6HFgerb?si=95b07d83d0254b Music by Filip Holm Sources/Recomended Reading: Amir-Moezzi, Mohammad Ali (1994). "The Divine Guide in Early Shi'ism: The Sources of Esotericism in Islam". Translated by David Streight. State University of New York Press. Amir-Moezzi, Mohammad Ali (2011). "The Sp...
Go to https://NordVPN.com/kingsandgenerals and use code kingsandgenerals to get a 2-year plan with a huge discount plus 1 additional month for free. Protect yourself online today! Kings and Generals historical animated documentary series on the early history of Islam, as we discuss the events that led to the schism within the Muslim community, as Islam split into two branches - Sunni and Shia Islam. This happened in the latter stages of the Early Muslim Expansion, as the Rashidun caliphs - Umar, Uthman and Ali were assassinated, which led to the war of succession, killing of Ali's son Husayn in Karbala, and the creation of the Umayyad dynasty under Muawiyah I. Early Muslim Expansion - Yarmouk, Al-Qadisiyyah: https://youtu.be/r2cEIDZwG5M Early Muslim Expansion Season #2: https://www.youtu...
I see many videos talking about the differences between the Sunni and Shia, but most of them present a simplified version. In this video, I try to give you a more comprehensive overview. For more detailed overviews, check out my other videos: What is Shia Islam?: https://www.youtube.com/watch?v=kXWADQ7HivM&t=1165s&pp=ygUSd2hhdCBpcyBzaGlhIGlzbGFt The Isma'ilis: https://www.youtube.com/watch?v=CFm03oac9es&t=1279s&pp=ygUSd2hhdCBpcyBzaGlhIGlzbGFt What is Sufism? (Mostly Sunni): https://www.youtube.com/watch?v=Yc9k9nvIHOU&t=451s&pp=ygUGc3VmaXNt What is Salafism?: https://www.youtube.com/watch?v=8so2h21Mznk&pp=ygUIc2FsYWZpc20%3D Support Let's Talk Religion on Patreon: https://www.patreon.com/letstalkreligion Or through a one-time donation: https://www.paypal.com/paypalme/letstalkreligion ...
In this third and final installment of the introductions to Shi'i Islam, we dive into the history and teachings of the Zaydis, the smallest but stillvery significant school that has been a significant part of the history of Yemen. Check out my linktree for more: https://linktr.ee/filipholm Support Let's Talk Religion on Patreon: https://www.patreon.com/letstalkreligion Or through a one-time donation: https://paypal.me/talkreligiondonate Also check out the Let's Talk Religion Podcast: https://open.spotify.com/show/0ih4sqtWv0wRIhS6HFgerb?si=95b07d83d0254b Music by: Filip Holm Sources/Recomended Reading: Amir-Moezzi, Mohammad Ali (1994). "The Divine Guide in Early Shi'ism: The Sources of Esotericism in Islam". Translated by David Streight. State University of New York Press. Amir-Mo...
Thousands of Shia Muslims commemorate Ashura in New York City on Sunday. Ashura is a day of commemoration in Islam and holds great significance for Muslims across the world. It falls on the 10th of Muharram, the first month in the Islamic calendar. For Shia Muslims, Ashura is a solemn day: it is a day of mourning, commemorating the anniversary of the killing of Imam Hussein, the grandson of the Prophet Muhammad, during the Battle of Karbala in October 680 CE. Subscribe to our channel: http://ow.ly/AVlW30n1OWH Subscribe to MEE Telegram channel to stay up to date: https://t.me/MiddleEastEye_TG Middle East Eye Website: https://middleeasteye.net Follow us on TikTok: https://www.tiktok.com/@middleeasteye Follow us on Instagram: https://instagram.com/MiddleEastEye Like us on Facebook: https:/...
Based on a manga that got considerably darker, 2002's Pita-Ten is a cute, mostly harmless fluffy shounen romance. It may not be for everyone, but Jisu of SecretIdentityStudio takes us through this world of chibi characters and goofy antics. Check out my Twitter: https://twitter.com/secretistudio
This is the full opening to pita ten Song: Wake Up Angel Anime: Pita Ten Lyrics: Ryouri heta kuso demo konbini de kacchaeba ii shii Heya kitanakutemo itsumo ato mawashi Saihou dekinakutemo kore to itte komaranai shii Ufo mietemo maa ki ni shinaishi Shinai (nai nai) Shinai (nai nai) Keisan shitemo keiken shinakya Zenbu wakaranai (ai·mai·misu·yuu) Aisuru koto to aisareru koto negaimashite ha mugen nari I wish "hello, wake up angel" Mune no naka no tenshi yo mezamete! I wish "hello, i say 'i love you'" Daisuki yo zutto! I wish "hello! merci chao i love you!" Sukoshi furimuite ne~! Jitensha de koneko yokete kuruma ni atechau shii Maigo tasukete maigo ni natterushi Oyogenai no ni kodomo tasukete oborechatteru shii Demo sore ga anata no "ii to ko" dashi (dashii?! x2) Shinpai shitemo shiipai...
yoyoyo check out my friend's channel http://www.youtube.com/user/colaffinity she's cool. DISCLAIMER: i do NOT own pita ten or the opening theme song. this video is purely fan-made.
This is my pita-ten music video su!!! *I dont own pita-ten its fanbased only!* Song: You found me By: Kelly Clarkson Catagory: Love Couple: Misha and Kotaro!SU! "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, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use."
"Wake Up Angel ~Negaimashite ha Mugen Nari~" Original singer.
This is my first MMV ever! I love Pita-Ten sooooo much! It´s so sad and lovely. The scans are from my own Pita-Ten manga-books. This is purely fanmade video. I don´t own Pita-Ten or Zeromancer. Koge-Donbo and Tokyopop own Pita-Ten, not me! I´m just a fan. Manga: Pita-Ten Song: Sen me an angel Song by: Zeromancer Video by: Kineko92
I DO NOT OWN THIS SONG NOR THE LYRICS!
These are the pita-ten scans that i could not fit in the pita-ten scans AMV! thats why it was so long i try to fit all the scans in the AMV under the 10 min limit (i'm not a director)!!!!!! hope you likeed all my slideshow ^-^ also to be viewed at fullscreen...i think...if you want! BUT RECOMENDED! ^-^
#20 - Most Discussed (This Month) - Entertainment - France #19 - Most Discussed (This Month) - Entertainment - France The Pita Ten Opening I do not own the anime or song
Made this for my friend =]Nessapb11 Sorry it's short. I didn't have enough clips of Misha. Song: Bumblebee by Bambee Featuring: Misha from Pita Ten
Twelver (Arabic: اثنا عشرية, Athnā‘ashariyyah or Ithnā‘ashariyyah; Persian: شیعه دوازده امامی, pronounced [ʃiːʔe-je dævɑzdæh emɑmiː]) Shia Islam or Imamiyyah (Arabic: إمامية) is the largest branch of Shia Islam. The term Twelver refers to its adherents' belief in twelve divinely ordained leaders, known as the Twelve Imams, and their belief that the last Imam, Muhammad al-Mahdi, lives in occultation and will reappear as the promised Mahdi.
Twelvers believe that the Twelve Imams are the spiritual and political successors to the Islamic prophet Muhammad. According to the theology of Twelvers, the Twelve Imams are exemplary human individuals who not only rule over the community in justice, but also are able to keep and interpret sharia and the esoteric meaning of the Quran. The words and deeds (Sunnah) of Muhammad and the Imams are a guide and model for the community to follow; as a result, Muhammad and the Imams must be free from error and sin, known as Ismah or infallibility, and must be chosen by divine decree, or nass, through Muhammad.