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

Podcasts:

  • No, more CO₂ won't help us grow more food

    The world looks very different when you understand statistics. Go to https://brilliant.org/simonclark/ to get started for free! Contrary to what you might think, more carbon dioxide in the atmosphere is actually bad news for growing food. In this video I talk about why more CO2 means a warmer planet, a drier planet, and less food. But more than that, food that actually contains fewer nutrients... REFERENCES (1) https://ourworldindata.org/grapher/population?time=0..latest (2) e.g. https://ourworldindata.org/explorers/climate-change?time=1..2018&facet=none&hideControls=true&Metric=CO%E2%82%82+concentrations&Long-run+series%3F=true&country=~OWID_WRL (3) https://www.dailysignal.com/2017/07/24/dont-believe-hysteria-carbon-dioxide/ (4) https://www.ipcc.ch/report/ar6/wg2/downloads/report/IPCC_...

    published: 08 May 2022
  • NASA | A Year in the Life of Earth's CO2

    An ultra-high-resolution NASA computer model has given scientists a stunning new look at how carbon dioxide in the atmosphere travels around the globe. Plumes of carbon dioxide in the simulation swirl and shift as winds disperse the greenhouse gas away from its sources. The simulation also illustrates differences in carbon dioxide levels in the northern and southern hemispheres and distinct swings in global carbon dioxide concentrations as the growth cycle of plants and trees changes with the seasons. The carbon dioxide visualization was produced by a computer model called GEOS-5, created by scientists at NASA Goddard Space Flight Center’s Global Modeling and Assimilation Office. The visualization is a product of a simulation called a “Nature Run.” The Nature Run ingests real data on at...

    published: 17 Nov 2014
  • The Truth about CO2 | 5 Minute Video

    Global Warming activists will tell you that CO2 is bad and dangerous. The EPA has even classified it as a pollutant. But is it? Patrick Moore provides some surprising facts about the benefits of CO2 that you won't hear in the current debate. 🚨 PragerU is experiencing severe censorship on Big Tech platforms. Go to https://www.prageru.com/ to watch our videos free from censorship! SUBSCRIBE 👉 https://www.prageru.com/join/ 📲 Take PragerU videos with you everywhere you go. Download our free mobile app! Download for Apple iOS ➡ https://itunes.apple.com/us/app/prage... Download for Android ➡ https://play.google.com/store/apps/de... 📳 Join PragerU's text list! https://optin.mobiniti.com/prageru SHOP! 🛒 Love PragerU? Visit our store today! https://shop.prageru.com/ Script: What are two o...

    published: 27 Jul 2015
  • CO₂ is necessary for Photosynthesis

    published: 24 Jun 2014
  • World’s largest carbon dioxide sucking factory opens in Iceland - BBC News

    The world’s largest factory to capture carbon dioxide from the air has begun operations in Iceland. Reducing the amount of CO₂ in the Earth’s atmosphere would help reduce the effects of climate change. It showcases a developing technology considered by some to be an important tool in the fight against climate change but sceptics question how much impact it can really have. Is it a futuristic vision of how to save the planet from runaway climate change, or a futile expense that distracts from the urgency of slashing co2 emissions? According to the companies that constructed the plant, Climeworks and Carbfix, when operating at capacity the plant will draw 4,000 tonnes of carbon dioxide ...

    published: 09 Sep 2021
  • Fire and Flame 38 - Magnesium Burning in CO2

    Magensium burns even more vigorously in carbon dioxide than in air, but petrol won't burn at all..what's happening? From the Peter Wothers lecture series - Fire and Flame

    published: 17 May 2013
  • CO2 Leaser Device #medicaldevices #bme

    published: 30 Mar 2024
  • Climate Science in a Nutshell #4: Too Much Carbon Dioxide

    View the complete Climate Science in a Nutshell Series at www.planetnutshell.com/climate What is the role of Carbon Dioxide in the atmosphere? What is the Greenhouse Effect? Why does the Earth have too many blankets, making it hot and clammy? Those questions are answered in this Nutshell. ;This video was funded by a grant from the Corporation for Public Broadcasting, and was produced in collaboration withKUEN

    published: 10 Sep 2010
No, more CO₂ won't help us grow more food
11:55

No, more CO₂ won't help us grow more food

  • Order:
  • Duration: 11:55
  • Uploaded Date: 08 May 2022
  • views: 53581
The world looks very different when you understand statistics. Go to https://brilliant.org/simonclark/ to get started for free! Contrary to what you might think, more carbon dioxide in the atmosphere is actually bad news for growing food. In this video I talk about why more CO2 means a warmer planet, a drier planet, and less food. But more than that, food that actually contains fewer nutrients... REFERENCES (1) https://ourworldindata.org/grapher/population?time=0..latest (2) e.g. https://ourworldindata.org/explorers/climate-change?time=1..2018&facet=none&hideControls=true&Metric=CO%E2%82%82+concentrations&Long-run+series%3F=true&country=~OWID_WRL (3) https://www.dailysignal.com/2017/07/24/dont-believe-hysteria-carbon-dioxide/ (4) https://www.ipcc.ch/report/ar6/wg2/downloads/report/IPCC_AR6_WGII_SummaryForPolicymakers.pdf (5) https://pubmed.ncbi.nlm.nih.gov/19131626/ (6) https://e360.yale.edu/features/redrawing-the-map-how-the-worlds-climate-zones-are-shifting (7) https://www.nature.com/articles/s43016-021-00400-y (8) https://www.smithsonianmag.com/smart-news/climate-change-has-made-droughts-more-frequent-1900-180972087/ (9) https://sci-hub.wf/10.1080/07315724.2004.10719409 (10) https://www.politico.com/agenda/story/2017/09/13/food-nutrients-carbon-dioxide-000511/ (11) https://www.nature.com/articles/nature13179 (12) https://pubmed.ncbi.nlm.nih.gov/29806023/ (13) https://apps.who.int/iris/bitstream/handle/10665/42770/9241580313_eng.pdf (14) https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4459238/ (15) https://ehp.niehs.nih.gov/doi/10.1289/EHP41 You can support the channel by becoming a patron at http://www.patreon.com/simonoxfphys Check out my website! https://www.simonoxfphys.com/ ---------- II ---------- My twitter - http://www.twitter.com/simonoxfphys My facebook - http://www.facebook.com/youtubesimon My insta - http://www.instagram.com/simonoxfphys My goodreads - http://www.goodreads.com/simonoxfphys ---------- II ---------- Music by Epidemic Sound: http://epidemicsound.com Edited by Luke Negus Video essay about the effects of climate change on agriculture, how climate change will hurt food production, including how climate change will make food less nutritious. More CO2 means more photosynthesis, but more CO2 also means a warmer planet, which means less food, and food lacking in protein. In this video - similar to videos from SciShow, Crash Course, ClimateTown, Our Changing Climate, Veritasium, and Smarter Every Day - I talk about how global warming will impact how much food we can grow. Huge thanks to my supporters on Patreon: Jimmy Lee, Simon Stelling, Gabriele Siino, Bjorn Bakker, Ieuan Williams, Candace H, Tom Malcolm, Marcus Bosshard, Andrew Knop, Shab Kumar, Brady Johnston, Liat Khitman, Jesper Norsted, Kent & Krista Halloran, Rapssack, Kevin O'Connor, Timo Kerremans, Thines Ganeshamoorthy, Ashley Wilkins, Michael Parmenter, Samuel Baumgartner, Dan Sherman, ST0RMW1NG 1, Adrian Sand, Morten Engsvang, Josh Schiager, Farsight101, K.L, poundedjam, fourthdwarf, Daan Sneep, Felix Freiberger, Chris Field, Robert Connell, ChemMentat, Kolbrandr, , Sebastain Graf, Dan Nelson, Shane O'Brien, Alex, Fujia Li, Will Tolley, Cody VanZandt, Jesper Koed, Jonathan Craske, Albrecht Striffler, Igor Francetic, Jack Troup, SexyCaveman , Sean Richards, Kedar , Omar Miranda, Alastair Fortune, bitreign33 , Mat Allen, Anne Smith, Rafaela Corrêa Pereira, Colin J. Brown, Princess Andromeda, Mach_D, BenDent, Thusto , Andy Hartley, Lachlan Woods, Dan Hanvey, Simon Donkers, Kodzo , James Bridges, Liam , Wendover Productions, Kendra Johnson.
https://wn.com/No,_More_Co₂_Won't_Help_US_Grow_More_Food
NASA | A Year in the Life of Earth's CO2
3:11

NASA | A Year in the Life of Earth's CO2

  • Order:
  • Duration: 3:11
  • Uploaded Date: 17 Nov 2014
  • views: 4280097
An ultra-high-resolution NASA computer model has given scientists a stunning new look at how carbon dioxide in the atmosphere travels around the globe. Plumes of carbon dioxide in the simulation swirl and shift as winds disperse the greenhouse gas away from its sources. The simulation also illustrates differences in carbon dioxide levels in the northern and southern hemispheres and distinct swings in global carbon dioxide concentrations as the growth cycle of plants and trees changes with the seasons. The carbon dioxide visualization was produced by a computer model called GEOS-5, created by scientists at NASA Goddard Space Flight Center’s Global Modeling and Assimilation Office. The visualization is a product of a simulation called a “Nature Run.” The Nature Run ingests real data on atmospheric conditions and the emission of greenhouse gases and both natural and man-made particulates. The model is then left to run on its own and simulate the natural behavior of the Earth’s atmosphere. This Nature Run simulates January 2006 through December 2006. While Goddard scientists worked with a “beta” version of the Nature Run internally for several years, they released this updated, improved version to the scientific community for the first time in the fall of 2014. This video is public domain and can be downloaded at: http://svs.gsfc.nasa.gov/goto?11719 Like our videos? Subscribe to NASA's Goddard Shorts HD podcast: http://svs.gsfc.nasa.gov/vis/iTunes/f0004_index.html Or find NASA Goddard Space Flight Center on facebook: http://www.facebook.com/NASA.GSFC Or find us on Twitter: http://twitter.com/NASAGoddard
https://wn.com/Nasa_|_A_Year_In_The_Life_Of_Earth's_Co2
The Truth about CO2 | 5 Minute Video
4:32

The Truth about CO2 | 5 Minute Video

  • Order:
  • Duration: 4:32
  • Uploaded Date: 27 Jul 2015
  • views: 1701465
Global Warming activists will tell you that CO2 is bad and dangerous. The EPA has even classified it as a pollutant. But is it? Patrick Moore provides some surprising facts about the benefits of CO2 that you won't hear in the current debate. 🚨 PragerU is experiencing severe censorship on Big Tech platforms. Go to https://www.prageru.com/ to watch our videos free from censorship! SUBSCRIBE 👉 https://www.prageru.com/join/ 📲 Take PragerU videos with you everywhere you go. Download our free mobile app! Download for Apple iOS ➡ https://itunes.apple.com/us/app/prage... Download for Android ➡ https://play.google.com/store/apps/de... 📳 Join PragerU's text list! https://optin.mobiniti.com/prageru SHOP! 🛒 Love PragerU? Visit our store today! https://shop.prageru.com/ Script: What are two of the dirtiest words in the English language? Well, if you're concerned with Global Warming as so many people are these days, the answer is obvious. The two words are "Carbon Dioxide." Or as it is known by its chemical symbol -- CO2. One atom of carbon and two atoms of oxygen. If we pump much more of it into the atmosphere, the argument goes, we're going to alter the climate. Catastrophically. According to the Intergovernmental Panel on Climate Change, the IPCC, CO2 emissions from fossil fuels, which constitute 85% of our energy use must be reduced to zero by 2100. If we don't save ourselves from ourselves, we're toast. That's the claim. Here's what strange, though. All life is carbon-based, and the carbon for all that life originates from carbon dioxide in the atmosphere. All of the carbon in the fossil fuels we are burning for energy today was once in the atmosphere as carbon dioxide before it was consumed by plankton in the sea and plants on the land. Coal, oil, and natural gas are the remains of those plankton and plants that have been transformed by heat and pressure deep in the earth's crust. In other words, fossil fuels are 100 percent organic and were produced with solar energy. Sounds positively green. If there were no carbon dioxide in the Earth's atmosphere, the Earth would be a dead planet. Period. Talk about catastrophic climate change. Take away CO2 and you'd have it. And yet, the US Environmental Protection Agency has deemed this essential ingredient for life a pollutant! But, how can something that makes life possible be bad? Before I deal with that question, let's get clear on our terms. It has become common to refer to the emissions from burning fossil fuels for energy as "carbon" emissions. That is entirely misleading. Carbon dioxide is not carbon. Carbon dioxide is a colorless, odorless, tasteless gas which is an indispensable food source for all living things. Can you have too much of it? In theory, yes. That's what climate alarmists say is happening now -- CO2 levels are getting too high. Are they right? Well, if we look at the big picture we find something surprising. For the complete script, visit https://www.prageru.com/videos/truth-about-co2
https://wn.com/The_Truth_About_Co2_|_5_Minute_Video
CO₂ is necessary for Photosynthesis
2:28

CO₂ is necessary for Photosynthesis

  • Order:
  • Duration: 2:28
  • Uploaded Date: 24 Jun 2014
  • views: 105398
https://wn.com/Co₂_Is_Necessary_For_Photosynthesis
World’s largest carbon dioxide sucking factory opens in Iceland - BBC News
2:47

World’s largest carbon dioxide sucking factory opens in Iceland - BBC News

  • Order:
  • Duration: 2:47
  • Uploaded Date: 09 Sep 2021
  • views: 631660
The world’s largest factory to capture carbon dioxide from the air has begun operations in Iceland. Reducing the amount of CO₂ in the Earth’s atmosphere would help reduce the effects of climate change. It showcases a developing technology considered by some to be an important tool in the fight against climate change but sceptics question how much impact it can really have. Is it a futuristic vision of how to save the planet from runaway climate change, or a futile expense that distracts from the urgency of slashing co2 emissions? According to the companies that constructed the plant, Climeworks and Carbfix, when operating at capacity the plant will draw 4,000 tonnes of carbon dioxide out of the air every year. Please subscribe HERE http://bit.ly/1rbfUog #BBCNews #ClimateChange #CaptureCarbonDioxide
https://wn.com/World’S_Largest_Carbon_Dioxide_Sucking_Factory_Opens_In_Iceland_BBC_News
Fire and Flame  38 - Magnesium Burning in CO2
3:03

Fire and Flame 38 - Magnesium Burning in CO2

  • Order:
  • Duration: 3:03
  • Uploaded Date: 17 May 2013
  • views: 113459
Magensium burns even more vigorously in carbon dioxide than in air, but petrol won't burn at all..what's happening? From the Peter Wothers lecture series - Fire and Flame
https://wn.com/Fire_And_Flame_38_Magnesium_Burning_In_Co2
CO2 Leaser Device #medicaldevices #bme
0:23

CO2 Leaser Device #medicaldevices #bme

  • Order:
  • Duration: 0:23
  • Uploaded Date: 30 Mar 2024
  • views: 28
https://wn.com/Co2_Leaser_Device_Medicaldevices_Bme
Climate Science in a Nutshell #4: Too Much Carbon Dioxide
2:45

Climate Science in a Nutshell #4: Too Much Carbon Dioxide

  • Order:
  • Duration: 2:45
  • Uploaded Date: 10 Sep 2010
  • views: 351714
View the complete Climate Science in a Nutshell Series at www.planetnutshell.com/climate What is the role of Carbon Dioxide in the atmosphere? What is the Greenhouse Effect? Why does the Earth have too many blankets, making it hot and clammy? Those questions are answered in this Nutshell. ;This video was funded by a grant from the Corporation for Public Broadcasting, and was produced in collaboration withKUEN
https://wn.com/Climate_Science_In_A_Nutshell_4_Too_Much_Carbon_Dioxide
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • No, more CO₂ won't help us grow more food
    11:55
    No, more CO₂ won't help us grow more foodremove from playlist
  • NASA | A Year in the Life of Earth's CO2
    3:11
    NASA | A Year in the Life of Earth's CO2remove from playlist
  • The Truth about CO2 | 5 Minute Video
    4:32
    The Truth about CO2 | 5 Minute Videoremove from playlist
  • World’s largest carbon dioxide sucking factory opens in Iceland - BBC News
    2:47
    World’s largest carbon dioxide sucking factory opens in Iceland - BBC Newsremove from playlist
  • Fire and Flame  38 - Magnesium Burning in CO2
    3:03
    Fire and Flame 38 - Magnesium Burning in CO2remove from playlist
  • Climate Science in a Nutshell #4: Too Much Carbon Dioxide
    2:45
    Climate Science in a Nutshell #4: Too Much Carbon Dioxideremove from playlist
PLAYLIST TIME:

No, more CO₂ won't help us grow more food

The world looks very different when you understand statistics. Go to https://brilliant.org/simonclark/ to get started for free! Contrary to what you might think, more carbon dioxide in the atmosphere is actually bad news for growing food. In this video I talk about why more CO2 means a warmer planet, a drier planet, and less food. But more than that, food that actually contains fewer nutrients... REFERENCES (1) https://ourworldindata.org/grapher/population?time=0..latest (2) e.g. https://ourworldindata.org/explorers/climate-change?time=1..2018&facet=none&hideControls=true&Metric=CO%E2%82%82+concentrations&Long-run+series%3F=true&country=~OWID_WRL (3) https://www.dailysignal.com/2017/07/24/dont-believe-hysteria-carbon-dioxide/ (4) https://www.ipcc.ch/report/ar6/wg2/downloads/report/IPCC_AR6_WGII_SummaryForPolicymakers.pdf (5) https://pubmed.ncbi.nlm.nih.gov/19131626/ (6) https://e360.yale.edu/features/redrawing-the-map-how-the-worlds-climate-zones-are-shifting (7) https://www.nature.com/articles/s43016-021-00400-y (8) https://www.smithsonianmag.com/smart-news/climate-change-has-made-droughts-more-frequent-1900-180972087/ (9) https://sci-hub.wf/10.1080/07315724.2004.10719409 (10) https://www.politico.com/agenda/story/2017/09/13/food-nutrients-carbon-dioxide-000511/ (11) https://www.nature.com/articles/nature13179 (12) https://pubmed.ncbi.nlm.nih.gov/29806023/ (13) https://apps.who.int/iris/bitstream/handle/10665/42770/9241580313_eng.pdf (14) https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4459238/ (15) https://ehp.niehs.nih.gov/doi/10.1289/EHP41 You can support the channel by becoming a patron at http://www.patreon.com/simonoxfphys Check out my website! https://www.simonoxfphys.com/ ---------- II ---------- My twitter - http://www.twitter.com/simonoxfphys My facebook - http://www.facebook.com/youtubesimon My insta - http://www.instagram.com/simonoxfphys My goodreads - http://www.goodreads.com/simonoxfphys ---------- II ---------- Music by Epidemic Sound: http://epidemicsound.com Edited by Luke Negus Video essay about the effects of climate change on agriculture, how climate change will hurt food production, including how climate change will make food less nutritious. More CO2 means more photosynthesis, but more CO2 also means a warmer planet, which means less food, and food lacking in protein. In this video - similar to videos from SciShow, Crash Course, ClimateTown, Our Changing Climate, Veritasium, and Smarter Every Day - I talk about how global warming will impact how much food we can grow. Huge thanks to my supporters on Patreon: Jimmy Lee, Simon Stelling, Gabriele Siino, Bjorn Bakker, Ieuan Williams, Candace H, Tom Malcolm, Marcus Bosshard, Andrew Knop, Shab Kumar, Brady Johnston, Liat Khitman, Jesper Norsted, Kent & Krista Halloran, Rapssack, Kevin O'Connor, Timo Kerremans, Thines Ganeshamoorthy, Ashley Wilkins, Michael Parmenter, Samuel Baumgartner, Dan Sherman, ST0RMW1NG 1, Adrian Sand, Morten Engsvang, Josh Schiager, Farsight101, K.L, poundedjam, fourthdwarf, Daan Sneep, Felix Freiberger, Chris Field, Robert Connell, ChemMentat, Kolbrandr, , Sebastain Graf, Dan Nelson, Shane O'Brien, Alex, Fujia Li, Will Tolley, Cody VanZandt, Jesper Koed, Jonathan Craske, Albrecht Striffler, Igor Francetic, Jack Troup, SexyCaveman , Sean Richards, Kedar , Omar Miranda, Alastair Fortune, bitreign33 , Mat Allen, Anne Smith, Rafaela Corrêa Pereira, Colin J. Brown, Princess Andromeda, Mach_D, BenDent, Thusto , Andy Hartley, Lachlan Woods, Dan Hanvey, Simon Donkers, Kodzo , James Bridges, Liam , Wendover Productions, Kendra Johnson.
11:55
No, more CO₂ won't help us grow more food
The world looks very different when you understand statistics. Go to https://brilliant.org...
published: 08 May 2022
Play in Full Screen
3:11
NASA | A Year in the Life of Earth's CO2
An ultra-high-resolution NASA computer model has given scientists a stunning new look at h...
published: 17 Nov 2014
Play in Full Screen
4:32
The Truth about CO2 | 5 Minute Video
Global Warming activists will tell you that CO2 is bad and dangerous. The EPA has even cla...
published: 27 Jul 2015
Play in Full Screen
2:28
CO₂ is necessary for Photosynthesis
published: 24 Jun 2014
Play in Full Screen
2:47
World’s largest carbon dioxide sucking factory opens in Iceland - BBC News
The world’s largest factory to capture carbon dioxide from the air has begun operations in...
published: 09 Sep 2021
Play in Full Screen
3:03
Fire and Flame 38 - Magnesium Burning in CO2
Magensium burns even more vigorously in carbon dioxide than in air, but petrol won't burn ...
published: 17 May 2013
Play in Full Screen
0:23
CO2 Leaser Device #medicaldevices #bme
published: 30 Mar 2024
Play in Full Screen
2:45
Climate Science in a Nutshell #4: Too Much Carbon Dioxide
View the complete Climate Science in a Nutshell Series at www.planetnutshell.com/climate ...
published: 10 Sep 2010
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)); } }); }); }); // -->

Latest News for: co₂

Edit

Minimal New Oil Well Permits in Q1 2025, But Kern County and CO₂ Pipeline Bills ...

Longview News-Journal 08 May 2025
LOS ANGELES, May 8, 2025 /PRNewswire/ -- State oil and gas regulators approved just three new drilling permits in the first quarter of 2025 compared to zero approvals the same quarter last year, according to a new analysis by Consumer ....
Edit

Minimal New Oil Well Permits in Q1 2025, But Kern County and CO₂ Pipeline Bills Threaten Climate Progress, Say Consumer Watchdog

PR Newswire 08 May 2025
CO₂ Pipeline Legislation Threatens to Undermine Progress ... "Allowing CO₂ pipelines is a gift to oil companies trying to greenwash their operations," said Liza Tucker, consumer advocate at Consumer Watchdog.
Edit

Turning CO₂ into essential materials: US scientists Neeka and Leila Mashouf are in top 10 innovators of the Young Inventors Prize 2025

PR Newswire 06 May 2025
MUNICH, May 6, 2025 /PRNewswire/ --&nbsp;The global textile industry is one of the most environmentally damaging supply chains, contributing up to 8% of global CO₂ emissions, according to the United Nations Environment Programme (UNEP).
Edit

FENC Leads Asia at Germany’s “Best CO₂ Utilisation 2025” Award (Far Eastern New Century Corporation)

Public Technologies 06 May 2025
The award recognizes FENC's groundbreaking CO₂-based non-isocyanate polyurethane technology-FENC® TopGreen® AirTek PU ... The award ceremony took place on April 29 during the CO₂-based Fuels and Chemicals Conference, with Dr.
Edit

Collaboration advances feasibility of CO₂ transport via repurposed Danish pipeline (DNV AS)

Public Technologies 05 May 2025
). Collaboration between DNV and Ørsted has been central to a major landmark in the development of Project Bifrost, a carbon capture and storage (CCS) initiative that aims to develop a concept for storing CO₂ underground of the Danish North Sea.
Edit

Phosphorus-modified nickel catalyst boosts CO₂-to-CO conversion in acidic conditions

Phys Dot Org 05 May 2025
Reducing carbon dioxide (CO2) concentration through electrochemical methods (eCO2RR) in acidic conditions is an important strategy for producing valuable products while avoiding the formation of carbonate ... Li-Chyong Chen ... More information ... DOI ... Citation.
Edit

Construction begins on Greensand’s CO₂ transit terminal at Port Esbjerg. The... (INEOS Group AG)

Public Technologies 05 May 2025
) 05 May 2025 Construction begins on Greensand's CO₂ transit terminal at Port Esbjerg ... establishing Denmark as a European hub for safe and permanent CO₂ storage ... The site will also include the necessary infrastructure for offloading and shipping CO₂.
Edit

Droughts and heat waves reduce plants' ability to absorb CO₂, study finds

Phys Dot Org 02 May 2025
Frequent heat and drought events in southwestern ...
Edit

Simulation model outlines strategic roadmap for zero CO₂ emissions

CyprusMail 30 Apr 2025
Cyprus on track for a Hydrogen Economy by 2060, according to study by Frederick University ... Electricity generation is gradually shifting from fossil fuels to renewables and small modular reactors ... Prof ... For further information. ... T ... E ... ....
Edit

CO₂ Surged Last Year, but the Trump Administration Has Downplayed the Alarming Data

Scientific American 25 Apr 2025
Under the Trump administration, NOAA has minimized an announcement that climate-warming carbon dioxide concentrations in the atmosphere grew at a record-breaking speed in 2024 ... .
×