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

  • How To Make A Waving Wood American Flag / Rustic DIY Woodworking

    Rustic Wood American Flags are great! But in this video, we show you how to take it up a notch and build your own DIY Waving wood American Flag! #diy #americanflag #woodworking Buy A Flag From PatriotDIY: https://etsy.me/3EgID81 Download the Build Plans HERE: https://etsy.me/3Z39xYS SHOP HERE: Star Stencils: https://amzn.to/3lHnI7P Dremel 8250: https://amzn.to/3Khf4Y0 Dremel Flex Shaft: https://amzn.to/3YCkBN7 Engraving Bits: https://amzn.to/3IvcHPI Carving Disk: https://amzn.to/3I8VJFr Flapper Sanding Disk: https://amzn.to/3EaZpW8 Torch: https://amzn.to/3Ia3Std D-Ring Hangers: https://amzn.to/3HZF876 Pipe Clamps: https://amzn.to/3XESjjJ Angle Grinder: https://amzn.to/3S3YLQ7 Miter Saws: https://amzn.to/3eBMxLX Table Saws: https://amzn.to/3rZZMMb Jointer: https://amzn.to/3R4yEbj Planer:...

    published: 18 Feb 2023
  • A MUST HAVE JIG for anyone making American Flags

    Subscribe here and support this channel https://www.youtube.com/dwoodstudios Items I use Amazon Store https://www.amazon.com/shop/dwoodstudios Bundle of Build Plans and Template with stars: https://www.dwood.net Build Plans for this Flag!! https://www.dwood.net Build Plans for the Flag Jig Used! https://www.dwood.net Want to purchase one of my Flags and have it shipped click here!! https://www.dwood.net Click here for D-wood Swag..... https://www.dwood.net D-Wood website http://www.dwood.net Facebook http://www.facebook.com/dwoodmaker All safety should be used when working with tools or around a shop. I may not always follow proper safety rules, but you should always do so. I am in no way a model for safety and cannot be viewed as the how to guy. Do what you are comfortabl...

    published: 16 Jul 2017
  • Tom MacDonald & Adam Calhoun - "American Flags"

    DOWNLOAD THE ALBUM NOW: https://vydia.lnk.to/TheBrave2 DOWNLOAD "American Flags": https://geo.itunes.apple.com/us/album/1699218508?ls=1&app=itunes PRE-ORDER "The Brave 2": https://vydia.lnk.to/TheBrave2 Tom MacDonald & Adam Calhoun - American Flags (Official Music Video) Connect w/ Tom MacDonald: AUTOGRAPHED ALBUMS & MERCH: http://www.HangOverGang.com FACEBOOK: http://www.facebook.com/TomMacDonaldOfficial INSTAGRAM: http://www.instagram.com/hangovergang TWITTER: http://www.twitter.com/IAmTomMacDonald SPOTIFY: http://spoti.fi/2H35BQR iTUNES: https://apple.co/2BQucZO Connect w/ Adam Calhoun: INSTAGRAM: https://instagram.com/adamcalhoun1 YOUTUBE: https://youtube.com/channel/UC8Yx90YfnpSTXApA9_rYX-g WEBSITE: http://www.acalclothing.com WRITTEN BY Tom MacDonald & Adam Calhoun BEAT PRODUCED...

    published: 28 Jul 2023
  • They showed respect to the American flag ❤️

    published: 27 Apr 2023
  • Nylon vs Polyester U.S. Flag - Is One Better Than the Other?

    Both are similar in one way, but that's about it. Price and longevity show big differences! #flags #homestead

    published: 22 Nov 2022
  • Vipper American flag

    This flag is durable and well constructed. We have had it in our truck for quite awhile - we love to show off our American Pride. Order Yours Here: https://amzn.to/4et1g8x VIPPER American Flag 3x5 FT Outdoor - USA Heavy duty Nylon US Flags with Embroidered Stars, Sewn Stripes and Brass Grommets PROUDLY DISPLAY YOUR PATRIOTIC FEELINGS: When you buy the american flag, fly your US flag with pride. Express your love and your admiration for this great country! HIGHLY DURABLE AND FADE RESISTANT - Our 3x5 USA flags are expertly made using heavyweight deluxe nylon, making sure that every flag can survive in bad weather. Your 3x5 American Flag outdoor will always remain in good condition, as it is supported by 2 tough brass grommets and has a quadruple stitched hem. PERFECT EMBROIDERED STARS - ...

    published: 19 Sep 2024
  • Pledge of Allegiance

    "I pledge allegiance to the Flag of the United States of America, and to the Republic for which it stands, one Nation under God, indivisible, with liberty and justice for all."

    published: 09 Apr 2021
  • AMERICAN FLAG

    published: 29 Jan 2025
  • American Flag

    published: 21 Nov 2022
How To Make A Waving Wood American Flag / Rustic DIY Woodworking
14:58

How To Make A Waving Wood American Flag / Rustic DIY Woodworking

  • Order:
  • Duration: 14:58
  • Uploaded Date: 18 Feb 2023
  • views: 92580
Rustic Wood American Flags are great! But in this video, we show you how to take it up a notch and build your own DIY Waving wood American Flag! #diy #americanflag #woodworking Buy A Flag From PatriotDIY: https://etsy.me/3EgID81 Download the Build Plans HERE: https://etsy.me/3Z39xYS SHOP HERE: Star Stencils: https://amzn.to/3lHnI7P Dremel 8250: https://amzn.to/3Khf4Y0 Dremel Flex Shaft: https://amzn.to/3YCkBN7 Engraving Bits: https://amzn.to/3IvcHPI Carving Disk: https://amzn.to/3I8VJFr Flapper Sanding Disk: https://amzn.to/3EaZpW8 Torch: https://amzn.to/3Ia3Std D-Ring Hangers: https://amzn.to/3HZF876 Pipe Clamps: https://amzn.to/3XESjjJ Angle Grinder: https://amzn.to/3S3YLQ7 Miter Saws: https://amzn.to/3eBMxLX Table Saws: https://amzn.to/3rZZMMb Jointer: https://amzn.to/3R4yEbj Planer: https://amzn.to/3H9e4ls Orbital Sander: https://amzn.to/3kzktwt Wood Glue: https://amzn.to/3k93vE7 Custom Branding Iron: https://amzn.to/3EjjeKT Wood Scorch Pens: https://amzn.to/3SacTY0 Amazon: https://amzn.to/3KPE6eD Walmart: https://bit.ly/3BB0sOp Northern Tool: https://bit.ly/3u7C6Zg RealTruck: https://imp.i128439.net/WDeM3A ________________________________ OTHER TOOLS: Kobalt 10in Miter Saw: https://amzn.to/3ezSFEi Skil Table Saw: https://amzn.to/2W0ZoRt Circular Saw: https://amzn.to/3N9ddlR Skil Router Table: https://amzn.to/3r9bkNW Skil Router: https://amzn.to/33SGq3U Wen Track Saw: https://amzn.to/3BfTCM5 Track Saw Track: https://amzn.to/3kuScHw Drill/Driver Set: https://amzn.to/3kw0ezT Brad Nailer: https://amzn.to/3lgznHM Dewalt Framing Nail Gun: https://amzn.to/3FPkYKe Drill Press: https://amzn.to/3odD01x Band Saw: https://amzn.to/3TKzKZh Jig Saw: https://amzn.to/3G1cmzT Orbital Sander: https://amzn.to/3kzktwt Belt/Spindle Sanders: https://amzn.to/308z4HG Shop Vac: https://amzn.to/2UpolW8 Dustright Dust Separator: https://amzn.to/3rmzvHq Duststopper Bucket Separator: https://amzn.to/3kFIPVq Clamps: https://amzn.to/3EGP7Om Wood Glue: https://amzn.to/3k93vE7 Kreg Tools: https://amzn.to/3NgbefC Follow Us on: Facebook: www.facebook.com/patriotdiy Instagram: @PatriotDIY Etsy: www.etsy.com/shop/PatriotDIY Thanks For Watching! Please Like, Share, and Subscribe!
https://wn.com/How_To_Make_A_Waving_Wood_American_Flag_Rustic_Diy_Woodworking
A MUST HAVE JIG for anyone making American Flags
5:50

A MUST HAVE JIG for anyone making American Flags

  • Order:
  • Duration: 5:50
  • Uploaded Date: 16 Jul 2017
  • views: 208784
Subscribe here and support this channel https://www.youtube.com/dwoodstudios Items I use Amazon Store https://www.amazon.com/shop/dwoodstudios Bundle of Build Plans and Template with stars: https://www.dwood.net Build Plans for this Flag!! https://www.dwood.net Build Plans for the Flag Jig Used! https://www.dwood.net Want to purchase one of my Flags and have it shipped click here!! https://www.dwood.net Click here for D-wood Swag..... https://www.dwood.net D-Wood website http://www.dwood.net Facebook http://www.facebook.com/dwoodmaker All safety should be used when working with tools or around a shop. I may not always follow proper safety rules, but you should always do so. I am in no way a model for safety and cannot be viewed as the how to guy. Do what you are comfortable doing and nothing more.
https://wn.com/A_Must_Have_Jig_For_Anyone_Making_American_Flags
Tom MacDonald & Adam Calhoun - "American Flags"
3:34

Tom MacDonald & Adam Calhoun - "American Flags"

  • Order:
  • Duration: 3:34
  • Uploaded Date: 28 Jul 2023
  • views: 21362459
DOWNLOAD THE ALBUM NOW: https://vydia.lnk.to/TheBrave2 DOWNLOAD "American Flags": https://geo.itunes.apple.com/us/album/1699218508?ls=1&app=itunes PRE-ORDER "The Brave 2": https://vydia.lnk.to/TheBrave2 Tom MacDonald & Adam Calhoun - American Flags (Official Music Video) Connect w/ Tom MacDonald: AUTOGRAPHED ALBUMS & MERCH: http://www.HangOverGang.com FACEBOOK: http://www.facebook.com/TomMacDonaldOfficial INSTAGRAM: http://www.instagram.com/hangovergang TWITTER: http://www.twitter.com/IAmTomMacDonald SPOTIFY: http://spoti.fi/2H35BQR iTUNES: https://apple.co/2BQucZO Connect w/ Adam Calhoun: INSTAGRAM: https://instagram.com/adamcalhoun1 YOUTUBE: https://youtube.com/channel/UC8Yx90YfnpSTXApA9_rYX-g WEBSITE: http://www.acalclothing.com WRITTEN BY Tom MacDonald & Adam Calhoun BEAT PRODUCED BY Tom MacDonald DIRECTED & SHOT by Nova Rockafeller http://www.instagram.com/NovaRockafeller VFX by Jared Potter MIXED & MASTERED by Evan Morgan http://www.evanmorganproductions.com http://www.youtube.com/user/emorganproductions http://www.instagram.com/EMorganProductions #TomMacDonald #AdamCalhoun #AmericanFlags
https://wn.com/Tom_Macdonald_Adam_Calhoun_American_Flags
They showed respect to the American flag ❤️
0:17

They showed respect to the American flag ❤️

  • Order:
  • Duration: 0:17
  • Uploaded Date: 27 Apr 2023
  • views: 79619814
https://wn.com/They_Showed_Respect_To_The_American_Flag_❤️
Nylon vs Polyester U.S. Flag - Is One Better Than the Other?
6:52

Nylon vs Polyester U.S. Flag - Is One Better Than the Other?

  • Order:
  • Duration: 6:52
  • Uploaded Date: 22 Nov 2022
  • views: 9998
Both are similar in one way, but that's about it. Price and longevity show big differences! #flags #homestead
https://wn.com/Nylon_Vs_Polyester_U.S._Flag_Is_One_Better_Than_The_Other
Vipper American flag
1:23

Vipper American flag

  • Order:
  • Duration: 1:23
  • Uploaded Date: 19 Sep 2024
  • views: 186
This flag is durable and well constructed. We have had it in our truck for quite awhile - we love to show off our American Pride. Order Yours Here: https://amzn.to/4et1g8x VIPPER American Flag 3x5 FT Outdoor - USA Heavy duty Nylon US Flags with Embroidered Stars, Sewn Stripes and Brass Grommets PROUDLY DISPLAY YOUR PATRIOTIC FEELINGS: When you buy the american flag, fly your US flag with pride. Express your love and your admiration for this great country! HIGHLY DURABLE AND FADE RESISTANT - Our 3x5 USA flags are expertly made using heavyweight deluxe nylon, making sure that every flag can survive in bad weather. Your 3x5 American Flag outdoor will always remain in good condition, as it is supported by 2 tough brass grommets and has a quadruple stitched hem. PERFECT EMBROIDERED STARS - Using expert and precise craftsmanship, we delicately embroider the stars and stitch them onto the flag by independent splice double stitch stitching. To improve the flag's durability, we use four rows of stitches and two rows of lock stitches on the hem. By doing this, we improve the flag's resistance to wear and tear, ensuring that the flag will serve you for a long time. IDEAL FOR A WIDE VARIETY OF OCCASIONS - You can tie it to your car and fly it proudly while traveling. A US flag can also be tied outdoors, by the entrance to a farm. It can also serve as an amazing, all-American gift for your friends and family. American flags can be hung on your room, on the outside of a window, a corridor, and, of course, on a flagpole by the front door. DURABLE AND STRONGEST - We make sure we provide you with an amazingly sturdy product that you can easily express your love for this great nation. AMAZON STOREFRONT: https://www.amazon.com/shop/diyonthehouse HOW TO CHANNEL: https://www.youtube.com/@DIYOnTheHouse Instagram: https://www.instagram.com/diyonthehouse/ Facebook: https://www.facebook.com/diyonthehouse/ Website: https://diyonthehouse.com/ PLEASE SUBSCRIBE to both our Channels! https://www.youtube.com/diyonthehouse https://bit.ly/diyreviews DISCLAIMER: This video and description contain affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This payment helps support the channel and allows us to continue to make videos like this. Thank you for your support!
https://wn.com/Vipper_American_Flag
Pledge of Allegiance
0:27

Pledge of Allegiance

  • Order:
  • Duration: 0:27
  • Uploaded Date: 09 Apr 2021
  • views: 1701516
"I pledge allegiance to the Flag of the United States of America, and to the Republic for which it stands, one Nation under God, indivisible, with liberty and justice for all."
https://wn.com/Pledge_Of_Allegiance
AMERICAN FLAG
0:15

AMERICAN FLAG

  • Order:
  • Duration: 0:15
  • Uploaded Date: 29 Jan 2025
  • views: 345
https://wn.com/American_Flag
American Flag
0:04

American Flag

  • Order:
  • Duration: 0:04
  • Uploaded Date: 21 Nov 2022
  • views: 111184
https://wn.com/American_Flag
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • How To Make A Waving Wood American Flag / Rustic DIY Woodworking
    14:58
    How To Make A Waving Wood American Flag / Rustic DIY Woodworkingremove from playlist
  • A MUST HAVE JIG for anyone making American Flags
    5:50
    A MUST HAVE JIG for anyone making American Flagsremove from playlist
  • Tom MacDonald & Adam Calhoun -
    3:34
    Tom MacDonald & Adam Calhoun - "American Flags"remove from playlist
  • Nylon vs Polyester U.S. Flag - Is One Better Than the Other?
    6:52
    Nylon vs Polyester U.S. Flag - Is One Better Than the Other?remove from playlist
  • Vipper American flag
    1:23
    Vipper American flagremove from playlist
  • Pledge of Allegiance
    0:27
    Pledge of Allegianceremove from playlist
PLAYLIST TIME:

How To Make A Waving Wood American Flag / Rustic DIY Woodworking

Rustic Wood American Flags are great! But in this video, we show you how to take it up a notch and build your own DIY Waving wood American Flag! #diy #americanflag #woodworking Buy A Flag From PatriotDIY: https://etsy.me/3EgID81 Download the Build Plans HERE: https://etsy.me/3Z39xYS SHOP HERE: Star Stencils: https://amzn.to/3lHnI7P Dremel 8250: https://amzn.to/3Khf4Y0 Dremel Flex Shaft: https://amzn.to/3YCkBN7 Engraving Bits: https://amzn.to/3IvcHPI Carving Disk: https://amzn.to/3I8VJFr Flapper Sanding Disk: https://amzn.to/3EaZpW8 Torch: https://amzn.to/3Ia3Std D-Ring Hangers: https://amzn.to/3HZF876 Pipe Clamps: https://amzn.to/3XESjjJ Angle Grinder: https://amzn.to/3S3YLQ7 Miter Saws: https://amzn.to/3eBMxLX Table Saws: https://amzn.to/3rZZMMb Jointer: https://amzn.to/3R4yEbj Planer: https://amzn.to/3H9e4ls Orbital Sander: https://amzn.to/3kzktwt Wood Glue: https://amzn.to/3k93vE7 Custom Branding Iron: https://amzn.to/3EjjeKT Wood Scorch Pens: https://amzn.to/3SacTY0 Amazon: https://amzn.to/3KPE6eD Walmart: https://bit.ly/3BB0sOp Northern Tool: https://bit.ly/3u7C6Zg RealTruck: https://imp.i128439.net/WDeM3A ________________________________ OTHER TOOLS: Kobalt 10in Miter Saw: https://amzn.to/3ezSFEi Skil Table Saw: https://amzn.to/2W0ZoRt Circular Saw: https://amzn.to/3N9ddlR Skil Router Table: https://amzn.to/3r9bkNW Skil Router: https://amzn.to/33SGq3U Wen Track Saw: https://amzn.to/3BfTCM5 Track Saw Track: https://amzn.to/3kuScHw Drill/Driver Set: https://amzn.to/3kw0ezT Brad Nailer: https://amzn.to/3lgznHM Dewalt Framing Nail Gun: https://amzn.to/3FPkYKe Drill Press: https://amzn.to/3odD01x Band Saw: https://amzn.to/3TKzKZh Jig Saw: https://amzn.to/3G1cmzT Orbital Sander: https://amzn.to/3kzktwt Belt/Spindle Sanders: https://amzn.to/308z4HG Shop Vac: https://amzn.to/2UpolW8 Dustright Dust Separator: https://amzn.to/3rmzvHq Duststopper Bucket Separator: https://amzn.to/3kFIPVq Clamps: https://amzn.to/3EGP7Om Wood Glue: https://amzn.to/3k93vE7 Kreg Tools: https://amzn.to/3NgbefC Follow Us on: Facebook: www.facebook.com/patriotdiy Instagram: @PatriotDIY Etsy: www.etsy.com/shop/PatriotDIY Thanks For Watching! Please Like, Share, and Subscribe!
14:58
How To Make A Waving Wood American Flag / Rustic DIY Woodworking
Rustic Wood American Flags are great! But in this video, we show you how to take it up a n...
published: 18 Feb 2023
Play in Full Screen
5:50
A MUST HAVE JIG for anyone making American Flags
Subscribe here and support this channel https://www.youtube.com/dwoodstudios Items I us...
published: 16 Jul 2017
Play in Full Screen
3:34
Tom MacDonald & Adam Calhoun - "American Flags"
DOWNLOAD THE ALBUM NOW: https://vydia.lnk.to/TheBrave2 DOWNLOAD "American Flags": https:/...
published: 28 Jul 2023
Play in Full Screen
0:17
They showed respect to the American flag ❤️
published: 27 Apr 2023
Play in Full Screen
6:52
Nylon vs Polyester U.S. Flag - Is One Better Than the Other?
Both are similar in one way, but that's about it. Price and longevity show big difference...
published: 22 Nov 2022
Play in Full Screen
1:23
Vipper American flag
This flag is durable and well constructed. We have had it in our truck for quite awhile -...
published: 19 Sep 2024
Play in Full Screen
0:27
Pledge of Allegiance
"I pledge allegiance to the Flag of the United States of America, and to the Republic for ...
published: 09 Apr 2021
Play in Full Screen
0:15
AMERICAN FLAG
published: 29 Jan 2025
Play in Full Screen
0:04
American Flag
published: 21 Nov 2022
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: american flag

Edit

Pope Leo XIV calls for peace in Ukraine and Gaza in symbolically rich blessing on ...

Manila Bulletin 12 May 2025
“I have trust.”More than 50 pilgrims from Houston, Texas, were in the square, too, waving three large American flags ... Dominic Nguyen, who led the Vietnamese American group.
Edit

Alcatraz's last living inmate and MAGA fan gives shock take on Trump's plan to re-open ...

The Daily Mail 12 May 2025
The plan was rolled out by Trump earlier this month standing behind a podium draped in American flags ... But for Trump, who has already begun to send gang members and has even proposed sending American ...
Edit

Quakers march against Trump's crackdown on immigrants, carrying on long faith tradition

York News-Times 12 May 2025
"Within the DNA of Quakerism is actions speaking out against authority," said Brubeck, who was marching along a trail in New Jersey with companions waving an upside-down American flag — intended to serve as a signal of distress.
Edit

Veterans reach halfway point carrying American flag across the US

Carrollton Leader 11 May 2025
OKLAHOMA/TEXAS (KTEN) — Twelve military veterans carrying an American flag while running a 7-8 minute/mile pace just passed the 1,500-mile halfway point Saturday on the border of Oklahoma and Texas.
Edit

Ringgold Honors Fallen Soldiers

Walker & Catoosa County News 11 May 2025
This month more than 2,000 American flags and memorial crosses will be raised throughout Ringgold to honor fallen soldiers who’ve called Catoosa County home ... Flags and crosses will line portions of U.S.
Edit

Letters for May 11

The Spokesman-Review 11 May 2025
Honor the flag ... Freedom of speech is a foundation of our American democracy. What is very disturbing is the desecration of the American flag ... Thousands and thousands of Americans have fought and died to protect what our American flag represents.
Edit

Trump wants to upend American holidays

CNN 11 May 2025
It’s also Flag Day, when the Continental Congress adopted the American flag. “I view it for Flag Day, not necessarily my birthday,” Trump told NBC News in a recent interview ... Americans continued ...
Edit

Bill Maher warns Democrats are ‘doomed’ if they don’t get control of young radicals cheering ...

New York Post 11 May 2025
Maher also lamented how crowdgoers threw a Palestinian flag over an American flag at a recent Sen ... This is,’” he said, showing a photo of an American flag.
Edit

Almost a year after one DC protest, police continue using surveillance tactics to make arrests

Wtop 11 May 2025
Snow was identified by the FBI using a photo posted to X and surveillance video showing him taking down and burning an American Flag, which was property of the National Park Service, among a crowd of protestors, according to a release.
Edit

Pope Leo XIV calls for peace in Ukraine and Gaza, saying 'Never again war'

WPTV 11 May 2025
More than 50 pilgrims from Houston, Texas, were in the square too, waving three large American flags ... Dominic Nguyen, who led the Vietnamese American group.
Edit

Bar Harbor’s town pier is new front in cruise ship debate

Bangor Daily News 11 May 2025
Earlier this year, the town council approved the tendering of American Cruise Line ships on the town pier. These smaller ships are American flagged and do not require customs operations and security procedures that international flagged ships do ... ....
Edit

Supreme House of Pizza; Brockton veteran who died without family honored; 5 top stories

The Enterprise - Brockton 11 May 2025
Hundreds of Arnone School students lined Newbury Street, waving American flags and saluting to honor a veteran who died without family.
Edit

Manhattan rally blasts ICE as ‘Trump’s gestapo’ a day after NJ mayor arrested while visiting ...

The Villager 11 May 2025
One protester also waved an upside-down American flag — a symbol of distress. One protester at the May 10 rally in Foley Square also waved an upside-down American flag — a symbol of distress.Photo by Lloyd Mitchell ... Photo by Lloyd Mitchell ... ....
×