- published: 01 Jan 2021
- views: 29
'+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; })); }); -->
Castles are fortified residences built in Europe and the Middle East in the Middle Ages.
Castle or Castles may refer to:
The Castle is an MSX game released by ASCII Corporation in 1986. The game is set within a castle containing 100 rooms, most of which contain one or more puzzles. The object of the game is to navigate through the Castle to rescue the Princess. The player can push certain objects throughout the game to accomplish progress. In some rooms, the prince can only advance to the next room by aligning cement blocks, Honey Jars, Candle Cakes, and Elevator Controlling Block. Additionally, the player's progress is blocked by many doors requiring a key of the same color to unlock, and a key is removed from the player's inventory upon use. The prince must be standing on a platform next to the door to be able to unlock it, and cannot simply jump or fall and press against the door. The player can navigate the castle with the help of a map that can be obtained early in the game. The map will provide the player with a matrix of 10x10 rooms and will highlight the room in which the princess is located and the rooms that he had visited. The player must also avoid touching enemies like Knights, Bishops, Wizards, Fire Spirits, Attack Cats and Phantom Flowers.
Castle is a Caldecott Honor award-winning book by David Macaulay published in 1978. The book offers a detailed illustrated description of Aberwyvern castle, a fictional castle built between 1283 and 1288. Like many of Macaulay's other works, it consists of a written description of the construction process accompanied by pen-and-ink drawings. A great deal of detail is put into the descriptions, and he describes the workers and tools that would have been needed for the construction of a medieval castle.
The castle is fictional but the historical context is real. Macaulay places its construction in North West Wales between 1283 and 1288, when Edward I of England was in fact building a string of castles to help his conquest of that land. Much of the layout and architecture of Aberwyvern castle is extrapolated from these Welsh castles, which Macaulay visited as a boy, and in particular Harlech Castle, which it closely resembles in design, siting and general appearance.
The castle is constructed on a rocky mount jutting out into the River Wyvern. It is square in plan and has two concentric lines of fortification. The first line of defence is an outer curtain wall of 300 feet on the side, encircling the entire castle and forming the outer ward. The outer curtain wall of the castle also links with the defensive wall of the town. The tops of the wall are furnished battlements with merlons to protect defenders arrayed along the parapet walk. There are two gatehouses, one, defended by a drawbridge leading to the town, the other to a fortified dock (to allow the garrison to be supplied by ship in the event of a siege).
Evil, in a general context, is the absence or opposite of that which is ascribed as being good. Often, evil is used to denote profound immorality. In certain religious contexts, evil has been described as a supernatural force. Definitions of evil vary, as does the analysis of its motives. However, elements that are commonly associated with evil involve unbalanced behavior involving expediency, selfishness, ignorance, or neglect.
In cultures with an Abrahamic religious influence, evil is usually perceived as the dualistic antagonistic opposite of good, in which good should prevail and evil should be defeated. In cultures with Buddhist spiritual influence, both good and evil are perceived as part of an antagonistic duality that itself must be overcome through achieving Śūnyatā meaning emptiness in the sense of recognition of good and evil being two opposing principles but not a reality, emptying the duality of them, and achieving a oneness.
The philosophical question of whether morality is absolute, relative, or illusory leads to questions about the nature of evil, with views falling into one of four opposed camps: moral absolutism, amoralism, moral relativism, and moral universalism.
"Evil" (often stylised as EVIL) is a song by alternative rock band Grinderman, written collectively by Nick Cave, Warren Ellis, Martyn P. Casey and Jim Sclavunos. The song was featured as the fifth track on the band's second and final studio album, Grinderman 2 (2010). On Record Store Day 2011, "Evil" was released as a limited edition single, on 12" vinyl with an enclosed CD, with various remixes.
Evil describes willful, immoral acts.
Evil may also refer to:
Shadow Priest POV
Shadow Priest playing hungry hungry hippos POV
Hikaru: "I don't wanna think too much" Like and subscribe for more! SOURCES: twitch.tv/GMHkaru If you liked this video, make sure to follow Hikaru on Twitch!
Ralph Banks (1920–1993) was an English footballer. Ralph Banks or Bankes may also refer to: Ralph Bankes (1631–1677), courtier of Charles II and MP for Corfe Castle Ralph Richard Banks (born 1964), American professor Source: https://en.wikipedia.org/wiki/Ralph_Banks_(disambiguation) Created with WikipediaReaderReborn (c) WikipediaReader
Important announcement at the end
It was a long prog, but its finally over. The boys took that 11:30 and has slain Denathrius
Rait is a village in Scotland. Rait or RAIT may also refer to Rait Castle in Scotland Ramrao Adik Institute of Technology (RAIT) in India RAIT Financial Trust in the United States Rait (name) Source: https://en.wikipedia.org/wiki/Rait_(disambiguation) Created with WikipediaReaderReborn (c) WikipediaReader
Please like and subscribe for more content. Source: https://www.twitch.tv/gmhikaru/clip/OriginalPerfectPoultryFutureMan
Our glorious raid leader decides to raid lead the fight in a different way
Disclaimer: I'm not actually good at chess. See all data and code to analyze here: https://github.com/paralogical/rarest-move-in-chess ---- "Casa Bossa Nova" Kevin MacLeod (incompetech.com) "Impact Lento" Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 4.0 License http://creativecommons.org/licenses/by/4.0/
https://www.youtube.com/channel/UCMpNLYz8bcz1-i2vWxSEieQ?sub_confirmation=1 Castle Excellent (FC · Famicom) video game port | princess rescue session 🎮 https://twitter.com/NenrikiGaming
2 things i have to tell you 1. This is poorly animated👍💀👍 2. I steal the video idea from a roblox video😉
Introducing the Castle Game, a new strategy defense game for the PS4 from Neptune Interactive Inc. Build impenetrable fortresses and elaborate mazes with hidden traps, backed up by archers with flaming arrows, armored knights, and long-range catapults. Control the flow of battle and cast powerful spells to defeat the Dark Lord's army. Coming soon to PS4.
The first scene: Kate thinks Castle is taking her for granted.
Android Online game new free firelove WhatsApp status Hindi 2021 ritom ff #2 ON TRENDING new free fire funny WhatsApp status 2021 free fire status video free fire status Tamil free fire status attitude free fire love status Tamil free fire love status video #shorts free fire love status new free fire love WhatsApp status free fire love status Hindi song free fire love WhatsApp status Hindi free fire love story WhatsApp status Hindi new free fire love WhatsApp status 2021 vasu777 Child hood free fire sad pubg sad stats love sataus bad boys statas memes Whie444 vs raistar B2K game play One tap head shoot Handcum i phone 14 iphone 13 iphone 12 iphone 8 iphone 7 iphone 9 samsung A71 samsung new verstun sumsung s20 Vivo best mobile for pub g 12 gb ram 8 gb ram 4 finger hand cum 3 finger ha...
Best Fails From Takeshi's castle - Meilleurs Fails de Takeshi castle Like , Share & Subscribe Aimez , Partager et Abonnez Vous :) µ--------------------------------------------------------------------------------------µ Twitter : https://twitter.com/AnassDaCoolBoy Chaine Youtube (Channel) : www.youtube.com/user/Aliodique Je vais avoir une page facebook ne vous inquitez pas I'll have a facebook page soon , Don't worry µ--------------------------------------------------------------------------------------µ
#shorts https://www.twitch.tv/joneseylvlsup
Build your own Castle and defend the Kingdom in this medieval fantasy 3D tower defense game. Visit theCastleGame.com for more info! Create impenetrable fortresses and elaborate mazes, and defend them with hidden traps, brave knights, sharp-eyed archers, long-ranged catapults, clever engineers, and more! Featuring an intuitive control scheme designed specifically for the PlayStation®4 system. Use your unbridled creativity to construct your perfect defense. Attackers follow no pre-set paths, so you’ll have to cleverly place your defenses. Destroy the undead Bone King and his skeletal army. Bring down the legendary Frost Dragon that can freeze entire towns with its chilly breath. With 100% destroyable structures, wily AI, and fantastic effects, become the Master Tactician you really are. ...
🕯️ BOOKS MENTIONED 🕯️ The Stolen Queen by Fiona Davis Water Moon by Samantha Sotto Yambao Witchcraft for Wayward Girls by Grady Hendrix The Baby Dragon Café by A. T. Qureshi Old Soul by Susan Barker The Lamb by Lucy Rose Voice Like A Hyacinth by Mallory Pearson Victorian Psycho by Virginia Feito Under the Same Stars by Libba Bray The Sleeping Land by Ella Alexander Even Beyond Death by Fiona Melrose Emily Wilde’s Compendium of Lost Tales by Heather Fawcett Hungerstone by Kat Dunn The Sirens by Emilia Hart Greenteeth by Molly O’Neill The Amber Owl by Juliet Marillier Death Takes Me by Cristina Rivera Garza Wild Dark Shore by Charlotte McConaghy The Otherwere Post by Emily J. Taylor The Unworthy by Agustina Bazterrica Soft Core by Brittany Newell The Thorns by Dawn Kurtagich The Bane Witch b...
🕯️ BOOKS MENTIONED 🕯️ The Broken Girls by Simone St. James Anne of Green Gables by L. M. Montgomery Days At The Morisaki Bookshop by Satoshi Yagisawa Boy Parts by Eliza Clarke Tender Is The Flesh by Agustina Bazterrica Nettle and Bone by T. Kingfisher I Who Have Never Known Men by Jacqueline Harpman The Color Purple by Alice Walker Fresh Water for Flowers by Valérie Perrin The God of the Woods by Liz Moore Rebecca by Daphne du Maurier 🦉 IF YOU WANT TO GET YOURSELF A BOOK... 🦉 (AFFILIATE LINKS) Waterstones: https://tidd.ly/3KvtG5d Taschen: https://tidd.ly/3ZPUL9f 🍂 WHERE TO FIND ME 🍂 I N S T A G R A M : https://www.instagram.com/alicebookcastle/ G O O D R E A D S : http://goodreads.com/thebookcastle ⚔️ MYTHOLOGIE CANDLES ⚔️ https://mythologiecandles.com/908p3qTD-TC5ks (affiliate link) 🌙...
🕯️ BOOKS MENTIONED 🕯️ Rebecca by Daphne du Maurier Jamaica Inn by Daphne du Maurier 🍃 MIDSUMMER CHILD 🍃 Use code CASTLE15 for a lil' discount https://midsummerchild.com/ 🖤 Candles shown in video 🖤 Winter Library: https://midsummerchild.com/products/winter-library-candle Dark Academia: https://midsummerchild.com/products/dark-academia-candle 🖤 Other favorites 🖤 Forks WA: https://midsummerchild.com/products/forks-wa-candle The Shire: https://midsummerchild.com/products/the-shire-candle 🦉 IF YOU WANT TO GET YOURSELF A BOOK... 🦉 (AFFILIATE LINKS) Waterstones: https://tidd.ly/3KvtG5d Taschen: https://tidd.ly/3ZPUL9f 🍂 WHERE TO FIND ME 🍂 I N S T A G R A M : https://www.instagram.com/alicebookcastle/ G O O D R E A D S : http://goodreads.com/thebookcastle 🕰️ TIMESTAMPS 🕰️ 00:00 Intro 03:13 ...
🕯️ BOOKS MENTIONED 🕯️ The Firelight Apprentice by Bree Paulsen The Blue Book of Nebo by Manon Steffan Ros Curious Tides by Pascale Lacelle The Sun and the Void by Gabriela Romero Lacruz A Sorceress Comes to Call by T. Kingfisher The Deathless Girls by Kiran Millwood Hargrave An Academy for Liars by Alexis Henderson The Lighthouse Witches by C. J. Cooke The Year of the Witching by Alexis Henderson Spirits Abroad by Zen Cho The Haunting Season: Ghostly Tales for Long Winter Nights Buried Deep by Naomi Novik The Toll House by Carly Reagon The Weaver and the Witch Queen by Genevieve Gornichec A Botanist’s Guide to Parties and Poisons by Kate Khavari Yours From The Tower by Sally Nicholls The Specimens by Mairi Kidd 🦉 IF YOU WANT TO GET YOURSELF A BOOK... 🦉 (AFFILIATE LINKS) Waterstones: https...
🕯️ BOOKS MENTIONED 🕯️ The Likeness by Tana French The Shadow of the Wind by Carlos Ruiz Zafón The Thirteenth Tale by Diane Setterfield The Wild Hunt by Emma Seckel Everyone In My Family Has Killed Someone by Benjamin Stevenson We Are All The Same In The Dark by Julia Heaberlin Starling House by Alix E. Harrow A House With Good Bones by T. Kingfisher The Way of All Flesh by Ambrose Parry The Haunting Season: Ghostly Tales for Long Winter Nights 🦉 IF YOU WANT TO GET YOURSELF A BOOK... 🦉 (AFFILIATE LINKS) Waterstones: https://tidd.ly/3KvtG5d Taschen: https://tidd.ly/3ZPUL9f 🍂 WHERE TO FIND ME 🍂 I N S T A G R A M : https://www.instagram.com/alicebookcastle/ G O O D R E A D S : http://goodreads.com/thebookcastle ⚔️ MYTHOLOGIE CANDLES ⚔️ https://mythologiecandles.com/908p3qTD-TC5ks (affiliate...
🕯️ BOOKS MENTIONED 🕯️ Before the Coffee Gets Cold by Toshikazu Kawaguchi Welcome To The Hyunam-Dong Bookshop by Hwang Bo-Reum The Decagon House Murders by Yukito Ayatsuji We Solve Murders by Richard Osman Shady Hollow by Juneau Black The Twyford Code by Janice Hallett Love and Fury by Samantha Silva The Familiar by Leigh Bardugo The Hollow Places by T. Kingfisher The Fairy Bargains of Prospect Hill by Rowenna Miller 🦉 IF YOU WANT TO GET YOURSELF A BOOK... 🦉 (AFFILIATE LINKS) Waterstones: https://tidd.ly/3KvtG5d Taschen: https://tidd.ly/3ZPUL9f 🍂 WHERE TO FIND ME 🍂 I N S T A G R A M : https://www.instagram.com/alicebookcastle/ G O O D R E A D S : http://goodreads.com/thebookcastle ⚔️ MYTHOLOGIE CANDLES ⚔️ https://mythologiecandles.com/908p3qTD-TC5ks (affiliate link) 🌙 ABOUT ME 🌙 Hi! My ...
🕯️ BOOKS MENTIONED 🕯️ Emily Wilde’s Encyclopaedia of Faeries by Heather Fawcett Emily Wilde’s Map of the Otherlands by Heather Fawcett Nettle & Bone by T. Kingfisher The Bear and the Nightingale by Katherine Arden The Diviners by Libba Bray The Seven Deaths of Evelyn Hardcastle by Stuart Turton The Strings of Murder by Oscar de Muriel A Discovery of Witches by Deborah Harkness Practical Magic by Alice Hoffman The One Hundred Nights of Hero by Isabel Greenberg Poems Bewitched and Haunted 🦉 IF YOU WANT TO GET YOURSELF A BOOK... 🦉 (AFFILIATE LINKS) Waterstones: https://tidd.ly/3KvtG5d Taschen: https://tidd.ly/3ZPUL9f 🍂 WHERE TO FIND ME 🍂 I N S T A G R A M : https://www.instagram.com/alicebookcastle/ G O O D R E A D S : http://goodreads.com/thebookcastle ⚔️ MYTHOLOGIE CANDLES ⚔️ https://myt...
🕯️ BOOKS MENTIONED 🕯️ The Fury by Alex Michaelides The God of the Woods by Liz Moore The Art Thief by Michael Finkel Anne of Green Gables by L. M. Montgomery Chlorine by June Song Forgotten on Sunday by Valerié Perrin What You Are Looking For Is In The Library by Michiko Aoyama The Gentleman from Peru by André Aciman Hello Beautiful by Anne Napolitano 🦉 IF YOU WANT TO GET YOURSELF A BOOK... 🦉 (AFFILIATE LINKS) Waterstones: https://tidd.ly/3KvtG5d Taschen: https://tidd.ly/3ZPUL9f 🍂 WHERE TO FIND ME 🍂 I N S T A G R A M : https://www.instagram.com/alicebookcastle/ G O O D R E A D S : http://goodreads.com/thebookcastle ⚔️ MYTHOLOGIE CANDLES ⚔️ https://mythologiecandles.com/908p3qTD-TC5ks (affiliate link) 🕰️ TIMESTAMPS 🕰️ 00:00 Intro & The Fury first impressions 04:18 Royal castle & museum ...
Castles are fortified residences built in Europe and the Middle East in the Middle Ages.
Castle or Castles may refer to: