- published: 24 Jun 2020
- views: 27832
'+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; })); }); -->
The 1st Marine Division is a Marine infantry division of the United States Marine Corps headquartered at Marine Corps Base Camp Pendleton, California. It is a subordinate unit of the I Marine Expeditionary Force (I MEF).
It is the oldest and largest active duty division in the United States Marine Corps, representing a combat-ready force of more than 19,000 men and women. It is one of three active duty divisions in the Marine Corps today and is a multi-role, expeditionary ground combat force. It is nicknamed "The Old Breed".
The division is employed as the ground combat element (GCE) of the I Marine Expeditionary Force or may provide task-organized forces for assault operations and such operations as may be directed. The 1st Marine Division must be able to provide the ground amphibious forcible entry capability to the naval expeditionary force (NEF) and to conduct subsequent land operations in any operational environment.
The 1st Marine Division is currently organized around four regiments:
"Waltzing Matilda" is Australia's most widely known bush ballad, and has been described as the country's "unofficial national anthem".
The title was Australian slang for travelling on foot (waltzing, derived from the German auf der Walz) with one's belongings in a "matilda" (swag) slung over one's back. The song narrates the story of an itinerant worker, or "swagman", making a drink of tea at a bush camp and capturing a jumbuck (sheep) to eat. When the sheep's owner, a squatter, arrives with three police officers to arrest the worker for the theft, the swagman commits suicide by drowning himself in a nearby billabong (watering hole), after which his ghost haunts the site.
The original lyrics were written in 1895 by Australian poet Banjo Paterson, and were first published as sheet music in 1903. Extensive folklore surrounds the song and the process of its creation, to the extent that the song has its own museum, the Waltzing Matilda Centre in Winton, Queensland, where Paterson wrote the song. In 2012, to remind Australians of the song's significance, Winton organised the inaugural Waltzing Matilda Day to be held on 6 April, the anniversary of its first performance.
Waltzing Matilda is a studio album by Dutch violinist André Rieu and Australian soprano Mirusia, released on 28 April 2008 in Australia. The album includes several Australian traditional songs sung by Mirusia. Rieu and Mirusia performed the tracks in their worldwide tour late in 2008. The album debuted at number two on the Australian ARIA Albums Chart. It reached number one in its second week on the chart in the lead up to Mother's Day, selling 17,560 units.
1 features Mirusia
Waltzing Matilda is a 1933 Australian film starring and directed by Pat Hanna. It features Coral Browne in an early role.
Chic Williams and his friend James Brown wrongly believe they have injured a policeman in a drunken fight. Fleeing a private detective who is following them, they head for the bush.
Chic and James find works as drovers at Banjaroo Station, where his old army mate Joe works as an overseer. James falls in love with the station owner's daughter. The detective arrives and tells James he has inherited money. James and his girlfriend announce their engagement and Chic sets off alone as a swagman, accompanied by a chorus of 'Waltzing Matilda'.
Pat Hanna held a competition for the name of the film. A prize of ₤10 was shared amongst the 20 people who suggested "Waltzing Matilda".
1st Marine Division tackled Range 230, a company level attack range, allowing them to employ of all its assets and firepower during the Marine Corps Air Ground Combat Center’s most comprehensive training – Integrated Training Exercise (U.S. Marine Corps video by Lance Cpl. Colton Brownlee)
Join this channel to get access to perks: https://www.youtube.com/channel/UCAlZ-9e75wau2hY_wWFliNA/join Checkout for more Latest Defense & Technology in Military News Updates. www.defenseflashnews.com U.S. Marines with Co.A, 1st Battalion, 7th Marine Regiment, 1st Marine Division participate in a Marine Corps Combat Readiness Evaluation (MCCRE) at Marine Corps Air Ground Combat Center Twentynine Palms, Calif., Nov. 3, 2020. The purpose of a MCCRE is to formally evaluate the unit's core and/or assigned mission essential tasks in order to ensure service standardization and combat readiness. (U.S. Marine Corps video by Lance Cpl. Frank Webb) Film Credits: Video by Lance Cpl. Frank Webb 1st Marine Division TAGS humvees infantry Training YouTube https://www.youtube.com/c/DefenseFlashNews...
#Camp Pendleton,#5th Marine Regiment,#1st LAR,#Engaged,#1st Marine Division,#1st Marine Regiment,#7th Marine Regiment,#2nd Battalion 1st Marines,#Ready,#Lethal,#1st Light Armored Reconnaissance,#1stMARDIV,#1st Battalion 5th Marines,#3rd Battalion 4th Marines,#Rifle Squad Competition,#Supersquad,#Supersquad 2020 Global website offers premier news and analysis of Global Defense Programs www.defenseflashnews.com www.defenseflashnews.blogspot.com MOUT – Supersquad 2020 (B-Roll) CAMP PENDLETON, CA, UNITED STATES 08.17.2020 U.S. Marines with the 1st Marine Division participate in military operations in urban terrain (MOUT) during the Supersquad 2020 Competition at Marine Corps Base Camp Pendleton, California, Aug. 17, 2020. The competition tests the Marines’ skills to determine the best squad...
Celebrating the rich history and traditions of the 1st Marine Division.
http://www.facebook.com/1stMarineDivisionBand http://www.i-mef.usmc.mil/external/1stmardiv/1stdivband/index.jsp From Camp Pendleton, CA The 1st Marine Division Band performing at the Oceanside Independence Day Freedom Parade on Saturday, June 30, 2012. 00:05 - Semper Fidelis 03:05 - The Marines' Hymn 04:44 - Cadence 05:20 - Battle Cry of Freedom 06:40 - Battle Cry of Freedom 07:50 - Cadence 08:35 - Waltzing Matilda 09:18 - Cadence 10:10 - Waltzing Matilda 11:01 - The Marines' Hymn
Global website offers premier news and analysis of Global Defense Programs www.defenseflashnews.com www.defenseflashnews.blogspot.com Offensive Operations – Supersquad 2020 (B-Roll) CAMP PENDLETON, CA, UNITED STATES 08.20.2020 U.S. Marines with the 1st Marine Division conduct offensive operations during the Supersquad 2020 Competition at Marine Corps Base Camp Pendleton, California, Aug. 20, 2020. The competition tests the Marines’ skills to determine the best squad within 1st MARDIV and raises the standard of tactical excellence throughout the unit in order to stay ready, lethal, and engaged. (U.S. Marine Corps photo by Staff Sgt. Kyle C. Talbot) #Camp Pendleton,#USMC,#5th Marine Regiment,#1st LAR,#Engaged,#1st Marine Division,#Marines,#1st Marine Regiment,#7th Marine Regiment,#2nd Bat...
Date 12.20.19 1st Marine Division participates in Steel Knight 2020 (SK20) in multiple training areas in southern California and Yuma, Arizona. SK20 is an annual training exercise executed by approximately 13,000 Marines and Sailors designed to improve and assess the 1st Marine Division's ability to fight and win against a peer or near-peer threat. (U.S. Marine Corps video by Sgt. Mason Roy)
Marines and sailors at Camp Leatherneck came together to celebrate the 1st Marine Divisions' 70th anniversary. Cpl. Daniel Blatter has the story.
Music video by Slim Dusty performing Waltzing Matilda Stream Slim Dusty here: https://SlimDusty.lnk.to/stream-now Lyrics: Once a jolly swagman camped by a billabong Under the shade of a coolibah tree, He sang as he watched and waited 'til his billy boiled You'll come a-Waltzing Matilda, with me Waltzing Matilda, Waltzing Matilda You'll come a-Waltzing Matilda, with me He sang as he watched and waited 'til his billy boiled, you'll come a-Waltzing Matilda, with me Down came a jumbuck to drink at the billabong, Up jumped the swagman and grabbed him with glee, he sang as he shoved that jumbuck in his tucker bag, you'll come a-Waltzing Matilda, with me Waltzing Matilda, Waltzing Matilda you'll come a-Waltzing Matilda, with me he sang as he shoved that jumbuck in his tucker bag, You'll com...
My channel is dedicated to anthems, hymns and patriotic songs, here is the link to our discord server: https://discord.gg/Vw5SgNDuVV
For concert dates and tickets visit: http://www.andrerieu.com http://www.facebook.com/andrerieu http://www.twitter.com/andrerieu https://plus.google.com/+andrerieu André Rieu & his Johann Strauss Orchestra performing 'Waltzing Matilda' live in Melbourne, Australia in front of a record audience of 38,605, the biggest attendance of any Rieu show anywhere in the world. A giant, life-size reproduction of Vienna's cream and orange Schonbrunn Castle dominated the eastern end of the Dome. Giant candelabras flickered over the heads of Rieu and his Johann Strauss orchestra and chorus. "It was an overwhelming experience. The warmth of the audience was overpowering." André Rieu billed his show as "a romantic Viennese night" and it was all of this and more. Dancers twirled on two 600m ice rinks an...
THE GOLDEN AGE showcases works from the “golden age” of the violin, with arrangements / transcriptions by Kreisler and Heifetz around a centerpiece of the magnificent Bruch concerto. Including 3 tracks with Ray’s string quartet “Made In Berlin” – an exciting chamber music string collective made up exclusively of members of the Berlin Philharmonic. Available here: https://decca.lnk.to/RCGAID TRACKLIST 1. Satie: Satiesfaction (Arr. Koncz) * 2. Kreisler: Syncopation 3. Ponce: Estrellita (Arr. Heifetz) 4. – 6. Bruch Violin Concerto No. 1 in G Minor, Op. 26 i) Vorspiel: Allegro moderato ii) Adagio iii) Finale: Allegro energico 7. Debussy: Clair de lune (Arr. Koncz) [Suite bergamasque, L. 75] * 8. Kreisler: Schön Rosmarin 9. Gershwin: Summertime / A Woman Is a Sometime thing (Arr. Heifetz) [Po...
"Waltzing Matilda" is Australia's best-known bush ballad, and has been described as the country's "unofficial national anthem". The title was Australian slang for travelling on foot (waltzing, derived from the German auf der Walz) with one's belongings in a "matilda" (swag) slung over one's back. The song narrates the story of an itinerant worker, or "swagman", making a drink of billy tea at a bush camp and capturing a jumbuck (sheep) to eat. When the sheep's owner, a squatter, arrives with three police officers to arrest the swagman for the theft, he commits suicide by drowning himself in a nearby billabong (watering hole), after which his ghost haunts the site. The original lyrics were written in 1895 by Australian poet Banjo Paterson, and were first published as sheet music in 1903. E...
Provided to YouTube by WM UK The Band Played Waltzing Matilda · The Pogues Rum Sodomy & The Lash ℗ 1985 Warner Music UK Ltd. Drums: Andrew Ranken Unknown: BilBo Bass Guitar: Cait O'Riordan Engineer: Craig Thomson Producer: Elvis Costello Accordion: James Fearnley Banjo: Jem Finer Engineer: Nick Robbins Engineer: Paul Scully Vocals: Shane MacGowan Tin Whistle: Spider Stacy Producer: Stan Brennan Writer: Eric Bogle Auto-generated by YouTube.
http://www.deltagoodrem.com/ https://www.facebook.com/DeltaGoodremMusic/ https://www.instagram.com/deltagoodrem/ https://twitter.com/DeltaGoodrem
Step into the heart of Australian folklore with "Waltzing Matilda" - the beloved song that captures the spirit of the Outback! Whether you're familiar with the song or discovering it for the first time, "Waltzing Matilda" will leave you feeling connected to the rich heritage of Australia. It's a chance to appreciate the beauty of storytelling through music and to honor the traditions that make our world diverse and captivating. So, gather 'round, sing along, and embrace the warmth of "Waltzing Matilda" - a true treasure of Australian culture! *Subscribe to our channel for more Wiggly videos* https://bit.ly/WigglesYouTube For more fun, visit: Spotify 🎶 https://ab.co/TheWigglesSpotify Apple Music 🎧 https://music.apple.com/au/artist/the-wiggles/7066283 Instagram 🟡 http://instagram.com/Th...
Join the Johnny Cash infocenter facebook: http://www.facebook.com/jcinfocenter For more Johnny Cash visit: http://www.johnny-cash-infocenter.com/
Want to feel motivated to practice? Join the largest live practice community today on Tonic: https://tonicmusic.app/practice-now Waltzing Matilda - the "unofficial" anthem of Australia 🐨🦘Superb arrangement by Stephan Koncz with the Sydney Symphony Orchestra and Maestro Tianyi Lu Recorded live at the Sydney Opera House
The 1st Marine Division is a Marine infantry division of the United States Marine Corps headquartered at Marine Corps Base Camp Pendleton, California. It is a subordinate unit of the I Marine Expeditionary Force (I MEF).
It is the oldest and largest active duty division in the United States Marine Corps, representing a combat-ready force of more than 19,000 men and women. It is one of three active duty divisions in the Marine Corps today and is a multi-role, expeditionary ground combat force. It is nicknamed "The Old Breed".
The division is employed as the ground combat element (GCE) of the I Marine Expeditionary Force or may provide task-organized forces for assault operations and such operations as may be directed. The 1st Marine Division must be able to provide the ground amphibious forcible entry capability to the naval expeditionary force (NEF) and to conduct subsequent land operations in any operational environment.
The 1st Marine Division is currently organized around four regiments:
Once a jolly swagman, camped by a billabong,
Under the shade of a coolibah tree,
And he sang as he watched and waited till his billy
boiled,
You'll come a waltzing Matilda with me.
Waltzing Matilda, waltzing Matilda,
You'll come a waltzing Matilda with me,
And he sang as he sat and waited till his billy boiled,
You'll come a waltzing Matilda with me.
Down came a jumbuck to drink at that billabong,
Up jumped the swagman and grabbed him with glee,
And he sang as he shoved that jumbuck in his tucker
bag,
You'll come a waltzing Matilda with me.
Waltzing Matilda, waltzing Matilda,
You'll come a waltzing Matilda with me,
And he sang as he shoved that jumbuck in his tucker
bag,
You'll come a waltzing Matilda with me.
Up rode the squatter mounted on his thoroughbred,
Down come the troopers, one, two, three,
Whose that jolly jumbuck you've got in your tucker bag?
You'll come a waltzing Matilda with me.
Waltzing Matilda, waltzing Matilda,
You'll come a waltzing Matilda with me,
Whose that jolly jumbuck you've got in your tucker bag?
You'll come a waltzing Matilda with me.
Up jumped the swagman, sprang into the billabong,
Drowning himself by the coolibah tree,
And his ghost may be heard as you pass by that
billabong,
You'll come a waltzing Matilda with me.
Waltzing Matilda, waltzing Matilda,
You'll come a waltzing Matilda with me,
And his ghost may be heard as you pass by that
billabong,