- published: 12 Jul 2019
- views: 26545
'+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; })); }); -->
The Genesis creation narrative is the creation myth of both Judaism and Christianity. It is made up of two parts, roughly equivalent to the first two chapters of the Book of Genesis.
In the first part (Genesis 1:1-2:3) Elohim, the Hebrew generic word for God, creates the heaven and the earth in six days, starting with darkness and light on the first day, and ending with the creation of mankind on the sixth day. God then rests on, blesses and sanctifies the seventh day. In the second part (Genesis 2:4-2:24) God, now referred to by the personal name Yahweh, creates the first man from dust and breathes life into him. God then places him in the Garden of Eden and creates the first woman from his side as a companion.
A common hypothesis among modern scholars is that the first major comprehensive draft of the Pentateuch (the series of five books which begins with Genesis and ends with Deuteronomy) was composed in the late 7th or the 6th century BC (the Jahwist source) and that this was later expanded by other authors (the Priestly source) into a work very like the one we have today. The two sources can be identified in the creation narrative: Genesis 1:1-2:3 is Priestly and Genesis 2:4-2:24 is Jahwistic. Borrowing themes from Mesopotamian mythology, but adapting them to Israel's belief in one God, the combined narrative is a critique of the Mesopotamian theology of creation: Genesis affirms monotheism and denies polytheism.Robert Alter described the combined narrative as "compelling in its archetypal character, its adaptation of myth to monotheistic ends".
A creation myth is a symbolic narrative of how the world began and how people first came to inhabit it. While in popular usage the term myth often refers to false or fanciful stories, formally, it does not imply falsehood. Cultures generally regard their creation myths as true. In the society in which it is told, a creation myth is usually regarded as conveying profound truths, metaphorically, symbolically and sometimes in a historical or literal sense. They are commonly, although not always, considered cosmogonical myths—that is, they describe the ordering of the cosmos from a state of chaos or amorphousness.
Creation myths often share a number of features. They often are considered sacred accounts and can be found in nearly all known religious traditions. They are all stories with a plot and characters who are either deities, human-like figures, or animals, who often speak and transform easily. They are often set in a dim and nonspecific past that historian of religion Mircea Eliade termed in illo tempore ("at that time"). Creation myths address questions deeply meaningful to the society that shares them, revealing their central worldview and the framework for the self-identity of the culture and individual in a universal context.
Basic is a 1984 instrumental album by guitarist Robert Quine and drummer Fred Maher.
All songs written and composed by Fred Maher and Robert Quine.
A drum is a musical instrument.
Drum or drums may also refer to:
Creation was an American teen musical group from New York City. The band members were Sam Hellerman (drums and percussion), Raechel Rosen (lead vocals), Derek Orshan (bass, backing vocalist), Josh Shackett (rhythm guitar), and Tory Geismar (lead guitar and backing vocalist). Their first album, World Without Windows, was released in November 2005 and featured guest musician Clarence "Big Man" Clemons on one of the tracks.
It was said the idea for the band came from a cafe, the group was there. The stated goal of the group is "to help create a more peaceful world for the future, and to educate kids about multiculturalism, diversity, and peace." To help achieve that end, the band announced that all gross proceeds from their first album were to go towards the We Are Family Foundation. They also worked with Building with Books and U.S. Doctors for Africa. Creation's philanthropic mission was featured in many media outlets including USA Today, Time For Kids, The Montel Williams Show, Girls' Life Magazine, and The Jewish Week.
Creation is a 1965 album by jazz musician John Coltrane. The 1965 tracks - "Impressions" and "Creation" - were recorded at the Half Note Cafe, New York. "Alabama" was recorded in San Francisco a year before. "Creation" may be incorrectly titled - the title was drawn from a bootleg album. This is the only known recording of the tune. An abbreviated version of the same performance has appeared on several compilation albums (e.g. "Kind Of Coltrane").
Original LP release Creation (Blue Parrot).
Recorded February 23, 1964 and April 2, 1965.
This article lists the major and recurring fictional characters created by Joss Whedon for the television series, Buffy the Vampire Slayer. For detailed descriptions, see individual character pages.
The following characters were featured in the opening credits of the program.
The show's titular protagonist, Buffy is "The Slayer", one in a long line of young girls chosen by fate to battle evil forces in the form of vampires and demons. The Slayer has no jurisdiction over human crime. This calling mystically endows her with a limited degree of clairvoyance, usually in the form of prophetic dreams, as well as dramatically increased physical strength, endurance, agility, intuition, and speed and ease of healing. There traditionally has been only one Slayer alive at any given moment, with a new one called upon the event of her death.
Xander is a close friend of Buffy. Possessing no supernatural skills, Xander provides comic relief as well as a grounded, everyman perspective in the supernatural Buffyverse. In another departure from the usual conventions of television, Xander is notable for being an insecure and subordinate male in a world dominated by powerful females.
How did the world begin? Was the world a cosmological mistake or an intentional creation? What existed before the universe as we know it? Questions like these have generated countless discussions (and arguments) in the historical, scientific, and religious communities. While most people are familiar with the creation story found in Genesis, there's a richness that's often lost. In the Torah Story online course, Gary E. Schnittjer, Cairn University professor of Old Testament, plumbs the depth of the creation story and answers some of those big historical and philosophical questions. This video comes from Dr. Schnitther's course. LEARN MORE: https://zondervanacademic.com/blog/understanding-the-creation-story-from-genesis
Download this FREE kid’s ministry resource 12 FREE Bible Stories here: https://bit.ly/2UAS1w7 Get MORE FREE downloads at: https://store.saddlebackkids.com/freebies?product_list_limit=30 Get free parents resources: https://www.youtube.com/channel/UCSxMFKLz71gt9qvwyFM3I2w/featured http://saddlebackparents.com/ Subscribe to the channel by clicking here: https://www.youtube.com/c/SaddlebackKids Watch the most recent upload: https://www.youtube.com/playlist?list=PL5aPdmniG3y886ZszU-7TAFBRvsAtWWI5 This is the story of how God created the heavens and the earth and everything in it. Welcome to Saddleback Kids YouTube channel. Saddleback Kids, the children’s ministry at Saddleback Church has developed these fun and creative ways to teach children about God’s word. We are here to help paren...
Genesis Creation Narrative
How is our interpretation of the creation story in Genesis 1 deepened when we consider its ancient historical and cultural context? In this Bible commentary video, we look at how the literary design of Genesis 1 reveals God’s ideal vision for the whole cosmos. View more resources on Genesis 1: - Explore Genesis 1: https://tbp.xyz/exploregen1 - Genesis 1 Study Notes: https://tbp.xyz/gen1study - Genesis 1 Blog: https://tbp.xyz/gen1blog #Genesis #Creation #BibleProject
From GuitarFreaks & DrumMania XG3 (9.66) MASTER 0:01 (8.75) EXTREME 1:58 (6.55) ADVANCED 3:55 (5.05) BASIC 5:52 BPM: 270 Artist: AIKO OI Recorded with DTXManiaXG ver.K v3.53 Custom Build LV. 5.00 ~ 9.99 - SPEED x4.0 LV. 4.00 ~ 4.99 - SPEED x3.5 LV. 1.00 ~ 3.99 - SPEED x3.0 -------------------------------------------------------------------------------------------------- 【チャンネル登録】【YouTube Channel】: https://www.youtube.com/channel/UCqwVN6h2xbURCMJ_qPu8esA 【ツイッター】【Twitter】: ユーチューブ今後の活動についてツイートします I will be tweeting about my upcoming YouTube activities: https://twitter.com/approvedtx 【メール】【Email】 ご質問やご意見がございましたら、メールで連絡してください: If you have questions or feedback, please contact me here: [email protected] 【Twitch】 https://www.twitch.tv/approvedtx 【Paypal】 私がそれに値すると思うなら、気軽に寄付してくだ...
Creation (Genesis 1-2) From our Elementary teaching series,"In The Beginning."
The first five minutrs of The Bible Series, creation and Noah. I love this series so I decided to introduce the beginning of it. *All credit goes to the filmakers, I do not own the series*
This unique graphic-novel style depiction of the Bible will capture the imagination of new generations as God’s redemptive story unfolds in vivid visual language. Episode 1: The Creation brings to life Genesis chapter 1-3. The Animated Bible Series, currently in production, is the world’s first visual narrative of the entire Bible from creation and the fall to the kings and prophets, to the coming of the Christ and His final Revelation. This unique graphic-novel style depiction of the Bible will capture the imagination of new generations as God’s redemptive story unfolds in vivid visual language. Episode 1: The Creation highlights Genesis chapter 1-3 revealing God’s creation, the fall of man, God’s judgment on mankind and on the crafty serpent, the banishing of Adam and Eve from the gard...
Sign up for a Free trial: www.sharefaithkids.com Download this Genesis 1 & 2 lesson: http://www.sharefaith.com/set/genesis-1-%26-2-the-creation-story-kids-bible-lesson.html?id=237831&kidset=y This Sharefaith Kids Sunday School lesson video brings to life the amazing biblical account of Genesis 1&2. #SundaySchoolLesson #SundaySchool Your children are going to love seeing the seven days of creation, the garden of eden and Adam & Eve like never before! Featuring award-winning artwork and powerful storytelling this Kids Bible Video is perfect for Sunday School, Bible study, homeschool, VBS and more. You'll love teaching these Sunday School stories that promote Christianity. Music purchase and sound effects purchased and licensed from musicloops.com and pond5.com #Creation #Adam #Eve #Sunda...
Today on Crash Course Mythology we’re starting in on creation stories. This week, we’ll focus on the creation of the universe out of nothing, or Ex Nihlio creation. Basically, a god decides to make a universe out of nothing. We’ll look at the Genesis story (which has nothing to do with Peter Gabriel or Phil Collins), a Mayan creation tale, a Kono story of the beginning, and we’ll even look at the Big Bang. Sources: The Oxford Companion to World Mythology by David Leeming - https://www.amazon.com/Oxford-Companion-World-Mythology-Leeming/dp/0195387082 The Theogony of Hesiod translated by Hugh G. Evelyn-White - http://www.sacred-texts.com/cla/hesiod/theogony.htm In the Beginning: Creation Stories from Around the World by Virginia Hamilton and Barry Moser - https://www.amazon.com/Beginning...
Do you know all the creation stories from around the world? The story of creation is made of a patchwork of myths and god stories from every culture, this is not just the story of genesis. These elaborate stories of how the world began will make you think about god, creation, and the holy creation of the human race. We are lucky enough to have these creation stories from around the world to share with you. These god stories for kids and adults will have you mesmerized with the elaborate details from many different cultures. Without further ado, here are 25 Creation Stories from Around the World. If you are unfamiliar with stories of creation from the farthest reaches of the globe you are missing out. From marvelous creation gods to powerful animals that led creation these god stories wil...
The Egyptian story of creation from the Big Myth collection. See all 25 of creation stories from different parts of the world in English, German and Dutch on www.bigmyth.com.
Big thanks to patreon pledger Allen W. Barton for requesting this subject! We've spent enough time dabbling in the greek mythosphere, I think it's high time we went back to the past and finally looked at how it all began… PATREON: www.patreon.com/user?u=4664797 MERCH LINKS: Shirts - https://overlysarcasticproducts.threadless.com/designs All the other stuff - http://www.cafepress.com/OverlySarcasticProducts Find us on Twitter @OSPYouTube!
Today we explore the creation myth of Greek Mythology. How Gaia and the other Primordial Gods and Goddesses came to be. How the Earth, the Sky, and the Ocean were formed. Come discover the story that lead to amazing characters, epic adventures, ferocious creatures and incredible legends. Hope you enjoy! Hit the like button and subscribe to the channel if you want to see future videos about mythology, fairytales, and legends. Just a reminder that Greek Mythology has many different versions when it comes to certain myths. For this video I decided on telling my favorite version of this myth with a little addition of my own flare to add depth. Images: https://www.deviantart.com/irenhorrors/art/Nyx-714702956 Music: BEFORE DAWN by Audionautix is licensed under a Creative Commons Attribution...
The creation myth for Dark Souls 1 borrows from many real-world traditions. By understanding what those traditions are, it informs our understanding of how the world of Dark Souls functions. In this video, I will present somethings that I believe are definitive inspirations for Dark Souls, as well as some speculations. The FromSoftware games are an interweaving and reinterpretation of all the great religions of the world. I think if we understand what religions/myths/stories influenced which characters, locations, and stories... we can unlock the hidden secrets of the Dark Souls universe. Here's my first offering. Special thanks to Eliza for the work she did on the thumbnail. Please check out her awesome work here: https://www.artstation.com/elizakormendi SubscribeStar: https://www.subs...
Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundle ebook covering Greek, Norse, and Egyptian mythology here: http://www.captivatinghistory.com/ebook This video on Chinese mythology explains the Chinese creation myth starting from the first god Pangu. In this video, many creation myths have been fused, when often Pangu would be its own answer to the “Creation” question, and Nüwa would be another. With the creation of the humans, the brother and sister myth often does not co-exist with Nüwa, and in some versions, they simply do one test and everything works out. Another version, not included here, has a giant snake give birth to all animals and then finally humans. This said, creation myths are not a dominating aspect of Chinese Mythology and there ...
Whats happening, ApectHistory friends. Brand new series on Ancient Egyptian myths starting today. In this episode, we go over one interpretation of the Ancient Egyptian creation myth. We cover the creation of the universe down to the births of Anubis and Horus. The video today is voiced over for the first time by Sterkkona (she played Francesca Da Rimini in Dante's Inferno, if you go that far back with us). Let us know in the comments what you thought! Also today is the start of our new caption competition, stick around until the end to see the image we want you to caption. Subscribe to us, put your caption in the comments below and you may well be in for some free holiday stuff! MUSICAL CREDITS ************************************************* "Nightdreams" Kevin MacLeod (incompetech...
Track Six from Quine & Maher's 1984 Editions EG album, BASIC.
Track Two of Quine and Maher's 1984 Editions EG album, BASIC.
from: Basic (1984)
Track Three of Quine & Maher's 1984 album on Editions EG, BASIC.
Track Four of Robert Quine and Fred Maher's 1984 Editions EG album, BASIC.
Provided to YouTube by Universal Music Group Fala · Robert Quine · Fred Maher Basic ℗ 1984 Virgin Records Limited Released on: 1984-01-01 Producer, Associated Performer, Drum Programming, Bass ( Vocal), Guitar: Robert Quine Producer, Associated Performer, Drum Programming, Bass ( Vocal), Guitar: Fred Maher Studio Personnel, Mix Engineer: Mario Salvati Studio Personnel, Mastering Engineer: Greg Calbi Studio Personnel, Mastering Engineer: Simon Heyworth Composer: Robert Quine Composer: Fred Maher Auto-generated by YouTube.
Track One from Quine & Maher's 1984 album BASIC (Editions EG Records).
Provided to YouTube by Universal Music Group Pick Up · Robert Quine · Fred Maher Basic ℗ 1984 Virgin Records Limited Released on: 1984-01-01 Producer, Associated Performer, Drum Programming, Bass ( Vocal), Guitar: Robert Quine Producer, Associated Performer, Drum Programming, Bass ( Vocal), Guitar: Fred Maher Studio Personnel, Mix Engineer: Mario Salvati Studio Personnel, Mastering Engineer: Greg Calbi Studio Personnel, Mastering Engineer: Simon Heyworth Composer: Robert Quine Composer: Fred Maher Auto-generated by YouTube.
Provided to YouTube by Universal Music Group '65 · Robert Quine · Fred Maher Basic ℗ 1984 Virgin Records Limited Released on: 1984-01-01 Producer, Associated Performer, Drum Programming, Bass ( Vocal), Guitar: Fred Maher Producer, Associated Performer, Drum Programming, Bass ( Vocal), Guitar: Robert Quine Studio Personnel, Mix Engineer: Mario Salvati Studio Personnel, Mastering Engineer: Greg Calbi Studio Personnel, Mastering Engineer: Simon Heyworth Composer: Fred Maher Composer: Robert Quine Auto-generated by YouTube.
The Genesis creation narrative is the creation myth of both Judaism and Christianity. It is made up of two parts, roughly equivalent to the first two chapters of the Book of Genesis.
In the first part (Genesis 1:1-2:3) Elohim, the Hebrew generic word for God, creates the heaven and the earth in six days, starting with darkness and light on the first day, and ending with the creation of mankind on the sixth day. God then rests on, blesses and sanctifies the seventh day. In the second part (Genesis 2:4-2:24) God, now referred to by the personal name Yahweh, creates the first man from dust and breathes life into him. God then places him in the Garden of Eden and creates the first woman from his side as a companion.
A common hypothesis among modern scholars is that the first major comprehensive draft of the Pentateuch (the series of five books which begins with Genesis and ends with Deuteronomy) was composed in the late 7th or the 6th century BC (the Jahwist source) and that this was later expanded by other authors (the Priestly source) into a work very like the one we have today. The two sources can be identified in the creation narrative: Genesis 1:1-2:3 is Priestly and Genesis 2:4-2:24 is Jahwistic. Borrowing themes from Mesopotamian mythology, but adapting them to Israel's belief in one God, the combined narrative is a critique of the Mesopotamian theology of creation: Genesis affirms monotheism and denies polytheism.Robert Alter described the combined narrative as "compelling in its archetypal character, its adaptation of myth to monotheistic ends".