- published: 12 May 2011
- views: 1446094
'+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 Boeing 747-8 is a wide-body jet airliner developed by Boeing Commercial Airplanes. Officially announced in 2005, the 747-8 is the third generation of the 747, with lengthened fuselage, redesigned wings, and improved efficiency. The 747-8 is the largest 747 version, the largest commercial aircraft built in the United States, and the longest passenger aircraft in the world.
The 747-8 is offered in two main variants: the 747-8 Intercontinental (747-8I) for passengers and the 747-8 Freighter (747-8F) for cargo. The first 747-8F performed the model's maiden flight on February 8, 2010, with the 747-8 Intercontinental following on March 20, 2011. Delivery of the first freighter aircraft occurred in October 2011 and the passenger model began deliveries in 2012. As of January 2016, confirmed orders for the 747-8 total 121, comprising 70 of the freighter version, and 51 of the passenger version.
Boeing had considered larger-capacity versions of the 747 several times during the 1990s and 2000s. The 747-500X and -600X, proposed at the 1996 Farnborough Airshow, would have stretched the 747 and used a 777-derived wing, but did not attract enough interest to enter development. In 2000, Boeing offered the 747X and 747X Stretch derivatives as alternatives to the Airbus A3XX. This was a more modest proposal than the previous −500X and −600X. The 747X would increase the 747's wingspan to 229 ft (69.8 m) by adding a segment at the root. The 747X was to carry 430 passengers up to 8,700 nmi (16,100 km). The 747X Stretch would be extended to 263 ft (80.2 m) long, allowing it to carry 500 passengers up to 7,800 nmi (14,400 km). However, the 747X family was unable to attract enough interest to enter production. Some of the ideas developed for the 747X were used on the 747-400ER.
A wide-body aircraft is a jet airliner having a fuselage wide enough to accommodate two passenger aisles, also known as twin-aisle aircraft, with seven or more seats abreast. The typical fuselage diameter is 5 to 6 m (16 to 20 ft). In the typical wide-body economy cabin, passengers are seated seven to ten abreast, allowing a total capacity of 200 to 850 passengers. The largest wide-body aircraft are over 6 m (20 ft) wide, and can accommodate up to eleven passengers abreast in high-density configurations.
By comparison, a typical narrow-body airliner has a diameter of 3 to 4 m (10 to 13 ft), with a single aisle, and seats between two and six people abreast.
Wide-body aircraft were originally designed for a combination of efficiency and passenger comfort and to increase the amount of cargo space. However, airlines quickly gave in to economic factors, and reduced the extra passenger space in order to maximize revenue and profits.
Wide-body aircraft are also used for the transport of commercial freight and cargo and other special uses, described further below.
Jumbo Jet was a prefabricated steel roller coaster at Great Adventure (what is now Six Flags Great Adventure) in Jackson, New Jersey. Jumbo Jet was a member of the well-known Jet Star 3 / Jumbo Jet model line which was designed and manufactured by noted roller coaster designer Anton Schwarzkopf.
Jumbo Jet was erected in 1975 as part of the Fun Fair section of Great Adventure. Press accounts at the time quoted Great Adventure vice president for operations Robert Minick as saying that Jumbo Jet was "the largest ready-made roller coaster that [could] be bought". The coaster was leased from Willy Miller's Continental Park Attractions along with several of the other rides in the Fun Fair section. The ride was assembled in the spring, and by all accounts sat idle for weeks. The Jumbo Jet never operated or opened to the public while it was at the park. Currently no reason is known for why the coaster never opened. About a month after being built, the ride was dismantled. It is still unknown where the ride went or what happened to this ride.
The Jumbo Jet was a prefabricated steel roller coaster at Morey's Piers in Wildwood, New Jersey. Jumbo Jet was a Jet Star 3 / Jumbo Jet model coaster built by noted roller coaster designer Anton Schwarzkopf. In 1975, the Morey brothers traveled to Germany and purchased the Jumbo Jet for $400,000.Morey's Surfside Pier had to be extended a total of 250 feet (76 m) to make room for the Jumbo Jet. Despite the expense, however, Jumbo Jet became one of the most popular roller coasters on the Jersey Shore, and was credited for increasing attendance at Morey's Piers. It was the second and final Jet Star 3 / Jumbo Jet model coaster to be built in the state of New Jersey.
Although multiple sources support the purchase of the Morey's Piers Jumbo Jet as occurring in Germany, some sources persist in the rumor that this coaster may have been the relocation of the ill-fated Jumbo Jet from Great Adventure (now Six Flags Great Adventure).
Regardless of the ride's origins, Jumbo Jet was sold in 1987 to a German broker. The broker eventually traded the coaster to Gorky Park in Moscow for two railroad cars of ketchup—as the ruble was not a widely accepted currency outside of the Soviet Union at the time.
Jumbo is the name of an Avanzada Regia Alternative rock band from Monterrey, Mexico.
They were founded in May 1997 with the following lineup:
In the early 90's, before the creation of Jumbo, Castillo, Charly, Eddie, Chuy Guerra, Javier Othón and René Garza formed a band called "Blueswagen" which played mainly covers of bands like The Beatles, The Rolling Stones, The Doors, Pink Floyd, R.E.M., U2, The Police, Lenny Kravitz, Stone Temple Pilots and Red Hot Chili Peppers. They started gaining more fans and an increasing popularity, which led to playing bars and clubs and recording many demos. BMG obtained one of the demos and started looking for them. Later the band signed with them.
Jumbo was a weekly comic magazine published in Italy from 1932 to 1938.
The magazine was founded by Lotario Vecchi and had a large commercial success, with an average circulation of about 300,000 copies per week. It mainly consisted of British comics, starting from the title character Tiger Tim (renamed as Jumbo), a comic strip series created by Julius Stafford Baker and taken over by Herbert Sydney Foxwell. A key role in the success of the magazine was also played by Rob the Rover, an adventure comic series by Walter Henry Booth which was translated as Lucio L'avanguardista (i.e. "The young avantgarde Lucio") and whose main character was adapted as a fascist airman. It also introduced to the Italian audience several notable American comics including Rex Maxon's Tarzan and Ace Drummond. It closed after the banning of the foreign comics ordered by Fascist MinCulPop in 1938.
"Jumbo" is a song released by the Bee Gees, written by Barry, Robin & Maurice Gibb. It was released as a double A side with "The Singer Sang His Song"but featured as the lead track in some territories.
"Jumbo" was recorded on January 10 during sessions for the album Idea (though it was not included on the album) on the same day as "Gena's Theme" and "Bridges Crossing Rivers" (neither of which saw release until the remastered edition of Idea in 2006). The song has a strong emphasis on guitar with two tracks laid down by Vince Melouney
The decision on which song would be the A side came so late that many British singles have "The Singer Sang his Song" marked as the A-side, but "Jumbo" was promoted as the A-side instead. This single broke the series of major Bee Gees hits, and fell into obscurity as neither side was on the next album nor was "Jumbo" on Best of Bee Gees in 1969. The two songs only resurfaced on unofficial compilations and boxed sets. The song reached #25 in the British charts and #57 in the American charts and Barry said:
The new Boeing 747-8 Intercontinental takes to the sky for its first flight, showing off a longer fuselage, more aerodynamic wing, and more fuel-efficient engines.
Sit back, relax, and enjoy the video! Credit to National Geographic for this awesome documentary. The Boeing 747-8 is Boeing's latest addition to the 747 family, with the new wings which were borrowed from the Boeing 787, the -8 is a great looking plane. Powered by four GEnx -2B 787 technology engines, the 747-8 can travel the length of three soccer/football fields in one second! The -8's tail is as tall as an average 6 story city building with a height of 63 feet 6 inches.
It's one of the most dramatic tests for a new airplane as the pilot slams on the brakes while going 200 miles per hour (320 km/hr). Watch as the 747-8 Freighter, loaded to maximum takeoff weight and equipped with 100% worn out brakes, perform a rejected takeoff without thrust reversers. What's Boeing's latest innovation? Subscribe to the Boeing YouTube Channel: https://youtube.com/boeing Our social media handles: ► Twitter: https://twitter.com/Boeing ► Instagram: https://instagram.com/boeing/ ► LinkedIn: https://linkedin.com/company/boeing/ ► Facebook: https://facebook.com/Boeing/ ► Website: https://boeing.com
With launch dates 20 years apart, the Boeing 747-8 is the update to the iconic 747-400. With the immense popularity of the -400, Boeing had hoped for the same levels of success for the newer -8. The newer model hasn’t seen that success, despite being better in every way. Let’s look at the two models of 747 and the difference that 20 years of innovation can produce. Article link: https://simpleflying.com/boeing-747-8-vs-747-400/ Video source links: Our special thanks to Oliver Schaupp of @flybyplane for allowing the use of this footage of the current S. Korean Presidential 747-400: https://www.youtube.com/watch?v=bxDr3yHNYOw 747 Qantas https://www.youtube.com/watch?v=kmWE9KGYN6s 747 klm https://www.youtube.com/watch?v=7GZ3fSDFevE 747-8 assembly https://www.youtube.com/watch?v=vInrQj-q-es...
Lufthansa Airlines Boeing 747-8 cabin tour. This aircraft has 8 First class, 80 business class, 32 premium economy, & 244 economy seats. Sorry this one is a little quick. The GoPro was at 10% bat and I had a lot of plane to cover.
Boeing anticipated selling about 300 of the 747-8. Its passenger variant, the 747-8I, or Intercontinental, received a mere 47 orders before being discontinued. How could it be, that an upgraded, superior model of one of the world’s most popular widebody aircraft did so poorly on the market? Article link: https://simpleflying.com/boeing-747-8-popularity/ Video source links: https://www.youtube.com/watch?v= 747-8 assembly vInrQj-q-es 747-8 Cathay (XFeMmiJBYwY) 747F UPS Y5DEaSjSdGU 747 klm 7GZ3fSDFevE 747F Asiana yVVfKCqrUXs 747 Qantas qFqJNhX_hNI 747-8 Lufthansa (ftDZuoEHDc4) 777x taxi test SC9Ska9jPJQ 787 ANA delivery of the first iv26cblNZjQ 777x (Fop6Qu2CN0E) A380 Air france UeggF6laWrw 747-8 Air China UIV5LWSQhp4 747-400 Transaero SYwH1K1Veyw 747 klm irgpI3PkOf0 Photos and graphics: ...
Boeing test pilots have subjected the new 747-8 Freighter to some extreme testing. The plane has been dragged, dropped, soaked, forced to hover, shudder and flutter. What's Boeing's latest innovation? Subscribe to the Boeing YouTube Channel: https://www.youtube.com/boeing Our social media handles: ► Twitter: https://twitter.com/Boeing ► Instagram: https://instagram.com/boeing/ ► LinkedIn: https://linkedin.com/company/boeing/ ► Facebook: https://facebook.com/Boeing/
Lufthansa's Boeing 747-8 captain, Uwe Strohdeich, gives us an exclusive tour of the new airplane, showing off the novelties of the improved first and business classes, which are spread across two decks. While taking a look at the secured flight deck section, he shares some bits and pieces of information about the hidden modern technology. For more information visit http://f.lh.com/hcEb ---------------------- Visit us on: http://www.lufthansa.com/ Subscribe to our YouTube Brand Channel: https://www.youtube.com/user/Lufthansa Follow us on Facebook, Twitter, Instagram & Foursquare: https://www.facebook.com/lufthansa https://twitter.com/lufthansa https://instagram.com/lufthansa/ https://de.foursquare.com/lufthansa Lufthansa.
DULLES INTERNATIONAL AIRPORT #lufthansa #firstclass #travel Join me on this 7 hour hop across the Atlantic from Washington D.C. to Frankfurt, German carrier Lufthansa's main hub! Watch my video to find out how this flight compares with my amazing flight from last year! The review continues to the amazing Lufthansa First Class Terminal in Frankfurt, providing amenities and services truly one of a kind dedicated terminal. Watch my review to find out how it all went! • Lufthansa First Class 747-8 First Cla... Chapters: 00:00 Opening 00:42 Polaris Lounge 08:00 Check-In 09:22 Lufthansa Senator Lounge 11:21 Boarding 14:13 Dining Menu 17:19 Take Off 19:05 Slippers and Amenity Kit 21:10 Seat Review 23:41 Dinner Service 26:21 Lavatory 29:00 Lie Flat Bed 30:48 IFE 31:07 Breakfast Service ...
Watch this video to see what it’s like to sit on the upper deck of a Boeing 747 in Business Class! You’ll get a sense of what it’s like to experience the luxury that comes from being on the second level of the Queen of the Skies as we cross the Atlantic Ocean from Frankfurt to New York on a Boeing 747 onboard Lufthansa. You’ll learn about why the Boeing 747 is such a special airplane, see the lounge in Frankfurt with its pretzels and comfortable seats, and see what it’s like to board the 747 using Air Stairs (!!!!), and then get a complete sense of what it’s like to fly onboard this truly remarkable plane! By the way, don't miss our video about Lufthansa's 747 First Class!! https://www.youtube.com/watch?v=sWcuhSlcgoY 0:00 Introduction 1:49 Encountering the 747 3:11 Lufthansa Senator Lo...
Most people would correctly guess that the A380 is the widest passenger aircraft currently flying (it is also the heaviest, but not the longest). But what about the others? It can be hard to tell! We take a quick look in this article at the five widest passenger aircraft ever built. Article link: https://simpleflying.com/widest-widebody-planes/ Video source links: A380 Air France https://www.youtube.com/watch?v=Ft-r0BcsX1I A380 Emirates https://www.youtube.com/watch?v=OSaq9EKwN7g A380 Emirates https://www.youtube.com/watch?v=X7kNj_qZCfQ 777 Air Canada https://www.youtube.com/watch?v=uefkn4zYir8 747 Historical Boeing https://www.youtube.com/watch?v=vMqRYxI6njs 747 Air China https://www.youtube.com/watch?v=l3RThWyQ4sw 777 Aeroflot https://www.youtube.com/watch?v=5P4b5Sogros 777 Air Cana...
In this video, we will have a look at the basic differences between a Wide Body Aircraft and Narrow Body Aircraft Follow us on Instagram - @thecuriousaviators Attribution 1. 00:16 - Introduction - Dope Motions - https://www.velosofy.com/template/intro-template-111 2. 01:22 - Cory W. Watts (CC BY-SA 2.0) https://www.flickr.com/photos/63366024@N00/3448768864/ 3. 02:50 - Aero Icarus (CC BY-SA 2.0) https://www.flickr.com/photos/aero_icarus/7007598538/in/photostream/ 4. 03:40 - airbus777 (CC BY 2.0) https://www.flickr.com/photos/erussell1984/40354390274/in/photostream/ 5. 03:44 - Delta News Hub (CC BY 2.0) https://www.flickr.com/photos/deltanewshub/48832614097/in/album-72157711164295003/ 6. 03:46 - airbus777 (CC BY 2.0) https://www.flickr.com/photos/erussell1984/27191923868/in/photost...
A wide-body aircraft is a passenger airplane whose fuselage is wide enough to accommodate two passenger aisles. Read more: https://marketbusinessnews.com/financial-glossary/wide-body-aircraft-definition-meaning/
Something is alluring about widebodies on short-haul routes, many of which are simply tag-on an extra leg to long-haul services. There’s some controversy over the world’s shortest, which we’ll explore in today’s video... Article link: https://simpleflying.com/worlds-shortest-widebody-routes/ Maps generated by the Great Circle Mapper - copyright © Karl L. Swartz. Video sources: TUI Fly 787 https://www.youtube.com/watch?v=BND5JCM6tP0 787-9 Gulf Air https://www.youtube.com/watch?v=hoTcPJ0f3io 787-10 KLM https://www.youtube.com/watch?v=N2MUsayyAgU 777-300 Air France https://www.youtube.com/watch?v=FYV3zNhkAsw 777 Air france https://www.youtube.com/watch?v=2RYegH9Y6m4 A350 ULR Singapore Making https://www.youtube.com/watch?v=QZwcxZyZxKc 777 KLM Amsterdam Schiphol https://www.youtube.com/wa...
Emirates celebrated the company record arrival of four new aircraft in one day, affirming its commitment to flying a modern, efficient and comfortable fleet. The bumper delivery included two Boeing 777-300ERs, one Boeing 777 Freighter and one Airbus A380 aircraft. The event marks the 150th Emirates Boeing 777 delivery milestone, and takes airline’s total A380 fleet to 66.
A new widebody aircraft is currently being built that is set to compete with both Airbus and Boeing for their own widebody aircraft. In today's video, I take a look at the CR929 and a whole lot more surrounding the new aircraft and its prototype! Subscribe to Dj’s Transport ➡ https://www.youtube.com/channel/UCXYRdWd9a1rrKpIKYrwt5UA Join the Discord Server ➡ https://discord.gg/aviation Follow Dj's Aviation ➡ Twitter: https://twitter.com/DjsAviation ➡ Soundcloud: https://soundcloud.com/djsaviation ➡ Patreon: https://www.patreon.com/djsaviation ➡ Facebook: https://www.facebook.com/djsaviation/ ➡ Merchandise teespring.com/stores/djs-aviation-shop-3 ➡ Instagram: https://www.instagram.com/djsaviation/ Business Opportunities / Enquiries ➡ Email: [email protected] Listen to the Dj...
✪✪✪✪✪ http://www.theaudiopedia.com ✪✪✪✪✪ What is WIDE-BODY AIRCRAFT? What does WIDE-BODY AIRCRAFT mean? WIDE-BODY AIRCRAFT meaning - WIDE-BODY AIRCRAFT definition - WIDE-BODY AIRCRAFT explanation. Source: Wikipedia.org article, adapted under https://creativecommons.org/licenses/by-sa/3.0/ license. SUBSCRIBE to our Google Earth flights channel - https://www.youtube.com/channel/UC6UuCPh7GrXznZi0Hz2YQnQ A wide-body aircraft is a jet airliner having a fuselage wide enough to accommodate two passenger aisles, also known as twin-aisle aircraft, with seven or more seats abreast. The typical fuselage diameter is 5 to 6 m (16 to 20 ft). In the typical wide-body economy cabin, passengers are seated seven to ten abreast, allowing a total capacity of 200 to 850 passengers. The largest wide-body ai...
Wide Body Procurement, One of the biggest political scandals in Nepali Politics history, which involves different Aviation Ministers, Rabindra Adhikari, Jitendra Dev, Jeevan Bahadur Shahi, Prime Ministers, KP Oli , Sher Bahadur Deuba, and the then MD of Nepal Airlines Corporation Sugat Ratna Kansakar. This video explains everything you need to know about Wide Body Scam. Credits TKP https://bit.ly/3oyIHIH OK https://bit.ly/34oC7NC Nagarik news https://bit.ly/3AJVr3Z Copying this video and posting in social media platforms without any permission is highly discouraged. If you want to react to this video then give a proper working link to our channel as a credit. Legal actions will be taken if videos of this channel are misused. Videos used in this video follows YouTube Copyright Policy. I...
Sign up to Nebula here: https://go.nebula.tv/realengineering Get a free month of Nebula with any Real Engineering merch: https://store.nebula.app/collections/real-engineering Links to everything I do: https://beacons.ai/brianmcmanus Get your Real Engineering shirts at: https://standard.tv/collections/real-engineering Credits: Writer/Narrator: Brian McManus Editor: Dylan Hennessy (https://www.behance.net/dylanhennessy1) Animator: Mike Ridolfi (https://www.moboxgraphics.com/) Sound: Graham Haerther (https://haerther.net/) Thumbnail: Simon Buckmaster https://twitter.com/forgottentowel References: References: [1] https://theicct.org/sites/default/files/publications/ICCT_Aircraft-FE-Trends_20150902.pdf [2] https://spinoff.nasa.gov/Spinoff2010/t_5.html#:~:text=Employing%20APB's%20Blended%...
The Boeing 747-8 is a wide-body jet airliner developed by Boeing Commercial Airplanes. Officially announced in 2005, the 747-8 is the third generation of the 747, with lengthened fuselage, redesigned wings, and improved efficiency. The 747-8 is the largest 747 version, the largest commercial aircraft built in the United States, and the longest passenger aircraft in the world.
The 747-8 is offered in two main variants: the 747-8 Intercontinental (747-8I) for passengers and the 747-8 Freighter (747-8F) for cargo. The first 747-8F performed the model's maiden flight on February 8, 2010, with the 747-8 Intercontinental following on March 20, 2011. Delivery of the first freighter aircraft occurred in October 2011 and the passenger model began deliveries in 2012. As of January 2016, confirmed orders for the 747-8 total 121, comprising 70 of the freighter version, and 51 of the passenger version.
Boeing had considered larger-capacity versions of the 747 several times during the 1990s and 2000s. The 747-500X and -600X, proposed at the 1996 Farnborough Airshow, would have stretched the 747 and used a 777-derived wing, but did not attract enough interest to enter development. In 2000, Boeing offered the 747X and 747X Stretch derivatives as alternatives to the Airbus A3XX. This was a more modest proposal than the previous −500X and −600X. The 747X would increase the 747's wingspan to 229 ft (69.8 m) by adding a segment at the root. The 747X was to carry 430 passengers up to 8,700 nmi (16,100 km). The 747X Stretch would be extended to 263 ft (80.2 m) long, allowing it to carry 500 passengers up to 7,800 nmi (14,400 km). However, the 747X family was unable to attract enough interest to enter production. Some of the ideas developed for the 747X were used on the 747-400ER.
Jumbo Jet Jumbo Jet Zooyi
Jumbo Jet Jumbo Jet Zooyi
Jumbo Jet Jumbo Jet Zooyi
Jumbo Jet Jumbo Jet Zooyi
Jaldi Jaldi Betho Andhar
Safar Rahega Bahut Hi Sundar
Jaldi Jaldi Betho Andhar
Safar Rahega Bahut Hi Sundar
Jaldi Jaldi Betho Andhar
Safar Rahega Bahut Hi Sundar
Unche Unche Kahin Par Parbat
Kahin Par Gheri Khaayi
Zooyi Zooyi
Jumbo Jet Jumbo Jet Zooyi
Jumbo Jet Jumbo Jet Zooyi
Jumbo Jet Jumbo Jet
Saathi Hoge Kahin Safar Mein
Un Mein Hoga Alladin
Kuch Bhi Maango Yun De Dega Uska
Woh Jaadui Jin
Saathi Hoge Kahin Safar Mein
Un Mein Hoga Alladin
Kuch Bhi Maango Yun De Dega Uska
Woh Jaadui Jin
Chup Chup Chup Chup Bhaagam Bhaag
Chup Chup Chup Chup Bhaagam Bhaag
Dekho Koyi Jaaye Na Jaag
Udenge Hum Jab Duniya Hogi Apni Need Mein Khoyi
Zooyi Zooyi
Jumbo Jet Jumbo Jet Zooyi
Jumbo Jet Jumbo Jet Zooyi
Jumbo Jet Jumbo Jet
Batman Superman
Batman Superman Pilot Apne
Khuli Aankh Se Dekho Sapne
Khaana Laayega Donald Duck
Jise Mile Ga Uska Luck
Khaana Laayega Donald Duck
Jise Mile Ga Uska Luck
Dekho Dekho Chaand Woh Taare
Woh Bhi To Hai Saath Hamare
Dekho Dekho Chaand Woh Taare
Woh Bhi To Hai Saath Hamare
Rocket Aaya Dekho Sambhaalo
Dhyaan Tumhara Kidhar Hai Bhai
Zooyi Zooyi
Jumbo Jet Jumbo Jet Zooyi
Jumbo Jet Jumbo Jet Zooyi
Jumbo Jet Jumbo Jet
Badne Lagi Hai Apni Speed Koyi Fikar Na Koyi Bheed
Koyi Iske Beech Mein Aaya Ho Jaaye Ga Uska Safaya
Badne Lagi Hai Apni Speed Koyi Fikar Na Koyi Bheed
Koyi Iske Beech Mein Aaya Ho Jaaye Ga Uska Safaya
Kahan Chali Yeh Jumbo Jet
Kitni Badi Yeh Jumbo Jet
Upar Neeche Neeche Upar
Jumbo Jet Jumbo Jet Jumbo Jet
Jumbo Jet Jumbo Jet