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

Jeff Bezos

Jeffrey Preston "Jeff" Bezos (/ˈbzs/; born January 12, 1964) is an American technology entrepreneur and investor. He has played a role in the growth of e-commerce as the founder and CEO of Amazon.com, an online merchant of books and later of a wide variety of products and services, most recently video streaming. Amazon.com became the largest retailer on the World Wide Web and a model for Internet sales. In 2013, Bezos purchased The Washington Post newspaper. As of 1 January 2016, Bezos' personal wealth is estimated to be US$59.2 billion, due in part to a recent spike in Amazon's stock price, ranking him 4th on the Forbes list of billionaires.

Early life and education

Bezos was born Jeffrey Preston Jorgensen in Albuquerque, New Mexico to Jacklyn (née Gise) and Ted Jorgensen. His maternal ancestors were settlers who lived in Texas, and over the generations acquired a 25,000-acre (101 km2 or 39 miles2) ranch near Cotulla. As of March 2015, Bezos was among the largest land holders in Texas. Bezos' maternal grandfather was a regional director of the U.S. Atomic Energy Commission in Albuquerque. He retired early to the ranch, where Bezos spent many summers as a youth, working with him. At an early age, he displayed mechanical aptitude – as a toddler, he tried dismantling his crib.

Blue Origin

Blue Origin is an American privately-funded aerospace developer and manufacturer set up by Amazon.com founder Jeff Bezos. The company is developing technologies to enable private human access to space with the goal of dramatically lower cost and increased reliability. It is employing an incremental approach from suborbital to orbital flight, with each developmental step building on its prior work. The company motto is "Gradatim Ferociter", Latin for "Step-by-Step, Ferociously" or literally "Gradually Ferocious". Blue Origin is developing a variety of technologies, with a focus on rocket-powered Vertical Takeoff and Vertical Landing (VTVL) vehicles for access to suborbital and orbital space. The company's name refers to the blue planet, Earth, as the point of origin.

Initially focused on sub-orbital spaceflight, the company has built and flown a testbed of its New Shepard spacecraft design at their Culberson County, Texas facility. The first developmental test flight of the New Shepard was April 29, 2015. The uncrewed vehicle flew to its planned test altitude of more than 93.5 km (307,000 ft) and achieved a top speed of Mach 3. Another flight was performed on November 23, 2015. The vehicle went just beyond 100 km (330,000 ft) altitude and both the space capsule and its rocket booster successfully achieved a soft landing. On January 22, 2016 Blue Origin re-flew the same New Shepard booster that launched and landed vertically in November 2015, demonstrating reuse. This time, New Shepard reached an apogee of 333,582 feet (101.7 kilometers) before both capsule and booster returned to Earth for recovery and reuse.

Podcasts:

  • Jeff Bezos' Blue Origin Successfully Launches Rocket Ship

    It was a triumph for Jeff Bezos as his rocket ship, New Glenn, blasted off. The Amazon founder watched from the control center as Blue Origin employees across the nation celebrated. It's the first successful rocket launch from Bezos' company. His success comes after President Biden delivered a farewell address to the nation in which he targeted tech billionaires such as Bezos and Elon Musk.

    published: 16 Jan 2025
  • Watch live: Jeff Bezos' Blue Origin launches a New Glenn rocket for first time at Cape Canaveral

    Watch live coverage as Jeff Bezos' Blue Origin launches its New Glenn rocket for first time from Cape Canaveral Space Force Station in Florida. Liftoff of the liquid methane and liquid hydrogen fueled rocket is scheduled during a three-hour launch window that opens at 1 a.m. EST (0600 UTC) on Thursday, January 16. After separation from the second stage, New Glenn's first stage booster will attempt to land on Blue Origin's landing platform 'Jacklyn' in the Atlantic Ocean about nine and a half minutes after launch. New Glenn will carry the Blue Ring Pathfinder on a test flight to a highly elliptical medium Earth orbit. This platform, attached to the rocket's second stage, is designed to deploy and host payloads. Our live coverage with commentary from Will Robinson-Smith will begin about...

    published: 16 Jan 2025
  • Watch moment Jeff Bezos' Blue Origin rocket blasts into space in bid to rival Elon Musk's SpaceX

    This is the moment Jeff Bezos’s Blue Origin rocket successfully blasts off posing a challenge to Elon Musk’s SpaceX. The rocket launch comes days after its initial attempt was cancelled. The Sun delivers breaking news, latest gossip and incredible exclusives around the world with hubs in London, New York, Scotland and Ireland. Covering topics from news, money and sport along with our famous Fabulous Magazine, The Sun is the biggest news brand in the UK and one of the fastest growing news sites in the US. Stay tuned for video clips across the biggest news stories and segments from The Sun’s expert journalists. Become a Sun Subscriber and hit the bell to be the first to know. Read The Sun: https://www.thesun.co.uk/?utm_source=youtube&utm_medium=social&utm_campaign=sunyoutubesitelink ...

    published: 16 Jan 2025
  • Jeff Bezos's reusable rocket New Glenn is launched into space

    Blue Origin’s huge New Glenn rocket has blasted off from Florida on its first mission to space. Subscribe to Guardian News on YouTube ► http://bit.ly/guardianwiressub Its first attempt to launch, on 14 January, was cancelled because ice had accumulated on a propellant line. The company, founded by Jeff Bezos, cited no issues before launch and the rocket successfully reached orbit Bezos’s Blue Origin rocket blasts off in challenge to Musk’s SpaceX ► https://www.theguardian.com/technology/2025/jan/16/bezos-blue-origin-new-glenn-rocket-blasts-off-musk-spacex The Guardian publishes independent journalism, made possible by supporters. Contribute to The Guardian today ► https://bit.ly/3uhA7zg Sign up to the Guardian's free new daily newsletter, First Edition ► http://theguardian.com/first-e...

    published: 16 Jan 2025
  • Jeff Bezos’ Blue Origin launches massive New Glenn rocket on first test flight

    Blue Origin launched its massive new rocket on its first test flight Thursday, sending up a prototype satellite to orbit thousands of miles above Earth. Read more here: https://bit.ly/4gXtF8h #blueorigin #newglenn #space #news #jeffbezos Subscribe: http://smarturl.it/AssociatedPress Read more: https://apnews.com​ This video may be available for archive licensing via https://newsroom.ap.org/home

    published: 16 Jan 2025
  • Jeff Bezos rocket New Glenn attempting second launch

    Blue Origin's New Glenn rocket is set to blast off this morning after a cancelled first attempt on Monday. The launch marks a new phase in competition in the commercial space market, posing a challenge to Elon Musk's dominance. Watch the launch live in the stream below. Live updates: https://trib.al/WtVxvGR #SkyNews #US #JeffBezos SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews Follow us on TikTok: https://www.tiktok.com/@skynews For more content go to http://news.sky.com and download our apps: Apple https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 Android https://play.google.com...

    published: 16 Jan 2025
  • Jeff Bezos' Blue Origin launches New Glenn rocket #shorts

    published: 17 Jan 2025
  • Work-life balance — Jeff Bezos

    In this Sessions short, Jeff Bezos details why there is no such thing as work-life balance. To be considered to attend our next event, we welcome applications at http://www.summit.co/apply Connect with Summit: http://www.summit.co http://www.instagram.com/summit http://fb.com/summit

    published: 14 Nov 2017
  • The Interview: From Amazon to Space — Jeff Bezos Talks Innovation, Progress and What’s Next

    Jeff Bezos sits down with Andrew Ross Sorkin at the 2024 New York Times DealBook Summit to discuss what’s next for Amazon, Blue Origin and his vision for humanity’s future in space. Interviewer: Andrew Ross Sorkin, the founder and editor at large of DealBook Guest: Jeff Bezos, the founder and executive chairman of Amazon

    published: 05 Dec 2024
  • LIVE: Blue Origin launches New Glenn rocket on first test flight

    Jeff Bezos’ Blue Origin will attempt the debut launch of its New Glenn rocket from the Cape Canaveral Space Force Station in Florida. The company called off the attempt on Monday because of technical trouble. Credit: Blue Origin #blueorigin #space #live

    published: 16 Jan 2025
Jeff Bezos' Blue Origin Successfully Launches Rocket Ship
2:02

Jeff Bezos' Blue Origin Successfully Launches Rocket Ship

  • Order:
  • Duration: 2:02
  • Uploaded Date: 16 Jan 2025
  • views: 15152
It was a triumph for Jeff Bezos as his rocket ship, New Glenn, blasted off. The Amazon founder watched from the control center as Blue Origin employees across the nation celebrated. It's the first successful rocket launch from Bezos' company. His success comes after President Biden delivered a farewell address to the nation in which he targeted tech billionaires such as Bezos and Elon Musk.
https://wn.com/Jeff_Bezos'_Blue_Origin_Successfully_Launches_Rocket_Ship
Watch live: Jeff Bezos' Blue Origin launches a New Glenn rocket for first time at Cape Canaveral
3:03:44

Watch live: Jeff Bezos' Blue Origin launches a New Glenn rocket for first time at Cape Canaveral

  • Order:
  • Duration: 3:03:44
  • Uploaded Date: 16 Jan 2025
  • views: 286261
Watch live coverage as Jeff Bezos' Blue Origin launches its New Glenn rocket for first time from Cape Canaveral Space Force Station in Florida. Liftoff of the liquid methane and liquid hydrogen fueled rocket is scheduled during a three-hour launch window that opens at 1 a.m. EST (0600 UTC) on Thursday, January 16. After separation from the second stage, New Glenn's first stage booster will attempt to land on Blue Origin's landing platform 'Jacklyn' in the Atlantic Ocean about nine and a half minutes after launch. New Glenn will carry the Blue Ring Pathfinder on a test flight to a highly elliptical medium Earth orbit. This platform, attached to the rocket's second stage, is designed to deploy and host payloads. Our live coverage with commentary from Will Robinson-Smith will begin about 90 minutes before launch. Videos like this are made possible by the support of our members. Join this channel to get access to perks: https://www.youtube.com/channel/UCoLdERT4-TJ82PJOHSrsZLQ/join
https://wn.com/Watch_Live_Jeff_Bezos'_Blue_Origin_Launches_A_New_Glenn_Rocket_For_First_Time_At_Cape_Canaveral
Watch moment Jeff Bezos' Blue Origin rocket blasts into space in bid to rival Elon Musk's SpaceX
1:13

Watch moment Jeff Bezos' Blue Origin rocket blasts into space in bid to rival Elon Musk's SpaceX

  • Order:
  • Duration: 1:13
  • Uploaded Date: 16 Jan 2025
  • views: 4795
This is the moment Jeff Bezos’s Blue Origin rocket successfully blasts off posing a challenge to Elon Musk’s SpaceX. The rocket launch comes days after its initial attempt was cancelled. The Sun delivers breaking news, latest gossip and incredible exclusives around the world with hubs in London, New York, Scotland and Ireland. Covering topics from news, money and sport along with our famous Fabulous Magazine, The Sun is the biggest news brand in the UK and one of the fastest growing news sites in the US. Stay tuned for video clips across the biggest news stories and segments from The Sun’s expert journalists. Become a Sun Subscriber and hit the bell to be the first to know. Read The Sun: https://www.thesun.co.uk/?utm_source=youtube&utm_medium=social&utm_campaign=sunyoutubesitelink Like The Sun on Facebook: https://www.facebook.com/thesun/ Follow The Sun on X: https://twitter.com/TheSun Follow The Sun on TikTok: https://www.tiktok.com/@thesun Subscribe to The Sun on Snapchat: https://www.snapchat.com/discover/The_Sun/1633225139 #thesun #jeffbezos #elonmusk
https://wn.com/Watch_Moment_Jeff_Bezos'_Blue_Origin_Rocket_Blasts_Into_Space_In_Bid_To_Rival_Elon_Musk's_Spacex
Jeff Bezos's reusable rocket New Glenn is launched into space
1:11

Jeff Bezos's reusable rocket New Glenn is launched into space

  • Order:
  • Duration: 1:11
  • Uploaded Date: 16 Jan 2025
  • views: 9810
Blue Origin’s huge New Glenn rocket has blasted off from Florida on its first mission to space. Subscribe to Guardian News on YouTube ► http://bit.ly/guardianwiressub Its first attempt to launch, on 14 January, was cancelled because ice had accumulated on a propellant line. The company, founded by Jeff Bezos, cited no issues before launch and the rocket successfully reached orbit Bezos’s Blue Origin rocket blasts off in challenge to Musk’s SpaceX ► https://www.theguardian.com/technology/2025/jan/16/bezos-blue-origin-new-glenn-rocket-blasts-off-musk-spacex The Guardian publishes independent journalism, made possible by supporters. Contribute to The Guardian today ► https://bit.ly/3uhA7zg Sign up to the Guardian's free new daily newsletter, First Edition ► http://theguardian.com/first-edition Website ► https://www.theguardian.com Facebook ►https://www.facebook.com/theguardian Instagram ► https://instagram.com/guardian The Guardian on YouTube: The Guardian ► https://bit.ly/guardiannewssubs Guardian Australia ► https://bit.ly/guardianaussubs Guardian Football ► https://bit.ly/gdnfootballsubs Guardian Sport ► https://bit.ly/gdnsportsubs It's Complicated ► https://bit.ly/ItsComplicatedSubs Guardian Live ► https://bit.ly/guardianlivesubs #jeffebezos #newglenn #space #blueorigin #spacex #elonmusk #spacerace
https://wn.com/Jeff_Bezos's_Reusable_Rocket_New_Glenn_Is_Launched_Into_Space
Jeff Bezos’ Blue Origin launches massive New Glenn rocket on first test flight
1:15

Jeff Bezos’ Blue Origin launches massive New Glenn rocket on first test flight

  • Order:
  • Duration: 1:15
  • Uploaded Date: 16 Jan 2025
  • views: 16631
Blue Origin launched its massive new rocket on its first test flight Thursday, sending up a prototype satellite to orbit thousands of miles above Earth. Read more here: https://bit.ly/4gXtF8h #blueorigin #newglenn #space #news #jeffbezos Subscribe: http://smarturl.it/AssociatedPress Read more: https://apnews.com​ This video may be available for archive licensing via https://newsroom.ap.org/home
https://wn.com/Jeff_Bezos’_Blue_Origin_Launches_Massive_New_Glenn_Rocket_On_First_Test_Flight
Jeff Bezos rocket New Glenn attempting second launch
1:26:51

Jeff Bezos rocket New Glenn attempting second launch

  • Order:
  • Duration: 1:26:51
  • Uploaded Date: 16 Jan 2025
  • views: 11579
Blue Origin's New Glenn rocket is set to blast off this morning after a cancelled first attempt on Monday. The launch marks a new phase in competition in the commercial space market, posing a challenge to Elon Musk's dominance. Watch the launch live in the stream below. Live updates: https://trib.al/WtVxvGR #SkyNews #US #JeffBezos SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews Follow us on TikTok: https://www.tiktok.com/@skynews For more content go to http://news.sky.com and download our apps: Apple https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 Android https://play.google.com/store/apps/details?id=com.bskyb.skynews.android&hl=en_GB Sky News Daily podcast is available for free here: https://podfollow.com/skynewsdaily/ Sky News videos are now available in Spanish here/Los video de Sky News están disponibles en español aquí: https://www.youtube.com/channel/UCzG5BnqHO8oNlrPDW9CYJog To enquire about licensing Sky News content, you can find more information here: https://news.sky.com/info/library-sales
https://wn.com/Jeff_Bezos_Rocket_New_Glenn_Attempting_Second_Launch
Jeff Bezos' Blue Origin launches New Glenn rocket #shorts
0:22

Jeff Bezos' Blue Origin launches New Glenn rocket #shorts

  • Order:
  • Duration: 0:22
  • Uploaded Date: 17 Jan 2025
  • views: 1086
https://wn.com/Jeff_Bezos'_Blue_Origin_Launches_New_Glenn_Rocket_Shorts
Work-life balance — Jeff Bezos
3:17

Work-life balance — Jeff Bezos

  • Order:
  • Duration: 3:17
  • Uploaded Date: 14 Nov 2017
  • views: 364855
In this Sessions short, Jeff Bezos details why there is no such thing as work-life balance. To be considered to attend our next event, we welcome applications at http://www.summit.co/apply Connect with Summit: http://www.summit.co http://www.instagram.com/summit http://fb.com/summit
https://wn.com/Work_Life_Balance_—_Jeff_Bezos
The Interview: From Amazon to Space — Jeff Bezos Talks Innovation, Progress and What’s Next
1:06:10

The Interview: From Amazon to Space — Jeff Bezos Talks Innovation, Progress and What’s Next

  • Order:
  • Duration: 1:06:10
  • Uploaded Date: 05 Dec 2024
  • views: 476685
Jeff Bezos sits down with Andrew Ross Sorkin at the 2024 New York Times DealBook Summit to discuss what’s next for Amazon, Blue Origin and his vision for humanity’s future in space. Interviewer: Andrew Ross Sorkin, the founder and editor at large of DealBook Guest: Jeff Bezos, the founder and executive chairman of Amazon
https://wn.com/The_Interview_From_Amazon_To_Space_—_Jeff_Bezos_Talks_Innovation,_Progress_And_What’S_Next
LIVE: Blue Origin launches New Glenn rocket on first test flight
2:11:21

LIVE: Blue Origin launches New Glenn rocket on first test flight

  • Order:
  • Duration: 2:11:21
  • Uploaded Date: 16 Jan 2025
  • views: 42466
Jeff Bezos’ Blue Origin will attempt the debut launch of its New Glenn rocket from the Cape Canaveral Space Force Station in Florida. The company called off the attempt on Monday because of technical trouble. Credit: Blue Origin #blueorigin #space #live
https://wn.com/Live_Blue_Origin_Launches_New_Glenn_Rocket_On_First_Test_Flight
  • LIVE! Blue Origin New Glenn Countdown

    LIVE! Blue Origin New Glenn Countdown #blueorigin #newglenn #launch Blue Origin is preparing to launch New Glenn on its maiden flight, stay up to date on the latest updates with our 24/7 status board! Pad : LC-36 Location : Cape Canaveral Space Force Station, Florida, USA Rocket : New Glenn -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- OUR MISSION: Our mission is to inform and inspire the explorers of tomorrow; because we believe that space is better together. SUPPORT OUR WORK: Consider becoming a TLP Member https://www.youtube.com/thelaunchpad -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- CONNECT WITH US: Discord - https://discord.com/invite/xCm9UpDPE4 Twitter - https://www.twitter.com/TLPN_Official Shop - https://www.thelaunchpad.store -- -- -- -- -- -- -- -- -- -- -- -- -- ...

    published: 12 Jan 2025
  • Blue Origin New Glenn Finally Ready To Beat SpaceX's Old Rockets.... Is It Too Late

    After almost 25 years Blue Origin is finally ready to launch their first orbital class rocket - New Glenn - and it's a monster rocket that would surely be getting lots of people talking about just how big it was, if it wasn't a lot smaller than SpaceX's starship. While Blue Origin think this first flight has a high chance of success there's inevitably the question of whether it'll be relevant in a future where SpaceX can offer 100% reusable spaceflight via Starship. Are Blue Origin only going to compete with SpaceX's best products from last decade? Flying New Glenn Rocket is implemented in Juno: New Origins by GreenGalaxyAeroSpace https://www.simplerockets.com/c/7kI4P8/New-GlennVizzy Follow me on Twitter for more updates: https://twitter.com/DJSnM I have a discord server where I regular...

    published: 12 Jan 2025
  • Starship Flight Test 7 — Far Beyond What We Imagined

    Take your eCommerce store to the next level with Odoo: https://www.odoo.com/r/kTi Well this week has been one of the more intriguing I’ve got to say. Starship Flight Test 7 has Upgrades that are Far Beyond What We Imagined! So many great new insights, and it is stacked and fully tested before flight. New Glenn NG-1 is set to launch Sunday morning, Falcon 9 to launch 2 moon landers on one flight with Firefly Blue Ghost and iSpace Hakuto-R Mission 2, diving into the Parker Solar Probe and the Mars Sample Return Mission Update too! It's a big one friends! 🤩 Follow Olivia at https://x.com/OliviaStalvey to be inspired by beautiful artwork. She is doing great work so also subscribe to her channel at https://youtu.be/Q-55AW2qPps 🤩 Firefly Blue Ghost Mission 1 to the Moon https://fireflyspace....

    published: 11 Jan 2025
  • Blue Origin New Glenn Rocket Launch Countdown

    Welcome! Today let’s watch history happen as Blue Origin launches its first flight of New Glenn. Blue Origin is delaying the planned debut of its heavy-lift New Glenn rocker due to rough seas in the Atlantic, meaning we’ll have to wait at least a day longer for the company’s first-ever orbital launch. Please 👍 LIKE and 💖 SUBSCRIBE!

    published: 12 Jan 2025
  • Blue Origin to launch New Glenn rocket after 10 years of development

    Space company Blue Orbit will be launching its New Glenn rocket on Sunday after more than 10 years of development. CBS News space consultant William Harwood has more. CBS News 24/7 is the premier anchored streaming news service from CBS News and Stations that is available free to everyone with access to the internet and is the destination for breaking news, live events, original reporting and storytelling, and programs from CBS News and Stations' top anchors and correspondents working locally, nationally and around the globe. It is available on more than 30 platforms across mobile, desktop and connected TVs for free, as well as CBSNews.com and Paramount+ and live in 91 countries. Subscribe to the CBS News YouTube channel: https://youtube.com/cbsnews Watch CBS News: https://cbsnews.com/li...

    published: 11 Jan 2025
  • What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship...

    What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship... === #alphatech #techalpha #spacex #elonmusk === What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship... After a quarter of a century, Blue Origin has never been more determined to challenge its rival. This will mark their first orbital flight and an attempted landing on the very first try. However, reality shows that this goal is far from easy, as the company recently delayed the first launch of New Glenn again. What something weird happened? More importantly, how will Blue Origin execute the recovery of the first stage of the New Glenn rocket? Let’s find out on today’s episode of Alpha Tech: What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX St...

    published: 11 Jan 2025
  • Blue Origin's New Glenn rocket set to make maiden flight as early as Sunday

    CNBC's Morgan Brennan talks Blue Origin's historic upcoming flight. For access to live and exclusive video from CNBC subscribe to CNBC PRO: https://cnb.cx/42d859g » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC Turn to CNBC TV for the latest stock market news and analysis. From market futures to live price updates CNBC is the leader in business news worldwide. Connect with CNBC News Online Get the latest news: http://www.cnbc.com/ Follow CNBC on LinkedIn: https://cnb.cx/LinkedInCNBC Follow CNBC News on Instagram: https://cnb.cx/InstagramCNBC Follow CNBC News on Facebook: https://cnb.cx/LikeCNBC Follow CNBC on Threads: https://cnb.cx/threads Follow CNBC News on X: https://cnb.cx/FollowCNBC Follow CNBC on WhatsApp: https://c...

    published: 10 Jan 2025
  • SpaceX EXPOSED: Blue Origin's New Glenn Already FAILED Before Launch?!

    🚀 SpaceX vs Blue Origin: The truth about New Glenn's development challenges and how they compare to SpaceX's proven track record. From delayed launches to engineering hurdles, discover why Jeff Bezos' dream rocket might be struggling before it even leaves the pad. Get the full story on the space race that's transforming the future of commercial spaceflight! ⏱️ Each video includes timestamps for key topics: 00:00 - "Jeff Bezos' Embarrassing SpaceX Tweet: The 9-Year-Old Mistake That Changed Everything" 01:41 - "New Glenn: Blue Origin's $15B Make-or-Break Moment vs SpaceX's Dominance" 04:27 - "BREAKING: New Glenn's Critical Tests and Launch Preparations Revealed (Late 2024)" 06:12 - "SpaceX's 90% Market Dominance: How Starship Threatens Blue Origin's Future" 07:54 - "EXCLUSIVE: SpaceX Starshi...

    published: 08 Jan 2025
  • Blue Origin New Glenn before Mission NG-1 - ultra high definition 4K b-roll (Jan 2025, no sound)

    [ video: Blue Origin ]

    published: 09 Jan 2025
  • Jeff Bezos’ Space Plans Make More Sense Than Elon Musk's

    Check out courses in science, computer science, or mathematics on Brilliant! First 30 days are free and 20% off the annual premium subscription when you use our link ➜ https://brilliant.org/sabine. Amazon founder Jeff Bezos also owns an aerospace company named Blue Origin, and the former bookseller has ideas. Those include housing humans in rotating cylinders around Earth’s orbit and moving all heavy industry into space. It’s not as crazy as it sounds. Let’s take a look. 🤓 Check out my new quiz app ➜ http://quizwithit.com/ 💌 Support me on Donorbox ➜ https://donorbox.org/swtg 📝 Transcripts and written news on Substack ➜ https://sciencewtg.substack.com/ 👉 Transcript with links to references on Patreon ➜ https://www.patreon.com/Sabine 📩 Free weekly science newsletter ➜ https://sabineho...

    published: 29 Dec 2024
LIVE! Blue Origin New Glenn Countdown
0:00

LIVE! Blue Origin New Glenn Countdown

  • Order:
  • Duration: 0:00
  • Uploaded Date: 12 Jan 2025
  • views: 30723
LIVE! Blue Origin New Glenn Countdown #blueorigin #newglenn #launch Blue Origin is preparing to launch New Glenn on its maiden flight, stay up to date on the latest updates with our 24/7 status board! Pad : LC-36 Location : Cape Canaveral Space Force Station, Florida, USA Rocket : New Glenn -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- OUR MISSION: Our mission is to inform and inspire the explorers of tomorrow; because we believe that space is better together. SUPPORT OUR WORK: Consider becoming a TLP Member https://www.youtube.com/thelaunchpad -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- CONNECT WITH US: Discord - https://discord.com/invite/xCm9UpDPE4 Twitter - https://www.twitter.com/TLPN_Official Shop - https://www.thelaunchpad.store -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- GIVEAWAY RULES: No Purchase Necessary. Purchase/donation does not enhance chance of winning. Void where prohibited or restricted by law. Valid only during the live broadcast.
https://wn.com/Live_Blue_Origin_New_Glenn_Countdown
Blue Origin New Glenn Finally Ready To Beat SpaceX's Old Rockets.... Is It Too Late
17:24

Blue Origin New Glenn Finally Ready To Beat SpaceX's Old Rockets.... Is It Too Late

  • Order:
  • Duration: 17:24
  • Uploaded Date: 12 Jan 2025
  • views: 456226
After almost 25 years Blue Origin is finally ready to launch their first orbital class rocket - New Glenn - and it's a monster rocket that would surely be getting lots of people talking about just how big it was, if it wasn't a lot smaller than SpaceX's starship. While Blue Origin think this first flight has a high chance of success there's inevitably the question of whether it'll be relevant in a future where SpaceX can offer 100% reusable spaceflight via Starship. Are Blue Origin only going to compete with SpaceX's best products from last decade? Flying New Glenn Rocket is implemented in Juno: New Origins by GreenGalaxyAeroSpace https://www.simplerockets.com/c/7kI4P8/New-GlennVizzy Follow me on Twitter for more updates: https://twitter.com/DJSnM I have a discord server where I regularly turn up: https://discord.gg/zStmKbM If you really like what I do you can support me directly through Patreon https://www.patreon.com/scottmanley
https://wn.com/Blue_Origin_New_Glenn_Finally_Ready_To_Beat_Spacex's_Old_Rockets...._Is_It_Too_Late
Starship Flight Test 7 — Far Beyond What We Imagined
22:24

Starship Flight Test 7 — Far Beyond What We Imagined

  • Order:
  • Duration: 22:24
  • Uploaded Date: 11 Jan 2025
  • views: 583519
Take your eCommerce store to the next level with Odoo: https://www.odoo.com/r/kTi Well this week has been one of the more intriguing I’ve got to say. Starship Flight Test 7 has Upgrades that are Far Beyond What We Imagined! So many great new insights, and it is stacked and fully tested before flight. New Glenn NG-1 is set to launch Sunday morning, Falcon 9 to launch 2 moon landers on one flight with Firefly Blue Ghost and iSpace Hakuto-R Mission 2, diving into the Parker Solar Probe and the Mars Sample Return Mission Update too! It's a big one friends! 🤩 Follow Olivia at https://x.com/OliviaStalvey to be inspired by beautiful artwork. She is doing great work so also subscribe to her channel at https://youtu.be/Q-55AW2qPps 🤩 Firefly Blue Ghost Mission 1 to the Moon https://fireflyspace.com/missions/blue-ghost-mission-1/ Interested in the Rocket Lab Mars Sample Return Plan? Here it is! https://www.rocketlabusa.com/missions/mars-sample-return/ 👕 Like the merch?! Pick it up here https://marcus-house.myspreadshop.com/starship+super-heavy+lift+launch+vehicle?idea=63620b47542dda475e28ec00 or dark on light if you prefer it https://marcus-house.myspreadshop.com/starship+super-heavy+lift+launch+vehicle+-+no+text?idea=63620b47587fe76489454aa5 🎁 Marcus House Merch - https://marcus-house.myspreadshop.com/ You can support me on: Patreon - https://www.patreon.com/MarcusHouse Join my Discord - https://discord.gg/dAMmbqj Follow/Subscribe on Twitter - https://twitter.com/MarcusHouse The production crew: GameplayReviewUK, TiagoCruz, Mr Pleasant, Virtu, Orbitly, Shaun Gisler, Greg Scott, Nicolas Arroyo Support from the below is always massively appreciated: 📷 NASASpaceFlight - https://www.youtube.com/@NASASpaceflight 📷 RGVAerialPhotography - https://www.youtube.com/@RGVAerialPhotography 📷 Greg Scott - https://twitter.com/GregScott_photo 📷 Starship Gazer - https://twitter.com/StarshipGazer 📷 Cosmic Perspective - https://www.youtube.com/@CosmicPerspective 📷 LabPadre - https://www.youtube.com/@LabPadre 📷 The Interstellar Gateway - https://youtube.com/@InterstellarGateway Set models: 😍 Mini venting Starship/SLS - https://stardesk.peachs.co/a/marcus-house 😍 Starship, & Crew Dragon by - https://morethan3d.com/ 😍 Moon/Mars Mova Globes - https://www.movaglobes.com/ 😍 Saturn V - LEGO - https://www.lego.com/en-au/product/lego-nasa-apollo-saturn-v-92176 😍 Space Shuttle - LEGO - https://www.lego.com/en-au/product/nasa-space-shuttle-discovery-10283 3D artist magicians: ✨ Tony Bela - https://twitter.com/InfographicTony ✨ Ryan Hansen Space - https://twitter.com/RyanHansenSpace ✨ Erc X - https://twitter.com/ErcXspace ✨ Corey - https://twitter.com/C_Bass3d ✨ Alex Svan - https://twitter.com/AlexSvanArt ✨ DeepSpaceCourier - https://twitter.com/ds_courier ✨ SpaceXvision - https://twitter.com/SpacexVision ✨ Stanley Creative - https://twitter.com/Caspar_Stanley ✨ TijnM_3DAnimations - https://twitter.com/m_tijn ✨ Christian Debney - https://twitter.com/ChristianDebney ✨ Evan Karen - https://www.youtube.com/@EvanKaren ✨ 3D Daniel - https://twitter.com/3DDaniel1 ✨ Bl3D_Eccentric - https://x.com/Bl3D_Eccentric
https://wn.com/Starship_Flight_Test_7_—_Far_Beyond_What_We_Imagined
Blue Origin New Glenn Rocket Launch Countdown
9:42:31

Blue Origin New Glenn Rocket Launch Countdown

  • Order:
  • Duration: 9:42:31
  • Uploaded Date: 12 Jan 2025
  • views: 3927
Welcome! Today let’s watch history happen as Blue Origin launches its first flight of New Glenn. Blue Origin is delaying the planned debut of its heavy-lift New Glenn rocker due to rough seas in the Atlantic, meaning we’ll have to wait at least a day longer for the company’s first-ever orbital launch. Please 👍 LIKE and 💖 SUBSCRIBE!
https://wn.com/Blue_Origin_New_Glenn_Rocket_Launch_Countdown
Blue Origin to launch New Glenn rocket after 10 years of development
5:07

Blue Origin to launch New Glenn rocket after 10 years of development

  • Order:
  • Duration: 5:07
  • Uploaded Date: 11 Jan 2025
  • views: 27610
Space company Blue Orbit will be launching its New Glenn rocket on Sunday after more than 10 years of development. CBS News space consultant William Harwood has more. CBS News 24/7 is the premier anchored streaming news service from CBS News and Stations that is available free to everyone with access to the internet and is the destination for breaking news, live events, original reporting and storytelling, and programs from CBS News and Stations' top anchors and correspondents working locally, nationally and around the globe. It is available on more than 30 platforms across mobile, desktop and connected TVs for free, as well as CBSNews.com and Paramount+ and live in 91 countries. Subscribe to the CBS News YouTube channel: https://youtube.com/cbsnews Watch CBS News: https://cbsnews.com/live/ Download the CBS News app: https://cbsnews.com/mobile/ Follow CBS News on Instagram: https://instagram.com/cbsnews/ Like CBS News on Facebook: https://facebook.com/cbsnews Follow CBS News on Twitter: https://twitter.com/cbsnews Subscribe to our newsletters: https://cbsnews.com/newsletters/ Try Paramount+ free: https://paramountplus.com/?ftag=PPM-05-10aeh8h For video licensing inquiries, contact: licensing@veritone.com
https://wn.com/Blue_Origin_To_Launch_New_Glenn_Rocket_After_10_Years_Of_Development
What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship...
13:11

What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship...

  • Order:
  • Duration: 13:11
  • Uploaded Date: 11 Jan 2025
  • views: 43379
What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship... === #alphatech #techalpha #spacex #elonmusk === What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship... After a quarter of a century, Blue Origin has never been more determined to challenge its rival. This will mark their first orbital flight and an attempted landing on the very first try. However, reality shows that this goal is far from easy, as the company recently delayed the first launch of New Glenn again. What something weird happened? More importantly, how will Blue Origin execute the recovery of the first stage of the New Glenn rocket? Let’s find out on today’s episode of Alpha Tech: What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship... The fierce competition between the two giants in space is heating up like never before. Just as SpaceX confirmed the launch date for Starship Flight 7 on January 13, Blue Origin, which had initially scheduled a launch on January 10, delayed it to January 12. According to Blue Origin, the delay was due to rough seas in the Atlantic Ocean, where the company plans to land its booster rocket. This is a reasonable justification for the postponement, but the proximity of the new launch date to SpaceX’s schedule also seems intentional on Blue Origin’s part. Imagine, after years of competing with SpaceX, this marks the first time Jeff Bezos might truly respond to Elon Musk with his company’s first orbital rocket. Whether successful or not, this trend indicates that Blue Origin is highly confident in the capabilities of its New Glenn rocket for both launching and landing. What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship... Blue Origin has thoroughly prepared for this effort—something even SpaceX had to endure multiple failures to achieve. The unmanned ship "Jacklyn", similar to the vessels SpaceX uses to recover Falcon rockets, has already set sail to the designated landing site for New Glenn. So, how exactly will New Glenn execute this landing maneuver? First, located at the top of the booster are aerodynamic control surfaces, specifically four forward fins. These actuated fins are used to adjust altitude during the descent and landing of the first stage. At the base of the booster are two wing-like surfaces. These strakes provide lift and cross-range capability for the reusable first stage as it returns to Earth. Ideally, after separating from the second stage, the first-stage booster reorients itself to re-enter the atmosphere tail-first. Through a combination of aerodynamic surfaces and engine thrust maneuvers, the booster executes a precise landing on a sea-based platform in the Atlantic Ocean.
https://wn.com/What_Blue_Origin_Just_Did_With_New_Glenn_1St_Launch_Somehow_Ahead_Of_Spacex_Starship...
Blue Origin's New Glenn rocket set to make maiden flight as early as Sunday
2:21

Blue Origin's New Glenn rocket set to make maiden flight as early as Sunday

  • Order:
  • Duration: 2:21
  • Uploaded Date: 10 Jan 2025
  • views: 12394
CNBC's Morgan Brennan talks Blue Origin's historic upcoming flight. For access to live and exclusive video from CNBC subscribe to CNBC PRO: https://cnb.cx/42d859g » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC Turn to CNBC TV for the latest stock market news and analysis. From market futures to live price updates CNBC is the leader in business news worldwide. Connect with CNBC News Online Get the latest news: http://www.cnbc.com/ Follow CNBC on LinkedIn: https://cnb.cx/LinkedInCNBC Follow CNBC News on Instagram: https://cnb.cx/InstagramCNBC Follow CNBC News on Facebook: https://cnb.cx/LikeCNBC Follow CNBC on Threads: https://cnb.cx/threads Follow CNBC News on X: https://cnb.cx/FollowCNBC Follow CNBC on WhatsApp: https://cnb.cx/WhatsAppCNBC https://www.cnbc.com/select/best-credit-cards/ #CNBC #CNBCTV
https://wn.com/Blue_Origin's_New_Glenn_Rocket_Set_To_Make_Maiden_Flight_As_Early_As_Sunday
SpaceX EXPOSED: Blue Origin's New Glenn Already FAILED Before Launch?!
15:44

SpaceX EXPOSED: Blue Origin's New Glenn Already FAILED Before Launch?!

  • Order:
  • Duration: 15:44
  • Uploaded Date: 08 Jan 2025
  • views: 4688
🚀 SpaceX vs Blue Origin: The truth about New Glenn's development challenges and how they compare to SpaceX's proven track record. From delayed launches to engineering hurdles, discover why Jeff Bezos' dream rocket might be struggling before it even leaves the pad. Get the full story on the space race that's transforming the future of commercial spaceflight! ⏱️ Each video includes timestamps for key topics: 00:00 - "Jeff Bezos' Embarrassing SpaceX Tweet: The 9-Year-Old Mistake That Changed Everything" 01:41 - "New Glenn: Blue Origin's $15B Make-or-Break Moment vs SpaceX's Dominance" 04:27 - "BREAKING: New Glenn's Critical Tests and Launch Preparations Revealed (Late 2024)" 06:12 - "SpaceX's 90% Market Dominance: How Starship Threatens Blue Origin's Future" 07:54 - "EXCLUSIVE: SpaceX Starship Flight 7 Mission Details - First Payload Deployment Test" 09:03 - "Starship Version 2 Unveiled: Revolutionary Design Changes and Performance Upgrades" 13:30 - "Battle of the Giants: New Glenn vs Starship - The Future of Space Competition" 14:42 - "REVEALED: January 10th Starship Launch - Groundbreaking Technology Test Details" 🔔You may be interested in: https://www.youtube.com/watch?v=EAAVcoiWvKk&list=PLAHPwFBjj9ABpvsWuFAGjtcRF8uzvKTB1&pp=iAQB https://www.youtube.com/watch?v=kYcEEBYgZao&list=PLAHPwFBjj9AD-xZDrP33WOg1PXy2fndl7&pp=iAQB https://www.youtube.com/watch?v=EAAVcoiWvKk&list=PLAHPwFBjj9ACg0r2XX73zaZ8FO8Skrw9l&pp=iAQB https://www.youtube.com/watch?v=EAAVcoiWvKk&list=PLAHPwFBjj9ABTnzbl51QgVHVZuna-RV4t&pp=iAQB https://www.youtube.com/watch?v=kYcEEBYgZao&list=PLAHPwFBjj9ADMj3nMkzlGQq-MPUenR-Zd&pp=iAQB https://www.youtube.com/watch?v=P5ZPtL1LdKk&list=PLAHPwFBjj9ACg0r2XX73zaZ8FO8Skrw9l&index=27&t=2s&pp=iAQB https://www.youtube.com/watch?v=n-APosghY_I&list=PLAHPwFBjj9ACg0r2XX73zaZ8FO8Skrw9l&index=41&t=1s&pp=iAQB https://www.youtube.com/watch?v=v1s1G64cmSc&list=PLAHPwFBjj9ACg0r2XX73zaZ8FO8Skrw9l&index=23&t=14s&pp=iAQB https://www.youtube.com/watch?v=3bVdDlxePgg&list=PLAHPwFBjj9ACg0r2XX73zaZ8FO8Skrw9l&index=22&pp=iAQB 🔬 LIKE, COMMENT, and SHARE our videos to support our cosmic journey! 🌌 Subscribe for weekly space innovation updates: https://www.youtube.com/channel/UCNMDZtPhD1clKjw-8vW0yrQ?sub_confirmation=1 #SpaceFrontier #SpaceNews #SpaceStarship #SpaceX #ElonMusk ⚠️ Educational and Documentary Content ➟ Content Context: This video discusses unverified information and theories from various sources. It's intended for educational purposes and should not be taken as endorsed facts. ➟ Intention: 'Space Frontier' does not aim to defame or discredit any individuals or organizations. The goal is to encourage thoughtful discussion and critical thinking. ➟ Non-endorsement of Violence: 'Space Frontier' does not condone or promote any violent actions mentioned. These are included only for context. ➟ Educational Purpose: This content aims to foster understanding and discussion of complex and controversial topics, encouraging viewers to seek additional authoritative sources. ⚠️ Video Disclaimers ➟ This video contains information not to be considered the truth, rather theories and information found on the internet or broadcasted by news outlets and journalists. ➟ Space Frontier does not intend to slander or discredit any of the persons mentioned. ➟ Space Frontier does not condone nor promote the violent actions mentioned in this video; it is for educational purposes only. ⚠️ Copyright Disclaimers ➟ We use images and content in accordance with the YouTube Fair Use copyright guidelines ➟ Section 107 of the U.S. Copyright Act states: "Notwithstanding the provisions of sections 106 and 106A, the fair use of a copyrighted work, including such use by reproduction in copies or phonorecords or by any other means specified by that section, for purposes such as criticism, comment, news reporting, teaching (including multiple copies for classroom use), scholarship, or research, is not an infringement of copyright." ➟ This video could contain certain copyrighted video clips, pictures, or photographs that were not specifically authorized to be used by the copyright holder(s), but which we believe in good faith are protected by federal law and the fair use doctrine for one or more of the reasons noted above. 🚀 Thank you for watching our videos! What do you want to see next? Disclaimer: While we strive for accuracy, some concepts may be theoretical. Always refer to official sources for the most up-to-date space exploration information.
https://wn.com/Spacex_Exposed_Blue_Origin's_New_Glenn_Already_Failed_Before_Launch
Blue Origin New Glenn before Mission NG-1 - ultra high definition 4K b-roll (Jan 2025, no sound)
2:03

Blue Origin New Glenn before Mission NG-1 - ultra high definition 4K b-roll (Jan 2025, no sound)

  • Order:
  • Duration: 2:03
  • Uploaded Date: 09 Jan 2025
  • views: 202
[ video: Blue Origin ]
https://wn.com/Blue_Origin_New_Glenn_Before_Mission_Ng_1_Ultra_High_Definition_4K_B_Roll_(Jan_2025,_No_Sound)
Jeff Bezos’ Space Plans Make More Sense Than Elon Musk's
7:19

Jeff Bezos’ Space Plans Make More Sense Than Elon Musk's

  • Order:
  • Duration: 7:19
  • Uploaded Date: 29 Dec 2024
  • views: 247685
Check out courses in science, computer science, or mathematics on Brilliant! First 30 days are free and 20% off the annual premium subscription when you use our link ➜ https://brilliant.org/sabine. Amazon founder Jeff Bezos also owns an aerospace company named Blue Origin, and the former bookseller has ideas. Those include housing humans in rotating cylinders around Earth’s orbit and moving all heavy industry into space. It’s not as crazy as it sounds. Let’s take a look. 🤓 Check out my new quiz app ➜ http://quizwithit.com/ 💌 Support me on Donorbox ➜ https://donorbox.org/swtg 📝 Transcripts and written news on Substack ➜ https://sciencewtg.substack.com/ 👉 Transcript with links to references on Patreon ➜ https://www.patreon.com/Sabine 📩 Free weekly science newsletter ➜ https://sabinehossenfelder.com/newsletter/ 👂 Audio only podcast ➜ https://open.spotify.com/show/0MkNfXlKnMPEUMEeKQYmYC 🔗 Join this channel to get access to perks ➜ https://www.youtube.com/channel/UC1yNl2E66ZzKApQdRuTQ4tw/join 🖼️ On instagram ➜ https://www.instagram.com/sciencewtg/ #science #sciencenews #space #blueorigin
https://wn.com/Jeff_Bezos’_Space_Plans_Make_More_Sense_Than_Elon_Musk's
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 7:57:26

Jeff Bezos' Blue Origin Successfully Launches Rocket Ship

It was a triumph for Jeff Bezos as his rocket ship, New Glenn, blasted off. The Amazon founder watched from the control center as Blue Origin employees across the nation celebrated. It's the first successful rocket launch from Bezos' company. His success comes after President Biden delivered a farewell address to the nation in which he targeted tech billionaires such as Bezos and Elon Musk.
2:02
Jeff Bezos' Blue Origin Successfully Launches Rocket Ship
It was a triumph for Jeff Bezos as his rocket ship, New Glenn, blasted off. The Amazon fou...
published: 16 Jan 2025
Play in Full Screen
3:03:44
Watch live: Jeff Bezos' Blue Origin launches a New Glenn rocket for first time at Cape Canaveral
Watch live coverage as Jeff Bezos' Blue Origin launches its New Glenn rocket for first tim...
published: 16 Jan 2025
Play in Full Screen
1:13
Watch moment Jeff Bezos' Blue Origin rocket blasts into space in bid to rival Elon Musk's SpaceX
This is the moment Jeff Bezos’s Blue Origin rocket successfully blasts off posing a chall...
published: 16 Jan 2025
Play in Full Screen
1:11
Jeff Bezos's reusable rocket New Glenn is launched into space
Blue Origin’s huge New Glenn rocket has blasted off from Florida on its first mission to s...
published: 16 Jan 2025
Play in Full Screen
1:15
Jeff Bezos’ Blue Origin launches massive New Glenn rocket on first test flight
Blue Origin launched its massive new rocket on its first test flight Thursday, sending up ...
published: 16 Jan 2025
Play in Full Screen
1:26:51
Jeff Bezos rocket New Glenn attempting second launch
Blue Origin's New Glenn rocket is set to blast off this morning after a cancelled first at...
published: 16 Jan 2025
Play in Full Screen
0:22
Jeff Bezos' Blue Origin launches New Glenn rocket #shorts
published: 17 Jan 2025
Play in Full Screen
3:17
Work-life balance — Jeff Bezos
In this Sessions short, Jeff Bezos details why there is no such thing as work-life balance...
published: 14 Nov 2017
Play in Full Screen
1:06:10
The Interview: From Amazon to Space — Jeff Bezos Talks Innovation, Progress and What’s Next
Jeff Bezos sits down with Andrew Ross Sorkin at the 2024 New York Times DealBook Summit to...
published: 05 Dec 2024
Play in Full Screen
2:11:21
LIVE: Blue Origin launches New Glenn rocket on first test flight
Jeff Bezos’ Blue Origin will attempt the debut launch of its New Glenn rocket from the Cap...
published: 16 Jan 2025
Play in Full Screen

Jeff Bezos

Jeffrey Preston "Jeff" Bezos (/ˈbzs/; born January 12, 1964) is an American technology entrepreneur and investor. He has played a role in the growth of e-commerce as the founder and CEO of Amazon.com, an online merchant of books and later of a wide variety of products and services, most recently video streaming. Amazon.com became the largest retailer on the World Wide Web and a model for Internet sales. In 2013, Bezos purchased The Washington Post newspaper. As of 1 January 2016, Bezos' personal wealth is estimated to be US$59.2 billion, due in part to a recent spike in Amazon's stock price, ranking him 4th on the Forbes list of billionaires.

Early life and education

Bezos was born Jeffrey Preston Jorgensen in Albuquerque, New Mexico to Jacklyn (née Gise) and Ted Jorgensen. His maternal ancestors were settlers who lived in Texas, and over the generations acquired a 25,000-acre (101 km2 or 39 miles2) ranch near Cotulla. As of March 2015, Bezos was among the largest land holders in Texas. Bezos' maternal grandfather was a regional director of the U.S. Atomic Energy Commission in Albuquerque. He retired early to the ranch, where Bezos spent many summers as a youth, working with him. At an early age, he displayed mechanical aptitude – as a toddler, he tried dismantling his crib.

  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • LIVE! Blue Origin New Glenn Countdown
    0:00
    LIVE! Blue Origin New Glenn Countdownremove from playlist
  • Blue Origin New Glenn Finally Ready To Beat SpaceX's Old Rockets.... Is It Too Late
    17:24
    Blue Origin New Glenn Finally Ready To Beat SpaceX's Old Rockets.... Is It Too Lateremove from playlist
  • Starship Flight Test 7 — Far Beyond What We Imagined
    22:24
    Starship Flight Test 7 — Far Beyond What We Imaginedremove from playlist
  • Blue Origin New Glenn Rocket Launch Countdown
    9:42:31
    Blue Origin New Glenn Rocket Launch Countdownremove from playlist
  • Blue Origin to launch New Glenn rocket after 10 years of development
    5:07
    Blue Origin to launch New Glenn rocket after 10 years of developmentremove from playlist
  • What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship...
    13:11
    What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship...remove from playlist
  • Blue Origin's New Glenn rocket set to make maiden flight as early as Sunday
    2:21
    Blue Origin's New Glenn rocket set to make maiden flight as early as Sundayremove from playlist
  • SpaceX EXPOSED: Blue Origin's New Glenn Already FAILED Before Launch?!
    15:44
    SpaceX EXPOSED: Blue Origin's New Glenn Already FAILED Before Launch?!remove from playlist
  • Jeff Bezos’ Space Plans Make More Sense Than Elon Musk's
    7:19
    Jeff Bezos’ Space Plans Make More Sense Than Elon Musk'sremove from playlist
PLAYLIST TIME:

LIVE! Blue Origin New Glenn Countdown

LIVE! Blue Origin New Glenn Countdown #blueorigin #newglenn #launch Blue Origin is preparing to launch New Glenn on its maiden flight, stay up to date on the latest updates with our 24/7 status board! Pad : LC-36 Location : Cape Canaveral Space Force Station, Florida, USA Rocket : New Glenn -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- OUR MISSION: Our mission is to inform and inspire the explorers of tomorrow; because we believe that space is better together. SUPPORT OUR WORK: Consider becoming a TLP Member https://www.youtube.com/thelaunchpad -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- CONNECT WITH US: Discord - https://discord.com/invite/xCm9UpDPE4 Twitter - https://www.twitter.com/TLPN_Official Shop - https://www.thelaunchpad.store -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- GIVEAWAY RULES: No Purchase Necessary. Purchase/donation does not enhance chance of winning. Void where prohibited or restricted by law. Valid only during the live broadcast.
0:00
LIVE! Blue Origin New Glenn Countdown
LIVE! Blue Origin New Glenn Countdown #blueorigin #newglenn #launch Blue Origin is prepa...
published: 12 Jan 2025
Play in Full Screen
17:24
Blue Origin New Glenn Finally Ready To Beat SpaceX's Old Rockets.... Is It Too Late
After almost 25 years Blue Origin is finally ready to launch their first orbital class roc...
published: 12 Jan 2025
Play in Full Screen
22:24
Starship Flight Test 7 — Far Beyond What We Imagined
Take your eCommerce store to the next level with Odoo: https://www.odoo.com/r/kTi Well t...
published: 11 Jan 2025
Play in Full Screen
9:42:31
Blue Origin New Glenn Rocket Launch Countdown
Welcome! Today let’s watch history happen as Blue Origin launches its first flight of New ...
published: 12 Jan 2025
Play in Full Screen
5:07
Blue Origin to launch New Glenn rocket after 10 years of development
Space company Blue Orbit will be launching its New Glenn rocket on Sunday after more than ...
published: 11 Jan 2025
Play in Full Screen
13:11
What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship...
What Blue Origin Just Did with New Glenn 1st Launch Somehow Ahead of SpaceX Starship... ==...
published: 11 Jan 2025
Play in Full Screen
2:21
Blue Origin's New Glenn rocket set to make maiden flight as early as Sunday
CNBC's Morgan Brennan talks Blue Origin's historic upcoming flight. For access to live and...
published: 10 Jan 2025
Play in Full Screen
15:44
SpaceX EXPOSED: Blue Origin's New Glenn Already FAILED Before Launch?!
🚀 SpaceX vs Blue Origin: The truth about New Glenn's development challenges and how they c...
published: 08 Jan 2025
Play in Full Screen
2:03
Blue Origin New Glenn before Mission NG-1 - ultra high definition 4K b-roll (Jan 2025, no sound)
[ video: Blue Origin ]
published: 09 Jan 2025
Play in Full Screen
7:19
Jeff Bezos’ Space Plans Make More Sense Than Elon Musk's
Check out courses in science, computer science, or mathematics on Brilliant! First 30 days...
published: 29 Dec 2024
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×