'+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:

  • LEAVE OR BE ARRESTED!!!!!!

    Conducting a 1st (First) Amendment Audit of the USPS in Moses Lake, WA., at the Renew Mental Health Administrative Building. The audit begins with a helpful employee, who is immediately replaced with two tyrannical employees trying to run the show. They call the police, and shortly thereafter, things start changing quickly! Watch through to the end for an interesting outcome!!! When are people going to learn that only some cameras shoot nuclear weapons? My goal is to bring awareness to the public writ large, and especially the government, on how to appropriately respect and avoid violating our freedoms. As many of us say, including myself: if you don't use your freedoms, you lose them. Follow me to destinations around our beautiful country and watch a class A education unfold to those...

    published: 27 Apr 2023
  • Top 17 Best Things to do in Moses Lake, WA — Places to Go!

    Things to Do in Moses Lake • Surf 'n Slide Water Park • Red Top Lookout Trail • Blue Heron Park • Potholes State Park • Fairchild Cinemas• Moses Lake Museum. Need help planning your trip? Watch this video to find out the Top 17 Best Things to do in Moses Lake, WA — Places to Go! See more at https://coupledestinationsguide.com/things-to-do-in-moses-lake-wa/ Connect With Us on Social Media: Pinterest: https://www.pinterest.com/coupledestinationsguide/ Facebook: https://www.facebook.com/CoupleDestinatoinsGuide Twitter: https://twitter.com/guide_couple Instagram: https://www.instagram.com/couple_destinations_guide/

    published: 03 Apr 2023
  • Unsolved Northwest: The Moses Lake Bombings

    Two men were killed by homemade explosives hours apart in Moses Lake. Fourteen years later, no suspect has been identified.

    published: 15 Mar 2023
  • Where is Moses Lake ?

    #MosesLake #GrantCounty #Washingtonstate #CascadeValley Moses Lake is a city in Grant County, Washington, United States. The population was 24,698 as of the 2020 census. Moses Lake is the largest city in Grant County. The city anchors the Moses Lake Micropolitan area, which includes all of Grant County and is part of the Moses Lake–Othello combined statistical area. Thanks for tuning in and support. Siempre muchas gracias! Thumbs up are appreciated! and if you like please subscribe and share. Gracias por sintonizarnos y apoyarnos. ¡Se agradecen los pulgares arriba! y si te gusta suscríbete y comparte. ko-fi: https://ko-fi.com/kevtv (if you would like to buy me a coffee) ** Also If you'd like to support the channel please donate directly to: 🤞 https://paypal.me/kevinjclark?local...

    published: 26 May 2020
  • Moses Lake Air Show practice Friday 16 Jun 23

    Take a look at Friday (June 16, 2023) preparations for the Moses Lake air show at Grant County Airport in central Washington. In addition to the static and flying show planes, the airport bustles with Boeing test and training flights. Stored 737s line the field. The show is scheduled for June 17-18. The DC-10 air tanker is on call for fire duty, and will be a static air show display unless sent to a wildfire. The white 727 is a non-flying school training aid kept on the airport. We are grateful to Chiara Sabatini, a business pilot who is working with media during the air show, and who provided the mobile tour of the flightline. Like the video? We'll have more. And please hit the Thumbs Up button, and share the link for this video with others who would like to see it. When you subscri...

    published: 17 Jun 2023
  • Moses Lake looks into possibility of putting in water restrictions

    According to city officials, the city gets water from two deep basalt aquifers. But, those aquifers are starting to get tapped out. Read more here: https://www.krem.com/article/news/local/grant-county/moses-lake-city-council-water-restrictions/293-1f42eaa4-aebe-42b6-814d-243cdcc63854 KREM ON SOCIAL MEDIA Facebook: https://www.facebook.com/KREM2 Twitter: https://twitter.com/KREM2 Instagram: https://www.instagram.com/krem2/ DOWNLOAD THE KREM SMARTPHONE APP Download for iPhone here: https://apple.co/3DuCvsY Download for Android here: https://bit.ly/3gFcDBC HOW TO ADD THE KREM+ APP TO YOUR STREAMING DEVICE Roku | Add the channel from the Roku store or by searching for KREM in the Channel Store: https://bit.ly/3FfhL9I Fire TV | Search for "KREM" to find the free app to add to your acc...

    published: 12 May 2023
  • Moses Lake Air Show Action – Saturday June 17, 2023 - deHavilland Vampire debut

    The U.S. debut of a refurbished deHavilland Vampire jet fighter by Jerry Conley highlighted the Saturday Moses Lake air show for many; for others, it was the flyover of four Marine F-35s. Moses Lake has a huge airfield, the former Larson Air Force Base, that is heavily used by Boeing for test, rework, and storage of jetliners. For the air show, a runway is blocked off for the showline. The feeling is part fly-in, part active air show as rare and beautiful planes make their way here. And on this Saturday, it was an air show within an air show as a real-world wildfire elsewhere in Washington prompted the rapid launch and subsequent recovery of several air tankers based at Moses Lake. Sit back and enjoy one of Washington’s rising stars in the air show world, the annual Moses Lake air show. I...

    published: 18 Jun 2023
  • This small SWAP MEET in Moses Lake felt like 2004 all over again

    With a population of about 25,000, Moses Lake, Washington is in central WA on the east side of the Cascades. It's a quick 1.5 hour drive for me so I figured I'd swing by and check it out. Here's what I saw, what I found and a little of what I grabbed. My Online Store (for games and stuff) https://riggs.storenvy.com/ Tools I use for Open Cart Surgery - https://amzn.to/3RWExXq Buy RIGGS Edition 1up Cards! https://amzn.to/3x16CUm Grab your RIGGS edition Fixture S1 for Nintendo Switch https://fixturegaming.com/products/john-riggs Support the channel on Patreon http://www.patreon.com/johnblueriggs Join my Whatnot live auctions using my link. You get $10, I get $10, it's a win-win. https://whatnot.com/invite/johnblueriggs Book a Cameo https://www.cameo.com/johnriggs Buying a Quest 2 at...

    published: 30 Jan 2023
  • MLPC | Unshakable & Assured (VI) | Sunday, July 9th

    Get the message sermon notes for the Bible App HERE: http://bible.com/events/49105342 See the rest of our messages: https://www.moseslakepres.org/messages Give or Tithe: https://www.moseslakepres.org/give Send in a prayer request: https://www.moseslakepres.org/prayer

    published: 10 Jul 2023
  • Living In A Van Traveling My Hometown Moses Lake, WA Van Life On The Road

    -~-~~-~~~-~~-~- Please watch: "Carolina's Birthday At Daytona Beech With Mr & Mrs Nice RV Living " https://www.youtube.com/watch?v=wk2HbYzthXQ -~-~~-~~~-~~-~-

    published: 23 Oct 2014
LEAVE OR BE ARRESTED!!!!!!
23:16

LEAVE OR BE ARRESTED!!!!!!

  • Order:
  • Duration: 23:16
  • Uploaded Date: 27 Apr 2023
  • views: 51786
Conducting a 1st (First) Amendment Audit of the USPS in Moses Lake, WA., at the Renew Mental Health Administrative Building. The audit begins with a helpful employee, who is immediately replaced with two tyrannical employees trying to run the show. They call the police, and shortly thereafter, things start changing quickly! Watch through to the end for an interesting outcome!!! When are people going to learn that only some cameras shoot nuclear weapons? My goal is to bring awareness to the public writ large, and especially the government, on how to appropriately respect and avoid violating our freedoms. As many of us say, including myself: if you don't use your freedoms, you lose them. Follow me to destinations around our beautiful country and watch a class A education unfold to those who need it, so we can be the freest together! This work is the work of Inland Auditing Media alone, all rights reserved. No content found within this channel, from video content, or anything else associated with Inland Auditing Media or its operations is intended to be taken as legal advice. If you have questions about content from this channel, consult an attorney for further information. Comments by the general public, or anyone else other than Inland Auditing Media are the sole responsibility of said persons and/or organizations. Inland Auditing Media has no affiliation nor claims any responsibility for the views and/or comments of others. This video is only for educational purposes, it is not legal advice.
https://wn.com/Leave_Or_Be_Arrested
Top 17 Best Things to do in Moses Lake, WA — Places to Go!
1:10

Top 17 Best Things to do in Moses Lake, WA — Places to Go!

  • Order:
  • Duration: 1:10
  • Uploaded Date: 03 Apr 2023
  • views: 7387
Things to Do in Moses Lake • Surf 'n Slide Water Park • Red Top Lookout Trail • Blue Heron Park • Potholes State Park • Fairchild Cinemas• Moses Lake Museum. Need help planning your trip? Watch this video to find out the Top 17 Best Things to do in Moses Lake, WA — Places to Go! See more at https://coupledestinationsguide.com/things-to-do-in-moses-lake-wa/ Connect With Us on Social Media: Pinterest: https://www.pinterest.com/coupledestinationsguide/ Facebook: https://www.facebook.com/CoupleDestinatoinsGuide Twitter: https://twitter.com/guide_couple Instagram: https://www.instagram.com/couple_destinations_guide/
https://wn.com/Top_17_Best_Things_To_Do_In_Moses_Lake,_Wa_—_Places_To_Go
Unsolved Northwest: The Moses Lake Bombings
4:55

Unsolved Northwest: The Moses Lake Bombings

  • Order:
  • Duration: 4:55
  • Uploaded Date: 15 Mar 2023
  • views: 3889
Two men were killed by homemade explosives hours apart in Moses Lake. Fourteen years later, no suspect has been identified.
https://wn.com/Unsolved_Northwest_The_Moses_Lake_Bombings
Where is Moses Lake ?
12:46

Where is Moses Lake ?

  • Order:
  • Duration: 12:46
  • Uploaded Date: 26 May 2020
  • views: 6046
#MosesLake #GrantCounty #Washingtonstate #CascadeValley Moses Lake is a city in Grant County, Washington, United States. The population was 24,698 as of the 2020 census. Moses Lake is the largest city in Grant County. The city anchors the Moses Lake Micropolitan area, which includes all of Grant County and is part of the Moses Lake–Othello combined statistical area. Thanks for tuning in and support. Siempre muchas gracias! Thumbs up are appreciated! and if you like please subscribe and share. Gracias por sintonizarnos y apoyarnos. ¡Se agradecen los pulgares arriba! y si te gusta suscríbete y comparte. ko-fi: https://ko-fi.com/kevtv (if you would like to buy me a coffee) ** Also If you'd like to support the channel please donate directly to: 🤞 https://paypal.me/kevinjclark?locale.x=en_US 🎁 CASH APP: $HeyKevTV 😎 venmo@Kevin-Clark-291 Mailing Address: 941 S. Vermont Ave. Ste 101 #78, Los Angeles, CA 90006 Thank you so much for your support. Agredezco mucho por tu apoyo. 👀 Rules of the Live Chat: Absolutely No racism, harassment, doxing, slandering, toxic or violent behavior, spamming or impersonation. Let's have fun and positive vibes! -------------------------------------------------------------------------------------------------------------------- For non copyright music check out (Free 30 day trial): https://www.epidemicsound.com/referral/6wj5u3/ **Music by EpidemicSound.com. Jayjen-Ashutosh New Life Join this channel and become a member to get access to perks: https://www.youtube.com/channel/UCSXlSBPMxtZ1qw5smzcNf0Q/join Join: https://www.tubebuddy.com/KevTV Instagram: https://www.instagram.com/heykevtv twitch.tv: https://www.twitch.tv/heykevtv Discord: https://discord.gg/q7FpwpY 😃😃 THANKS AGAIN FOR YOUR SUPPORT. Links to the equipment I use: Sony zv-1: https://amzn.to/3BBuTB2 GoPro 7: https://amzn.to/3kP9DRv GoPro 8: https://amzn.to/3DGAKqN GoPro 9: https://amzn.to/2WRf5Ly DJI Gimbal 3: https://amzn.to/3BJKyyp DJI Gimbal 4: https://amzn.to/3kRM5LR MOVO WXM-1 External mic: https://amzn.to/3tbAWcH FTC Legal Disclaimer: Some links found in the description box of my videos may be affiliate links, which means I will make a commission on purchases you make through my link. This is at no extra cost to you, it’s just one more way to support me and my channel! Thank you! 😃😃 THANKS AGAIN FOR YOUR SUPPORT. In the event of other videos or music used in this video. *FAIR USE* No intention of copyright infringement. COPYRIGHTS: FAIR USE, Title 17, US Code (Sections 107-118 of the copyright law): All media in this video is used for purpose of review & commentary under terms of fair use. All footage, music & images used belong to their respective companies.
https://wn.com/Where_Is_Moses_Lake
Moses Lake Air Show practice Friday 16 Jun 23
9:48

Moses Lake Air Show practice Friday 16 Jun 23

  • Order:
  • Duration: 9:48
  • Uploaded Date: 17 Jun 2023
  • views: 1944
Take a look at Friday (June 16, 2023) preparations for the Moses Lake air show at Grant County Airport in central Washington. In addition to the static and flying show planes, the airport bustles with Boeing test and training flights. Stored 737s line the field. The show is scheduled for June 17-18. The DC-10 air tanker is on call for fire duty, and will be a static air show display unless sent to a wildfire. The white 727 is a non-flying school training aid kept on the airport. We are grateful to Chiara Sabatini, a business pilot who is working with media during the air show, and who provided the mobile tour of the flightline. Like the video? We'll have more. And please hit the Thumbs Up button, and share the link for this video with others who would like to see it. When you subscribe to the Airailimages Channel, you join more than 100,000 people who appreciate our unique mix of new and vintage programming, both aviation and railroad.
https://wn.com/Moses_Lake_Air_Show_Practice_Friday_16_Jun_23
Moses Lake looks into possibility of putting in water restrictions
2:03

Moses Lake looks into possibility of putting in water restrictions

  • Order:
  • Duration: 2:03
  • Uploaded Date: 12 May 2023
  • views: 521
According to city officials, the city gets water from two deep basalt aquifers. But, those aquifers are starting to get tapped out. Read more here: https://www.krem.com/article/news/local/grant-county/moses-lake-city-council-water-restrictions/293-1f42eaa4-aebe-42b6-814d-243cdcc63854 KREM ON SOCIAL MEDIA Facebook: https://www.facebook.com/KREM2 Twitter: https://twitter.com/KREM2 Instagram: https://www.instagram.com/krem2/ DOWNLOAD THE KREM SMARTPHONE APP Download for iPhone here: https://apple.co/3DuCvsY Download for Android here: https://bit.ly/3gFcDBC HOW TO ADD THE KREM+ APP TO YOUR STREAMING DEVICE Roku | Add the channel from the Roku store or by searching for KREM in the Channel Store: https://bit.ly/3FfhL9I Fire TV | Search for "KREM" to find the free app to add to your account. Another option for Fire TV is to have the app delivered directly to your Fire TV through Amazon: https://amzn.to/3D6GqKX
https://wn.com/Moses_Lake_Looks_Into_Possibility_Of_Putting_In_Water_Restrictions
Moses Lake Air Show Action – Saturday June 17, 2023 - deHavilland Vampire debut
14:46

Moses Lake Air Show Action – Saturday June 17, 2023 - deHavilland Vampire debut

  • Order:
  • Duration: 14:46
  • Uploaded Date: 18 Jun 2023
  • views: 20631
The U.S. debut of a refurbished deHavilland Vampire jet fighter by Jerry Conley highlighted the Saturday Moses Lake air show for many; for others, it was the flyover of four Marine F-35s. Moses Lake has a huge airfield, the former Larson Air Force Base, that is heavily used by Boeing for test, rework, and storage of jetliners. For the air show, a runway is blocked off for the showline. The feeling is part fly-in, part active air show as rare and beautiful planes make their way here. And on this Saturday, it was an air show within an air show as a real-world wildfire elsewhere in Washington prompted the rapid launch and subsequent recovery of several air tankers based at Moses Lake. Sit back and enjoy one of Washington’s rising stars in the air show world, the annual Moses Lake air show. If you enjoyed this video, hit the Thumbs Up button. And please subscribe to the Airailimages Channel for more videos like this.
https://wn.com/Moses_Lake_Air_Show_Action_–_Saturday_June_17,_2023_Dehavilland_Vampire_Debut
This small SWAP MEET in Moses Lake felt like 2004 all over again
8:33

This small SWAP MEET in Moses Lake felt like 2004 all over again

  • Order:
  • Duration: 8:33
  • Uploaded Date: 30 Jan 2023
  • views: 24601
With a population of about 25,000, Moses Lake, Washington is in central WA on the east side of the Cascades. It's a quick 1.5 hour drive for me so I figured I'd swing by and check it out. Here's what I saw, what I found and a little of what I grabbed. My Online Store (for games and stuff) https://riggs.storenvy.com/ Tools I use for Open Cart Surgery - https://amzn.to/3RWExXq Buy RIGGS Edition 1up Cards! https://amzn.to/3x16CUm Grab your RIGGS edition Fixture S1 for Nintendo Switch https://fixturegaming.com/products/john-riggs Support the channel on Patreon http://www.patreon.com/johnblueriggs Join my Whatnot live auctions using my link. You get $10, I get $10, it's a win-win. https://whatnot.com/invite/johnblueriggs Book a Cameo https://www.cameo.com/johnriggs Buying a Quest 2 at any time? Use referral link when activating so we both get $30 in-store credit -https://www.oculus.com/referrals/link/johnblueriggs/ Supported by VR Covers for all your VR needs https://vrcover.com/#riggs Website (linktree): riggdgames.com Twitch: https://www.twitch.tv/johnblueriggs Twitter: http://twitter.com/johnblueriggs Facebook: https://facebook.com/riggstalgic Instagram: http://instagram.com/johnblueriggs Discord: https://discord.gg/Re2rKXn Most of my videos are filmed with a Canon M50 - https://amzn.to/31ko1eH MAILING ADDRESS John Riggs 4010 Summitview Ave Yakima, WA 98908 Assume all links are affiliate links.
https://wn.com/This_Small_Swap_Meet_In_Moses_Lake_Felt_Like_2004_All_Over_Again
MLPC  |  Unshakable & Assured (VI)  |  Sunday, July 9th
1:16:46

MLPC | Unshakable & Assured (VI) | Sunday, July 9th

  • Order:
  • Duration: 1:16:46
  • Uploaded Date: 10 Jul 2023
  • views: 96
Get the message sermon notes for the Bible App HERE: http://bible.com/events/49105342 See the rest of our messages: https://www.moseslakepres.org/messages Give or Tithe: https://www.moseslakepres.org/give Send in a prayer request: https://www.moseslakepres.org/prayer
https://wn.com/Mlpc_|_Unshakable_Assured_(Vi)_|_Sunday,_July_9Th
Living In A Van Traveling My Hometown Moses Lake, WA Van Life On The Road
12:49

Living In A Van Traveling My Hometown Moses Lake, WA Van Life On The Road

  • Order:
  • Duration: 12:49
  • Uploaded Date: 23 Oct 2014
  • views: 13553
-~-~~-~~~-~~-~- Please watch: "Carolina's Birthday At Daytona Beech With Mr & Mrs Nice RV Living " https://www.youtube.com/watch?v=wk2HbYzthXQ -~-~~-~~~-~~-~-
https://wn.com/Living_In_A_Van_Traveling_My_Hometown_Moses_Lake,_Wa_Van_Life_On_The_Road
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • LEAVE OR BE ARRESTED!!!!!!
    23:16
    LEAVE OR BE ARRESTED!!!!!!remove from playlist
  • Top 17 Best Things to do in Moses Lake, WA — Places to Go!
    1:10
    Top 17 Best Things to do in Moses Lake, WA — Places to Go!remove from playlist
  • Unsolved Northwest: The Moses Lake Bombings
    4:55
    Unsolved Northwest: The Moses Lake Bombingsremove from playlist
  • Where is Moses Lake ?
    12:46
    Where is Moses Lake ?remove from playlist
  • Moses Lake Air Show practice Friday 16 Jun 23
    9:48
    Moses Lake Air Show practice Friday 16 Jun 23remove from playlist
  • Moses Lake looks into possibility of putting in water restrictions
    2:03
    Moses Lake looks into possibility of putting in water restrictionsremove from playlist
  • Moses Lake Air Show Action – Saturday June 17, 2023 - deHavilland Vampire debut
    14:46
    Moses Lake Air Show Action – Saturday June 17, 2023 - deHavilland Vampire debutremove from playlist
  • This small SWAP MEET in Moses Lake felt like 2004 all over again
    8:33
    This small SWAP MEET in Moses Lake felt like 2004 all over againremove from playlist
  • MLPC  |  Unshakable & Assured (VI)  |  Sunday, July 9th
    1:16:46
    MLPC | Unshakable & Assured (VI) | Sunday, July 9thremove from playlist
  • Living In A Van Traveling My Hometown Moses Lake, WA Van Life On The Road
    12:49
    Living In A Van Traveling My Hometown Moses Lake, WA Van Life On The Roadremove from playlist
PLAYLIST TIME:

LEAVE OR BE ARRESTED!!!!!!

Conducting a 1st (First) Amendment Audit of the USPS in Moses Lake, WA., at the Renew Mental Health Administrative Building. The audit begins with a helpful employee, who is immediately replaced with two tyrannical employees trying to run the show. They call the police, and shortly thereafter, things start changing quickly! Watch through to the end for an interesting outcome!!! When are people going to learn that only some cameras shoot nuclear weapons? My goal is to bring awareness to the public writ large, and especially the government, on how to appropriately respect and avoid violating our freedoms. As many of us say, including myself: if you don't use your freedoms, you lose them. Follow me to destinations around our beautiful country and watch a class A education unfold to those who need it, so we can be the freest together! This work is the work of Inland Auditing Media alone, all rights reserved. No content found within this channel, from video content, or anything else associated with Inland Auditing Media or its operations is intended to be taken as legal advice. If you have questions about content from this channel, consult an attorney for further information. Comments by the general public, or anyone else other than Inland Auditing Media are the sole responsibility of said persons and/or organizations. Inland Auditing Media has no affiliation nor claims any responsibility for the views and/or comments of others. This video is only for educational purposes, it is not legal advice.
23:16
LEAVE OR BE ARRESTED!!!!!!
Conducting a 1st (First) Amendment Audit of the USPS in Moses Lake, WA., at the Renew Ment...
published: 27 Apr 2023
Play in Full Screen
1:10
Top 17 Best Things to do in Moses Lake, WA — Places to Go!
Things to Do in Moses Lake • Surf 'n Slide Water Park • Red Top Lookout Trail • Blue Heron...
published: 03 Apr 2023
Play in Full Screen
4:55
Unsolved Northwest: The Moses Lake Bombings
Two men were killed by homemade explosives hours apart in Moses Lake. Fourteen years later...
published: 15 Mar 2023
Play in Full Screen
12:46
Where is Moses Lake ?
#MosesLake #GrantCounty #Washingtonstate #CascadeValley Moses Lake is a city in Grant Cou...
published: 26 May 2020
Play in Full Screen
9:48
Moses Lake Air Show practice Friday 16 Jun 23
Take a look at Friday (June 16, 2023) preparations for the Moses Lake air show at Grant Co...
published: 17 Jun 2023
Play in Full Screen
2:03
Moses Lake looks into possibility of putting in water restrictions
According to city officials, the city gets water from two deep basalt aquifers. But, those...
published: 12 May 2023
Play in Full Screen
14:46
Moses Lake Air Show Action – Saturday June 17, 2023 - deHavilland Vampire debut
The U.S. debut of a refurbished deHavilland Vampire jet fighter by Jerry Conley highlighte...
published: 18 Jun 2023
Play in Full Screen
8:33
This small SWAP MEET in Moses Lake felt like 2004 all over again
With a population of about 25,000, Moses Lake, Washington is in central WA on the east sid...
published: 30 Jan 2023
Play in Full Screen
1:16:46
MLPC | Unshakable & Assured (VI) | Sunday, July 9th
Get the message sermon notes for the Bible App HERE: http://bible.com/events/49105342 See...
published: 10 Jul 2023
Play in Full Screen
12:49
Living In A Van Traveling My Hometown Moses Lake, WA Van Life On The Road
-~-~~-~~~-~~-~- Please watch: "Carolina's Birthday At Daytona Beech With Mr & Mrs Nice RV ...
published: 23 Oct 2014
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: moses lake

Edit

Alan Liere’s hunting and fishing report for May 8, 2025

The Spokesman-Review 08 May 2025
Waitts Lake is getting good again, and Fishtrap has been decent ... Perch fishing is picking up on area lakes like Eloika, Liberty, Long and Deer, but the best bite should be at Moses Lake near Blue Heron Park and along the shore at Pelican Horn.
Edit

Jerlene Young Dowers

American Press 08 May 2025
... and Thomas Carpenter (Tracy) of Lake Arthur, La.; siblings, Virginia McBroom, Tollie Gillard, Lorine Moses, Loretta Starkey, and Dianne Duggan; 17 grandchildren; along with 16 great-grandchildren.
Edit

: Citlali Franco (WA)

TDN 07 May 2025
Citlali Franco, Age Now. 16, Missing. 04/24/2025. Missing From Moses Lake, WA. ANYONE HAVING INFORMATION SHOULD CONTACT. Moses Lake Police Department (Washington) 1-509-764-3887 ....
Edit

Mark Abrahamson

Cook County News Herald 07 May 2025
Mark Thomas Abrahamson, RN, 70, of Grand Marais, MN, passed away on April 30th 2025, at his home on Good Harbor Hill. Mark was born in Moses Lake, WA, on October 29, 1954, and grew up in Bloomington, MN. Mark moved to Cook County in 1982 ... ....
Edit

Battery tech companies in Moses Lake undeterred by Trump's climate policy threats

Business Journal 05 May 2025
Biden-era policies have funneled hundreds of millions of dollars into the central Washington city ... .
Edit

A new Washington law aims to protect minors at work. Opponents say it could reduce ...

The Oregonian 05 May 2025
Representative Tom Dent, R-Moses Lake, who opposed the bill, voiced apprehensions that increased restrictions could lead to fewer job opportunities for young people ... Senator Judy Warnick, R-Moses Lake, ...
Edit

Moses Lake WA - Before Columbine There Was The Frontier Middle School Shooting

Bitchute 04 May 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

A brand that was a mainstay at malls just closed one of its last stores. ...

The Oregonian 03 May 2025
One of the last brick and mortar RadioShack stores closed last weekend, and that news will undoubtedly leave some feeling a little nostalgic ... Now, back to 2025 ... One of them is The Shack, which opened just last month in Moses Lake, Washington ... ....
Edit

Alan Liere’s hunting and fishing report for May 1, 2025

The Spokesman-Review 01 May 2025
The bite remains good on all the newly opened lakes, and most of the Seep lakes have good bank access ... The WBA has the Moses Lake Carp Classic scheduled for May 17. Registration is at Connelly Park on Moses Lake from 6-6.30 a.m.
Edit

Songs of belonging: EWU’s Mariachi Las Águilas helps communities embrace their culture on Cinco de Mayo

The Spokesman-Review 01 May 2025
... director; Jaqueline Itzel Medina Green, soprano and elementary music teacher at Moses Lake School District; and Vivianna Macias-Katzenstein, a member of EWU’s Orchestra and Repertory Jazz Band.
Edit

Money allocated for irrigation project north of I-90

The Spokesman-Review 30 Apr 2025
MOSES LAKE — About $44 million in state funding will be allocated to a section of the Odessa Groundwater Replacement Project as part of the Washington Senate’s capital budget ... Judy Warnick, R-Moses Lake.
Edit

PORT OF MOSES LAKE-ACQUISITION EXEMPTION-MOSES LAKE, WASHINGTON (Surface Transportation Board)

Public Technologies 29 Apr 2025
Part of Public RecordPort of Moses LakeAcquisition Exemption – Moses Lake, Washington ... 1)Port of Moses Lake – Acquisition Exemption – Moses Lake, Washington ... 3 Port of Moses Lake - Construction Exemption - Moses Lake, Wash., STB FD No.
Edit

These Joann stores are closing today: See the full list of locations

Hindustan Times 29 Apr 2025
The company owning the chain of Joann stores across the United States filed for bankruptcy back in January 2025 ... This group is based in the United States and is the decision maker behind Joann stores in the country ... City. Renton. Mall/Store ... Moses Lake.
Edit

Brothers welcome first asparagus harvest as Washington acreage hits ‘all-time low’

Capital Press 29 Apr 2025
ELTOPIA, Wash. — Jeremy and Zach Ward have been waiting three years to harvest their asparagus for the first time ... Early start ... Harvest began the week of April 14, said Meacham, commission chairman and manager of Friehe Farms near Moses Lake, Wash.
×