- published: 15 Nov 2023
- views: 20441
'+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 Tuath(a) Dé Danann (usually translated as "people(s)/tribe(s) of the goddess Danu"), also known by the earlier name Tuath Dé ("tribe of the gods"), are a supernatural race in Irish mythology. They are thought to represent the main deities of pre-Christian Gaelic Ireland.
The Tuath Dé dwell in the Otherworld but interact with humans and the human world. Their traditional rivals are the Fomorians (Fomoire), who seem to represent the harmful or destructive powers of nature. Each member of the Tuath Dé has been associated with a particular feature of life or nature, but many appear to have more than one association. Many also have bynames, some representing different aspects of the deity and others being regional names or epithets.
Much of Irish mythology was recorded by Christian monks, who modified it to an extent. They often depicted the Tuath Dé as kings, queens and heroes of the distant past who had supernatural powers or who were later credited with them. Other times they were explained as fallen angels who were neither good nor evil. However, some medieval writers acknowledged that they were once gods. A poem in the Book of Leinster lists many of them, but ends "Although [the author] enumerates them, he does not worship them". The Dagda's name is explained as meaning "the good god"; Brigit is called "a goddess worshipped by poets"; while Goibniu, Credne and Luchta are referred to as Trí Dé Dána ("three gods of craftsmanship"), Characters such as Lugh, the Morrígan, Aengus and Manannán mac Lir appear in tales set centuries apart, showing all the signs of immortality. They also have parallels in the pantheons of other Celtic peoples: for example Nuada is cognate with the British god Nodens; Lugh is cognate with the pan-Celtic god Lugus; Brigit with Brigantia; Tuirenn with Taranis; Ogma with Ogmios; and the Badb with Catubodua.
Atlantis is depicted as a real location in the fictional DC Comics Universe. The very first DC Universe version of Atlantis debuted in Action Comics #18 (November 1939), and was created by Gardner F. Fox and Fred Guardineer. Other versions appeared in various DC comics in the 1940s and 1950s, including the version in the Superman group of books in which the mermaid Lori Lemaris resides. Aquaman's version of the city, the most prominently featured version in the company's line, first appeared in Adventure Comics #260 (May 1959), and was created by Robert Bernstein and Ramona Fradon. All versions are based on the mythical island of Atlantis first mentioned in Plato's initial dialogue, the Timaeus, written c. 360 BC.
One of the earliest mentions of Atlantis occurs in Action Comics #17, in a "Zatara the Magician" story. The city was visually depicted in the following month's "Zatara" story in Action Comics #18.
The city appeared in several DC comics of the 1940s and 1950s in conflicting depictions before a more consistent portrayal began with an "Aquaman" story in Adventure Comics (vol. 1) #260, in a story by writer Robert Bernstein and artist Ramona Fradon, based on the real-world mythology of Atlantis.
Thomas Sheridan may refer to:
Thomas Sheridan, usually referred to as Tom, was the only son of the soprano Elizabeth Ann Linley and the Irish playwright and poet Richard Brinsley Sheridan, although his father had at least one other son from a second marriage. Born in mid-November 1775, Thomas initially tried for a career in politics but was unsuccessful.
The courtship of Sheridan's parents, the soprano Elizabeth Ann Linley and the playwright Richard Brinsley Sheridan, was described in newspaper reports as "one of the classic romances of the west country" and stated that his mother was "the most beautiful singer in England"; she abandoned her career as a singer when she married Richard in April 1773 as he thought her profession reflected badly on his status as a gentleman. She had several miscarriages before Sheridan was born in mid-November 1775; she named him after Thomas Linley, and Thomas Sheridan, his maternal and paternal grandfathers respectively. The young Sheridan was sent to boarding school in Hatton, Warwickshire in early 1786, where he was educated by Samuel Parr. Parr described him as having "great acuteness, excellent understanding, wit and humour, but not a particle of knowledge." The English historian William Smyth was engaged as his tutor after the death of Sheridan's mother in 1792. According to Smyth, Sheridan was the "idol of the young men" when at college in Cambridge and his fellow students thought him "the cleverest fellow in the place", although Smyth added his own rider clarifying that in humour and fun this was the case.
Thomas Sheridan (1687 – 10 October 1738) was an Anglican divine, essayist, playwright, poet, schoolmaster and translator. He is chiefly remembered for his friendship with Jonathan Swift.
He was born in Cavan, Ireland, the son of James Sheridan, and grandson of the Reverend Dennis Sheridan. Two of his uncles were William Sheridan, Bishop of Kilmore and Ardagh and Patrick Sheridan, Bishop of Cloyne. After graduating from Trinity College, Dublin, he married Elizabeth MacFadden and the couple first lived in Dublin in King James's Mint. He inherited from his father-in-law a substantial property at Quilca in County Cavan. He ran a school in Capel Street, Dublin in the 1720s whose pupils included children of many prominent families such as Anthony Foster, the future Chief Baron of the Irish Exchequer, and Philip Tisdall, the future Attorney General for Ireland.
He was father of Thomas Sheridan, a celebrated actor and elocutionist, who was in his turn the father of the celebrated playwright Richard Brinsley Sheridan; he had two other sons and one daughter.
Are the Tuatha Dé Danann, the so-called gods and goddesses of Irish mythology, actual deities? Or are they “merely” super-powered humans? Learn about the origins of the Tuatha Dé Danann then dive into the debate about their divine status. (Spoiler alert: the etymology of their name just might be the key...) Intro 00:00 Who Are the Tuatha Dé Danann? 01:46 Are the Tuatha Dé Danann gods? 05:49 The Etymology of Tuatha Dé Danann 07:59 FYI: a text version of this essay (with links to books/references) is available over at IrishMyths.com: https://irishmyths.com/2023/11/15/tuatha-de-danann/ Books by me, I. E. Kneverday. (Note: I may earn a small affiliate commission if you buy through the links below.) -Neon Druid: An Anthology of Urban Celtic Fantasy: https://amzn.to/3BJE7yc -Saint Patri...
Irish Mythology: The Arrival of the Celtic Gods - Complete - The Tuatha Dé Danann - See U in History Original music by: Albairate Studio www.albairatestudio.com https://www.youtube.com/channel/UCmCYqg4Nx7RkiMa-rMzq1wg Art: Carlos Sekko Color: Fabi Marques #Mythology #SeeUinHistory #History #MythologyExplained
Tuatha Dé Danann means tribe of the goddess Danu, a god-like mythological race from pre-Christian Gaelic Ireland, descended from Nemed, leader of a previous wave of Irish inhabitants. Nemed was the son of Agnoman of Scythia, who was descended from Scythians associated with the Tribe of Dan. The Scythians, also known as Scyth, Saka, Sakae, Sai, Iskuzai, or Askuzai. In the 18th century, linguists noticed the great similarity between that Phoenician and the early Irish Celtic language. https://atlanteangardens.blogspot.com/2019/03/ancient-history-of-ireland-tuatha-de.html An old Irish legend about an ancient Egyptian princess https://www.youtube.com/watch?v=4DS-ngVWge4 The Tribe of Dan - ROBERT SEPEHR https://www.youtube.com/watch?v=t-99Py871Ls Robert Sepehr is an author, producer and an...
Check out Fate & Fabled on Storied! https://youtu.be/_WC-zpVw-Xo Don’t miss future episodes of Monstrum, subscribe! http://bit.ly/pbsstoried_sub The fairies of Celtic traditions trace their origin back to an ancient race of otherworldly royalty - the Tuatha Dé Danann. As fairy nobility, the Tuatha Dé Danann were alternatively seen as gods, monsters, demons, and even the real ancient inhabitants of Ireland. But where do the Tuatha Dé Danann come from, and how did they become the ancestors of Ireland’s fairies? The world is full of monsters, myths, and legends and Monstrum isn’t afraid to take a closer look. The show, hosted by Emily Zarka, Ph.D., takes us on a journey to discover a new monster in each new episode. Monstrum looks at humans' unique drive to create and shape monster mythol...
player: けー 最後で995消し飛んだので再走です🥲 けーのX(旧Twitter)→https://twitter.com/k_chunithm 難易度:【MASTER】Lv.15 (15.3) 譜面確認所→ 譜面確認動画→https://youtu.be/jItw7qnhgpk #CHUNIHTM #チュウニズム #AJ
#oldworld #irishmythology #tartaria An exploration into the mysterious Tuatha Dé Danann of Irish myth. Who were these people the myth claimed to be supernatural beings and what is their origin? What role did they play in the Old-World and why should they be considered? #oldworld #irishmythology #tartaria
NOTES DESIGNER : Emperor vs Ataraxia Playlist https://www.youtube.com/channel/UCdypzqq-d62AlNuQvN9NxMA CHUNITHM譜面保管所 https://sdvx.in/chunithm.html #CHUNITHM #チュウニズム #Youtubeアプリ閲覧推奨 --------------------------------- CHUNITHM / チュウニズム (c) SEGA https://chunithm.sega.jp ---------------------------------
Welcome to The Lore Library! In ancient Irish mythology, the Tuatha de Danann were a powerful tribe of gods and goddesses who came to Ireland from the sky. They were said to be skilled in magic and warfare, and they quickly defeated the native Fir Bolg, who then inhabited Ireland. The Tuatha de Danann are often associated with the Anunnaki, a race of ancient gods who are mentioned in Sumerian mythology. Some believe that the Tuatha de Danann were actually the Anunnaki themselves, who had come to Ireland after being banished from their home planet. Others believe that the Tuatha de Danann were simply inspired by the Anunnaki, and that they adopted some of their stories and mythology. Whatever their origins, the Tuatha de Danann are a fascinating and mysterious part of Irish mythology. In ...
In today’s video, pastors Kevin Laymon and Grant Forrester tackle a common cultural claim: that Halloween, or All Hallows Eve, was designed to replace the ancient Celtic festival of Samhain. Many believe Christians hijacked this pagan holiday to impose their traditions over older, spiritual ones. But is that really true? What do we actually know about Samhain, and where does this information come from? As it turns out, much of what we think we know about Samhain is based on unreliable sources. Our modern understanding of this ancient festival stems largely from the writings of Geoffrey Keating, whose work has been debunked by scholars like Ronald Hutton. Keating’s claims about Samhain lack solid historical backing, leaving us with a distorted view of both Samhain and its connection to Hal...
トゥアハー デ ダナンって読むらしい =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Tuatha Dé Danann / Gram NOTES DESIGNER / Emperor vs Ataraxia Twitter:@daikichitabetai =-=-=-=-=-=-=-=-過去の手元動画-=-=-=-=-=-=-=-= ★SDVX Lv.19,20 キャプチャー+手元 再生リスト https://www.youtube.com/playlist?list=PLx9MzlxDs2fxyT7Weq07jJCkn7E6LbR8E ★チュウニズム Lv.13+,Lv14 手元動画(直撮り) 再生リスト https://www.youtube.com/playlist?list=PLx9MzlxDs2fz3zvfplCrGmWOJ0N6ODSNe ★チュウニズム 手元(新 Lv.14+,15) https://youtube.com/playlist?list=PLx9MzlxDs2fx9fa5is6qXoDDYz_M0E51p ★音ゲー解説動画 https://www.youtube.com/playlist?list=PLx9MzlxDs2fxrXpoCcGyclUaAl3Rsv5xE ★過去のライブ配信 https://www.youtube.com/playlist?list=PLx9MzlxDs2fxxWZAJzCMkc2uWWL-LmolY etc... =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= #チュウニズム #音ゲー #chunithm
This is a segment of a video of mine over on Bitchute. People post comments recommending thomas sheridan to me, honestly I cant stand this guy, I really dislike sheridan, yet he is so popular. I cant stand him.
Tommy Sheridan shares hilarious insight into the relentless Buck Parties he has been attending and one of the classic Bucks Stories that led to the Buck getting concussed! Rixx Eyewear (Discount Code: Unlaced) https://rixxeyewear.com.au/ Follow and subscribe below: Instagram - https://www.instagram.com/theunlacedp... Twitter - @unlacedpodcast TikTok - https://www.tiktok.com/@theunlacedpod... Facebook - https://www.facebook.com/unlacedpodcast
BOOK TICKETS FOR TUATHA DÉ DANANN Festival on Sept 28th below. https://www.eventbrite.com/e/971140145317?aff=oddtdtcreator The 2nd Tuatha Dé Danann festival will be taking place on Saturday, September 28th at a location near the Laois/Kildare border. Exact Eircode location issued to Ticket holders on purchase of tickets. The rationale for this year’s event centres around re-seeding important aspects of “ Irishness” outside of the mainstream and into our communities. The primary focus this year will be on Irish music, the Irish language, Irish myth and legend and examinations of Irish spiritual traditions - with a few surprises thrown in for good measure. Guest speakers and performers lined up so far are as follows: Thomas Sheridan and Gerry O'Neill will kick off proceedings with a conv...
King Charles arrived to Westminster Abbey six minutes ahead of schedule and before his son. The King was pictured looking grumpy as he arrived early at Westminster Abbey for the coronation ceremony. #coronation #skynews #lipreading #king #kingcharles #westminsterabbey #camilla #queen #queencamilla #shorts SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews Follow us on TikTok: https://www.tiktok.com/@skynews For more content go to http://news.sky.com and download our apps: Apple https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 Android https://play.google.com/store/apps/details?id=...
Thomas Sheridan and Sara Mondaini discuss their book 'Hocus Focus - Merging Forteana, Hauntology and High Strangeness'. Thomas online: https://www.youtube.com/@UCgRBoOKHFoIDJjtrle4IsGA Sara online: https://saramondaini.com/ Many more interviews at http://www.legalise-freedom.com Get full access by subscribing to Legalise Freedom here: https://legalise-freedom.com/register/annual-membership/ Or buy me a coffee / make a donation here: http://legalise-freedom.com/make-a-donation/ FACEBOOK: https://www.facebook.com/LegaliseFreedom SUBSTACK: https://substack.com/@legalisefreedom TWITTER: https://twitter.com/LegaliseFreedom Bumper music: Cliff Martinez 'Traffic OST'
Cancel This Podcast with Thomas Sheridan - May 4th, 2024 Thomas Sheridan is an Author, filmmaker, Alternative Folklorist, and Satirist who has spent a life from Wall Street to the Jungles of South Asia attempting to discover the emerging—often elusive—mythology of modern humans within the present technology-saturated era. Heavily inspired by the work of Carl Jung, Bruno Bettelheim, and Joseph Campbell, Thomas Sheridan has developed ‘Monomythic’ tool kits—which draw upon all the mythologies of the world. He is interviewed by comedian and storyteller, Aidan Killian on the world we love today, starting with the Tuatha de Danann & Fomorians all the way up the crisis we face today as a humanity.
Thomas Sheridan & John Waters explore early Irish paganism and early Irish Christianity at the Tuatha Dé Danann Féile gathering to celebrate and re-generate Irish culture, spirit, community, music and arts. The weekend festivities took place in the Richmond Revival, Fermoy, Co. Cork on May 27th and May 28th.
👁️ For the first time on the channel, we dive deep into the wyrd world of magick, joined again by an expert on the topic, researcher and author Thomas Sheridan, where we cover the fundamentals, his magical background, anatomy of a spell, mediums, study resources, and much more. 🧿 Thanks for watching! 🙏 If you enjoyed this video, please 👍 LIKE & 🔔 SUBSCRIBE (+ CLICK THE BELL!) for more spiritually empowering content.🧙♂️ Be ⚡️Empowered, ✨Inspired & 🔥Encouraged. ------------------------------------------------ Thomas' Links: ▶https://www.youtube.com/@thomassheridanii2118/featured ▶https://www.youtube.com/channel/UCgRBoOKHFoIDJjtrle4IsGA ------------------------------------------------ 🌲 Wizard Factory Links: ►https://linktr.ee/thewizardfactory 🌲 Logan's Links: ►https://linktr.ee/loganhart -...
PATREON https://www.patreon.com/br313 FACEBOOK PAGE https://www.facebook.com/groups/beyondroom313/ CONTACT AND EMAIL [email protected]
PATREON https://www.patreon.com/br313 FACEBOOK PAGE https://www.facebook.com/groups/beyondroom313/ CONTACT AND EMAIL [email protected]
The Tuath(a) Dé Danann (usually translated as "people(s)/tribe(s) of the goddess Danu"), also known by the earlier name Tuath Dé ("tribe of the gods"), are a supernatural race in Irish mythology. They are thought to represent the main deities of pre-Christian Gaelic Ireland.
The Tuath Dé dwell in the Otherworld but interact with humans and the human world. Their traditional rivals are the Fomorians (Fomoire), who seem to represent the harmful or destructive powers of nature. Each member of the Tuath Dé has been associated with a particular feature of life or nature, but many appear to have more than one association. Many also have bynames, some representing different aspects of the deity and others being regional names or epithets.
Much of Irish mythology was recorded by Christian monks, who modified it to an extent. They often depicted the Tuath Dé as kings, queens and heroes of the distant past who had supernatural powers or who were later credited with them. Other times they were explained as fallen angels who were neither good nor evil. However, some medieval writers acknowledged that they were once gods. A poem in the Book of Leinster lists many of them, but ends "Although [the author] enumerates them, he does not worship them". The Dagda's name is explained as meaning "the good god"; Brigit is called "a goddess worshipped by poets"; while Goibniu, Credne and Luchta are referred to as Trí Dé Dána ("three gods of craftsmanship"), Characters such as Lugh, the Morrígan, Aengus and Manannán mac Lir appear in tales set centuries apart, showing all the signs of immortality. They also have parallels in the pantheons of other Celtic peoples: for example Nuada is cognate with the British god Nodens; Lugh is cognate with the pan-Celtic god Lugus; Brigit with Brigantia; Tuirenn with Taranis; Ogma with Ogmios; and the Badb with Catubodua.
Denn da alle Liebenden innerlich noch Kind,
Und da die die reinen Herzens handeln unsere grössten helden sind,
Rett' ich die Welt mit deiner Liebe in mir,
Denn ich bin für dich da, nein ich bin wegen dir hier,
Da dir die Fähigkeit zu lieben geblieben ist,
und die Kraft zu Vergeben ein Bestandteil deines Lebens ist,
wurde ich erweckt und was tief in mir schlief,
Führt nun Feder und schreibt dir diesen Liebesbrief.
Ich fiel Kopfüber unter Wasser, Etwas zog mich nach unten,
Ich wär wohl ertrunken, hätt ich dich nicht gefunden,
War am boden zestört, wie das den meisten geht,
Aber du hast mich wiederbelebt,
Jetzt bin ich hungrig nach Leben, fütter mich mit Erfahrung,
Jedes Wort von dir ist für mich Nahrung,
und auch ich nähr dich,
als wär ich für dich unentbehrlich.
Siehst du mich an, und ich kann, bin ich ehrlich,
dir gar nichts versprechen, denn das wäre Betrug,
doch du sagst mit nem Lächeln jetzt und hier ist genug,
du bist der Sand im Getriebe der Gedanken Maschiene
und ich nehm dich mit auf einen Nachtflug.
Denn da alle liebenden innerlich noch Kind,
Und da die die reinen Herzens handeln unsere grössten helden sind,
Rett' ich die Welt mit deiner Liebe in mir,
Denn ich bin für dich da, nein ich bin wegen dir hier,
Da dir die Fähigkeit zu lieben geblieben ist,
und die Kraft zu Vergeben ein Bestandteil deines Lebens ist,
wurde ich erweckt und was tief in mir schlief,
Führt nun Feder und schreibt dir diesen Liebesbrief.
Leg deine Arme um mich, dass meine Narbe die ich,
hier auf meinem Herz trage nicht mehr schmerzt,
wenn du fragst warum musste ich mich für dich gewinnen,
dann sage ich Strassenköter wie ich sind manchmal gerne drinnen,
und wenn einer von uns wieder streunend verschwindet,
ist die Liebe wie Gebell an den Mond, dass uns verbindet.
Was er von mir weiss ist, ist du bist nicht mehr hier,
und wei zum beweiss riecht mein Schweiss noch nach dir,
Und du fühlst dich ferner, millionen meilen von mir,
und ich schreib auf Papier millionen Zeilen von dir.
Denn da alle liebenden innerlich noch Kind,
Und da die die reinen Herzens handeln unsere grössten helden sind,
Rett' ich die Welt mit deiner Liebe in mir,
Denn ich bin für dich da, nein ich bin wegen dir hier,
Da dir die Fähigkeit zu lieben geblieben ist,
und die Kraft zu Vergeben ein Bestandteil deines Lebens ist,
wurde ich erweckt und was tief in mir schlief,
Führt nun Feder und schreibt dir diesen Liebesbrief.
Denn da alle liebenden innerlich noch Kind,
Und da die die reinen Herzens handeln unsere grössten helden sind,
Rett' ich die Welt mit deiner Liebe in mir,
Denn ich bin für dich da, nein ich bin wegen dir hier,
Da dir die Fähigkeit zu lieben geblieben ist,
und die Kraft zu Vergeben ein Bestandteil deines Lebens ist,
wurde ich erweckt und was tief in mir schlief,
Führt nun Feder und schreibt dir diesen Liebesbrief.
Denn da alle liebenden innerlich noch Kind,
Und da die die reinen Herzens handeln unsere grössten helden sind,
Rett' ich die Welt mit deiner Liebe in mir,
Denn ich bin für dich da, nein ich bin wegen dir hier,
Da dir die Fähigkeit zu lieben geblieben ist,
und die Kraft zu Vergeben ein Bestandteil deines Lebens ist,
wurde ich erweckt und was tief in mir schlief,
Führt nun Feder und schreibt dir diesen Liebesbrief.
Und ich trag mein Herz offen damit jeder es sieht,
Und kann nur hoffen du liest dieses Lied wie einen offenen Brief,
das all die andern versteh'n.
Wir können in des anderen Augen uns selbst seh'n.
Denn da alle liebenden innerlich noch Kind,
Und da die die reinen Herzens handeln unsere grössten helden sind,
Rett' ich die Welt mit deiner Liebe in mir,
Denn ich bin für dich da, nein ich bin wegen dir hier,
Da dir die Fähigkeit zu lieben geblieben ist,
und die Kraft zu Vergeben ein Bestandteil deines Lebens ist,
wurde ich erweckt und was tief in mir schlief,
Führt nun Feder und schreibt dir diesen Liebesbrief.
Denn da alle liebenden innerlich noch Kind,
Und da die die reinen Herzens handeln unsere grössten helden sind,
Rett' ich die Welt mit deiner Liebe in mir,
Denn ich bin für dich da, nein ich bin wegen dir hier,
Da dir die Fähigkeit zu lieben geblieben ist,
und die Kraft zu Vergeben ein Bestandteil deines Lebens ist,
wurde ich erweckt und was tief in mir schlief,
Führt nun Feder und schreibt dir diesen Liebesbrief.
Denn da alle liebenden innerlich noch Kind,
Und da die die reinen Herzens handeln unsere grössten helden sind,
Rett' ich die Welt mit deiner Liebe in mir,
Denn ich bin für dich da, nein ich bin wegen dir hier,
Da dir die Fähigkeit zu lieben geblieben ist,
und die Kraft zu Vergeben ein Bestandteil deines Lebens ist,
wurde ich erweckt und was tief in mir schlief,
Führt nun Feder und schreibt dir diesen Liebesbrief.
((langsam leiser werdend...))
Denn da alle liebenden innerlich noch Kind,
Und da die die reinen Herzens handeln unsere grössten helden sind,
Rett' ich die Welt mit deiner Liebe in mir,
Denn ich bin für dich da, nein ich bin wegen dir hier,
Da dir die Fähigkeit zu lieben geblieben ist,
und die Kraft zu Vergeben ein Bestandteil deines Lebens ist,
wurde ich erweckt und was tief in mir schlief,
Führt nun Feder und schreibt dir diesen Liebesbrief.