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

269 (West Riding) Battery Royal Artillery

269 (West Riding) Battery Royal Artillery is part of 101st (Northumbrian) Regiment Royal Artillery, an artillery regiment of the British Army.

History

The battery was formed as 269 (West Riding) Observation Post Battery Royal Artillery (Volunteers) in April 1975 at Leeds from a cadre of the West Riding Regiment RA (Territorials). Its role was to provide observation teams to support 1st Armoured Division and 2nd Armoured Division in Germany. In 1989 the battery re-roled to the 105 mm light gun and in 1993 it joined 19th Regiment Royal Artillery, a regular regiment in 24 Airmobile Brigade. In July 1999 it re-roled as an air defence battery equipped with the Rapier surface-to-air missile system within 106th (Yeomanry) Regiment Royal Artillery. In 2006 it transferred to 101st (Northumbrian) Regiment Royal Artillery where it was given a Surveillance and Target Acquisition role. Under Army 2020, it is re-rolling to the M270 Multiple Launch Rocket System.

Royal Artillery

The Royal Regiment of Artillery, commonly referred to as the Royal Artillery (RA), is the artillery arm of the British Army. Despite its name, it comprises a number of regiments.

History

The introduction of artillery into the English army came as early as the Battle of Crécy in 1346.Henry VIII made the army's artillery semi-permanent in the sixteenth century but the recognition of the need for a permanent body of artillery did not happen until 1716.

Podcasts:

  • Bradford Army Reservist Digs Up Prestigious Honour

    An Army Reservist, Robert Friel from Bradford, has been awarded the Lord-Lieutenant's Certificate -- an achievement recognised as one of the highest honours in the forces, ranking just below the MBE. An archaeologist in his day-job, Major Robert Friel was presented the certificate by Dr Ingrid Roscoe, the Lord-Lieutenant of West Yorkshire, at a private ceremony held at the Yorkshire Officer Training Regiment in Carlton Barracks, Leeds, on 18th March, in recognition of his outstanding contribution and dedication to the Army Reserve. Joining what was until recently known as the Territorial Army in 1990, Robert has given over 24 years of service as a Gunner, rising steadily in rank to become the Battery Commander of 269 (West Riding) Battery Royal Artillery, based at Carlton Barracks in Lee...

    published: 10 Apr 2014
  • Saved Missing Kids From Van (Almost Got Kidnapped)

    I was riding my dirt bike when I found a strange van left on the road. I found missing people in the back of it and I had to save them by smashing the window. The guy left the keys on the road so I was able to load my motorcycle in the back and drive away with the van. Merch Store - https://www.youtube.com/channel/UC0vT2ZuZxpNSnJ5AO0FVqRw/store Click To Subscribe - https://www.youtube.com/philthethrill?sub_confirmation=1 Instagram - @philthethrill

    published: 15 Nov 2020
  • 49th (West Riding) Infantry Division

    49th (West Riding) Infantry Division The 49th Infantry Division was an infantry division of the British Army.The division was formed in the Territorial Force on 1 1908 as the West Riding. Derek Clayton examines the performance of the 49th Division on three specific days, detailing the attacks of 3 1916 at Thiepval, 9 1917 at Poelcapelle, and 1 1918.. Video of this roadside memorial in France. Its across the road from the Fontenay-le-Pesnil War Cemetery, of which I have posted a separate video. This is one of a number of D-Day war cemetery.

    published: 24 Feb 2018
  • Fastest Mini Powerfull Dirt Bike Unboxing & testing - Chatpat toy tv

    Fastest Mini Powerfull Dirt Bike Unboxing & testing - Chatpat toy tv Dosto aaj ki video mai maine unbox aur test kiya hai mini pocket dirt bike iske andar 50cc 2 stroke engine hai iski top speed 50kmph hai Buy Links : Mini Dirt Bike : https://amzn.to/3Wsw2X5 WLtoys 12427 : https://amzn.to/3NkSbSH RC Jimny : https://bit.ly/3U6Oqma My Gadgets Channel https://www.youtube.com/c/ChatpatGadgetsTv My Gaming Channelhttps://www.youtube.com/c/ChatpatGamingTV FACEBOOK - https://www.facebook.com/chatpattoytv INSTAGRAM : @chatpattoytv https://www.instagram.com/chatpattoytv TWITTER : @chatpattoytv https://twitter.com/Chatpattoytv For Business/Sponsorship & Review Unit Contact : chatpattoytv@gmail.com #minidirtbikeunboxing #50ccpetroldirtbike #minidirtbike #rcbike #wltoys12427 #RCvsrc #rccom...

    published: 30 Oct 2022
  • The Second Battle of Winchester

    The Second Battle of Winchester - speaker Scott Mingus Award winning author Scott Mingus spoke to the American Civil War Round Table (UK) in April 2021 and explained the significance of this largely forgotten battle of the Gettysburg campaign. In the summer of 1863, as Robert E Lee’s Confederate Army of Northern Virginia began pushing north toward Pennsylvania, only one significant force stood in the way - Union Major General Robert H Milroy’s division of the Eighth Army Corps. Milroy defied repeated instructions to withdraw to safety, believing the enemy action to be merely a cavalry raid or feint. His controversial decision put his outnumbered, largely inexperienced men on a path to disaster … Scott, a retired research scientist, has written 22 Civil War and Underground Railroad ...

    published: 17 Apr 2021
  • Part 1: IdleOn Speedrun W1-W4 F2P with Autoloot

    The Journey Starts My Dude! Code "Griffy" For 20% Rogue Energy Purchase! https://rogueenergy.com/?ref=w1phw3fs... 📺 Twitch : https://www.twitch.tv/griffybit 🎉 Reddit: https://www.reddit.com/user/GriffyBit 👑 Discord: https://discord.gg/etHt2f5CeM 🐦 Twitter: https://twitter.com/BitGriffy #griffybit #idleon #legendsofidleon

    published: 31 Oct 2022
  • HMS Erin - Guide 268

    HMS Erin, a one-off battleship of the Ottoman and then Royal Navy, is today's subject. Read more about the ship here: www.amazon.co.uk/British-Battleships-World-War-One/dp/1848321473 www.amazon.co.uk/Grand-Fleet-Warship-Development-1906-1922/dp/186176099X www.amazon.co.uk/British-Battleship-Norman-Friedman/dp/1848322259 Naval photos and more - www.drachinifel.co.uk Model ships of many periods - http://store.warlordgames.com?aff=21 Want to support the channel? - https://www.patreon.com/Drachinifel Want a shirt/mug/hoodie - https://shop.spreadshirt.com/drachinifels-dockyard/ Want a poster? - https://www.etsy.com/uk/shop/Drachinifel Want to talk about ships? https://discord.gg/TYu88mt Want to get some books? www.amazon.co.uk/shop/drachinifel

    published: 29 Jan 2022
  • West Riding of Yorkshire

    The West Riding of Yorkshire is one of the three historic subdivisions of Yorkshire, England. From 1889 to 1974 the administrative county, County of York, West Riding"), was based closely on the historic boundaries. The lieutenancy at that time included the City of York and as such was named West Riding of the County of York and the County of the City of York. Its boundaries roughly correspond to the present ceremonial counties of West Yorkshire, South Yorkshire and the Craven, Harrogate and Selby districts of North Yorkshire, along with smaller parts in Lancashire, Cumbria, Greater Manchester and, since 1996, the unitary East Riding of Yorkshire. This video is targeted to blind users. Attribution: Article text available under CC-BY-SA Creative Commons image source in video

    published: 02 Dec 2015
  • Professor Dave Humiliates Flat Earther David Weiss (DITRH Debunked Live)

    For months now, hordes of idiots have been lurking in my comments sections, aggressively insisting that I need to debate David Weiss, because he's some kind of flat earth messiah who is undebunkable, and I should cower in the face of his might. Of course I ignored them because he is a two-bit charlatan and who cares what idiots say, but then a channel with almost 700k subscribers asked if I would debate Weiss on his channel, and I figured it might be a good way to pick up a few subscribers, and also humiliate a flat earth icon irreparably in the process. And folks, that's exactly what happened. From the moment he opened his mouth to the moment we left the stream, I took every single word he said and demonstrated in real time how David Weiss is a science illiterate moron that doesn't unders...

    published: 08 Apr 2022
  • British Police Roleplay | GTA V FiveM | United Gaming

    This is a Twitch VOD uploaded from the 15/04/23. The city is United Gaming Reborn and the game is GTA V Roleplay on FiveM (PC Only). Join my discord below for help setting up! Don't forget to click subscribe for more content! Join my Socials: Twitch: https://www.twitch.tv/deggyuk Discord: https://discord.gg/deggyuk Twitter: https://twitter.com/deggyuk Youtube: https://www.youtube.com/@deggyuk Youtube: https://www.youtube.com/@deggyuksports TikTok: https://www.tiktok.com/@deggyuk #fivem #british #uk #britishroleplay #britishpolice #streamhighlights #gta #gta5 #gtav #police #policeroleplay #twitch #streamer

    published: 09 May 2023
Bradford Army Reservist Digs Up Prestigious Honour
9:02

Bradford Army Reservist Digs Up Prestigious Honour

  • Order:
  • Duration: 9:02
  • Uploaded Date: 10 Apr 2014
  • views: 211
An Army Reservist, Robert Friel from Bradford, has been awarded the Lord-Lieutenant's Certificate -- an achievement recognised as one of the highest honours in the forces, ranking just below the MBE. An archaeologist in his day-job, Major Robert Friel was presented the certificate by Dr Ingrid Roscoe, the Lord-Lieutenant of West Yorkshire, at a private ceremony held at the Yorkshire Officer Training Regiment in Carlton Barracks, Leeds, on 18th March, in recognition of his outstanding contribution and dedication to the Army Reserve. Joining what was until recently known as the Territorial Army in 1990, Robert has given over 24 years of service as a Gunner, rising steadily in rank to become the Battery Commander of 269 (West Riding) Battery Royal Artillery, based at Carlton Barracks in Leeds. A dedicated and committed member of the Reserve Forces, Robert has worked tirelessly throughout his career to the benefit of 269 Battery including two operational tours in Bosnia and Iraq. He also leads on community initiatives in both Bradford and Leeds, including promoting the service to employers and the Jane Tomlinson charity events. Reflecting on the ceremony and his award, Robert, an honorary research fellow and archaeological consultant for the University of Bradford, commented: "I feel that serving in the Reserve Forces provides the individual with the opportunity to play a more active and meaningful role in today's society. To be recognised in this way is a great honour and privilege." Colonel Snagge, Chief Executive of the Reserve Forces' and Cadets' Association (RFCA) in Yorkshire and The Humber, which runs the Lord-Lieutenant's Certificates Awards, added: "Without the selfless commitment of many hundreds of volunteers across the region who give up their time outside of working hours, the reserve forces simply couldn't exist. I am delighted that Robert's service has been commemorated in this way and I have no doubt he will continue to make a great difference to the Army Reserve." Robert is one of only seven people in West Yorkshire to be awarded the Lord-Lieutenant's Certificate, which is presented as a mounted scroll. For more information about the role of Reservists or to find out about becoming an Adult Volunteer in the Cadets, please visit the Reserve Forces' and Cadets' Association website at: www.rfca-yorkshire.org.uk
https://wn.com/Bradford_Army_Reservist_Digs_Up_Prestigious_Honour
Saved Missing Kids From Van (Almost Got Kidnapped)
10:20

Saved Missing Kids From Van (Almost Got Kidnapped)

  • Order:
  • Duration: 10:20
  • Uploaded Date: 15 Nov 2020
  • views: 15490918
I was riding my dirt bike when I found a strange van left on the road. I found missing people in the back of it and I had to save them by smashing the window. The guy left the keys on the road so I was able to load my motorcycle in the back and drive away with the van. Merch Store - https://www.youtube.com/channel/UC0vT2ZuZxpNSnJ5AO0FVqRw/store Click To Subscribe - https://www.youtube.com/philthethrill?sub_confirmation=1 Instagram - @philthethrill
https://wn.com/Saved_Missing_Kids_From_Van_(Almost_Got_Kidnapped)
49th (West Riding) Infantry Division
16:44

49th (West Riding) Infantry Division

  • Order:
  • Duration: 16:44
  • Uploaded Date: 24 Feb 2018
  • views: 109
49th (West Riding) Infantry Division The 49th Infantry Division was an infantry division of the British Army.The division was formed in the Territorial Force on 1 1908 as the West Riding. Derek Clayton examines the performance of the 49th Division on three specific days, detailing the attacks of 3 1916 at Thiepval, 9 1917 at Poelcapelle, and 1 1918.. Video of this roadside memorial in France. Its across the road from the Fontenay-le-Pesnil War Cemetery, of which I have posted a separate video. This is one of a number of D-Day war cemetery.
https://wn.com/49Th_(West_Riding)_Infantry_Division
Fastest Mini Powerfull Dirt Bike Unboxing & testing - Chatpat toy tv
9:03

Fastest Mini Powerfull Dirt Bike Unboxing & testing - Chatpat toy tv

  • Order:
  • Duration: 9:03
  • Uploaded Date: 30 Oct 2022
  • views: 1764442
Fastest Mini Powerfull Dirt Bike Unboxing & testing - Chatpat toy tv Dosto aaj ki video mai maine unbox aur test kiya hai mini pocket dirt bike iske andar 50cc 2 stroke engine hai iski top speed 50kmph hai Buy Links : Mini Dirt Bike : https://amzn.to/3Wsw2X5 WLtoys 12427 : https://amzn.to/3NkSbSH RC Jimny : https://bit.ly/3U6Oqma My Gadgets Channel https://www.youtube.com/c/ChatpatGadgetsTv My Gaming Channelhttps://www.youtube.com/c/ChatpatGamingTV FACEBOOK - https://www.facebook.com/chatpattoytv INSTAGRAM : @chatpattoytv https://www.instagram.com/chatpattoytv TWITTER : @chatpattoytv https://twitter.com/Chatpattoytv For Business/Sponsorship & Review Unit Contact : chatpattoytv@gmail.com #minidirtbikeunboxing #50ccpetroldirtbike #minidirtbike #rcbike #wltoys12427 #RCvsrc #rccomparision #rcfight #rcjimnycar #rcjimnycar #petrolminidirtbike #Chapattoytv
https://wn.com/Fastest_Mini_Powerfull_Dirt_Bike_Unboxing_Testing_Chatpat_Toy_Tv
The Second Battle of Winchester
50:18

The Second Battle of Winchester

  • Order:
  • Duration: 50:18
  • Uploaded Date: 17 Apr 2021
  • views: 10566
The Second Battle of Winchester - speaker Scott Mingus Award winning author Scott Mingus spoke to the American Civil War Round Table (UK) in April 2021 and explained the significance of this largely forgotten battle of the Gettysburg campaign. In the summer of 1863, as Robert E Lee’s Confederate Army of Northern Virginia began pushing north toward Pennsylvania, only one significant force stood in the way - Union Major General Robert H Milroy’s division of the Eighth Army Corps. Milroy defied repeated instructions to withdraw to safety, believing the enemy action to be merely a cavalry raid or feint. His controversial decision put his outnumbered, largely inexperienced men on a path to disaster … Scott, a retired research scientist, has written 22 Civil War and Underground Railroad books. His biography of General William “Extra Billy” Smith won the Dr James I Robertson, Jr Literary Prize for Confederate History. He has also written several articles for Gettysburg Magazine, as well as for various historical journals. His great-great-grandfather was a 15-year-old drummer and rifleman in the 51st Ohio Infantry in the Western Theater, and other family members fought at Antietam and Gettysburg in the 7th West Virginia of the Army of the Potomac. https://www.acwrt.org.uk/
https://wn.com/The_Second_Battle_Of_Winchester
Part 1: IdleOn Speedrun W1-W4 F2P with Autoloot
23:03:21

Part 1: IdleOn Speedrun W1-W4 F2P with Autoloot

  • Order:
  • Duration: 23:03:21
  • Uploaded Date: 31 Oct 2022
  • views: 147786
The Journey Starts My Dude! Code "Griffy" For 20% Rogue Energy Purchase! https://rogueenergy.com/?ref=w1phw3fs... 📺 Twitch : https://www.twitch.tv/griffybit 🎉 Reddit: https://www.reddit.com/user/GriffyBit 👑 Discord: https://discord.gg/etHt2f5CeM 🐦 Twitter: https://twitter.com/BitGriffy #griffybit #idleon #legendsofidleon
https://wn.com/Part_1_Idleon_Speedrun_W1_W4_F2P_With_Autoloot
HMS Erin - Guide 268
5:55

HMS Erin - Guide 268

  • Order:
  • Duration: 5:55
  • Uploaded Date: 29 Jan 2022
  • views: 90384
HMS Erin, a one-off battleship of the Ottoman and then Royal Navy, is today's subject. Read more about the ship here: www.amazon.co.uk/British-Battleships-World-War-One/dp/1848321473 www.amazon.co.uk/Grand-Fleet-Warship-Development-1906-1922/dp/186176099X www.amazon.co.uk/British-Battleship-Norman-Friedman/dp/1848322259 Naval photos and more - www.drachinifel.co.uk Model ships of many periods - http://store.warlordgames.com?aff=21 Want to support the channel? - https://www.patreon.com/Drachinifel Want a shirt/mug/hoodie - https://shop.spreadshirt.com/drachinifels-dockyard/ Want a poster? - https://www.etsy.com/uk/shop/Drachinifel Want to talk about ships? https://discord.gg/TYu88mt Want to get some books? www.amazon.co.uk/shop/drachinifel
https://wn.com/Hms_Erin_Guide_268
West Riding of Yorkshire
7:16

West Riding of Yorkshire

  • Order:
  • Duration: 7:16
  • Uploaded Date: 02 Dec 2015
  • views: 363
The West Riding of Yorkshire is one of the three historic subdivisions of Yorkshire, England. From 1889 to 1974 the administrative county, County of York, West Riding"), was based closely on the historic boundaries. The lieutenancy at that time included the City of York and as such was named West Riding of the County of York and the County of the City of York. Its boundaries roughly correspond to the present ceremonial counties of West Yorkshire, South Yorkshire and the Craven, Harrogate and Selby districts of North Yorkshire, along with smaller parts in Lancashire, Cumbria, Greater Manchester and, since 1996, the unitary East Riding of Yorkshire. This video is targeted to blind users. Attribution: Article text available under CC-BY-SA Creative Commons image source in video
https://wn.com/West_Riding_Of_Yorkshire
Professor Dave Humiliates Flat Earther David Weiss (DITRH Debunked Live)
1:01:53

Professor Dave Humiliates Flat Earther David Weiss (DITRH Debunked Live)

  • Order:
  • Duration: 1:01:53
  • Uploaded Date: 08 Apr 2022
  • views: 5987190
For months now, hordes of idiots have been lurking in my comments sections, aggressively insisting that I need to debate David Weiss, because he's some kind of flat earth messiah who is undebunkable, and I should cower in the face of his might. Of course I ignored them because he is a two-bit charlatan and who cares what idiots say, but then a channel with almost 700k subscribers asked if I would debate Weiss on his channel, and I figured it might be a good way to pick up a few subscribers, and also humiliate a flat earth icon irreparably in the process. And folks, that's exactly what happened. From the moment he opened his mouth to the moment we left the stream, I took every single word he said and demonstrated in real time how David Weiss is a science illiterate moron that doesn't understand basic concepts learned in elementary school, just like every other pointless flat earth grifter. Anyone who watches this exchange and still refers to him as a credible source of information is in complete denial of reality and hopelessly unreachable. Of course that describes most flat earthers, so I'll see you dummies in the comments section complaining about what a meany mean-pants I am instead of admitting to yourself that you are completely unable to address a single thing I said in this absolutely airtight, relentless destruction of a toxic influence on society. Toodles! Originally streamed 4/6/22 on Shaun Attwood's channel: https://www.youtube.com/watch?v=XIYr7Uak2rY Watch my other debunks/debates/discussions: http://bit.ly/ProfDaveDebunk EMAIL► ProfessorDaveExplains@gmail.com PATREON► http://patreon.com/ProfessorDaveExplains Check out "Is This Wi-Fi Organic?", my book on disarming pseudoscience! Amazon: https://amzn.to/2HtNpVH Bookshop: https://bit.ly/39cKADM Barnes and Noble: https://bit.ly/3pUjmrn Book Depository: http://bit.ly/3aOVDlT
https://wn.com/Professor_Dave_Humiliates_Flat_Earther_David_Weiss_(Ditrh_Debunked_Live)
British Police Roleplay | GTA V FiveM | United Gaming
2:01:40

British Police Roleplay | GTA V FiveM | United Gaming

  • Order:
  • Duration: 2:01:40
  • Uploaded Date: 09 May 2023
  • views: 163
This is a Twitch VOD uploaded from the 15/04/23. The city is United Gaming Reborn and the game is GTA V Roleplay on FiveM (PC Only). Join my discord below for help setting up! Don't forget to click subscribe for more content! Join my Socials: Twitch: https://www.twitch.tv/deggyuk Discord: https://discord.gg/deggyuk Twitter: https://twitter.com/deggyuk Youtube: https://www.youtube.com/@deggyuk Youtube: https://www.youtube.com/@deggyuksports TikTok: https://www.tiktok.com/@deggyuk #fivem #british #uk #britishroleplay #britishpolice #streamhighlights #gta #gta5 #gtav #police #policeroleplay #twitch #streamer
https://wn.com/British_Police_Roleplay_|_Gta_V_Fivem_|_United_Gaming
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Bradford Army Reservist Digs Up Prestigious Honour
    9:02
    Bradford Army Reservist Digs Up Prestigious Honourremove from playlist
  • Saved Missing Kids From Van (Almost Got Kidnapped)
    10:20
    Saved Missing Kids From Van (Almost Got Kidnapped)remove from playlist
  • 49th (West Riding) Infantry Division
    16:44
    49th (West Riding) Infantry Divisionremove from playlist
  • Fastest Mini Powerfull Dirt Bike Unboxing & testing - Chatpat toy tv
    9:03
    Fastest Mini Powerfull Dirt Bike Unboxing & testing - Chatpat toy tvremove from playlist
  • The Second Battle of Winchester
    50:18
    The Second Battle of Winchesterremove from playlist
  • Part 1: IdleOn Speedrun W1-W4 F2P with Autoloot
    23:03:21
    Part 1: IdleOn Speedrun W1-W4 F2P with Autolootremove from playlist
  • HMS Erin - Guide 268
    5:55
    HMS Erin - Guide 268remove from playlist
  • West Riding of Yorkshire
    7:16
    West Riding of Yorkshireremove from playlist
  • Professor Dave Humiliates Flat Earther David Weiss (DITRH Debunked Live)
    1:01:53
    Professor Dave Humiliates Flat Earther David Weiss (DITRH Debunked Live)remove from playlist
  • British Police Roleplay | GTA V FiveM | United Gaming
    2:01:40
    British Police Roleplay | GTA V FiveM | United Gamingremove from playlist
PLAYLIST TIME: 0:00 / 27:55:32

Bradford Army Reservist Digs Up Prestigious Honour

An Army Reservist, Robert Friel from Bradford, has been awarded the Lord-Lieutenant's Certificate -- an achievement recognised as one of the highest honours in the forces, ranking just below the MBE. An archaeologist in his day-job, Major Robert Friel was presented the certificate by Dr Ingrid Roscoe, the Lord-Lieutenant of West Yorkshire, at a private ceremony held at the Yorkshire Officer Training Regiment in Carlton Barracks, Leeds, on 18th March, in recognition of his outstanding contribution and dedication to the Army Reserve. Joining what was until recently known as the Territorial Army in 1990, Robert has given over 24 years of service as a Gunner, rising steadily in rank to become the Battery Commander of 269 (West Riding) Battery Royal Artillery, based at Carlton Barracks in Leeds. A dedicated and committed member of the Reserve Forces, Robert has worked tirelessly throughout his career to the benefit of 269 Battery including two operational tours in Bosnia and Iraq. He also leads on community initiatives in both Bradford and Leeds, including promoting the service to employers and the Jane Tomlinson charity events. Reflecting on the ceremony and his award, Robert, an honorary research fellow and archaeological consultant for the University of Bradford, commented: "I feel that serving in the Reserve Forces provides the individual with the opportunity to play a more active and meaningful role in today's society. To be recognised in this way is a great honour and privilege." Colonel Snagge, Chief Executive of the Reserve Forces' and Cadets' Association (RFCA) in Yorkshire and The Humber, which runs the Lord-Lieutenant's Certificates Awards, added: "Without the selfless commitment of many hundreds of volunteers across the region who give up their time outside of working hours, the reserve forces simply couldn't exist. I am delighted that Robert's service has been commemorated in this way and I have no doubt he will continue to make a great difference to the Army Reserve." Robert is one of only seven people in West Yorkshire to be awarded the Lord-Lieutenant's Certificate, which is presented as a mounted scroll. For more information about the role of Reservists or to find out about becoming an Adult Volunteer in the Cadets, please visit the Reserve Forces' and Cadets' Association website at: www.rfca-yorkshire.org.uk
9:02
Bradford Army Reservist Digs Up Prestigious Honour
An Army Reservist, Robert Friel from Bradford, has been awarded the Lord-Lieutenant's Cert...
published: 10 Apr 2014
Play in Full Screen
10:20
Saved Missing Kids From Van (Almost Got Kidnapped)
I was riding my dirt bike when I found a strange van left on the road. I found missing peo...
published: 15 Nov 2020
Play in Full Screen
16:44
49th (West Riding) Infantry Division
49th (West Riding) Infantry Division The 49th Infantry Division was an infantry division o...
published: 24 Feb 2018
Play in Full Screen
9:03
Fastest Mini Powerfull Dirt Bike Unboxing & testing - Chatpat toy tv
Fastest Mini Powerfull Dirt Bike Unboxing & testing - Chatpat toy tv Dosto aaj ki video m...
published: 30 Oct 2022
Play in Full Screen
50:18
The Second Battle of Winchester
The Second Battle of Winchester - speaker Scott Mingus Award winning author Scott Mingus ...
published: 17 Apr 2021
Play in Full Screen
23:03:21
Part 1: IdleOn Speedrun W1-W4 F2P with Autoloot
The Journey Starts My Dude! Code "Griffy" For 20% Rogue Energy Purchase! https://rogueen...
published: 31 Oct 2022
Play in Full Screen
5:55
HMS Erin - Guide 268
HMS Erin, a one-off battleship of the Ottoman and then Royal Navy, is today's subject. Re...
published: 29 Jan 2022
Play in Full Screen
7:16
West Riding of Yorkshire
The West Riding of Yorkshire is one of the three historic subdivisions of Yorkshire, Engla...
published: 02 Dec 2015
Play in Full Screen
1:01:53
Professor Dave Humiliates Flat Earther David Weiss (DITRH Debunked Live)
For months now, hordes of idiots have been lurking in my comments sections, aggressively i...
published: 08 Apr 2022
Play in Full Screen
2:01:40
British Police Roleplay | GTA V FiveM | United Gaming
This is a Twitch VOD uploaded from the 15/04/23. The city is United Gaming Reborn and the...
published: 09 May 2023
Play in Full Screen

269 (West Riding) Battery Royal Artillery

269 (West Riding) Battery Royal Artillery is part of 101st (Northumbrian) Regiment Royal Artillery, an artillery regiment of the British Army.

History

The battery was formed as 269 (West Riding) Observation Post Battery Royal Artillery (Volunteers) in April 1975 at Leeds from a cadre of the West Riding Regiment RA (Territorials). Its role was to provide observation teams to support 1st Armoured Division and 2nd Armoured Division in Germany. In 1989 the battery re-roled to the 105 mm light gun and in 1993 it joined 19th Regiment Royal Artillery, a regular regiment in 24 Airmobile Brigade. In July 1999 it re-roled as an air defence battery equipped with the Rapier surface-to-air missile system within 106th (Yeomanry) Regiment Royal Artillery. In 2006 it transferred to 101st (Northumbrian) Regiment Royal Artillery where it was given a Surveillance and Target Acquisition role. Under Army 2020, it is re-rolling to the M270 Multiple Launch Rocket System.

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