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

Neal Stephenson

Neal Town Stephenson (born October 31, 1959) is an American writer and game designer known for his works of speculative fiction.

His novels have been variously categorized as science fiction, historical fiction, cyberpunk, and "postcyberpunk". Other labels, such as "baroque", have been used.

Stephenson's work explores subjects such as mathematics, cryptography, philosophy, currency, and the history of science. He also writes non-fiction articles about technology in publications such as Wired. He has also written novels with his uncle, George Jewsbury ("J. Frederick George"), under the collective pseudonym Stephen Bury.

He has worked part-time as an advisor for Blue Origin, a company (funded by Jeff Bezos) developing a manned sub-orbital launch system, and is also a cofounder of Subutai Corporation, whose first offering is the interactive fiction project The Mongoliad. He is currently Magic Leap's Chief Futurist.

Life

Born on October 31, 1959 in Fort Meade, Maryland, Stephenson came from a family of engineers and scientists; his father is a professor of electrical engineering while his paternal grandfather was a physics professor. His mother worked in a biochemistry laboratory, and her father was a biochemistry professor. Stephenson's family moved to Champaign-Urbana, Illinois, in 1960 and then in 1966 to Ames, Iowa. He graduated from Ames High School in 1977.

Podcasts:

Neal Stephenson

ALBUMS

  • Games and the Open Metaverse: Neal Stephenson Opening Keynote | D.I.C.E. Summit 2023

    Are there structural ways we can prevent the Metaverse from ending up as a patchwork of walled gardens full of noise? What can we learn about that from games and the game industry? Neal Stephenson explores these questions and his perspective on the Metaverse as it’s unfolding. To learn more about the D.I.C.E. Summit, go to https://www.dicesummit.org/.

    published: 09 Mar 2023
  • Neal Stephenson on Depictions of Reality | Conversations with Tyler

    If you want to speculate on the development of tech, no one has a better brain to pick than Neal Stephenson. Across more than a dozen books, he’s created vast story worlds driven by futuristic technologies that have both prophesied and even provoked real-world progress in crypto, social networks, and the creation of the web itself. Though Stephenson insists he’s more often wrong than right, his technical sharpness has even led to a half-joking suggestion that he might be Satoshi Nakamoto, the shadowy creator of bitcoin. His latest novel, Fall; or, Dodge in Hell, involves a more literal sort of brain-picking, exploring what might happen when digitized brains can find a second existence in a virtual afterlife. So what’s the implicit theology of a simulated world? Might we be living in one,...

    published: 21 Nov 2023
  • Neal Stephenson: Sci-Fi, Space, Aliens, AI, VR & the Future of Humanity | Lex Fridman Podcast #240

    Neal Stephenson is a sci-fi writer (Snow Crash, Cryptonomicon, and new book Termination Shock), former Chief Futurist at Magic Leap and first employee of Blue Origin. Please support this podcast by checking out our sponsors: - Mizzen+Main: https://mizzenandmain.com and use code LEX to get $35 off - InsideTracker: https://insidetracker.com/lex and use code Lex25 to get 25% off - Athletic Greens: https://athleticgreens.com/lex and use code LEX to get 1 month of fish oil - Grammarly: https://grammarly.com/lex to get 20% off premium - ExpressVPN: https://expressvpn.com/lexpod and use code LexPod to get 3 months free EPISODE LINKS: Neal's Twitter: https://twitter.com/nealstephenson Neal's Website: https://www.nealstephenson.com/ Termination Shock (book): https://amzn.to/3HhmDKi Snow Crash (boo...

    published: 11 Nov 2021
  • What Neal Stephenson book to read first

    Lex Fridman Podcast full episode: https://www.youtube.com/watch?v=xAfdSak2fs8 Please support this podcast by checking out our sponsors: - Mizzen+Main: https://mizzenandmain.com and use code LEX to get $35 off - InsideTracker: https://insidetracker.com/lex and use code Lex25 to get 25% off - Athletic Greens: https://athleticgreens.com/lex and use code LEX to get 1 month of fish oil - Grammarly: https://grammarly.com/lex to get 20% off premium - ExpressVPN: https://expressvpn.com/lexpod and use code LexPod to get 3 months free GUEST BIO: Neal Stephenson is a sci-fi writer (Snow Crash, Cryptonomicon, and new book Termination Shock), former Chief Futurist at Magic Leap and first employee of Blue Origin. PODCAST INFO: Podcast website: https://lexfridman.com/podcast Apple Podcasts: https://app...

    published: 12 Nov 2021
  • Neal Stephenson | SXSW 2022 Live Studio

    Take a deep dive into SXSW with our Live Studio Interviews, where conversations go beyond the boundaries of sessions, showcases and screenings. Neal Stephenson is the bestselling author of the novels Termination Shock, Fall; or, Dodge in Hell, The Rise and Fall of D.O.D.O. (with Nicole Galland), Seveneves, Reamde, Anathem, The System of the World, The Confusion, Quicksilver, Cryptonomicon, The Diamond Age, Snow Crash, Zodiac, and the groundbreaking nonfiction work In the Beginning . . .Was the Command Line. About SXSW: SXSW dedicates itself to helping creative people achieve their goals. Founded in 1987 in Austin, Texas, SXSW is best known for its conference and festivals that celebrate the convergence of the interactive, film, and music industries. An essential destination for global pr...

    published: 17 Mar 2022
  • Anathem | Neal Stephenson | Talks at Google

    Authors Neal Stephenson visits Google's Headquarters in Mountain View, Ca, to discuss his book "Anathem". This event took place September 12, 2008, as part of the Authors@google series. For more info, please visit http://www.nealstephenson.com/ Anathem, the latest invention by the New York Times bestselling author of Cryptonomicon and The Baroque Cycle, is a magnificent creation: a work of great scope, intelligence, and imagination that ushers readers into a recognizable—yet strangely inverted—world. Fraa Erasmas is a young avout living in the Concent of Saunt Edhar, a sanctuary for mathematicians, scientists, and philosophers, protected from the corrupting influences of the outside "saecular" world by ancient stone, honored traditions, and complex rituals. Over the centuries, cities...

    published: 20 Sep 2008
  • Termination Shock | Neal Stephenson

    Join us for an evening with Neal Stephenson reading from his newest book "Termination Shock" (pub. 11/16/21) and discussing the long-term vision, dire risks and potential solutions around climate change with Long Now's Executive Director Alexander Rose. Tickets for the event in San Francisco will be released to members of Long Now first, and are bundled with a signed copy of the new book, which you can also have inscribed! Neal Stephenson’s sweeping, prescient new novel transports readers to a near-future world in which the greenhouse effect has inexorably resulted in a whirling-dervish troposphere of superstorms, rising sea levels, global flooding, merciless heat waves, and virulent, deadly pandemics. One man, a visionary billionaire restaurant chain magnate, has a Big Idea for reversin...

    published: 13 Dec 2021
  • Snow Crash - Neal Stephenson - So You Haven't Read

    Wanna see watch Snow Crash 24 hours early, without ads, and get exclusive content? Go to https://go.nebula.tv/soyouhaventread to get Nebula for 20% off! So you haven't read Snow Crash by Neal Stephenson? Then pull up a seat as we jack into the sci-fi Metaverse in this cyberpunk novel that centers around Hero Protagonist. A CosoNostra Pizza delivery ninja that wields a mighty katana and is ready to fight hackers who are dealing digital narcotics. Ones written in an ancient Sumerian code by a virtual villain that could send this dystopian future into the apocalypse. A special thanks to R Kevin our writer for the series! https://www.facebook.com/OILINTHEALLEY?mibextid=ZbWKwL *Interested in reading it for yourself? Check it out at your local library!* Buy Local: https://www.indiebound.org/b...

    published: 01 Feb 2023
  • MCQS on Most Important Dystopian Novels - Dystopian Literature MCQS - English Literature MCQ Quiz

    👉A list of 30 important dystopian novels along with their authors: 1. "1984" by George Orwell 2. "Brave New World" by Aldous Huxley 3. "Fahrenheit 451" by Ray Bradbury 4. "The Handmaid's Tale" by Margaret Atwood 5. "The Hunger Games" by Suzanne Collins 6. "Animal Farm" by George Orwell 7. "The Giver" by Lois Lowry 8. "We" by Yevgeny Zamyatin 9. "The Road" by Cormac McCarthy 10. "A Clockwork Orange" by Anthony Burgess 11. "Never Let Me Go" by Kazuo Ishiguro 12. "The Maze Runner" by James Dashner 13. "Divergent" by Veronica Roth 14. "The Children of Men" by P.D. James 15. "Lord of the Flies" by William Golding 16. "The Man in the High Castle" by Philip K. Dick 17. "The Running Man" by Stephen King (writing as Richard Bachman) 18. "Snow Crash" by Neal Stephenson 19. "Oryx and Crake" by Marga...

    published: 17 Apr 2024
  • RANKING EVERY NEAL STEPHENSON NOVEL.

    Wherein our hero Durfee ranks every Neal Stephenson book. #NealStephenson #BookRanking #Books

    published: 14 Jul 2022
Games and the Open Metaverse: Neal Stephenson Opening Keynote | D.I.C.E. Summit 2023
20:36

Games and the Open Metaverse: Neal Stephenson Opening Keynote | D.I.C.E. Summit 2023

  • Order:
  • Duration: 20:36
  • Uploaded Date: 09 Mar 2023
  • views: 3898
Are there structural ways we can prevent the Metaverse from ending up as a patchwork of walled gardens full of noise? What can we learn about that from games and the game industry? Neal Stephenson explores these questions and his perspective on the Metaverse as it’s unfolding. To learn more about the D.I.C.E. Summit, go to https://www.dicesummit.org/.
https://wn.com/Games_And_The_Open_Metaverse_Neal_Stephenson_Opening_Keynote_|_D.I.C.E._Summit_2023
Neal Stephenson on Depictions of Reality | Conversations with Tyler
54:55

Neal Stephenson on Depictions of Reality | Conversations with Tyler

  • Order:
  • Duration: 54:55
  • Uploaded Date: 21 Nov 2023
  • views: 152
If you want to speculate on the development of tech, no one has a better brain to pick than Neal Stephenson. Across more than a dozen books, he’s created vast story worlds driven by futuristic technologies that have both prophesied and even provoked real-world progress in crypto, social networks, and the creation of the web itself. Though Stephenson insists he’s more often wrong than right, his technical sharpness has even led to a half-joking suggestion that he might be Satoshi Nakamoto, the shadowy creator of bitcoin. His latest novel, Fall; or, Dodge in Hell, involves a more literal sort of brain-picking, exploring what might happen when digitized brains can find a second existence in a virtual afterlife. So what’s the implicit theology of a simulated world? Might we be living in one, and does it even matter? Stephenson joins Tyler to discuss the book and more, including the future of physical surveillance, how clothing will evolve, the kind of freedom you could expect on a Mars colony, whether today’s media fragmentation is trending us towards dystopia, why the Apollo moon landings were communism’s greatest triumph, whether we’re in a permanent secular innovation starvation, Leibniz as a philosopher, Dickens and Heinlein as writers, and what storytelling has to do with giving good driving directions. Transcript and links: https://conversationswithtyler.com/episodes/neal-stephenson/ Recorded June 14th, 2019 Stay connected: Follow us on X, IG, and Facebook: @cowenconvos https://www.twitter.com/cowenconvos https://www.facebook.com/cowenconvos https://www.instagram.com/cowenconvos Join us on Discord: https://discord.gg/JAVWP7vTxt https://conversationswithtyler.com https://mercatus.org
https://wn.com/Neal_Stephenson_On_Depictions_Of_Reality_|_Conversations_With_Tyler
Neal Stephenson: Sci-Fi, Space, Aliens, AI, VR & the Future of Humanity | Lex Fridman Podcast #240
2:39:52

Neal Stephenson: Sci-Fi, Space, Aliens, AI, VR & the Future of Humanity | Lex Fridman Podcast #240

  • Order:
  • Duration: 2:39:52
  • Uploaded Date: 11 Nov 2021
  • views: 1452427
Neal Stephenson is a sci-fi writer (Snow Crash, Cryptonomicon, and new book Termination Shock), former Chief Futurist at Magic Leap and first employee of Blue Origin. Please support this podcast by checking out our sponsors: - Mizzen+Main: https://mizzenandmain.com and use code LEX to get $35 off - InsideTracker: https://insidetracker.com/lex and use code Lex25 to get 25% off - Athletic Greens: https://athleticgreens.com/lex and use code LEX to get 1 month of fish oil - Grammarly: https://grammarly.com/lex to get 20% off premium - ExpressVPN: https://expressvpn.com/lexpod and use code LexPod to get 3 months free EPISODE LINKS: Neal's Twitter: https://twitter.com/nealstephenson Neal's Website: https://www.nealstephenson.com/ Termination Shock (book): https://amzn.to/3HhmDKi Snow Crash (book): https://amzn.to/3H7yFFW Cryptonomicon (book): https://amzn.to/3C01HDF The Diamond Age (book): https://amzn.to/3wxUF83 Seveneves (book): https://amzn.to/3kkhveg The Baroque Cycle, Vol. 1 (book): https://amzn.to/3koMW7n Innovation Starvation (article): https://bit.ly/3mYLSJ2 PODCAST INFO: Podcast website: https://lexfridman.com/podcast Apple Podcasts: https://apple.co/2lwqZIr Spotify: https://spoti.fi/2nEwCF8 RSS: https://lexfridman.com/feed/podcast/ Full episodes playlist: https://www.youtube.com/playlist?list=PLrAXtmErZgOdP_8GztsuKi9nrraNbKKp4 Clips playlist: https://www.youtube.com/playlist?list=PLrAXtmErZgOeciFP3CBCIEElOJeitOr41 OUTLINE: 0:00 - Introduction 0:43 - WWII and human nature 9:28 - Search engine morality 14:06 - Space exploration 31:07 - Aliens and UFOs 39:30 - SpaceX and Blue Origin 46:52 - Social media 51:19 - Climate change 1:03:09 - Consequences of big ideas 1:07:50 - Virtual reality 1:30:58 - Artificial intelligence 1:45:57 - Cryptocurrency 1:58:35 - Writing, storytelling, and books 2:21:13 - Martial arts 2:30:31 - Final thoughts SOCIAL: - Twitter: https://twitter.com/lexfridman - LinkedIn: https://www.linkedin.com/in/lexfridman - Facebook: https://www.facebook.com/lexfridman - Instagram: https://www.instagram.com/lexfridman - Medium: https://medium.com/@lexfridman - Reddit: https://reddit.com/r/lexfridman - Support on Patreon: https://www.patreon.com/lexfridman
https://wn.com/Neal_Stephenson_Sci_Fi,_Space,_Aliens,_Ai,_Vr_The_Future_Of_Humanity_|_Lex_Fridman_Podcast_240
What Neal Stephenson book to read first
2:58

What Neal Stephenson book to read first

  • Order:
  • Duration: 2:58
  • Uploaded Date: 12 Nov 2021
  • views: 18788
Lex Fridman Podcast full episode: https://www.youtube.com/watch?v=xAfdSak2fs8 Please support this podcast by checking out our sponsors: - Mizzen+Main: https://mizzenandmain.com and use code LEX to get $35 off - InsideTracker: https://insidetracker.com/lex and use code Lex25 to get 25% off - Athletic Greens: https://athleticgreens.com/lex and use code LEX to get 1 month of fish oil - Grammarly: https://grammarly.com/lex to get 20% off premium - ExpressVPN: https://expressvpn.com/lexpod and use code LexPod to get 3 months free GUEST BIO: Neal Stephenson is a sci-fi writer (Snow Crash, Cryptonomicon, and new book Termination Shock), former Chief Futurist at Magic Leap and first employee of Blue Origin. PODCAST INFO: Podcast website: https://lexfridman.com/podcast Apple Podcasts: https://apple.co/2lwqZIr Spotify: https://spoti.fi/2nEwCF8 RSS: https://lexfridman.com/feed/podcast/ Full episodes playlist: https://www.youtube.com/playlist?list=PLrAXtmErZgOdP_8GztsuKi9nrraNbKKp4 Clips playlist: https://www.youtube.com/playlist?list=PLrAXtmErZgOeciFP3CBCIEElOJeitOr41 SOCIAL: - Twitter: https://twitter.com/lexfridman - LinkedIn: https://www.linkedin.com/in/lexfridman - Facebook: https://www.facebook.com/lexfridman - Instagram: https://www.instagram.com/lexfridman - Medium: https://medium.com/@lexfridman - Reddit: https://reddit.com/r/lexfridman - Support on Patreon: https://www.patreon.com/lexfridman
https://wn.com/What_Neal_Stephenson_Book_To_Read_First
Neal Stephenson | SXSW 2022 Live Studio
21:34

Neal Stephenson | SXSW 2022 Live Studio

  • Order:
  • Duration: 21:34
  • Uploaded Date: 17 Mar 2022
  • views: 4480
Take a deep dive into SXSW with our Live Studio Interviews, where conversations go beyond the boundaries of sessions, showcases and screenings. Neal Stephenson is the bestselling author of the novels Termination Shock, Fall; or, Dodge in Hell, The Rise and Fall of D.O.D.O. (with Nicole Galland), Seveneves, Reamde, Anathem, The System of the World, The Confusion, Quicksilver, Cryptonomicon, The Diamond Age, Snow Crash, Zodiac, and the groundbreaking nonfiction work In the Beginning . . .Was the Command Line. About SXSW: SXSW dedicates itself to helping creative people achieve their goals. Founded in 1987 in Austin, Texas, SXSW is best known for its conference and festivals that celebrate the convergence of the interactive, film, and music industries. An essential destination for global professionals, this year’s online event features sessions, showcases, screenings, exhibitions, professional development and a variety of networking opportunities. For more information, please visit sxsw.com. Subscribe: http://www.youtube.com/user/sxsw?sub_... Connect with SXSW: Website: https://www.sxsw.com Facebook: https://www.facebook.com/SXSWFestival/ Twitter: https://twitter.com/sxsw Instagram: https://www.instagram.com/sxsw/ YouTube: https://www.youtube.com/sxsw
https://wn.com/Neal_Stephenson_|_Sxsw_2022_Live_Studio
Anathem | Neal Stephenson | Talks at Google
58:10

Anathem | Neal Stephenson | Talks at Google

  • Order:
  • Duration: 58:10
  • Uploaded Date: 20 Sep 2008
  • views: 102522
Authors Neal Stephenson visits Google's Headquarters in Mountain View, Ca, to discuss his book "Anathem". This event took place September 12, 2008, as part of the Authors@google series. For more info, please visit http://www.nealstephenson.com/ Anathem, the latest invention by the New York Times bestselling author of Cryptonomicon and The Baroque Cycle, is a magnificent creation: a work of great scope, intelligence, and imagination that ushers readers into a recognizable—yet strangely inverted—world. Fraa Erasmas is a young avout living in the Concent of Saunt Edhar, a sanctuary for mathematicians, scientists, and philosophers, protected from the corrupting influences of the outside "saecular" world by ancient stone, honored traditions, and complex rituals. Over the centuries, cities and governments have risen and fallen beyond the concent's walls. Three times during history's darkest epochs violence born of superstition and ignorance has invaded and devastated the cloistered mathic community. Yet the avout have always managed to adapt in the wake of catastrophe, becoming out of necessity even more austere and less dependent on technology and material things. And Erasmas has no fear of the outside—the Extramuros—for the last of the terrible times was long, long ago. Neal Stephenson is the author of seven previous novels. He lives in Seattle, Washington.
https://wn.com/Anathem_|_Neal_Stephenson_|_Talks_At_Google
Termination Shock | Neal Stephenson
42:57

Termination Shock | Neal Stephenson

  • Order:
  • Duration: 42:57
  • Uploaded Date: 13 Dec 2021
  • views: 10692
Join us for an evening with Neal Stephenson reading from his newest book "Termination Shock" (pub. 11/16/21) and discussing the long-term vision, dire risks and potential solutions around climate change with Long Now's Executive Director Alexander Rose. Tickets for the event in San Francisco will be released to members of Long Now first, and are bundled with a signed copy of the new book, which you can also have inscribed! Neal Stephenson’s sweeping, prescient new novel transports readers to a near-future world in which the greenhouse effect has inexorably resulted in a whirling-dervish troposphere of superstorms, rising sea levels, global flooding, merciless heat waves, and virulent, deadly pandemics. One man, a visionary billionaire restaurant chain magnate, has a Big Idea for reversing global warming, a master plan perhaps best described as “elemental.” But will it work? And just as important, what are the consequences for the planet and all of humanity should it be applied? Ranging from the Texas heartland to the Dutch royal palace in the Hague, from the snow-capped peaks of the Himalayas to the sunbaked Chihuahuan Desert, the novel brings together a disparate group of characters from different cultures and continents who grapple with the real-life repercussions of global warming. Epic in scope while heartbreakingly human in perspective, "Termination Shock" sounds a clarion alarm, considers dire risks, and ponders potential solutions. "Termination Shock" was given on November 17, 02021 as part of Long Now's Seminar series. The series was started in 02003 to build a compelling body of ideas about long-term thinking from some of the world's leading thinkers. The Seminars take place in San Francisco and are curated and hosted by Stewart Brand. To follow the talks, you can: Subscribe to our podcasts: http://longnow.org/seminars/podcast Explore the full series: http://longnow.org/seminars More ideas on long-term thinking: http://blog.longnow.org The Long Now Foundation is a non-profit dedicated to fostering long-term thinking and responsibility. Our projects include a 10,000 Year Clock, endangered language preservation, thousand year+ data storage, and Long Bets, an arena for accountable predictions. Become a Long Now member to support this series, join our community, and connect with our ongoing work to explore and deepen long-term thinking: http://longnow.org/membership Like us on Facebook: https://www.facebook.com/longnow Follow us on Twitter: https://www.twitter.com/longnow Subscribe to our channel: https://www.youtube.com/longnow
https://wn.com/Termination_Shock_|_Neal_Stephenson
Snow Crash - Neal Stephenson - So You Haven't Read
12:13

Snow Crash - Neal Stephenson - So You Haven't Read

  • Order:
  • Duration: 12:13
  • Uploaded Date: 01 Feb 2023
  • views: 96210
Wanna see watch Snow Crash 24 hours early, without ads, and get exclusive content? Go to https://go.nebula.tv/soyouhaventread to get Nebula for 20% off! So you haven't read Snow Crash by Neal Stephenson? Then pull up a seat as we jack into the sci-fi Metaverse in this cyberpunk novel that centers around Hero Protagonist. A CosoNostra Pizza delivery ninja that wields a mighty katana and is ready to fight hackers who are dealing digital narcotics. Ones written in an ancient Sumerian code by a virtual villain that could send this dystopian future into the apocalypse. A special thanks to R Kevin our writer for the series! https://www.facebook.com/OILINTHEALLEY?mibextid=ZbWKwL *Interested in reading it for yourself? Check it out at your local library!* Buy Local: https://www.indiebound.org/book/9780553380958 Amazon: https://amzn.to/408LxVT Audible: https://amzn.to/3kYOb0o *Thanks for participating in this week's discussion!* Check out our community guidelines so we can have MORE high-quality conversations: https://www.extracredits.site/extra-credits-community-code-of-con *Want to support the people who make this show?* Become a Patreon Member & Vote on future Extra History episodes! http://bit.ly/EHPatreon Or show off your fandom with our merch! http://extracredits.store/ *Want more Extra Credits? Subscribe and follow us on social media!* Twitter: http://bit.ly/ECTweet Facebook: http://bit.ly/ECFBPage Instagram: http://bit.ly/ECisonInstagram Twitch: http://bit.ly/ECtwitch Tiktok: https://www.tiktok.com/@extracreditz Website: http://extracredits.site/ *Interested in sponsoring an episode? Email us: extracredits@standard.tv* ♪ Intro music: "Coffee Beans" by Mike Wuerth ♪ Music: Extra Mythology Theme by Big Giant Circles ♪ Outro music: "So You Haven't Read Theme" by Tiffany Roman #SoYouHaventRead #SnowCrash #NealStephenson
https://wn.com/Snow_Crash_Neal_Stephenson_So_You_Haven't_Read
MCQS on Most Important Dystopian Novels - Dystopian Literature MCQS - English Literature MCQ Quiz
5:00

MCQS on Most Important Dystopian Novels - Dystopian Literature MCQS - English Literature MCQ Quiz

  • Order:
  • Duration: 5:00
  • Uploaded Date: 17 Apr 2024
  • views: 118
👉A list of 30 important dystopian novels along with their authors: 1. "1984" by George Orwell 2. "Brave New World" by Aldous Huxley 3. "Fahrenheit 451" by Ray Bradbury 4. "The Handmaid's Tale" by Margaret Atwood 5. "The Hunger Games" by Suzanne Collins 6. "Animal Farm" by George Orwell 7. "The Giver" by Lois Lowry 8. "We" by Yevgeny Zamyatin 9. "The Road" by Cormac McCarthy 10. "A Clockwork Orange" by Anthony Burgess 11. "Never Let Me Go" by Kazuo Ishiguro 12. "The Maze Runner" by James Dashner 13. "Divergent" by Veronica Roth 14. "The Children of Men" by P.D. James 15. "Lord of the Flies" by William Golding 16. "The Man in the High Castle" by Philip K. Dick 17. "The Running Man" by Stephen King (writing as Richard Bachman) 18. "Snow Crash" by Neal Stephenson 19. "Oryx and Crake" by Margaret Atwood 20. "The Stand" by Stephen King 21. "The City of Ember" by Jeanne DuPrau 22. "Station Eleven" by Emily St. John Mandel 23. "V for Vendetta" by Alan Moore and David Lloyd 24. "The War of the Worlds" by H.G. Wells 25. "The Road to Wigan Pier" by George Orwell 26. "The Time Machine" by H.G. Wells 27. "The Iron Heel" by Jack London 28. "Parable of the Sower" by Octavia E. Butler 29. "The Wanting Seed" by Anthony Burgess 30. "The Windup Girl" by Paolo Bacigalupi These novels represent a diverse range of dystopian themes and have made significant contributions to the genre. Important Dystopian Novels 1. Mundus Alter et Idem- by Joseph Hall 2. Gulliver's Travel (1726) - Jonathan Swift 3. Erewhon (1872) - by Samuel Butler 4. The Begum's Fortune (1879)- by Jules Verne 5. The Fixed Period (1882)- by Anthony Trollope 6. The Time Machine (1895)- by H. G. Wells 7. When the Sleeper Wakes (1899)- by H.G. Wells 8. The First Man in the Moon (1901) - by H. G. Wells 9. The Machine Stops (1909)- by E. M. Forster 10. The Trial (1925) - by Franz Kafka 11. No Traveller Returns (1931)- by John Collier 12. Brave New World- by Aldous Huxley 13. It Can't Happen Here (1935)- by Sinclair Lewis 14. Invitation to a Beheading (1938)- by Vladimir Nabokov 15. Animal Farm (1945)- by George Orwell 16. The Hideous Strength (1945) - by C. S. Lewis 17. Bend Sinister (1947)- by Vladimir Nabokov 18. Ape and Essence (1948)- by Aldous Huxley 19. Nineteen Eighty Four (1948)- by George Orwell 20. Fahrenheit 451 (1953)- by Ray Bradbury 21. Love Among the Ruins (1953) - by Evelyn Waugh 22. Lord of the Files (1962)- by William Golding 23. A Clockwork Orange (1962)- by Anthony Burgess 24. The Wanting Seed (1962)- by Anthony Burgess 25. The Handmaid's Tale (1985)- by Margaret Atwood 26. Oryx and Crake (2003)- by Margaret Atwood 27. The Plot Against America (2009)- by Philip Roth. 28. The Year of the Flood (2009)- by Margaret Atwood 29. Maddaddam (2013)- by Margaret Atwood 30. The Heart Goes Last (2015)- by Margaret Atwood
https://wn.com/Mcqs_On_Most_Important_Dystopian_Novels_Dystopian_Literature_Mcqs_English_Literature_Mcq_Quiz
RANKING EVERY NEAL STEPHENSON NOVEL.
12:05

RANKING EVERY NEAL STEPHENSON NOVEL.

  • Order:
  • Duration: 12:05
  • Uploaded Date: 14 Jul 2022
  • views: 4343
Wherein our hero Durfee ranks every Neal Stephenson book. #NealStephenson #BookRanking #Books
https://wn.com/Ranking_Every_Neal_Stephenson_Novel.
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Games and the Open Metaverse: Neal Stephenson Opening Keynote | D.I.C.E. Summit 2023
    20:36
    Games and the Open Metaverse: Neal Stephenson Opening Keynote | D.I.C.E. Summit 2023remove from playlist
  • Neal Stephenson on Depictions of Reality | Conversations with Tyler
    54:55
    Neal Stephenson on Depictions of Reality | Conversations with Tylerremove from playlist
  • Neal Stephenson: Sci-Fi, Space, Aliens, AI, VR & the Future of Humanity | Lex Fridman Podcast #240
    2:39:52
    Neal Stephenson: Sci-Fi, Space, Aliens, AI, VR & the Future of Humanity | Lex Fridman Podcast #240remove from playlist
  • What Neal Stephenson book to read first
    2:58
    What Neal Stephenson book to read firstremove from playlist
  • Neal Stephenson | SXSW 2022 Live Studio
    21:34
    Neal Stephenson | SXSW 2022 Live Studioremove from playlist
  • Anathem | Neal Stephenson | Talks at Google
    58:10
    Anathem | Neal Stephenson | Talks at Googleremove from playlist
  • Termination Shock | Neal Stephenson
    42:57
    Termination Shock | Neal Stephensonremove from playlist
  • Snow Crash - Neal Stephenson - So You Haven't Read
    12:13
    Snow Crash - Neal Stephenson - So You Haven't Readremove from playlist
  • MCQS on Most Important Dystopian Novels - Dystopian Literature MCQS - English Literature MCQ Quiz
    5:00
    MCQS on Most Important Dystopian Novels - Dystopian Literature MCQS - English Literature MCQ Quizremove from playlist
  • RANKING EVERY NEAL STEPHENSON NOVEL.
    12:05
    RANKING EVERY NEAL STEPHENSON NOVEL.remove from playlist
PLAYLIST TIME: 0:00 / 6:30:20

Games and the Open Metaverse: Neal Stephenson Opening Keynote | D.I.C.E. Summit 2023

Are there structural ways we can prevent the Metaverse from ending up as a patchwork of walled gardens full of noise? What can we learn about that from games and the game industry? Neal Stephenson explores these questions and his perspective on the Metaverse as it’s unfolding. To learn more about the D.I.C.E. Summit, go to https://www.dicesummit.org/.
20:36
Games and the Open Metaverse: Neal Stephenson Opening Keynote | D.I.C.E. Summit 2023
Are there structural ways we can prevent the Metaverse from ending up as a patchwork of wa...
published: 09 Mar 2023
Play in Full Screen
54:55
Neal Stephenson on Depictions of Reality | Conversations with Tyler
If you want to speculate on the development of tech, no one has a better brain to pick tha...
published: 21 Nov 2023
Play in Full Screen
2:39:52
Neal Stephenson: Sci-Fi, Space, Aliens, AI, VR & the Future of Humanity | Lex Fridman Podcast #240
Neal Stephenson is a sci-fi writer (Snow Crash, Cryptonomicon, and new book Termination Sh...
published: 11 Nov 2021
Play in Full Screen
2:58
What Neal Stephenson book to read first
Lex Fridman Podcast full episode: https://www.youtube.com/watch?v=xAfdSak2fs8 Please suppo...
published: 12 Nov 2021
Play in Full Screen
21:34
Neal Stephenson | SXSW 2022 Live Studio
Take a deep dive into SXSW with our Live Studio Interviews, where conversations go beyond ...
published: 17 Mar 2022
Play in Full Screen
58:10
Anathem | Neal Stephenson | Talks at Google
Authors Neal Stephenson visits Google's Headquarters in Mountain View, Ca, to discuss his ...
published: 20 Sep 2008
Play in Full Screen
42:57
Termination Shock | Neal Stephenson
Join us for an evening with Neal Stephenson reading from his newest book "Termination Shoc...
published: 13 Dec 2021
Play in Full Screen
12:13
Snow Crash - Neal Stephenson - So You Haven't Read
Wanna see watch Snow Crash 24 hours early, without ads, and get exclusive content? Go to h...
published: 01 Feb 2023
Play in Full Screen
5:00
MCQS on Most Important Dystopian Novels - Dystopian Literature MCQS - English Literature MCQ Quiz
👉A list of 30 important dystopian novels along with their authors: 1. "1984" by George Or...
published: 17 Apr 2024
Play in Full Screen
12:05
RANKING EVERY NEAL STEPHENSON NOVEL.
Wherein our hero Durfee ranks every Neal Stephenson book. #NealStephenson #BookRanking #Bo...
published: 14 Jul 2022
Play in Full Screen

Neal Stephenson

Neal Town Stephenson (born October 31, 1959) is an American writer and game designer known for his works of speculative fiction.

His novels have been variously categorized as science fiction, historical fiction, cyberpunk, and "postcyberpunk". Other labels, such as "baroque", have been used.

Stephenson's work explores subjects such as mathematics, cryptography, philosophy, currency, and the history of science. He also writes non-fiction articles about technology in publications such as Wired. He has also written novels with his uncle, George Jewsbury ("J. Frederick George"), under the collective pseudonym Stephen Bury.

He has worked part-time as an advisor for Blue Origin, a company (funded by Jeff Bezos) developing a manned sub-orbital launch system, and is also a cofounder of Subutai Corporation, whose first offering is the interactive fiction project The Mongoliad. He is currently Magic Leap's Chief Futurist.

Life

Born on October 31, 1959 in Fort Meade, Maryland, Stephenson came from a family of engineers and scientists; his father is a professor of electrical engineering while his paternal grandfather was a physics professor. His mother worked in a biochemistry laboratory, and her father was a biochemistry professor. Stephenson's family moved to Champaign-Urbana, Illinois, in 1960 and then in 1966 to Ames, Iowa. He graduated from Ames High School in 1977.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: Neal Stephenson

Edit

The big idea: will sci-fi end up destroying the world?

The Observer 14 Apr 2025
Mark Zuckerberg has renamed his company and sunk $100bn in pursuit of the “metaverse”, a word that first appeared in Neal Stephenson’s 1992 novel Snow Crash ... Jeff Bezos loves Stephenson so much that he ...
  • 1
×