- published: 03 May 2022
- views: 1832209
'+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; })); }); -->
Boot camp may refer to:
Boot camps can be governmental being part of the correctional and penal system of some countries, but predominantly in the United States. Modeled after military recruit training camps, these programs are based on shock incarceration grounded on military techniques. The aggressive training used has resulted in deaths in a variety of circumstances. Boot camps are also criticized around the world for their lack of behavioral change and for the way lethal force can traumatize children and teens.<ref name="nytimes-deaths
Other countries have been closely watching the boot camp system in the U.S. but so far have been slow to copy it, if at all.
There are no research findings in favor of boot camps in light of any of the initial intentions. Recidivism rates in the U.S. among former prison inmates and boot camp participants are roughly the same. Yet, the effects of boot camps are controversially disputed, some surveys claiming lower re-offence rates, others showing no change as compared to persons serving normal time. Surveys also show different results concerning the reduction of costs. Critics add that the emphasis on authority can only result in frustration, resentment, anger, short temper, a low self-esteem and aggression rather than respect.
Recruit training, more commonly known as Basic Training and colloquially called boot camp, is the initial indoctrination and instruction given to new military personnel, enlisted and officer. After completion of Basic Training, new recruits undergo Advanced Individual Training (AIT), where they learn the skills needed for their military jobs. Officer trainees undergo more detailed programs that may either precede or follow the common recruit training in an officer training academy (which may also offer a civilian degree program simultaneously) or in special classes at a civilian university. During recruit training, drill instructors do everything possible to push a recruit to his or her physical and mental limits.
Recruit training varies by nation according to the national requirement and can be voluntary (volunteer military) or mandatory (conscription). Approximately 100 nations, including the United Kingdom and United States, have a volunteer military service. In voluntary service an individual chooses to join and thereby agrees to be subjected to the process of building an organization where each life depends on the person next to them. This voluntary status has changed the culture of military service.
Boot Camp Clik is an American hip hop supergroup from Brooklyn, New York, which is composed of Buckshot (of Black Moon), Smif-N-Wessun (Tek and Steele), Heltah Skeltah (Rock and Ruck) and O.G.C. (Starang Wondah, Top Dog, and Louieville Sluggah). Most of the members are from Brownsville, Brooklyn, but Buckshot is from Crown Heights, Brooklyn and Tek is from Bedford-Stuyvesant, Brooklyn.
Black Moon debuted in 1992 with the release of the single "Who Got Da Props?". The song became something of an underground phenomenon, and was also able to receive minor crossover success, charting on the Billboard Hot 100 at #86. The popularity of the single lead to a record deal with Nervous Wreck Records, which released the group's debut album Enta Da Stage in late 1993. The album was produced entirely by Evil Dee and Mr. Walt of Da Beatminerz, and featured the debut of Camp members Smif-N-Wessun, as well as an early appearance from Mobb Deep's Havoc. Enta Da Stage was highly acclaimed and influential over the burgeoning hardcore hip hop scene of its time. Preceding later classics like Enter the Wu-Tang (36 Chambers) by Wu-Tang Clan, Illmatic by Nas and Ready to Die by The Notorious B.I.G., Enta Da Stage served as a precursor to the resurgence of the New York hip hop scene in the mid-90s. Along with "Who Got Da Props?", the album included other classic rap singles "How Many MC's...", "Buck Em Down" and "I Got Cha Opin (Remix)", the latter becoming the group's second Hot 100 hit.
Do you know anyone in the military branches that has been through army bootcamp? #military #short #funny MY GEAR: Canon 90D https://amzn.to/3xBewpc Lens EF-S 10-18 https://amzn.to/3M4WeAP Elgato Streamlight Mini https://amzn.to/3xu0plJ Rode PodMic https://amzn.to/3vqqT58 Samson Boom Arm https://amzn.to/3Oa7a1X Headphones https://amzn.to/37dKJbK Gaming Keyboard (Short) https://amzn.to/3O6sVjj stream deck https://amzn.to/3rr86W7 Logitech 903 https://amzn.to/36hUULQ Light arm https://amzn.to/3OcqTy3 Background light https://amzn.to/3xs1ri4 Samsung Monitor https://amzn.to/3L0c5kh Asus Monitor https://amzn.to/3EfGBE0 GoXlr Mini https://amzn.to/3vhdKuZ L shape desk https://amzn.to/37VWIe0 Night Lighting https://amzn.to/3KE5z2h Wall Textures https://amzn.to/3uKIPs4 Sound Panels https://amzn.to/3...
Boot Camp: Making a Sailor is a feature-length documentary produced by the U.S. Navy's All Hands Magazine, in partnership with U.S. Navy Recruit Training Command. It follows four young people on their path from leaving their hometowns and enlisting in the Navy through Navy Boot Camp in Great Lakes, Il. For more great content from All Hands Magazine follow along on our social accounts! Instagram: http://bit.ly/2ZgK1Sf Facebook: http://bit.ly/2KEDddQ Twitter: http://bit.ly/2Geur0z Magazine: http://bit.ly/2ZcK7u4 YouTube: http://bit.ly/2VMqt5K
We got an inside look at the United States Marine Corps’ intense 13-week basic training program. Senior video correspondent Graham Flanagan spent five days at the Marine Corps Recruit Training Depot in Parris Island, South Carolina, where he observed different companies at various stages of training. Recruits endure a series of intense physical challenges such as entering a gas chamber, rappelling down a 47-foot-tower, and fighting each other with “pugil sticks.” The Marine Corps is the only US military branch that separates male and female recruits during basic training. In a statement to Business Insider, a spokesperson from the Marine Corps Recruit Training Depot at Parris Island said, “The same gender platoon model allows for appropriate acclimation to the training environment, develo...
In the first season of “Boot Camp,” Senior Video Correspondent Graham Flanagan goes inside the basic training programs of military branches and law enforcement agencies to find out what it takes to join the ranks of those willing to make the sacrifice to protect and serve their country. He also shows you what it’s like on day one at the nation’s most prestigious military academies. Episodes Featured: Coast Guard - 00:17 West Point - 22:46 Marines Corps - 29:20 Border Patrol - 45:48 Annapolis - 1:11:58 Secret Service - 1:20:47 ------------------------------------------------------ #Military #BootCamp #BusinessInsider Business Insider tells you all you need to know about business, finance, tech, retail, and more. Visit us at: https://www.businessinsider.com Subscribe: https://www.youtub...
Here's an inside look at the United States Army's intense 22-week basic training known as OSUT, which stands for One Station Unit Training. Senior Video Correspondent Graham Flanagan spent four days at the Army's Maneuver Center of Excellence located inside the Fort Benning military installation near Columbus, Georgia, where he observed different companies at various stages of training. After a processing period that takes one to two weeks, recruits experience what's known as a "shark attack," when drill sergeants create a high-stress environment through a series of rapid-fire instructions and commands. Once the intensity subsides and training begins, the dynamic between the drill sergeants and the recruits evolves into one found between a teacher and students in a classroom. Despite rai...
Military training instructors are responsible for training new recruits at the United States Air Force's 7 ½-week basic military training. But before they're certified to train new recruits in boot camp, they must graduate from the eight-week military training instructor school. Business Insider spent four days with future MTIs as they relearned military basics, trained their command voice, and met the physical qualifications to don the iconic campaign cover and prepare the next generation of airmen. Chapters: 00:00 - Intro 02:04 - Command Voice 05:36 - Drill 08:50 - Physical Training 10:30 - Dorm Lessons 12:47 - Graduation 13:32 - Credits MORE BOOT CAMP VIDEOS: Boot Camp Season 5 Marathon https://youtu.be/1WjsyQL0MMs How Annapolis Cooks Feed 4,400 Navy Midshipmen In 20 Minutes https://w...
In the third season of “Boot Camp,” Insider goes inside the US military’s basic and advanced training programs, as well as military academies and colleges, to find out what it takes to join the ranks of those willing to make the sacrifice to protect and serve their country. Chapter Timecodes: Day One at US Air Force Academy - 00:23 Army Air Assault Day Zero - 09:35 Hell Week at Virginia Military Institute - 21:17 US Marine Corps F35 Fighter Jet - 33:56 US Marine Corps Drill Instructor School - 43:40 US Army Airborne School - 54:52 US Air Force Boot Camp - 01:13:28 US Army Air Assault - 01:29:12 US Air Force C17 Globemaster Training - 01:48:17 US Army Parachute Riggers - 01:56:39 US Marine Corps hand-to-hand combat - 02:01:24 US Marine Corps Crucible - 02:07:27 US Air Force Boot Camp Fina...
We got an inside look at the United States Navy's 10-week basic training program. Chief video correspondent Graham Flanagan spent five days inside Recruit Training Command Great Lakes, where he observed different companies at various stages of training at the facility located about 35 miles north of Chicago. Recruits must pass a physical assessment and a swim qualification before they train in seamanship, firefighting, and weapons training. They're also exposed to tear gas inside a confidence chamber where they learn to correctly wear gas masks. Training culminates with “Battle Stations” an all-night event that takes place on a mock Navy destroyer ship designed by companies who have created theme park attractions for Walt Disney World. After completing the event, recruits officially beco...
Critics claim they’re little more than ’torture camps’, taking tough love way too far. But for desperate parents, military-style boot camps are often seen as the last chance for their children to avoid the vicious cycle of delinquency and jail. We spent five months at the Discovery Challenge Academy, which welcomes 125 troubled teens every year. The first two weeks are the hardest. Everything is strictly regimented: 10 minutes to eat, 2 minutes to shower, 10 seconds to put on socks. There are 50 beds per dormitory and even going to the bathroom requires permission. Phones, TVs and the internet are all banned, as is seeing family during the first three months. Who are these young people? How did they get there and what trials and challenges will they have to overcome? This documentary wa...
These are the first words that you will hear from your senior drill instructor during boot camp. U.S. Marine Corps Staff Sgt. Jason May, a senior drill instructor, gives a speech to the new recruits on pick-up day aboard Marine Corps Recruit Depot San Diego, California. May spoke to the recruits about the responsibilities of the drill instructors and what was to be expected of the recruits throughout the 13 weeks of recruit training. AiirSource Military covers events and missions from the United States Armed Forces: Army, Navy, Marine Corps, Air Force, and Coast Guard. Visit our channel for more military videos: http://www.youtube.com/AiirSource Like & share this video to show your support! Subscribe to stay updated: http://www.youtube.com/subscription_center?add_user=AiirSource Face...
We got an inside look at the United States Marine Corps’ intense 13-week basic training program. Senior video correspondent Graham Flanagan spent five days at the Marine Corps Recruit Training Depot in Parris Island, South Carolina, where he observed different companies at various stages of training. Recruits endure a series of intense physical challenges such as entering a gas chamber, rappelling down a 47-foot-tower, and fighting each other with “pugil sticks.” The Marine Corps is the only US military branch that separates male and female recruits during basic training. In a statement to Business Insider, a spokesperson from the Marine Corps Recruit Training Depot at Parris Island said, “The same gender platoon model allows for appropriate acclimation to the training environment, develo...
Here's an inside look at the United States Army's intense 22-week basic training known as OSUT, which stands for One Station Unit Training. Senior Video Correspondent Graham Flanagan spent four days at the Army's Maneuver Center of Excellence located inside the Fort Benning military installation near Columbus, Georgia, where he observed different companies at various stages of training. After a processing period that takes one to two weeks, recruits experience what's known as a "shark attack," when drill sergeants create a high-stress environment through a series of rapid-fire instructions and commands. Once the intensity subsides and training begins, the dynamic between the drill sergeants and the recruits evolves into one found between a teacher and students in a classroom. Despite rai...
#military #USA #joke #warzone #information #informative #US #storytime #trending #army #soldier #usnavyl #usnavyseal #usmilitary #aviationlovers #usarmy #usairfroce #airfight #fighterjet #jet #recruit #trainee #drill #drillsergeant #drillinstructor #basictraining #bootcamp
Marine recruits go through a lot, but what is the most difficult part of boot camp? It's #NotWhatYouThink #NWYT #shorts If interested, check out the longer version of this video: https://youtu.be/nAAHXqL3DmA Music: TBD Footage: US Department of Defense Note: "The appearance of U.S. Department of Defense (DoD) visual information does not imply or constitute DoD endorsement."
We got an inside look at the United States Navy's 10-week basic training program. Chief video correspondent Graham Flanagan spent five days inside Recruit Training Command Great Lakes, where he observed different companies at various stages of training at the facility located about 35 miles north of Chicago. Recruits must pass a physical assessment and a swim qualification before they train in seamanship, firefighting, and weapons training. They're also exposed to tear gas inside a confidence chamber where they learn to correctly wear gas masks. Training culminates with “Battle Stations” an all-night event that takes place on a mock Navy destroyer ship designed by companies who have created theme park attractions for Walt Disney World. After completing the event, recruits officially beco...
We got an inside look at the United States Secret Service's intense, six-month basic training program. Senior video correspondent Graham Flanagan spent three days inside the James J. Rowley Training Center in Laurel, Maryland, where he observed recruits at various stages of training. According to the Secret Service, about one in every 100 applicants makes it through the agency's intense vetting process to become a recruit. The base salary for new agents and officers is $47,000 a year. After spending three months at the Federal Law Enforcement Training Center in either Artesia, New Mexico, or Glynco, Georgia, recruits return to Laurel for three more months of Secret Service-specific training. Although we were allowed to film inside the academy, much of the training remained secret. Accor...
Boot camp may refer to:
[Hook: Steele w/vocal sample]
"Do you remember me? I'm a Soul Jah"
One for all and all for one
It's all for all, it's all or none
"Do you remember me? I'm a Soul Jah"
Stand for something or fall for whatever
When we ride out, we ride together, let's get busy
[Verse 1: Steele]
Yeah, I'm a Boot Camp soldier 'til I D-O-A
'Til I'm in a gunfight and my heat don't spray
Some of you believe all I do is smoke weed all day
But I stay military, mine sharp like a stingray
I'm a Boot Camp soldier 'cause I rep the streets
This means that I'll go to war for my beliefs
And I owe it to my peeps, know that helpin' 'em reach
Another level in this rap game where niggaz can eat
[Verse 2: Buckshot]
I'm a soldier like a political prisoner
This is a all-out war so you can load up your Dillingers
You willing to step up and play the front? So
First you gotta show 'em how your gun blow, aight though?
Don't go bailin' on me now, or gun failin' on me now
On the real, just hold me down, then
If I take aim, you take aim
If I bust, you bust, it's simple, do the same thing
Be a soldier, I told ya, it's all in the mind frame
They ain't ready for war, when it come they like "Ah, man"
This ain't a fashion statement
When they bash your face in, then it's back to the basics
[Hook: Steele w/vocal sample]
"Do you remember me? I'm a Soul Jah"
One for all and all for one
It's all for all, it's all or none
"Do you remember me? I'm a Soul Jah"
Stand for something or fall for whatever
When we ride out, we ride together, let's get busy
[Verse 3: Rock]
I always been a Boot Camp soldier, even though I went AWOL
It's family, when they call, I bang all
At your whole team, though, the 'Wild Boy' is back, I'm Steve-O
Without the leopard thong all in the crack (Nah)
Everything is logical, ain't no emotions here
Cut you, you dyin' fool, I'm Spock without the pointy ears
I'm goin' there, you ain't goin' where we goin', clear
The fuck outta gear, the whole in your rear, we soldier's here
[Verse 4: Sean Price]
Freak soldier, heat holder, Green Beret
Johnny Rambo, nigga, make my day
Your ass is frontin', don't make the God blast at somethin'
Sean Price is the weapon of mass destruction
Captain Black America, strapped with the gat, darin' ya
Pop two shots at your knot with the black Deringer
Sean's a soldier, see the stripe on my arm
How you wanna do it, knife or the chron's? Really, though
[Hook: Steele w/vocal sample]
"Do you remember me? I'm a Soul Jah"
One for all and all for one
It's all for all, it's all or none
"Do you remember me? I'm a Soul Jah"
Stand for something or fall for whatever
When we ride out, we ride together, let's get busy
[Verse 5: Starang Wondah]
You hear my voice, you got no choice but feel the presence
And in the underground, BCC is still legends
Now I'm back smarter, but a little older
Niggaz in my hood said that it was over
Hit the block, Ruck, Rock, black-on-block Rover
Like "Hate to say I told you so, but nigga, I told ya"
I'm the beast, a Savage like the Macho Man
Niggaz take your cheese like you the Nacho Man
And I'm not yo man, y'all niggaz so phony
You owe me, got dope for me, show me
[Verse 6: Top Dog]
Do you remember, my Boots and my troops?
My troops in those suits, we world wide
And I still rep BCC
And I'm still Top D-O-G 'cause I'm a soldier
Fatigued up, some days I'm jeaned up
My two soldiers at home keep me serene and cleaned up
So don't make me call my team up
Just ease up, see my name in them books, you wanna read up?
[Verse 7: Louieville Sluggah]
Chumps at ease, put it on freeze
Henny's in your presence, I'm about cheese
'Bout that Play-Doh, haters fuck with mines
Replace your fitted with a halo
Boot Camp's stompin' through my veins
We are, Sacman street hustlers, ain't shit change
Respect is everything and I gotta shine
Suck dick for yours, but I'll die for mines, you know
[Verse 8: Tek]
Please take a look at my battle scars
Realize it's a miracle how I survive
My Brooklyn Vietnam
I was always trained first to bomb
The element of surprise 'll put your foes on they heels
Tags on they toes, it's kill or be killed
Should I show you blueprints to a murder?
Nobody no case, you could be the murder
Confidently move, leave no trace
Consequently, the DA 'll have no case
You could take it how you want it, this is just a tip
But don't quote me, boy, 'cause I ain't said shh...
[Hook: Steele w/vocal sample]
"Do you remember me? I'm a Soul Jah"
One for all and all for one
It's all for all, it's all or none
"Do you remember me? I'm a Soul Jah"
Stand for something or fall for whatever
When we ride out, we ride together, let's get busy
"Do you remember me? I'm a Soul Jah"