- published: 17 Oct 2023
- views: 4618906
'+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; })); }); -->
Religious texts, also known as scripture, scriptures, holy writ, or holy books, are the texts which various religious traditions consider to be sacred, or central to their religious tradition. Many religions and spiritual movements believe that their sacred texts are divinely or supernaturally revealed or inspired.
The oldest known religious text is the Kesh Temple Hymn of Ancient Sumer, the oldest version of which dates to around 2600 BCE. The earliest form of the Phoenician alphabet found to date is the inscription on the sarcophagus of King Ahiram of Byblos (The Sumerian Temple Hymns) circa 1000 BCE. The Epic of Gilgamesh from Sumer, with origins as early as 2150-2000 BCE, is also one of the earliest literary works that includes various mythological figures. The Rigveda of Hinduism is proposed to have been composed over several centuries between 1700–1100 BCE making it probably the world's oldest religious text still in use. Oberlies gives an estimate of 1100 BC for the youngest hymns in book 10. The oldest portions of the Zoroastrian Avesta are believed to have been transmitted orally for centuries before they found written form, and although widely differing dates for Gathic Avestan have been proposed, scholarly consensus floats at around 1000 - 600 BCE.
The Scriptures was Christian Death's fifth album and is seen as an essay on comparative world religions. The liner notes state that the work is "a translation of world beliefs by Valor." The album, like Atrocities, is split into two acts, though later reissues would omit these subtitles. The first 10,000 versions of the original LP record came with a free seven inch single containing two songs: "Jezebel's Tribulation" and "Wraeththu". Some CD reissues of the album feature these songs as bonus tracks. The completion of recording on The Scriptures would see David Glass leave the group and like previous members Barry Galvin and Johann Schumann, would go on to play in Mephisto Walz.
Sizzla Kalonji, or simply Sizzla (born Miguel Orlando Collins, 17 April 1976, Kingston, Jamaica) is a reggae musician. He is one of the most commercially and critically successful contemporary reggae artists and is noted for his high number of releases. As of 2014 he has released over 70 solo albums.
Sizzla was born in Kingston to devout Rastafari movement parents. Like them Sizzla subscribes to the Bobo Ashanti branch of the Rastafari movement. He was raised in August Town, Kingston, Jamaica where he studied mechanical engineering at Dunoon High School.
Kalonji witnessed a dancehall explosion, and with the music came the lifestyle: drugs, guns, and "slackness" (vulgarity). Formally adopting the Rastafari faith, with its advocacy of repatriation to Africa and its use of cannabis, he joined the ranks of the Bobo Shanti in the mid-1990s.
Sizzla began to develop his own style whilst serving his musical apprenticeship with the Caveman Hi-Fi sound system. He has used his music as a vehicle for his message, kickstarting his recording career in 1995 with a release through the Zagalou label, he then teamed up with "Bobby Digital" Dixon for a series of singles. Extensive touring with fellow roots and culture artist Luciano followed, earning Sizzla notability.
Join the Reconquista discord: https://discord.gg/XBMw5Q8Ke2 (Note: PLEASE only join if you are part of one of these mainline denominations: PCUSA, ELCA, UMC, RCA, UCC or the Episcopal Church) If you are not in one of those above denominations but still want a Christian discord community, join the Redeemed Zoomer discord: https://www.operationreconquista.com/ Find out more about the Reconquista: https://www.operationreconquista.com/ Find a MODERATE mainline church to help revive: https://www.google.com/maps/d/u/0/edit?mid=1SRpkwF4hEaXZvor4BXyoAawrNVgH9CM&ll=33.84211059286289%2C-84.81368661242608&z=5
Patrick Bet-David, Vincent Oshana, Tom Ellsworth, and Adam Sosnick cover the biggest stories in business, politics, current events, and more! Purchase the new "Angry Patriot" t-shirt for $34.99 at VTMerch.com: https://bit.ly/4c3WsW2 Purchase tickets to The Vault Conference 2024 featuring Patrick Bet-David & Dwayne "The Rock" Johnson: https://bit.ly/3X1JBzm0h Connect one-on-one with the right expert for you on Minnect: https://bit.ly/3MC9IXE Connect with Patrick Bet-David on Minnect: https://bit.ly/3OoiGIC Connect with Tom Ellsworth on Minnect: https://bit.ly/3UgJjmR Connect with Vincent Oshana on Minnect: https://bit.ly/47TFCXq Connect with Adam Sosnick on Minnect: https://bit.ly/42mnnc4 Connect with Rob Garguilo on Minnect: https://bit.ly/426IG0R Purchase Patrick's new book "Choose Y...
Patreon: https://www.patreon.com/user?u=62803325 Discord Server: https://discord.gg/HP3GHTX3cf Card Game Website: https://tartarusgames.squarespace.com/ Instagram: https://www.instagram.com/tartarusgames/ Stuff in my room (Amazon Store): https://www.amazon.com/shop/themythologyguy #mythology #christian #jewish #islam #asian #booktok #bookstore #comedy
10 Surprising Religious Texts You've Never Heard Of. Subscribe: https://www.youtube.com/channel/UC2vcjazcVurVmpn5svBRA-Q?sub_confirmation=1 Follow Us On Facebook: https://www.facebook.com/ftdonline Latest Videos: https://www.youtube.com/watch?v=maKKGRfgqdA&list=UU2vcjazcVurVmpn5svBRA-Q There are different religions in the world and today we are going to talk about the 10 most surprising religious texts you may have never heard of, so stay till the end to find out more. #Top10 #Facts #religioustext #surprising #texts #religionsoftheworld #amazing 🌐 FOLLOW FTD FACTS ON FACEBOOK: Facebook: https://www.facebook.com/ftdonline 🗣 HOST: Leroy Kenton: https://www.instagram.com/ftdonline/ 🎬 VIDEO EDITOR: Raj: https://www.instagram.com/rajbanik_official/ 📧 BUSINESS INQUIRIES: FtdFacts@gmail....
Watch Part 2: https://www.youtube.com/watch?v=8HNmIih6tsY https://www.youtube.com/@BestOfBillyCarson Join Billy Carson on a transformative journey as we explore the heart of religious history, asking the pivotal question: Who is doing all the killing in the Bible? Uncover the profound truths veiled within ancient texts, unveiling our cosmic origins, the Anunnaki's profound influence, and the pervasive shadows of religious dogma shaping human history. 0:00 Introduction 0:53 Ancient Sumerian Gods 2:11 The Return of Christ 4:17 Abraham Meets God 8:14 Fear and Control by an Evil God 10:25 Killings in the Bible 18:31 Slavery in the Bible 20:39 More Killings in the Bible 23:17 Angels as Aliens 26:41 Earth from Another Galaxy 28:10 Conclusion Latest from 4BiddenKnowledge: Investment Opportuni...
Support this channel by becoming a member https://www.youtube.com/channel/UCxCX94qhCjYNvZkj6afo5Gg/join Or make a one-time donation by clicking the Super Thanks button under this video! Welcome to a fresh take on the role of holy books in our lives. In this video, I dig into the big question: do we really need to read these books to understand or critique religion? I'll share insights into why many folks lean on holy books, why some insist you must read them, and the influence of celebrity endorsements. I am Vimoh, an Indian atheist and my videos have to do with religion, atheism, Indian culture, and sometimes contemporary political happenings. Below are some videos from this channel that every Indian atheist must watch. ✔️ Videos for the Indian atheist - https://www.youtube.com/playl...
@GreggBradenOfficial InFocus Episode 10 - In a recent scientific conference, a thought-provoking proposition by Yval Noah Harare, a historian and author whose insightful works explore the intersections of history, technology, and human evolution, emerged: the utilization of AI to correct “Religious Texts”. This proposition stems from the perspective that contemporary religions have human origins rather than being authored by a non-human entity, which some believe provided the basis for various religious texts across the globe. While intriguing, this idea raises significant concerns Gregg Braden addresses in this video. Follow the Series here - https://www.youtube.com/playlist?list=PL3x97UAYyoPWIbN92CWwOYfoW_OQAk42d Make sure to hit the BELL icon on HOME page to get notified of all video r...
The worlds most oldest religious texts. The video helps us understand texts writen long before the birth of christ and even the Buddha. Narration- Aashina Sawarkar. Script- Shanky Video Creation and Editing- Shanky. Directed by Shanky and Namal B. connect with us on Instagram- https://instagram.com/shanky.harshit?igshid=2fe6ddxlp5hn https://instagram.com/aashina_sawarkar?igshid=10bt4srjt0mna https://instagram.com/prime_time_namal?igshid=k17u3ochtknb
Shared by Swami Kriyananda, direct disciple of Paramhansa Yogananda (author of "Autobiography of a Yogi") Learn more at https://www.ananda.org #shorts #yogananda #kriyananda #ananda #paramahansayogananda #paramhansayogananda #autobiographyofayogi #kriyayoga #meditation #kriya #god #hinduism #bliss #gita
This is a 24/7 livestream of the King James Version (KJV) Audio Bible New Testament. Listen and be blessed by the word of God. Jesus said unto him, "I am the way, the truth, and the life: no man cometh unto the Father, but by me." - John 14:6 (KJV) Subscribe to our channel here: https://bit.ly/3wA7cKc Let's connect on social media: Instagram: https://www.instagram.com/knowchristyt TikTok: https://www.tiktok.com/know.christ Twitter: https://www.twitter.com/knowchristyt My End Times Dreams playlist: https://bit.ly/3tD2TvQ The word of God is light, life and truth and it will bless you tremendously, so spend time in it. We truly don’t know what we’re missing. Draw near to Christ and He will draw near to you. #kjv #audiobible #newtestament
Religious texts, also known as scripture, scriptures, holy writ, or holy books, are the texts which various religious traditions consider to be sacred, or central to their religious tradition. Many religions and spiritual movements believe that their sacred texts are divinely or supernaturally revealed or inspired.
The oldest known religious text is the Kesh Temple Hymn of Ancient Sumer, the oldest version of which dates to around 2600 BCE. The earliest form of the Phoenician alphabet found to date is the inscription on the sarcophagus of King Ahiram of Byblos (The Sumerian Temple Hymns) circa 1000 BCE. The Epic of Gilgamesh from Sumer, with origins as early as 2150-2000 BCE, is also one of the earliest literary works that includes various mythological figures. The Rigveda of Hinduism is proposed to have been composed over several centuries between 1700–1100 BCE making it probably the world's oldest religious text still in use. Oberlies gives an estimate of 1100 BC for the youngest hymns in book 10. The oldest portions of the Zoroastrian Avesta are believed to have been transmitted orally for centuries before they found written form, and although widely differing dates for Gathic Avestan have been proposed, scholarly consensus floats at around 1000 - 600 BCE.
A thousand years or so is said
Gentle breeze of a flowering bed
Children and fairies chattering secrets in pretty ears
Gone are the years
Gone are the years of sorrow and pain
Gone are those years
Barefoot in clean white sand
A kiss on the lips, a kiss on the hand
Happy to be alive (3x)