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

Anthony Wayne

Anthony Wayne (January 1, 1745 – December 15, 1796) was a United States Army officer, statesman, and member of the United States House of Representatives. Wayne adopted a military career at the outset of the American Revolutionary War, where his military exploits and fiery personality quickly earned him promotion to brigadier general and the sobriquet Mad Anthony. He later served as General in Chief of the Army and commanded the Legion of the United States.

Early life

Wayne was one of five children born to Isaac Wayne and Elizabeth Iddings Wayne in Easttown Township, near present-day Paoli, Chester County, Pennsylvania. His father had emigrated from Ireland, and was part of a Protestant Anglo-Irish family. Wayne was born on January 1, 1745, on his family's Waynesborough estate. He was educated as a surveyor at his uncle's private academy in Philadelphia, as well as at the College of Philadelphia (now the University of Pennsylvania), where he was in the class of 1765, although he did not earn a degree. In 1765 he was sent by Benjamin Franklin and some associates to work for a year surveying land granted in Nova Scotia, and he assisted with starting a settlement the following year at The Township of Monckton. In 1767 he returned to work in his father's tannery, while continuing work as a surveyor. He became a prominent figure in Chester County and served in the Pennsylvania legislature from 1774–80. He married Mary Penrose in 1766 and they had two children. Their daughter Margretta was born in 1770 and their son Isaac Wayne, future U.S. Representative from Pennsylvania, was born in 1772.

Anthony Wayne (disambiguation)

Anthony Wayne was a United States Army general during the American Revolutionary War.

Anthony Wayne may also refer to:

  • Anthony Wayne High School, in Whitehouse, Ohio
  • Anthony Wayne Generals, the athletic teams of Anthony Wayne High School
  • Anthony Wayne Bridge, in Toledo, Ohio
  • Anthony Wayne Local School District, a school district in Northwest Ohio
  • Anthony Wayne Elementary School, Erie, Pennsylvania
  • See also

  • Earl Anthony Wayne, United States international policy maker and diplomat
  • Anthony Wayne England, former NASA Astronaut
  • Anthony Wayne (Gregory)

    Anthony Wayne is a gilded bronze equestrian sculpture of Anthony Wayne, by John Gregory at the Philadelphia Museum of Art. It is located at 26th Street and the Benjamin Franklin Parkway. It was dedicated on September 17, 1937.

    The inscription reads:
    (Base, plaques on both north and south sides:)
    Sons of the Revolution
    Exegi Monumentum Aere Perennius 1776-1883
    (Base, north side above plaque, in raised letters:)
    Anthony Wayne
    1745-1796
    The inscription at the foot of base reads:
    Anthony Wayne
    A memorial of his valour
    a tribute to his achievements
    in the War of Independence
    The Pennsylvania Society
    Sons of the Revolution
    Here inscribe his name
    in honor
    1937.

    See also

  • List of public art in Philadelphia
  • References

    External links

    Podcasts:

    Wayne Anthony

    ALBUMS

    Supa Chiney 8.1

    • Anthony Wayne - America's Forgotten Founders

      ⚔️ Explore the thrilling life of Anthony Wayne, the daring and audacious general who earned the nickname 'Mad Anthony' during the American Revolution! ⚔️ In this action-packed video, we'll delve into the life and military career of General Anthony Wayne, a fearless leader who played a vital role in securing America's independence. From his early years to his meteoric rise through the ranks, Wayne's story is filled with bravery, tactical genius, and unwavering commitment to the cause of freedom. About the channel: America's Forgotten Founders is a deep dive into the early history of the United States, with a focus on the founding fathers and mothers that you're probably not as familiar with. If you're new to the channel, please start with the prologue episode https://www.youtube.com/watch...

      published: 30 Apr 2023
    • General Anthony Wayne | What made him MAD?

      Delving into why Pennsylvania's own General Anthony Wayne was called "MAD". MERCH - https://scottsoddyseey.myspreadshop.com/ Become a Patron on Patreon and gain access to more of the ODDySEEy: https://patreon.com/ODDySEEy Alternately, make a donation at https://paypal.me/ODDySEEy I could always use your help!!! Show Music by Jack Servello (More about Jack here: https://www.facebook.com/jservello​​ ) #AnthonyWayne #MadAnthony #History ----------------------------------------------------------------------- ----- My Current Gear used in these recordings ----- The HAT - https://amzn.to/3qaFkHF Backpack: https://amzn.to/2xXnKzK Lavalier Microphone: https://amzn.to/2S7ipNm Main Video Camera: https://amzn.to/3bF8fv6 Camera Accessories (you need these): https://amzn.to/2W34fOe Came...

      published: 05 Nov 2023
    • General Anthony Wayne - Revolutionary War Hero

      Anthony Wayne was a military leader and politician in 18th century America. He was born in Pennsylvania in 1745 and served in the Continental Army during the American Revolution. After the war, he was appointed as the commander-in-chief of the newly formed Legion of the United States, and led successful campaigns against Native American tribes in the Northwest Territory. He was also a delegate to the Constitutional Convention in 1787 and served in the U.S. House of Representatives. Wayne died in 1796 at the age of 51 and is remembered as a hero of the American Revolution and a pioneer of the early United States.

      published: 08 Feb 2023
    • Big Board Friday Playoffs Week 1: Rhodes vs. Anthony Wayne

      Check out the action and more here: https://www.wtol.com/big-board-friday

      published: 02 Nov 2024
    • Anthony Wayne Generals | Big Board Friday Countdown

      The Generals last season went 10-3, won a share of the first NLL Buckeye Division title and made it back to the regional semifinals. Subscribe to WTOL 11 - https://bit.ly/32odAkM Connect with us on social media: Go 419 Facebook - https://www.facebook.com/Go419/ Facebook - https://www.facebook.com/wtol11/ Twitter - https://twitter.com/WTOL11Toledo/ Instagram - https://www.instagram.com/wtol11toledo/ WTOL 11 newsletter - https://wtol.com/email WTOL 11 News app - https://interactive.wtol.com/appredirect/ WTOL 11 Weather app - http://onelink.to/wtol11weather

      published: 06 Aug 2024
    • When Wayne asks Anthony is Shayla baby his

      - Wayne Colley, better known as “Kountry Wayne”, is not your average skit-standup comedian. If you asked him to describe himself, he would say he is just a reserved vegan and father of eight who wants what’s best for his kids. Hailing from Millen, Georgia, Wayne grew up with aspirations of becoming a super-star rapper, but those ambitions quickly changed when he posted a video to Facebook and became a viral sensation overnight. Wayne attacked his new found fame head on and grew his audience to over 10 Million followers across Facebook & Instagram by delivering liked content on a daily basis. With his humble roots and unbridled energy it’s clear Wayne will be making people laugh for years to come. (Improv) #KountryWayne #Jesusispoppin #God #Jesusbeenpoppin #WayneColley #letthatsizzleinyour...

      published: 15 Jan 2025
    • The incredible story of "Mad Anthony" Wayne!

      Anthony tells us about the founding father and United States officer "Mad Anthony" Wayne! Taken from Episode 41: Pick 10. You can also listen to us on: SoundCloud: https://soundcloud.com/reviewing-history Apple Podcasts: https://podcasts.apple.com/us/podcast/reviewing-history/id1623423054 Pandora: https://www.pandora.com/podcast/reviewing-history/PC:1000704088 #reviewinghistory #history #comedy #podcast #movies #film #cinema #lol #lmao #funny #navy #usnavy #america #ireland #king #obrien #madanthony #mad #anthony #america #usa #officer #brian #stephen #comedypodcast #historypodcast #ushistory #usnavy

      published: 25 Feb 2023
    • Big Board Friday Playoffs Week 3: Highland vs. Anthony Wayne

      Check out the action and more here: https://www.wtol.com/big-board-friday

      published: 16 Nov 2024
    • [FREE] Lil Wayne x Young Thug Type Beat - "Corvette" | Hyper Bouncy Instrumental 2025

      💿Prod. RockStarGoose (credit me if you use this beat) 🚫Free for non-profit only! So if you want to monetize your music and release your track on major platforms like Spotify/Apple Music etc. you should purchase or rent the beat. 💸Purchase This Beat (untagged): https://bsta.rs/cyNkug ❤️Bpm - 140 |🎵Key - Dmin Contacts: 📩Email - rockstargoose1@gmail.com 📸Instagram - https://www.instagram.com/rockstargoose/ 🅱️Beatstars - https://www.beatstars.com/rockstargoose/ . . . . . . . . . . . . . . . #lilwayne #lilwaynetypebeat #typebeat #typebeat2025 #youngthug #youngthugtypebeat hip hop beats, instrumental, hip hop, beats, instrumental hiphop, instrumental hip hop, trap instrumental, rap beats, old school, rap beats for sale, buy rap beats, trap beats, buy rap beat, buy rap beats online, rap b...

      published: 18 Jan 2025
    • Discovering 'Mad Anthony' Wayne: Revolutionary War #history #shorts

      Explore the daring exploits of Anthony Wayne, famously known as "Mad Anthony," during the American Revolution. From his fearless leadership at Stony Point to securing American control at the Battle of Fallen Timbers, Wayne's bravery and strategic prowess left an indelible mark on American history. Join us to uncover the remarkable story of this Revolutionary War hero.

      published: 15 Jun 2024
    Anthony Wayne - America's Forgotten Founders
    20:08

    Anthony Wayne - America's Forgotten Founders

    • Order:
    • Duration: 20:08
    • Uploaded Date: 30 Apr 2023
    • views: 5638
    ⚔️ Explore the thrilling life of Anthony Wayne, the daring and audacious general who earned the nickname 'Mad Anthony' during the American Revolution! ⚔️ In this action-packed video, we'll delve into the life and military career of General Anthony Wayne, a fearless leader who played a vital role in securing America's independence. From his early years to his meteoric rise through the ranks, Wayne's story is filled with bravery, tactical genius, and unwavering commitment to the cause of freedom. About the channel: America's Forgotten Founders is a deep dive into the early history of the United States, with a focus on the founding fathers and mothers that you're probably not as familiar with. If you're new to the channel, please start with the prologue episode https://www.youtube.com/watch?v=UZa5l-C1Kcc.
    https://wn.com/Anthony_Wayne_America's_Forgotten_Founders
    General Anthony Wayne | What made him MAD?
    31:14

    General Anthony Wayne | What made him MAD?

    • Order:
    • Duration: 31:14
    • Uploaded Date: 05 Nov 2023
    • views: 2101
    Delving into why Pennsylvania's own General Anthony Wayne was called "MAD". MERCH - https://scottsoddyseey.myspreadshop.com/ Become a Patron on Patreon and gain access to more of the ODDySEEy: https://patreon.com/ODDySEEy Alternately, make a donation at https://paypal.me/ODDySEEy I could always use your help!!! Show Music by Jack Servello (More about Jack here: https://www.facebook.com/jservello​​ ) #AnthonyWayne #MadAnthony #History ----------------------------------------------------------------------- ----- My Current Gear used in these recordings ----- The HAT - https://amzn.to/3qaFkHF Backpack: https://amzn.to/2xXnKzK Lavalier Microphone: https://amzn.to/2S7ipNm Main Video Camera: https://amzn.to/3bF8fv6 Camera Accessories (you need these): https://amzn.to/2W34fOe Camera Lenses: https://amzn.to/3cOrAKp Camera Stand: https://amzn.to/3aAK4wp Drone: DJI Air 2 https://amzn.to/3gCw7TX ----------------------------------------------------------------------- Like my page on Facebook: https://www.facebook.com/ODDySEEy Or friend me: https://www.facebook.com/ODDySEEyofScott **What I do is Community, not Competition**
    https://wn.com/General_Anthony_Wayne_|_What_Made_Him_Mad
    General Anthony Wayne - Revolutionary War Hero
    2:41

    General Anthony Wayne - Revolutionary War Hero

    • Order:
    • Duration: 2:41
    • Uploaded Date: 08 Feb 2023
    • views: 953
    Anthony Wayne was a military leader and politician in 18th century America. He was born in Pennsylvania in 1745 and served in the Continental Army during the American Revolution. After the war, he was appointed as the commander-in-chief of the newly formed Legion of the United States, and led successful campaigns against Native American tribes in the Northwest Territory. He was also a delegate to the Constitutional Convention in 1787 and served in the U.S. House of Representatives. Wayne died in 1796 at the age of 51 and is remembered as a hero of the American Revolution and a pioneer of the early United States.
    https://wn.com/General_Anthony_Wayne_Revolutionary_War_Hero
    Big Board Friday Playoffs Week 1: Rhodes vs. Anthony Wayne
    0:31

    Big Board Friday Playoffs Week 1: Rhodes vs. Anthony Wayne

    • Order:
    • Duration: 0:31
    • Uploaded Date: 02 Nov 2024
    • views: 365
    Check out the action and more here: https://www.wtol.com/big-board-friday
    https://wn.com/Big_Board_Friday_Playoffs_Week_1_Rhodes_Vs._Anthony_Wayne
    Anthony Wayne Generals | Big Board Friday Countdown
    1:41

    Anthony Wayne Generals | Big Board Friday Countdown

    • Order:
    • Duration: 1:41
    • Uploaded Date: 06 Aug 2024
    • views: 294
    The Generals last season went 10-3, won a share of the first NLL Buckeye Division title and made it back to the regional semifinals. Subscribe to WTOL 11 - https://bit.ly/32odAkM Connect with us on social media: Go 419 Facebook - https://www.facebook.com/Go419/ Facebook - https://www.facebook.com/wtol11/ Twitter - https://twitter.com/WTOL11Toledo/ Instagram - https://www.instagram.com/wtol11toledo/ WTOL 11 newsletter - https://wtol.com/email WTOL 11 News app - https://interactive.wtol.com/appredirect/ WTOL 11 Weather app - http://onelink.to/wtol11weather
    https://wn.com/Anthony_Wayne_Generals_|_Big_Board_Friday_Countdown
    When Wayne asks Anthony is Shayla baby his
    4:13

    When Wayne asks Anthony is Shayla baby his

    • Order:
    • Duration: 4:13
    • Uploaded Date: 15 Jan 2025
    • views: 217614
    - Wayne Colley, better known as “Kountry Wayne”, is not your average skit-standup comedian. If you asked him to describe himself, he would say he is just a reserved vegan and father of eight who wants what’s best for his kids. Hailing from Millen, Georgia, Wayne grew up with aspirations of becoming a super-star rapper, but those ambitions quickly changed when he posted a video to Facebook and became a viral sensation overnight. Wayne attacked his new found fame head on and grew his audience to over 10 Million followers across Facebook & Instagram by delivering liked content on a daily basis. With his humble roots and unbridled energy it’s clear Wayne will be making people laugh for years to come. (Improv) #KountryWayne #Jesusispoppin #God #Jesusbeenpoppin #WayneColley #letthatsizzleinyourspirit #helpisontheway #love #relationships New Collection!! https://kountrywayne.com/merch/ Check me out! Instagram | https://www.instagram.com/kountrywayne/ TikTok | https://www.tiktok.com/@kountry_wayne Facebook | https://www.facebook.com/KingKountryWayne Merch | https://shopkountrywayne.com Website | https://kountrywayne.com My comedy tour! https://kountrywayne.com/tour/ Kountry Wayne Skits (Wayne Colley)
    https://wn.com/When_Wayne_Asks_Anthony_Is_Shayla_Baby_His
    The incredible story of "Mad Anthony" Wayne!
    8:14

    The incredible story of "Mad Anthony" Wayne!

    • Order:
    • Duration: 8:14
    • Uploaded Date: 25 Feb 2023
    • views: 990
    Anthony tells us about the founding father and United States officer "Mad Anthony" Wayne! Taken from Episode 41: Pick 10. You can also listen to us on: SoundCloud: https://soundcloud.com/reviewing-history Apple Podcasts: https://podcasts.apple.com/us/podcast/reviewing-history/id1623423054 Pandora: https://www.pandora.com/podcast/reviewing-history/PC:1000704088 #reviewinghistory #history #comedy #podcast #movies #film #cinema #lol #lmao #funny #navy #usnavy #america #ireland #king #obrien #madanthony #mad #anthony #america #usa #officer #brian #stephen #comedypodcast #historypodcast #ushistory #usnavy
    https://wn.com/The_Incredible_Story_Of_Mad_Anthony_Wayne
    Big Board Friday Playoffs Week 3: Highland vs. Anthony Wayne
    2:11

    Big Board Friday Playoffs Week 3: Highland vs. Anthony Wayne

    • Order:
    • Duration: 2:11
    • Uploaded Date: 16 Nov 2024
    • views: 671
    Check out the action and more here: https://www.wtol.com/big-board-friday
    https://wn.com/Big_Board_Friday_Playoffs_Week_3_Highland_Vs._Anthony_Wayne
    [FREE] Lil Wayne x Young Thug Type Beat - "Corvette" | Hyper Bouncy Instrumental 2025
    2:18

    [FREE] Lil Wayne x Young Thug Type Beat - "Corvette" | Hyper Bouncy Instrumental 2025

    • Order:
    • Duration: 2:18
    • Uploaded Date: 18 Jan 2025
    • views: 214
    💿Prod. RockStarGoose (credit me if you use this beat) 🚫Free for non-profit only! So if you want to monetize your music and release your track on major platforms like Spotify/Apple Music etc. you should purchase or rent the beat. 💸Purchase This Beat (untagged): https://bsta.rs/cyNkug ❤️Bpm - 140 |🎵Key - Dmin Contacts: 📩Email - rockstargoose1@gmail.com 📸Instagram - https://www.instagram.com/rockstargoose/ 🅱️Beatstars - https://www.beatstars.com/rockstargoose/ . . . . . . . . . . . . . . . #lilwayne #lilwaynetypebeat #typebeat #typebeat2025 #youngthug #youngthugtypebeat hip hop beats, instrumental, hip hop, beats, instrumental hiphop, instrumental hip hop, trap instrumental, rap beats, old school, rap beats for sale, buy rap beats, trap beats, buy rap beat, buy rap beats online, rap beats with hooks for sale, young thug type beats, dark trap instrumental, drake type beat, future type beat, future type beat 2024, future type beat free, drake type beat, type beat, free type beat, drake, drake instrumental, drake type beat 2024, free drake type beat, drake type beats, drake type beat free, drake type beat no tags, rap instrumental, drake type instrumental, type beat 2024, drake type beats 2024 free, free type beat 2024, anthony sweats, anthony sweats type beat, anthony sweats lil wayne, freestyle type beat, young thug, young thug type beat, young thug beat 2024, lil wayne, lil wayne type beat, lil wayne type beat 2024, 2 chainz, 2 chainz type beat, 2 chainz type beat 2024, rich gang, rich gang type beat 2024, rich gang type beat, birdman, birdman type beat, birdman type beat 2024, rick ross, rick ross type beat, rick ross type beat 2024, asap ferg, asap ferg type beat, asap ferg type beat 2024, eminem, eminem type beat, eminem type beat 2024, chief keef, chief keef type beat, chief keef type beat 2024 waka flocka flame, waka flocka flame type beat, waka flocka flame type beat 2024, gucci mane, gucci mane type beat, gucci mane type beat 2024, old gucci mane, new gucci mane, meek mill, meek mill type beat, meek mill type beat 2024, timberland, timberland type beat, timberland type beat 2024, jay-z, jay-z type beat, jay-z type beat 2024, 50 cent, 50 cent type beat, 50 cent type beat 2024, timbaland, timbaland type beat, timbaland type beat 2024, t.i. , t.i. type beat, t.i. type beat 2024, beatstars, beat for sale, beat 4 sale, beats for sale, sale beats, buy beats, buy beats online, hard beat, hard beats, hard instrumental, hard instrumentals, hard type beat, hard type beats, aggressive beat, aggressive beats
    https://wn.com/Free_Lil_Wayne_X_Young_Thug_Type_Beat_Corvette_|_Hyper_Bouncy_Instrumental_2025
    Discovering 'Mad Anthony' Wayne: Revolutionary War  #history #shorts
    0:42

    Discovering 'Mad Anthony' Wayne: Revolutionary War #history #shorts

    • Order:
    • Duration: 0:42
    • Uploaded Date: 15 Jun 2024
    • views: 986
    Explore the daring exploits of Anthony Wayne, famously known as "Mad Anthony," during the American Revolution. From his fearless leadership at Stony Point to securing American control at the Battle of Fallen Timbers, Wayne's bravery and strategic prowess left an indelible mark on American history. Join us to uncover the remarkable story of this Revolutionary War hero.
    https://wn.com/Discovering_'Mad_Anthony'_Wayne_Revolutionary_War_History_Shorts
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Anthony Wayne - America's Forgotten Founders
      20:08
      Anthony Wayne - America's Forgotten Foundersremove from playlist
    • General Anthony Wayne | What made him MAD?
      31:14
      General Anthony Wayne | What made him MAD?remove from playlist
    • General Anthony Wayne - Revolutionary War Hero
      2:41
      General Anthony Wayne - Revolutionary War Heroremove from playlist
    • Anthony Wayne Generals | Big Board Friday Countdown
      1:41
      Anthony Wayne Generals | Big Board Friday Countdownremove from playlist
    • When Wayne asks Anthony is Shayla baby his
      4:13
      When Wayne asks Anthony is Shayla baby hisremove from playlist
    • The incredible story of
      8:14
      The incredible story of "Mad Anthony" Wayne!remove from playlist
    • [FREE] Lil Wayne x Young Thug Type Beat -
      2:18
      [FREE] Lil Wayne x Young Thug Type Beat - "Corvette" | Hyper Bouncy Instrumental 2025remove from playlist
    • Discovering 'Mad Anthony' Wayne: Revolutionary War  #history #shorts
      0:42
      Discovering 'Mad Anthony' Wayne: Revolutionary War #history #shortsremove from playlist
    PLAYLIST TIME: 0:00 / 1:13:53

    Anthony Wayne - America's Forgotten Founders

    ⚔️ Explore the thrilling life of Anthony Wayne, the daring and audacious general who earned the nickname 'Mad Anthony' during the American Revolution! ⚔️ In this action-packed video, we'll delve into the life and military career of General Anthony Wayne, a fearless leader who played a vital role in securing America's independence. From his early years to his meteoric rise through the ranks, Wayne's story is filled with bravery, tactical genius, and unwavering commitment to the cause of freedom. About the channel: America's Forgotten Founders is a deep dive into the early history of the United States, with a focus on the founding fathers and mothers that you're probably not as familiar with. If you're new to the channel, please start with the prologue episode https://www.youtube.com/watch?v=UZa5l-C1Kcc.
    20:08
    Anthony Wayne - America's Forgotten Founders
    ⚔️ Explore the thrilling life of Anthony Wayne, the daring and audacious general who earne...
    published: 30 Apr 2023
    Play in Full Screen
    31:14
    General Anthony Wayne | What made him MAD?
    Delving into why Pennsylvania's own General Anthony Wayne was called "MAD". MERCH - https...
    published: 05 Nov 2023
    Play in Full Screen
    2:41
    General Anthony Wayne - Revolutionary War Hero
    Anthony Wayne was a military leader and politician in 18th century America. He was born in...
    published: 08 Feb 2023
    Play in Full Screen
    0:31
    Big Board Friday Playoffs Week 1: Rhodes vs. Anthony Wayne
    Check out the action and more here: https://www.wtol.com/big-board-friday
    published: 02 Nov 2024
    Play in Full Screen
    1:41
    Anthony Wayne Generals | Big Board Friday Countdown
    The Generals last season went 10-3, won a share of the first NLL Buckeye Division title an...
    published: 06 Aug 2024
    Play in Full Screen
    4:13
    When Wayne asks Anthony is Shayla baby his
    - Wayne Colley, better known as “Kountry Wayne”, is not your average skit-standup comedian...
    published: 15 Jan 2025
    Play in Full Screen
    8:14
    The incredible story of "Mad Anthony" Wayne!
    Anthony tells us about the founding father and United States officer "Mad Anthony" Wayne! ...
    published: 25 Feb 2023
    Play in Full Screen
    2:11
    Big Board Friday Playoffs Week 3: Highland vs. Anthony Wayne
    Check out the action and more here: https://www.wtol.com/big-board-friday
    published: 16 Nov 2024
    Play in Full Screen
    2:18
    [FREE] Lil Wayne x Young Thug Type Beat - "Corvette" | Hyper Bouncy Instrumental 2025
    💿Prod. RockStarGoose (credit me if you use this beat) 🚫Free for non-profit only! So if y...
    published: 18 Jan 2025
    Play in Full Screen
    0:42
    Discovering 'Mad Anthony' Wayne: Revolutionary War #history #shorts
    Explore the daring exploits of Anthony Wayne, famously known as "Mad Anthony," during the ...
    published: 15 Jun 2024
    Play in Full Screen

    Anthony Wayne

    Anthony Wayne (January 1, 1745 – December 15, 1796) was a United States Army officer, statesman, and member of the United States House of Representatives. Wayne adopted a military career at the outset of the American Revolutionary War, where his military exploits and fiery personality quickly earned him promotion to brigadier general and the sobriquet Mad Anthony. He later served as General in Chief of the Army and commanded the Legion of the United States.

    Early life

    Wayne was one of five children born to Isaac Wayne and Elizabeth Iddings Wayne in Easttown Township, near present-day Paoli, Chester County, Pennsylvania. His father had emigrated from Ireland, and was part of a Protestant Anglo-Irish family. Wayne was born on January 1, 1745, on his family's Waynesborough estate. He was educated as a surveyor at his uncle's private academy in Philadelphia, as well as at the College of Philadelphia (now the University of Pennsylvania), where he was in the class of 1765, although he did not earn a degree. In 1765 he was sent by Benjamin Franklin and some associates to work for a year surveying land granted in Nova Scotia, and he assisted with starting a settlement the following year at The Township of Monckton. In 1767 he returned to work in his father's tannery, while continuing work as a surveyor. He became a prominent figure in Chester County and served in the Pennsylvania legislature from 1774–80. He married Mary Penrose in 1766 and they had two children. Their daughter Margretta was born in 1770 and their son Isaac Wayne, future U.S. Representative from Pennsylvania, was born in 1772.

    '); } 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: anthony wayne

    Edit

    Boys Basketball All-Ohio Division I, II, III

    The Vindicator 28 Mar 2025
    J’siah Jefferson, Toledo Start, 6-0, sr., 16.2; Blake Robison, Whitehouse Anthony Wayne, 5-10, sr., 18.5; Brody Fields, Asheville Teays Valley, 6-3, jr., 19.6; Kaleb Russ, Pataskala Licking ...
    Edit

    Mayfield baseball: Wildcats riding wave of confidence into new season

    The Willoughby News-Herald 28 Mar 2025
    For the last handful of seasons, Mayfield has had to deal with the Walsh Jesuit challenge ... Just making sure everyone’s on board ... We start with Olentangy Braves and Anthony Wayne in Myrtle Beach, two really high quality baseball programs.
    Edit

    2025 All-Ohio high school boys basketball teams | Division I, II and III

    Record-Courier 27 Mar 2025
    Francis, 6-9, jr., 11.2; Tyler Robinson, Sylvania Northview, 6-6, sr., 15.6; Cole Biedenharn, Anthony Wayne, 6-6, sr., 13.0; Isaac Burns, Troy, 6-7, sr., 12.0; Jayce Daniel, Sidney, 6-2, sr., 15.2; Nate Dawson, Cin.
    Edit

    All-Ohio high school boys basketball 2024-2025: Divisions I, II and III

    The Columbus Dispatch 27 Mar 2025
    Brody Fields, Teays Valley, 6-3, jr., 19.6; Kaleb Russ, Licking Heights, 6-0, sr., 14.0; J'siah Jefferson, Toledo Start, 6-0, sr., 16.2; Blake Robison, Whitehouse Anthony Wayne, 5-10, sr., 18.5; ...
    Edit

    Boys Basketball: Divisions I-III All-Ohio teams announced

    Lima Ohio 27 Mar 2025
    J’siah Jefferson, Toledo Start, 6-0, sr., 16.2; Blake Robison, Whitehouse Anthony Wayne, 5-10, sr., 18.5; Brody Fields, Asheville Teays Valley, 6-3, jr., 19.6; Kaleb Russ, Pataskala Licking Heights, ...
    Edit

    Roane, Caudill, Allen earn Division III OPSMA All-Ohio honors

    Mansfield News Journal 27 Mar 2025
    J'siah Jefferson, Toledo Start, 6-0, sr., 16.2; Blake Robison, Whitehouse Anthony Wayne, 5-10, sr., 18.5; Brody Fields, Asheville Teays Valley, 6-3, jr., 19.6; Kaleb Russ, Pataskala Licking Heights, 6-0, sr., 14.0.
    Edit

    Bloom-Carroll softball gets jump on Watkins in early-season thriller

    Lancaster Eagle Gazette 27 Mar 2025
    VIDEO. Bloom-Carroll softball scores big win at Watkins Memorial ... It felt more like a late-season tournament game on May 26 ... "It was a big win ... "Anthony Wayne, Miamisburg, Dover, Holland Springfield, Gahanna and now Mount Vernon twice in the league ... X.
    Edit

    Darlene K. Mertz, 71

    The News Banner 26 Mar 2025
    Wayne Hamilton of Decatur and Anthony George Steiner of Berne; 11 grandchil- dren; and five great-grandchildren; three siblings, Christine A.
    Edit

    Divisions I, II and III All-Ohio Teams

    The Vindicator 26 Mar 2025
    Elise Bender, Whitehouse Anthony Wayne ... Alli Robertson, Harrison, 6-2, sr., 22.3 (points per game); Olivia Williams, Mayfield Village Mayfield, 5-7, sr., 18.6; Elise Bender, Whitehouse Anthony Wayne, ...
    Edit

    Ohio's best: The top 25 baseball players in the state heading into the 2025 season

    Canton Repository 26 Mar 2025
    The state of Ohio continues to produce high-quality high school baseball players who will put their talents on display this spring ... 1 ‒ Zion Theophilus, Moeller ... No. 2Carter Christenson, Moeller ... He won Ohio Mr ... 22 ‒ Lukas Potkanowicz, Anthony Wayne.
    Edit

    Ohio's best: The top 25 baseball players in the state ahead of the 2025 season

    Newark Advocate 26 Mar 2025
    The state of Ohio continues to produce high-quality high school baseball players who will put their talents on display this spring ... 1 ‒ Zion Theophilus, Moeller ... No. 2Carter Christenson, Moeller ... He won Ohio Mr ... 22 ‒ Lukas Potkanowicz, Anthony Wayne.
    ×