'+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; })); }); -->

Podcasts:

  • North Yorkshire Moors Railway (NYMR) Grosmont Station Webcam

    SUBSCRIBE to the official North Yorkshire Moors Railway YouTube channel www.youtube.com/@NYMR Hop on board the North Yorkshire Moors Railway and enjoy a day filled with vintage charm and amazing scenery on one of the world's greatest heritage railways. Find out more about the NYMR visit our website: www.nymr.co.uk FOLLOW US ON SOCIAL MEDIA ☟ Facebook ➜ https://www.facebook.com/northyorkshiremoorsrailway X ➜ https://www.x.com/nymr Instagram ➜ https://www.instagram.com/NorthYorkshireMoorsRailway Threads ➜ https://www.threads.net/@NorthYorkshireMoorsRailway #NYMR #NorthYorkshireMoorsRailway #Yorkshire #SteamRailway #HeritageRailway

    published: 16 Nov 2023
  • North Yorkshire | 20 Best Things To Do - Yorkshire Dales, North York Moors & More

    20 Best Things To Do in North Yorkshire! North Yorkshire is the largest county in England and it is packed full of national parks and areas of outstanding natural beauty including the gorgeous Yorkshire Dales, North York Moors, Nidderdale and the Howardian Hills. In this video, I’ve got mountains, caves, waterfalls, gorgeous towns and villages, abbeys, castles and more! I'm going to begin at the west side of North Yorkshire and move across to the east as I go through the video, here are the locations mentioned in the video: Yorkshire Dales - 0:30 - Ingleborough - 0:40 - Clapham & Ingleton Estate Nature Trail- 1:18 - Trow Gill & Gaping Gill - 1:28 - Malham Cove, Janet's Foss & Gordale Scar Hike from Malham - 1:48 - Malham Cove - 2:10 - Janet's Foss - 2:46 - Gardale Scar - 2...

    published: 21 Aug 2022
  • The Strid, North Yorkshire, England - The World's Most Dangerous River

    The Strid, a stretch of the River Wharfe in North Yorkshire, is the world's most dangerous river with a 100% fatality rate. Find out more about the history of it in this video, including its links to William Wordsworth and the iconic Bolton Abbey in the Yorkshire Dales. Visit The Strid & Bolton Abbey - https://boltonabbey.com/what-to-see/strid-wood-and-the-strid/ MY PRODUCTION EQUIPMENT Camera 1 - https://amzn.to/3uKpoMu Camera 2 - https://amzn.to/3zIjO38 Tripod - https://amzn.to/3uFsce1 Drone - https://amzn.to/3wMw9yQ Memory card - https://amzn.to/3uGVVmL Music - https://tinyurl.com/kk8wcu2v

    published: 31 May 2023
  • Knaresborough - One of the Prettiest Towns in Yorkshire - North Yorkshire

    Knaresborough has to be one of the prettiest towns in Yorkshire. The River Nidd Gorge carves its way through the town and beautiful historic buildings some 900 years old, teeter over the edge looking down at the river. We have visited many towns in Yorkshire in other videos but this has to be one of the prettiest towns in Yorkshire. It has more than just the historical aspects of a Castle and the iconic Knaresborough Viaduct, but riverside walks along the famous former Royal Forest of Knaresborough. The folklore tales of Mother Shipton and the petrifying well, to local hero Blind Jack. It is truly a fantastic place to spend a day, boating, walking and soaking up the atmosphere. Join us for a lovely walk, some history and details about the local attractions in this pretty Yorkshire town. I...

    published: 07 May 2023
  • North Yorkshire | The Most Picturesque Places To Visit

    Welcome to Yorkshire, in this video we are visiting 2 of the most important and famous abbeys in England as well as the gorgeous town of Knaresborough, all located within North Yorkshire. Places visited in the video: - Whitby Abbey - Whitby - Rievaulx Abbey - Knaresborough These are 4 places I would recommend to you when visiting North Yorkshire as they are some of the most picturesque and breathtaking locations we've seen! Whitby Abbey is a famous abbey located next to the town of Whitby, it has had a very long and interesting history, and the coastal town of Whitby is full of some of its own histories including the fact that Bram Stoker based elements of his novel Dracula from the Abbey itself and he was also staying in this town at the time or writing it! Rievaulx Abbey is just as g...

    published: 18 Jul 2021
  • Best Seaside Town? WHITBY North Yorkshire - WHITBY Walk and History

    Is Whitby the Best Seaside Town in England? Whitby is on the North Yorkshire Coast and not your average Seaside Town. But what makes Whitby so special? Join us for a walk and the history of Whitby including a visit to Whitby Abbey. Captain Cook, Bram Stoker and some wonderful historic streets and lanes make it a wonderful place to visit in what we think could be the best seaside town in England. ❤ Please support our channel in one of the following ways: 1. Subscribe and click the notifications bell. Subscribe to channel https://www.youtube.com/memoryseekers?sub_confirmation=1 2. Buys us a coffee https://ko-fi.com/memoryseekers 3. You can also make a one-off support donation through Paypal: https://paypal.me/memoryseekers 4. Become a patron on a monthly basis. https://www.patreon....

    published: 10 Dec 2022
  • Yorkshire Travel Series Preview - Visiting West Yorkshire, the Dales and North Yorkshire

    Yorkshire has been on our list to explore more, ever since we visited York. So we have headed back for a Yorkshire travel series starting next week on the channel. We will visit West Yorkshire, Oakworth and home to the Railway Children, take a train ride on the Keighley Worth Valley Railway and walk in the footsteps of the Railway Children. Haworth was home to the famous Brontë Sisters, we immerse ourselves into their lives and the places they visited, finding inspiration for their world-famous novels. Even taking a hike up to Top Withens to see what Emily Brontë saw for inspiration to write Wuthering Heights. Take a stroll along the canal at Hebdon Bridge and drive the Dales and visit Grassington a beautiful town that is the backdrop to Darrowby in the new series of All Creatures Great a...

    published: 24 Sep 2022
  • 15 Things To Do In WHITBY, NORTH YORKSHIRE | England, UK Travel Guide

    In this video we will show you 15 things to see and do in Whitby, England. Set on the North Yorkshire coast, this seaside town has a rich history, gothic architecture and links to Dracula; you will find plenty of sights and attractions to keep you busy. CHAPTERS: 0:00 Intro 0:25 1. 199 Steps 1:19 2. St Mary’s Church 1:48 3. Whitby Abbey 2:42 4. Bram Stoker’s Memorial Bench 3:00 5. Whalebone Arch 3:13 6. Captain Cook Memorial Statue 3:27 7. The Endeavour Experience 4:10 8. Boat Trips 4:37 9. Whitby Beaches 5:06 10. Harbour and Piers 5:58 11. Restaurants & Cafes 7:39 12. Microbrewery & Pubs 8:10 13. Unique Shops 8:43 14. Alice Garden 9:02 15. Whitby Museum 9:34 BONUS DAY TRIP: Robin Hood’s Bay If you enjoyed our Whitby travel guide then you might also be interested in t...

    published: 01 Oct 2020
  • Corporate & Partnerships Overview and Scrutiny Meeting – 7 March 2022

    published: 18 Dec 2024
  • North Yorkshire Moors Railway

    SUBSCRIBE to the official North Yorkshire Moors YouTube channel: https://www.youtube.com/@NYMR Hop on board the North Yorkshire Moors Railway and enjoy a day filled with vintage charm and amazing scenery on one of the world's greatest heritage railways. Find out more about the NYMR visit our website: ☞ https://www.nymr.co.uk or donate: ☞ https://www.nymr.co.uk/donate/nymr-crisis-fund/10/credit-card FOLLOW US ON SOCIAL MEDIA ☟ Facebook ➜ https://www.facebook.com/northyorkshiremoorsrailway Twitter ➜ https://twitter.com/nymr Instagram ➜ https://www.instagram.com/NorthYorkshireMoorsRailway #nymr #northyorkshiremoorsrailway #yorkshire #steamrailway #heritagerailway

    published: 23 Aug 2017
North Yorkshire Moors Railway (NYMR) Grosmont Station Webcam
0:00

North Yorkshire Moors Railway (NYMR) Grosmont Station Webcam

  • Order:
  • Duration: 0:00
  • Uploaded Date: 16 Nov 2023
  • views: 1821872
SUBSCRIBE to the official North Yorkshire Moors Railway YouTube channel www.youtube.com/@NYMR Hop on board the North Yorkshire Moors Railway and enjoy a day filled with vintage charm and amazing scenery on one of the world's greatest heritage railways. Find out more about the NYMR visit our website: www.nymr.co.uk FOLLOW US ON SOCIAL MEDIA ☟ Facebook ➜ https://www.facebook.com/northyorkshiremoorsrailway X ➜ https://www.x.com/nymr Instagram ➜ https://www.instagram.com/NorthYorkshireMoorsRailway Threads ➜ https://www.threads.net/@NorthYorkshireMoorsRailway #NYMR #NorthYorkshireMoorsRailway #Yorkshire #SteamRailway #HeritageRailway
https://wn.com/North_Yorkshire_Moors_Railway_(Nymr)_Grosmont_Station_Webcam
North Yorkshire | 20 Best Things To Do - Yorkshire Dales, North York Moors & More
11:58

North Yorkshire | 20 Best Things To Do - Yorkshire Dales, North York Moors & More

  • Order:
  • Duration: 11:58
  • Uploaded Date: 21 Aug 2022
  • views: 35925
20 Best Things To Do in North Yorkshire! North Yorkshire is the largest county in England and it is packed full of national parks and areas of outstanding natural beauty including the gorgeous Yorkshire Dales, North York Moors, Nidderdale and the Howardian Hills. In this video, I’ve got mountains, caves, waterfalls, gorgeous towns and villages, abbeys, castles and more! I'm going to begin at the west side of North Yorkshire and move across to the east as I go through the video, here are the locations mentioned in the video: Yorkshire Dales - 0:30 - Ingleborough - 0:40 - Clapham & Ingleton Estate Nature Trail- 1:18 - Trow Gill & Gaping Gill - 1:28 - Malham Cove, Janet's Foss & Gordale Scar Hike from Malham - 1:48 - Malham Cove - 2:10 - Janet's Foss - 2:46 - Gardale Scar - 2:58 - Ribblehead Viaduct - 3:25 - Ingleton Waterfalls Walk - 4:18 - Ingleborough Cave & White Scar Cave - 4:55 - Yordas Cave - 5:06 Nidderdale Area of Outstanding Natural Beauty - 5:35 - Fountains Abbey - 5:51 - Studley Royal - 6:11 - Brimham Rocks - 6:24 - Druid's Temple - 6:47 North Yorkshire - 7:37 - Middleham Castle - 7:47 - Knaresborough - 8:24 - Knaresborough Castle - 8:40 - Knaresborough Boat Hire - 9:00 North York Moors - 9:36 - Rievaulx Abbey - 9:41 - Whitby - 10:13 - Whitby Abbey - 10:40 Did you really enjoy the video and want to give even more support? Click the link below to buy us a coffee and we’ll love you forever! https://www.buymeacoffee.com/alextravels Get 5% off the entire Gecko Mobile store plus a 13-month warranty by clicking this link: https://invi.tt/D1YM Please note that some product links above are affiliate links, meaning I will receive a small commission for any products you may purchase at no extra cost to you. This is just a way for us to try and fund our travels to keep making content for you. Thanks for your support! Link to full 'UK Travel Guides' Playlist: https://www.youtube.com/watch?v=YjgRmMT71gI&list=PLoliWvnVweHue4Lz2tPUUdQOvvRJdL4Yi Link to full 'AlexTravels Across England' Playlist: https://www.youtube.com/watch?v=StRQtBeIS3E&list=PLoliWvnVweHtPjBIFwPx7qkh4dyf5ZE-s If you enjoyed the video, please consider subscribing! I will be posting! more videos very soon! https://www.youtube.com/c/AlexTravels1 Make sure to leave a like on the video if you enjoyed it! Let me know in the comments if you have or now want to visit North Yorkshire and anything shown in this video! Thank you for watching! - Social Media Links - AlexTravels Instagram - https://www.instagram.com/_.alex.travels._/ Travel Photography Instagram: https://www.instagram.com/reflection.journal1999/
https://wn.com/North_Yorkshire_|_20_Best_Things_To_Do_Yorkshire_Dales,_North_York_Moors_More
The Strid, North Yorkshire, England - The World's Most Dangerous River
7:04

The Strid, North Yorkshire, England - The World's Most Dangerous River

  • Order:
  • Duration: 7:04
  • Uploaded Date: 31 May 2023
  • views: 53007
The Strid, a stretch of the River Wharfe in North Yorkshire, is the world's most dangerous river with a 100% fatality rate. Find out more about the history of it in this video, including its links to William Wordsworth and the iconic Bolton Abbey in the Yorkshire Dales. Visit The Strid & Bolton Abbey - https://boltonabbey.com/what-to-see/strid-wood-and-the-strid/ MY PRODUCTION EQUIPMENT Camera 1 - https://amzn.to/3uKpoMu Camera 2 - https://amzn.to/3zIjO38 Tripod - https://amzn.to/3uFsce1 Drone - https://amzn.to/3wMw9yQ Memory card - https://amzn.to/3uGVVmL Music - https://tinyurl.com/kk8wcu2v
https://wn.com/The_Strid,_North_Yorkshire,_England_The_World's_Most_Dangerous_River
Knaresborough - One of the Prettiest Towns in Yorkshire - North Yorkshire
21:40

Knaresborough - One of the Prettiest Towns in Yorkshire - North Yorkshire

  • Order:
  • Duration: 21:40
  • Uploaded Date: 07 May 2023
  • views: 101442
Knaresborough has to be one of the prettiest towns in Yorkshire. The River Nidd Gorge carves its way through the town and beautiful historic buildings some 900 years old, teeter over the edge looking down at the river. We have visited many towns in Yorkshire in other videos but this has to be one of the prettiest towns in Yorkshire. It has more than just the historical aspects of a Castle and the iconic Knaresborough Viaduct, but riverside walks along the famous former Royal Forest of Knaresborough. The folklore tales of Mother Shipton and the petrifying well, to local hero Blind Jack. It is truly a fantastic place to spend a day, boating, walking and soaking up the atmosphere. Join us for a lovely walk, some history and details about the local attractions in this pretty Yorkshire town. If you are looking for accommodation in the area then try https://www.maison-parfaite.com/ this Yorkshire family-run business has many wonderful places to stay in Yorkshire. See more of Yorkshire with our playlist of over 10 other videos https://www.youtube.com/playlist?list=PL7ZS1Ml0SItTtmrQyN2W38VB6LMPNjs9R ❤ Please support our channel in one of the following ways: 1. Subscribe and click the notifications bell. Subscribe to channel https://www.youtube.com/memoryseekers?sub_confirmation=1 2. Buys us a coffee https://ko-fi.com/memoryseekers 3. You can also make a one-off support donation through Paypal: https://paypal.me/memoryseekers 4. Become a patron on a monthly basis. https://www.patreon.com/memoryseekers ⚑ Follow our travel adventures on social: Instagram: MemorySeekers Facebook: MemorySeekersUK Pinterest: Memoryseekersuk Twitter: Memoryseekers Tiktok: Memoryseekers 🗺 Web: www.memoryseekers.net Head over to our website for more photos and information about our travels. 🎹 Like the music we use? We get it from these 2 sites below:- Artlist.io - Get FREE additional months subscription using our link https://artlist.io/Simon-312477 Epidemic Sound - Get 30 days FREE use of Epidemic Sounds using our link https://www.epidemicsound.com/referral/6a40j0/ We receive 1 free month of access for any referrals 📷 If you'd like to know what equipment we use, see and buy our latest top kit for YouTubing and Travel Essentials in our Amazon shop:- https://www.amazon.co.uk/shop/memoryseekers If you buy from these links we will receive a small commission but you won't pay a penny extra. With thanks to www.google.com and google earth for use of images 00:00 Introduction 00:27 Getting to Knaresborough 01:10 Market Place 02:10 Local Characters 03:14 Ye Olde Chemist 03:43 Old Town Hall 04:10 Castle Gate 05:32 Knaresborough Castle 07:00 Best View in Town 07:24 War Memorial 07:48 Castle Mill 08:14 Dry Moat 08:45 Bebra Gardens 09:29 Steps to Waterside 11:33 Viaduct 12:24 Hire a Boat 12:40 Mother Shipton's Cave 15:32 Petrifying Well 16:33 Wishing Well 16:50 Mother Shipton's Birth Cave 17:25 Knaresborough Weir 18:07 St John the Baptist Church 20:27 Knaresborough Station 21:02 Accommodation in Yorkshire #knaresborough #visityorkshire #yorkshire
https://wn.com/Knaresborough_One_Of_The_Prettiest_Towns_In_Yorkshire_North_Yorkshire
North Yorkshire | The Most Picturesque Places To Visit
9:11

North Yorkshire | The Most Picturesque Places To Visit

  • Order:
  • Duration: 9:11
  • Uploaded Date: 18 Jul 2021
  • views: 14089
Welcome to Yorkshire, in this video we are visiting 2 of the most important and famous abbeys in England as well as the gorgeous town of Knaresborough, all located within North Yorkshire. Places visited in the video: - Whitby Abbey - Whitby - Rievaulx Abbey - Knaresborough These are 4 places I would recommend to you when visiting North Yorkshire as they are some of the most picturesque and breathtaking locations we've seen! Whitby Abbey is a famous abbey located next to the town of Whitby, it has had a very long and interesting history, and the coastal town of Whitby is full of some of its own histories including the fact that Bram Stoker based elements of his novel Dracula from the Abbey itself and he was also staying in this town at the time or writing it! Rievaulx Abbey is just as grand, if not even grander than Whitby Abbey with many more of its won histories to learn about! and lots of remains give you a real idea of how it would have looked in its prime! The Town of Knaresborough is so iconic with its victorian viaduct towering over the River Nidd flowing through the centre of this gorgeous town. There are many things to do here including hiring a boat on the River Nidd, exploring the castle and gardens in the town and more... also, look out for the painted windows here! Link to full 'Travels Across England' Playlist: https://www.youtube.com/watch?v=StRQtBeIS3E&list=PLoliWvnVweHtPjBIFwPx7qkh4dyf5ZE-s If you enjoyed the video make sure you subscribe as I will be posting more videos very soon. - Subscribe Here - https://www.youtube.com/channel/UCexBM4ZAmndA9rFmjBpvHZQ Make sure to leave a like on the video if you enjoyed! [Let me know in the comments if you have or now want to visit Dorset and anything shown in this video!] Thankyou for watching! - Social Media Links - TikTok - https://www.tiktok.com/@alex.travels?lang=en&is_copy_url=1&is_from_webapp=v1 AlexTravels Instagram - https://www.instagram.com/_.alex.travels._/ Photography & Videography Instagram: https://www.instagram.com/ln.photography.videography/
https://wn.com/North_Yorkshire_|_The_Most_Picturesque_Places_To_Visit
Best Seaside Town? WHITBY North Yorkshire - WHITBY Walk and History
22:18

Best Seaside Town? WHITBY North Yorkshire - WHITBY Walk and History

  • Order:
  • Duration: 22:18
  • Uploaded Date: 10 Dec 2022
  • views: 185654
Is Whitby the Best Seaside Town in England? Whitby is on the North Yorkshire Coast and not your average Seaside Town. But what makes Whitby so special? Join us for a walk and the history of Whitby including a visit to Whitby Abbey. Captain Cook, Bram Stoker and some wonderful historic streets and lanes make it a wonderful place to visit in what we think could be the best seaside town in England. ❤ Please support our channel in one of the following ways: 1. Subscribe and click the notifications bell. Subscribe to channel https://www.youtube.com/memoryseekers?sub_confirmation=1 2. Buys us a coffee https://ko-fi.com/memoryseekers 3. You can also make a one-off support donation through Paypal: https://paypal.me/memoryseekers 4. Become a patron on a monthly basis. https://www.patreon.com/memoryseekers ⚑ Follow our travel adventures on social: Instagram: MemorySeekers Facebook: MemorySeekersUK Pinterest: Memoryseekersuk Twitter: Memoryseekers Tiktok: Memoryseekers 🗺 Web: www.memoryseekers.net Head over to our website for more photos and information about our travels. 🎹 Like the music we use? We get it from these 2 sites below:- Artlist.io - Get FREE additional months subscription using our link https://artlist.io/Simon-312477 Epidemic Sound - Get 30 days FREE use of Epidemic Sounds using our link https://www.epidemicsound.com/referral/6a40j0/ We receive 1 free month of access for any referrals 📷 If you'd like to know what equipment we use, see and buy our latest top kit for YouTubing and Travel Essentials in our Amazon shop:- https://www.amazon.co.uk/shop/memoryseekers If you buy from these links we will receive a small commission but you won't pay a penny extra. With thanks to www.google.com and google earth for use of images 00:00 Introduction 00:34 Getting to Whitby 00:59 Whitby Harbour 03:19 Grape Lane 03:53 Captain Cook 04:27 Church St 05:00 Whitby Jet 06:00 199 Steps 07:24 St Mary's Church 08:24 Whitby Abbey 13:10 Market Place 13:40 West Pier 15:16 Kyber Pass 15:58 Captain Cook Statue 16:45 Whitby Pavillion 17:42 Bram Stoker 18:43 Cinder Track 19:42 Larpool Viaduct 21:11 Next Time #whitby #northyorkshire #seaside
https://wn.com/Best_Seaside_Town_Whitby_North_Yorkshire_Whitby_Walk_And_History
Yorkshire Travel Series Preview - Visiting West Yorkshire, the Dales and North Yorkshire
2:48

Yorkshire Travel Series Preview - Visiting West Yorkshire, the Dales and North Yorkshire

  • Order:
  • Duration: 2:48
  • Uploaded Date: 24 Sep 2022
  • views: 49736
Yorkshire has been on our list to explore more, ever since we visited York. So we have headed back for a Yorkshire travel series starting next week on the channel. We will visit West Yorkshire, Oakworth and home to the Railway Children, take a train ride on the Keighley Worth Valley Railway and walk in the footsteps of the Railway Children. Haworth was home to the famous Brontë Sisters, we immerse ourselves into their lives and the places they visited, finding inspiration for their world-famous novels. Even taking a hike up to Top Withens to see what Emily Brontë saw for inspiration to write Wuthering Heights. Take a stroll along the canal at Hebdon Bridge and drive the Dales and visit Grassington a beautiful town that is the backdrop to Darrowby in the new series of All Creatures Great and Small. Passing Thirsk, we pop in at the veterinary surgery where James Herriot was penned and it all started at James Herriot World. Heatbeat was filmed in Groatlands in the North Yorkshire Moors so we could not resist paying a visit to the village and also seeing the station famous as Hogsmead Station in Harry Potter. Castle Howard is next seen in Brideshead and Bridgeton more recently. This is a fantastic stately home with so much history that we wanted to share with you. Finally, we arrive at the coast and Whitby where Bram Stoker found inspiration for Dracula with the views of Whitby Abbey. Ending our adventures in RobinHoods Bay a super cute fishing village with lots of surprises. We hope you enjoy our travel adventures in Yorkshire. ❤ Please support our channel in one of the following ways: 1. Subscribe and click the notifications bell. Subscribe to channel https://www.youtube.com/memoryseekers?sub_confirmation=1 2. Buys us a coffee https://ko-fi.com/memoryseekers 3. You can also make a one-off support donation through Paypal: https://paypal.me/memoryseekers 4. Become a patron on a monthly basis. https://www.patreon.com/memoryseekers ⚑ Follow our travel adventures on social: Instagram: MemorySeekers Facebook: MemorySeekersUK Pinterest: Memoryseekersuk Twitter: Memoryseekers Tiktok: Memoryseekers 🗺 Web: www.memoryseekers.net Head over to our website for more photos and information about our travels. 🎹 Like the music we use? We get it from these 2 sites below:- Artlist.io - Get FREE additional months subscription using our link https://artlist.io/Simon-312477 Epidemic Sound - Get 30 days FREE use of Epidemic Sounds using our link https://www.epidemicsound.com/referral/6a40j0/ We receive 1 free month of access for any referrals 📷 If you'd like to know what equipment we use, see and buy our latest top kit for YouTubing and Travel Essentials in our Amazon shop:- https://www.amazon.co.uk/shop/memoryseekers If you buy from these links we will receive a small commission but you won't pay a penny extra. With thanks to www.google.com and google earth for use of images #visityorkshire #yorkshire #brontecountry
https://wn.com/Yorkshire_Travel_Series_Preview_Visiting_West_Yorkshire,_The_Dales_And_North_Yorkshire
15 Things To Do In WHITBY, NORTH YORKSHIRE | England, UK Travel Guide
10:16

15 Things To Do In WHITBY, NORTH YORKSHIRE | England, UK Travel Guide

  • Order:
  • Duration: 10:16
  • Uploaded Date: 01 Oct 2020
  • views: 111371
In this video we will show you 15 things to see and do in Whitby, England. Set on the North Yorkshire coast, this seaside town has a rich history, gothic architecture and links to Dracula; you will find plenty of sights and attractions to keep you busy. CHAPTERS: 0:00 Intro 0:25 1. 199 Steps 1:19 2. St Mary’s Church 1:48 3. Whitby Abbey 2:42 4. Bram Stoker’s Memorial Bench 3:00 5. Whalebone Arch 3:13 6. Captain Cook Memorial Statue 3:27 7. The Endeavour Experience 4:10 8. Boat Trips 4:37 9. Whitby Beaches 5:06 10. Harbour and Piers 5:58 11. Restaurants & Cafes 7:39 12. Microbrewery & Pubs 8:10 13. Unique Shops 8:43 14. Alice Garden 9:02 15. Whitby Museum 9:34 BONUS DAY TRIP: Robin Hood’s Bay If you enjoyed our Whitby travel guide then you might also be interested in these videos: ROBIN HOOD’S BAY: https://youtu.be/bKFLBoL5oO0 UK TRAVEL PLAYLIST: https://www.youtube.com/playlist?list=PLklu2vvKTLyrtwkUU1aQI1R_ABCYBmLBH
https://wn.com/15_Things_To_Do_In_Whitby,_North_Yorkshire_|_England,_UK_Travel_Guide
Corporate & Partnerships Overview and Scrutiny Meeting – 7 March 2022
37:19

Corporate & Partnerships Overview and Scrutiny Meeting – 7 March 2022

  • Order:
  • Duration: 37:19
  • Uploaded Date: 18 Dec 2024
  • views: 34
https://wn.com/Corporate_Partnerships_Overview_And_Scrutiny_Meeting_–_7_March_2022
North Yorkshire Moors Railway
1:29

North Yorkshire Moors Railway

  • Order:
  • Duration: 1:29
  • Uploaded Date: 23 Aug 2017
  • views: 50057
SUBSCRIBE to the official North Yorkshire Moors YouTube channel: https://www.youtube.com/@NYMR Hop on board the North Yorkshire Moors Railway and enjoy a day filled with vintage charm and amazing scenery on one of the world's greatest heritage railways. Find out more about the NYMR visit our website: ☞ https://www.nymr.co.uk or donate: ☞ https://www.nymr.co.uk/donate/nymr-crisis-fund/10/credit-card FOLLOW US ON SOCIAL MEDIA ☟ Facebook ➜ https://www.facebook.com/northyorkshiremoorsrailway Twitter ➜ https://twitter.com/nymr Instagram ➜ https://www.instagram.com/NorthYorkshireMoorsRailway #nymr #northyorkshiremoorsrailway #yorkshire #steamrailway #heritagerailway
https://wn.com/North_Yorkshire_Moors_Railway
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • North Yorkshire Moors Railway (NYMR) Grosmont Station Webcam
    0:00
    North Yorkshire Moors Railway (NYMR) Grosmont Station Webcamremove from playlist
  • North Yorkshire | 20 Best Things To Do - Yorkshire Dales, North York Moors & More
    11:58
    North Yorkshire | 20 Best Things To Do - Yorkshire Dales, North York Moors & Moreremove from playlist
  • The Strid, North Yorkshire, England - The World's Most Dangerous River
    7:04
    The Strid, North Yorkshire, England - The World's Most Dangerous Riverremove from playlist
  • Knaresborough - One of the Prettiest Towns in Yorkshire - North Yorkshire
    21:40
    Knaresborough - One of the Prettiest Towns in Yorkshire - North Yorkshireremove from playlist
  • North Yorkshire | The Most Picturesque Places To Visit
    9:11
    North Yorkshire | The Most Picturesque Places To Visitremove from playlist
  • Best Seaside Town? WHITBY North Yorkshire - WHITBY Walk and History
    22:18
    Best Seaside Town? WHITBY North Yorkshire - WHITBY Walk and Historyremove from playlist
  • Yorkshire Travel Series Preview - Visiting West Yorkshire, the Dales and North Yorkshire
    2:48
    Yorkshire Travel Series Preview - Visiting West Yorkshire, the Dales and North Yorkshireremove from playlist
  • 15 Things To Do In WHITBY, NORTH YORKSHIRE | England, UK Travel Guide
    10:16
    15 Things To Do In WHITBY, NORTH YORKSHIRE | England, UK Travel Guideremove from playlist
  • North Yorkshire Moors Railway
    1:29
    North Yorkshire Moors Railwayremove from playlist
PLAYLIST TIME:

North Yorkshire Moors Railway (NYMR) Grosmont Station Webcam

SUBSCRIBE to the official North Yorkshire Moors Railway YouTube channel www.youtube.com/@NYMR Hop on board the North Yorkshire Moors Railway and enjoy a day filled with vintage charm and amazing scenery on one of the world's greatest heritage railways. Find out more about the NYMR visit our website: www.nymr.co.uk FOLLOW US ON SOCIAL MEDIA ☟ Facebook ➜ https://www.facebook.com/northyorkshiremoorsrailway X ➜ https://www.x.com/nymr Instagram ➜ https://www.instagram.com/NorthYorkshireMoorsRailway Threads ➜ https://www.threads.net/@NorthYorkshireMoorsRailway #NYMR #NorthYorkshireMoorsRailway #Yorkshire #SteamRailway #HeritageRailway
0:00
North Yorkshire Moors Railway (NYMR) Grosmont Station Webcam
SUBSCRIBE to the official North Yorkshire Moors Railway YouTube channel www.youtube.com/@N...
published: 16 Nov 2023
Play in Full Screen
11:58
North Yorkshire | 20 Best Things To Do - Yorkshire Dales, North York Moors & More
20 Best Things To Do in North Yorkshire! North Yorkshire is the largest county in England ...
published: 21 Aug 2022
Play in Full Screen
7:04
The Strid, North Yorkshire, England - The World's Most Dangerous River
The Strid, a stretch of the River Wharfe in North Yorkshire, is the world's most dangerous...
published: 31 May 2023
Play in Full Screen
21:40
Knaresborough - One of the Prettiest Towns in Yorkshire - North Yorkshire
Knaresborough has to be one of the prettiest towns in Yorkshire. The River Nidd Gorge carv...
published: 07 May 2023
Play in Full Screen
9:11
North Yorkshire | The Most Picturesque Places To Visit
Welcome to Yorkshire, in this video we are visiting 2 of the most important and famous abb...
published: 18 Jul 2021
Play in Full Screen
22:18
Best Seaside Town? WHITBY North Yorkshire - WHITBY Walk and History
Is Whitby the Best Seaside Town in England? Whitby is on the North Yorkshire Coast and no...
published: 10 Dec 2022
Play in Full Screen
2:48
Yorkshire Travel Series Preview - Visiting West Yorkshire, the Dales and North Yorkshire
Yorkshire has been on our list to explore more, ever since we visited York. So we have hea...
published: 24 Sep 2022
Play in Full Screen
10:16
15 Things To Do In WHITBY, NORTH YORKSHIRE | England, UK Travel Guide
In this video we will show you 15 things to see and do in Whitby, England. Set on the Nort...
published: 01 Oct 2020
Play in Full Screen
37:19
Corporate & Partnerships Overview and Scrutiny Meeting – 7 March 2022
published: 18 Dec 2024
Play in Full Screen
1:29
North Yorkshire Moors Railway
SUBSCRIBE to the official North Yorkshire Moors YouTube channel: https://www.youtube.com/@...
published: 23 Aug 2017
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: north yorkshire

Edit

Leave barbecues and matches at home say North Yorkshire firefighters

York Press 10 May 2025
North Yorkshire firefighters are urging everyone not to have barbecues or camp fires in the countryside, especially in the North York Moors and Yorkshire Dales ... .
Edit

North Yorkshire beer garden with ‘commanding’ views at iconic pub among UK’s best

York Press 10 May 2025
This beer garden at Blakey Ridge in North Yorkshire has 'commanding' views over the North York Moors and has been named one of the UK's best ... .
Edit

Online meeting to hold North Yorkshire's Chief Constable to account

York Press 10 May 2025
Jo Coles, the Deputy Mayor for Policing, Fire, and Crime, will host a meeting on Thursday, May 15 in which North Yorkshire's Chief Constable will be held to account ... .
Edit

Funding for 32 constables and 20 PCSOs in York and North Yorkshire

York Press 10 May 2025
A £2 million government investment, as part of the Home Office's Safer Streets campaign, is set to bring 32 new police constables and 20 PCSOs to York and North Yorkshire ... .
Edit

Gallery and minster win top Yorkshire architecture prizes

BBC News 10 May 2025
Meanwhile, the regeneration of Hull Minster and the refurbishment of two Victorian buildings in South and North Yorkshire were also recognised ... Listen to highlights from North Yorkshire on BBC Sounds, catch up with the latest episode of Look North.
Edit

Triple win for Ryedale School in North Yorkshire Basketball Finals

York Press 10 May 2025
Ryedale School is celebrating after three of its basketball teams gained regional championship titles ... .
Edit

The beaches with the worst water quality in England revealed

AOL 10 May 2025
Further up north, Tynemouth Cullercoats in Tyne and Wear, Scarborough South Bay in North Yorkshire and Blackpool North in Lancashire landed in the ‘poor’ category ... Blackpool North in Lancashire ... Scarborough South Bay in North Yorkshire.
Edit

Beer we go! Otley Runners brave sizzling mini-heatwave to go on 19-pub booze crawl as ...

The Daily Mail 10 May 2025
In Leeds, temperatures peaked at around 20C between 2-3pm, meaning the North Yorkshire city was as hot as parts of the Balearic islands ... A paddle boarder enjoys the spring sunshine on River Nidd in Knaresborough, North Yorkshire.
Edit

Oldest building in Massachusetts is literally older than the country. Here's where it is

Milford Daily News 10 May 2025
Ceremony at North Bridge commemorates 250th anniversary of Battle of Concord. An Air Force KC-46A and two F-15s fly over the North Bridge ceremony commemorating the 250th anniversary of the American Revolution in Concord, April 19, 2025.
Edit

We run the best bed and breakfast in Europe... but a bitter loophole cost us ...

The Daily Mail 10 May 2025
But North Yorkshire? Perhaps not ... Angela said ... Europe's best bed and breakfast is not in Paris, Rome or even London - but Scarborough on the North Yorkshire coast ... There is also an on-site hair salon, and 'zen' garden, ... James said ... Angela said ... .
Edit

Owners of York city centre pub celebrate the go-ahead for second venue

York Press 10 May 2025
The co-owners and founders of the Viking-themed pub in Patrick Pool, spoke after North Yorkshire Council granted permission for the opening of a second pub ... .
Edit

York community interest company aims to give away 500 bikes

York Press 10 May 2025
A new community interest company, reCicle CIC, has launched in York to restore and give away 500 bikes to individuals and families across North Yorkshire, who need them most ... .
Edit

Police want to find the owner of this bike

York Press 10 May 2025
North Yorkshire Police are again urging cyclists to get their bikes registered as they try to reunite one cyclist with their bicycle ... .
Edit

Two people trapped in garden centre after closing time

York Press 10 May 2025
Two people had to dial 999 to get home from a North Yorkshire garden centre yesterday evening ... .
Edit

Fat cats housing asylum seekers rake in millions

This is Money 10 May 2025
Serco, covering the Midlands, East Anglia and the North-West, is in line ... Mears is set to be paid £2.5 billion for arranging accommodation in Yorkshire, the North-East, Scotland and Northern Ireland.
×