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

Molecular gastronomy

Molecular gastronomy is a subdiscipline of food science that seeks to investigate the physical and chemical transformations of ingredients that occur in cooking. Its program includes three axis, as cooking was recognized to have three components, which are social, artistic and technical. Molecular cuisine is a modern style of cooking, and takes advantage of many technical innovations from the scientific disciplines.

The term "molecular gastronomy" was coined in 1988 by late Oxford physicist Nicholas Kurti and the French INRA chemist Hervé This. Some chefs associated with the term choose to reject its use, preferring other terms such as multi sensory cooking, modernist cuisine, culinary physics, and experimental cuisine.

History

There are many branches of food science that study different aspects of food, such as safety, microbiology, preservation, chemistry, engineering and physics. Until the advent of molecular gastronomy, there was no formal discipline dedicated to studying the chemical processes of cooking in the home and in restaurants - as opposed to food preparation for the mass market. Food science has mostly been concerned with industrial food production and while the disciplines may overlap with each other to varying degrees, they are considered separate areas of investigation.

Podcasts:

  • How to make LIQUID SPHERES | Easy Molecular Gastronomy

    Learn on Skillshare: https://www.skillshare.com/en/r/profile/Chef-Rudakova/154353781?gr_tch_ref=on&gr_trp=on Learning the reverse spherification process is the fundamental step in advancing your culinary skills towards the molecular gastronomy. In reality making liquid spheres is quite easy, as long as you follow precise measurements. In this video, I show 3 examples of the reverse spherification. I make spheres with 2 relatively thick substances and 1 thinner substance. Watch the video until the end to learn how to make Kefir spheres, you can use the same method to make Sour Cream or Yogurt spheres. *Please note, that these liquids already have quite a bit of calcium inside, so you might need less Calcium Lactate for them (at least 2% in total). I also show how to make tomato spheres, ...

    published: 14 Mar 2020
  • What Is Molecular Gastronomy!?

    Follow Me On Twitter: https://twitter.com/VsauceTwo INSTAGRAM: http://www.instagr.am/kevlieber *** CLICK "SHOW MORE" FOR LINKS TO EVERYTHING *** Molecular gastronomy Info http://www.molecularrecipes.com/molecular-gastronomy/ How Molecular Gastronomy Works http://science.howstuffworks.com/innovation/edible-innovations/molecular-gastronomy.htm Baby Corn http://www.youtube.com/watch?v=Z4s85mN8W04 Lemon Chicken http://www.youtube.com/watch?v=SGiA3Z_ufaQ Sous Vide Peach http://www.youtube.com/watch?v=a7nr0NXSRok Smitten Ice Cream http://smittenicecream.com/story/#slide-343 http://vimeo.com/72457025 Fun with Liquid Nitrogen http://www.youtube.com/watch?v=xtb3dWDRqw0 Liquid Nitrogen http://en.wikipedia.org/wiki/Liquid_nitrogen Moto Restaurant http://motorestaurant.com http://www.ohgizmo....

    published: 17 Oct 2013
  • Molecular Gastronomy Masterclass! | MasterChef New Zealand | MasterChef World

    Chef Simon Gault gives a masterclass on how to cook a Molecular Crab Salad with Nitro Gazpacho. Subscribe to MasterChef World here: https://www.youtube.com/MasterChefWorld Welcome to MasterChef World! MasterChef World highlights the best moments from the world's favourite cooking television show. Watch mystery box challenges, invention tests, pressure tests and find how-to recipes and masterclasses from world-class chefs! MasterChef offers ordinary home cooks the opportunity to become extraordinary chefs! Who will compete in the battle to become the MasterChef? Watch MasterChef World to find out! #masterchef #masterchefnewzealand #howtocook

    published: 01 May 2021
  • 10 Easy Molecular Gastronomy Techniques! So Yummy

    Elevate your chef game with these 10 easy molecular gastronomy techniques! For more pro chef tips, cooking hacks and cake decoration tutorials subscribe to So Yummy! Subscribe to So Yummy: https://www.youtube.com/channel/UCH8NnRkxQg1zX7mHFRPq73g?sub_confirmation=1 About So Yummy: So Yummy brings you fun food ideas and recipes for your cooking and baking adventures. We believe that home cooking should always be fun, interesting, and easy to do! Enjoy our collection of fun and easy food tutorials! With recipes ranging from healthy dinners to sugary sweet delights, there are a plethora of creative options to spice up your home cooking. Follow us: Facebook: http://bit.ly/SoYummyFB Instagram: http://bit.ly/SoYummyIG Website: https://soyummy.com/ #SoYummy https://www.youtube.com/channel...

    published: 26 Feb 2022
  • This Salad Is TRANSPARENT!

    #Shorts #short #salad #food #foodscience

    published: 29 Apr 2021
  • Molecular Gastronomy Techniques

    #moleculargastronomy Techniques🤩 . Molecular Gastronomy is a scientific discipline concerned with the physical and chemical transformations that occur during cooking. It is a movement that incorporates science and new techniques in the preparation, transformation and artistic presentation of food. Inspiration and support credits: @vakuum_by_martin_lippo . . #photooftheday #instafood #instareels #fyp #shorts #reelsinstagram #reelitfeelit #fyp #trendingreels #chefzararkhan #cheftraveller #cocktails #appetizers #nitro #recipes #indiancuisine #moleculargastronomy #canapes #plants #lunch #espuma #foodaddict #reelsindia

    published: 15 Nov 2021
  • Food History: Molecular Gastronomy w/ Dr. Harold McGee

    Molecular gastronomy is the fusion of food, art, and science. But how did we go from respectable culinary scientists to exuberant table-side pyrotechnics? On today's episode, we're talking to author and historian Dr. Harold McGee about the fascinating history of molecular gastronomy. Was it an important part of food history, or an elitist misstep? Food History is a show all about... well, the history of food. Join host Justin Dodd as he brings you the stories of how your favorite meals ended up on your plate. Today, we're talking molecular gastronomy. Special thanks to Dr. Harold McGee (author of On Food And Cooking: The Science And Lore Of The Kitchen) for chatting with us for this episode. ----------------------------- Website: http://www.mentalfloss.com​ Twitter: http://www.twitte...

    published: 25 May 2022
  • Molecular Cuisine | Heston Blumenthal's Restaurant "The Fat Duck" | Windsor, London

    Famous for molecular cuisine, Heston Blumenthal continously experiments with novel cooking techniques to create new taste sensations. His food creations such as snail porridge are known worldwide. Watch more from our playlist "Restaurants and their Specialities worldwide": https://goo.gl/Q5lxqr 50 people cook in his restaurant "The Fat Duck" in Bray to give guests an exceptional dining eyperience. Cooking with liquid nitrogen or with the antigrill are esential tools in the molecular cuisine. Subscribe to wocomoCOOK: https://goo.gl/9c1suR Follow wocomo on Facebook: https://www.facebook.com/wocomo/ An excerpt from "The Art of Scientific Cookery" produced by NZZ Format

    published: 22 Mar 2016
  • Webinar on "Computational Gastronomy: Blending Food with Artificial Intelligence"

    Organized by Computer Society of India, Chennai IEEE Computer Society, Madras Association for Computing Machinery, Chennai Bioclues Webinar on "Computational Gastronomy: Blending Food with Artificial Intelligence" Date: Wednesday, 26th Feb 2025 :: Time: 6.30 pm to 7.45 pm IST. For the presentation & speaker details, pl see the PDF invite at https://bit.ly/web-250226-blend-food-ai-invite Agenda Welcome Address by Dr. Gyaneshwer Chaubey, President, Bioclues Introduction to speaker by Mr. HR Mohan, Chair - Events, IEEE CS Madras Presentation by Dr. Ganesh Bagler, Professor, Infosys Centre for Artificial Intelligence, Indraprastha Institute of Information Technology (IIIT), Delhi. Q&A Moderation by Dr. P Sakthivel, Chair, IEEE CS & ACM Chennai Vote of Thanks by Dr. K Komathy, Chair...

    published: 27 Feb 2025
  • The Best of Molecular Gastronomy at MolecularRecipes.com

    Get a molecular gastronomy kit to start experimenting at http://store.molecularrecipes.com/ A quick overview of what can be achieved with molecular gastronomy (modernist cuisine). All recipes and techniques featured in the video are available on MolecularRecipes.com. Everything you ever wanted to know about molecular gastronomy is right here. Amazing recipes. The latest techniques. Specially-priced ingredients, tools and equipment. A guide to great modernist cuisine restaurants and bars. Plus, a community of over 100,000 chefs, scientists and food lovers that share a passion for culinary science.

    published: 09 Oct 2013
How to make LIQUID SPHERES | Easy Molecular Gastronomy
5:20

How to make LIQUID SPHERES | Easy Molecular Gastronomy

  • Order:
  • Duration: 5:20
  • Uploaded Date: 14 Mar 2020
  • views: 675679
Learn on Skillshare: https://www.skillshare.com/en/r/profile/Chef-Rudakova/154353781?gr_tch_ref=on&gr_trp=on Learning the reverse spherification process is the fundamental step in advancing your culinary skills towards the molecular gastronomy. In reality making liquid spheres is quite easy, as long as you follow precise measurements. In this video, I show 3 examples of the reverse spherification. I make spheres with 2 relatively thick substances and 1 thinner substance. Watch the video until the end to learn how to make Kefir spheres, you can use the same method to make Sour Cream or Yogurt spheres. *Please note, that these liquids already have quite a bit of calcium inside, so you might need less Calcium Lactate for them (at least 2% in total). I also show how to make tomato spheres, from the tomato juice. You can use the same method to make fruit spheres or fruit caviar / pearls (just use the squeeze bottle for that). And finally, I show how to make wine spheres, using the frozen reverse spherification method. You can use this culinary technique to make cool cocktail pods from any alcohol, or any thin liquid actually. Ingredients for the liquid spheres: - 6 g Calcium Lactate (3% of the "spherified" liquid volume) - 200 g Any Liquid that you wish to enclose into spheres (e.g. Kefir / Tomato juice / Wine) - 5 g Sodium Alginate (0.5% of the Water volume) - 1 L Water *you can buy a Reverse Specification pack HERE: https://amzn.to/2XjVJwt Important TIPS to remember: 1) Make sure that you do not mix up Calcium Lactate with Sodium Alginate. Use Sodium Alginate for Water and Calcium Lactate for the "spherified" liquid, and not the other way around. *that happened to me before... not the best idea... 2) Do take time to rest the "spherified" liquid and avoid the air bubbles (if any left) when making spheres. Do also rest the mixed alcohol, before freezing it. Otherwise, air bubbles would be trapped inside the frozen spheres / pods. 3) Use precise measurements. 4) Use Calcium Lactate and not Calcium Chloride. Both will work for the technical and visual part, but Calcium Chloride spheres will not taste great in comparison to Calcium Lactate spheres.
https://wn.com/How_To_Make_Liquid_Spheres_|_Easy_Molecular_Gastronomy
What Is Molecular Gastronomy!?
3:55

What Is Molecular Gastronomy!?

  • Order:
  • Duration: 3:55
  • Uploaded Date: 17 Oct 2013
  • views: 1384195
Follow Me On Twitter: https://twitter.com/VsauceTwo INSTAGRAM: http://www.instagr.am/kevlieber *** CLICK "SHOW MORE" FOR LINKS TO EVERYTHING *** Molecular gastronomy Info http://www.molecularrecipes.com/molecular-gastronomy/ How Molecular Gastronomy Works http://science.howstuffworks.com/innovation/edible-innovations/molecular-gastronomy.htm Baby Corn http://www.youtube.com/watch?v=Z4s85mN8W04 Lemon Chicken http://www.youtube.com/watch?v=SGiA3Z_ufaQ Sous Vide Peach http://www.youtube.com/watch?v=a7nr0NXSRok Smitten Ice Cream http://smittenicecream.com/story/#slide-343 http://vimeo.com/72457025 Fun with Liquid Nitrogen http://www.youtube.com/watch?v=xtb3dWDRqw0 Liquid Nitrogen http://en.wikipedia.org/wiki/Liquid_nitrogen Moto Restaurant http://motorestaurant.com http://www.ohgizmo.com/2006/09/11/restaurant-sells-printable-food/ Moto/ Edible Menu http://www.youtube.com/watch?v=CRSwwSg52Kw Moto/ 16 Course Winter Menu/ Fried Chicken http://www.youtube.com/watch?v=2tLio9CBCHY Molecule-r Flavors Channel http://www.youtube.com/user/MoleculeRflavors Chocolate wind http://www.youtube.com/watch?v=WRNIt73QE Surprise Bubbles http://www.youtube.com/watch?v=OlJKpt74TvI Molecule-r Website http://www.molecule-r.com/ Enthusio Chefs Channel http://www.youtube.com/user/enthusiochefs Reverse Spherified Poached Egg http://www.youtube.com/watch?v=4Y1NsWdF3-M Powdered Ice Cream Inside Candy Strawberries http://www.youtube.com/watch?v=X11GbEwxDQc Milk http://www.youtube.com/watch?v=l7fBp9DqqfA Strawberry Spaghetti by Sosa http://www.youtube.com/watch?v=brT571TzeRY http://www.sosa.cat ************************************** Vsauce Links Kevin's Personal Instagram: http://bit.ly/195sKYW T-Shirts: http://www.districtlines.com/vsauce Facebook: http://on.fb.me/V62afx Twitter: http://bit.ly/T6N1dk Music By Jake Chudnow: http://www.youtube.com/user/JakeChudnow Vsauce: http://www.youtube.com/Vsauce Vsauce2: http://www.youtube.com/Vsauce2 Vsauce3: http://www.youtube.com/Vsauce3 WEsauce: http://www.youtube.com/WEsauce
https://wn.com/What_Is_Molecular_Gastronomy
Molecular Gastronomy Masterclass! | MasterChef New Zealand | MasterChef World
11:32

Molecular Gastronomy Masterclass! | MasterChef New Zealand | MasterChef World

  • Order:
  • Duration: 11:32
  • Uploaded Date: 01 May 2021
  • views: 118528
Chef Simon Gault gives a masterclass on how to cook a Molecular Crab Salad with Nitro Gazpacho. Subscribe to MasterChef World here: https://www.youtube.com/MasterChefWorld Welcome to MasterChef World! MasterChef World highlights the best moments from the world's favourite cooking television show. Watch mystery box challenges, invention tests, pressure tests and find how-to recipes and masterclasses from world-class chefs! MasterChef offers ordinary home cooks the opportunity to become extraordinary chefs! Who will compete in the battle to become the MasterChef? Watch MasterChef World to find out! #masterchef #masterchefnewzealand #howtocook
https://wn.com/Molecular_Gastronomy_Masterclass_|_Masterchef_New_Zealand_|_Masterchef_World
10 Easy Molecular Gastronomy Techniques! So Yummy
11:57

10 Easy Molecular Gastronomy Techniques! So Yummy

  • Order:
  • Duration: 11:57
  • Uploaded Date: 26 Feb 2022
  • views: 399911
Elevate your chef game with these 10 easy molecular gastronomy techniques! For more pro chef tips, cooking hacks and cake decoration tutorials subscribe to So Yummy! Subscribe to So Yummy: https://www.youtube.com/channel/UCH8NnRkxQg1zX7mHFRPq73g?sub_confirmation=1 About So Yummy: So Yummy brings you fun food ideas and recipes for your cooking and baking adventures. We believe that home cooking should always be fun, interesting, and easy to do! Enjoy our collection of fun and easy food tutorials! With recipes ranging from healthy dinners to sugary sweet delights, there are a plethora of creative options to spice up your home cooking. Follow us: Facebook: http://bit.ly/SoYummyFB Instagram: http://bit.ly/SoYummyIG Website: https://soyummy.com/ #SoYummy https://www.youtube.com/channel/UCH8NnRkxQg1zX7mHFRPq73g
https://wn.com/10_Easy_Molecular_Gastronomy_Techniques_So_Yummy
This Salad Is TRANSPARENT!
0:52

This Salad Is TRANSPARENT!

  • Order:
  • Duration: 0:52
  • Uploaded Date: 29 Apr 2021
  • views: 385027
#Shorts #short #salad #food #foodscience
https://wn.com/This_Salad_Is_Transparent
Molecular Gastronomy Techniques
1:01

Molecular Gastronomy Techniques

  • Order:
  • Duration: 1:01
  • Uploaded Date: 15 Nov 2021
  • views: 58343
#moleculargastronomy Techniques🤩 . Molecular Gastronomy is a scientific discipline concerned with the physical and chemical transformations that occur during cooking. It is a movement that incorporates science and new techniques in the preparation, transformation and artistic presentation of food. Inspiration and support credits: @vakuum_by_martin_lippo . . #photooftheday #instafood #instareels #fyp #shorts #reelsinstagram #reelitfeelit #fyp #trendingreels #chefzararkhan #cheftraveller #cocktails #appetizers #nitro #recipes #indiancuisine #moleculargastronomy #canapes #plants #lunch #espuma #foodaddict #reelsindia
https://wn.com/Molecular_Gastronomy_Techniques
Food History: Molecular Gastronomy w/ Dr. Harold McGee
17:45

Food History: Molecular Gastronomy w/ Dr. Harold McGee

  • Order:
  • Duration: 17:45
  • Uploaded Date: 25 May 2022
  • views: 32476
Molecular gastronomy is the fusion of food, art, and science. But how did we go from respectable culinary scientists to exuberant table-side pyrotechnics? On today's episode, we're talking to author and historian Dr. Harold McGee about the fascinating history of molecular gastronomy. Was it an important part of food history, or an elitist misstep? Food History is a show all about... well, the history of food. Join host Justin Dodd as he brings you the stories of how your favorite meals ended up on your plate. Today, we're talking molecular gastronomy. Special thanks to Dr. Harold McGee (author of On Food And Cooking: The Science And Lore Of The Kitchen) for chatting with us for this episode. ----------------------------- Website: http://www.mentalfloss.com​ Twitter: http://www.twitter.com/mental_floss​ Facebook: https://facebook.com/mentalflossmagazine
https://wn.com/Food_History_Molecular_Gastronomy_W_Dr._Harold_Mcgee
Molecular Cuisine | Heston Blumenthal's Restaurant "The Fat Duck" | Windsor, London
8:38

Molecular Cuisine | Heston Blumenthal's Restaurant "The Fat Duck" | Windsor, London

  • Order:
  • Duration: 8:38
  • Uploaded Date: 22 Mar 2016
  • views: 1232796
Famous for molecular cuisine, Heston Blumenthal continously experiments with novel cooking techniques to create new taste sensations. His food creations such as snail porridge are known worldwide. Watch more from our playlist "Restaurants and their Specialities worldwide": https://goo.gl/Q5lxqr 50 people cook in his restaurant "The Fat Duck" in Bray to give guests an exceptional dining eyperience. Cooking with liquid nitrogen or with the antigrill are esential tools in the molecular cuisine. Subscribe to wocomoCOOK: https://goo.gl/9c1suR Follow wocomo on Facebook: https://www.facebook.com/wocomo/ An excerpt from "The Art of Scientific Cookery" produced by NZZ Format
https://wn.com/Molecular_Cuisine_|_Heston_Blumenthal's_Restaurant_The_Fat_Duck_|_Windsor,_London
Webinar on "Computational Gastronomy: Blending Food with Artificial Intelligence"
1:29:21

Webinar on "Computational Gastronomy: Blending Food with Artificial Intelligence"

  • Order:
  • Duration: 1:29:21
  • Uploaded Date: 27 Feb 2025
  • views: 36
Organized by Computer Society of India, Chennai IEEE Computer Society, Madras Association for Computing Machinery, Chennai Bioclues Webinar on "Computational Gastronomy: Blending Food with Artificial Intelligence" Date: Wednesday, 26th Feb 2025 :: Time: 6.30 pm to 7.45 pm IST. For the presentation & speaker details, pl see the PDF invite at https://bit.ly/web-250226-blend-food-ai-invite Agenda Welcome Address by Dr. Gyaneshwer Chaubey, President, Bioclues Introduction to speaker by Mr. HR Mohan, Chair - Events, IEEE CS Madras Presentation by Dr. Ganesh Bagler, Professor, Infosys Centre for Artificial Intelligence, Indraprastha Institute of Information Technology (IIIT), Delhi. Q&A Moderation by Dr. P Sakthivel, Chair, IEEE CS & ACM Chennai Vote of Thanks by Dr. K Komathy, Chair, CSI Chennai Feedback link at https://bit.ly/4icfzjL
https://wn.com/Webinar_On_Computational_Gastronomy_Blending_Food_With_Artificial_Intelligence
The Best of Molecular Gastronomy at MolecularRecipes.com
3:07

The Best of Molecular Gastronomy at MolecularRecipes.com

  • Order:
  • Duration: 3:07
  • Uploaded Date: 09 Oct 2013
  • views: 988145
Get a molecular gastronomy kit to start experimenting at http://store.molecularrecipes.com/ A quick overview of what can be achieved with molecular gastronomy (modernist cuisine). All recipes and techniques featured in the video are available on MolecularRecipes.com. Everything you ever wanted to know about molecular gastronomy is right here. Amazing recipes. The latest techniques. Specially-priced ingredients, tools and equipment. A guide to great modernist cuisine restaurants and bars. Plus, a community of over 100,000 chefs, scientists and food lovers that share a passion for culinary science.
https://wn.com/The_Best_Of_Molecular_Gastronomy_At_Molecularrecipes.Com
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • How to make LIQUID SPHERES | Easy Molecular Gastronomy
    5:20
    How to make LIQUID SPHERES | Easy Molecular Gastronomyremove from playlist
  • What Is Molecular Gastronomy!?
    3:55
    What Is Molecular Gastronomy!?remove from playlist
  • Molecular Gastronomy Masterclass! | MasterChef New Zealand | MasterChef World
    11:32
    Molecular Gastronomy Masterclass! | MasterChef New Zealand | MasterChef Worldremove from playlist
  • 10 Easy Molecular Gastronomy Techniques! So Yummy
    11:57
    10 Easy Molecular Gastronomy Techniques! So Yummyremove from playlist
  • Molecular Gastronomy Techniques
    1:01
    Molecular Gastronomy Techniquesremove from playlist
  • Food History: Molecular Gastronomy w/ Dr. Harold McGee
    17:45
    Food History: Molecular Gastronomy w/ Dr. Harold McGeeremove from playlist
  • Molecular Cuisine | Heston Blumenthal's Restaurant
    8:38
    Molecular Cuisine | Heston Blumenthal's Restaurant "The Fat Duck" | Windsor, Londonremove from playlist
  • Webinar on
    1:29:21
    Webinar on "Computational Gastronomy: Blending Food with Artificial Intelligence"remove from playlist
  • The Best of Molecular Gastronomy at MolecularRecipes.com
    3:07
    The Best of Molecular Gastronomy at MolecularRecipes.comremove from playlist
PLAYLIST TIME: 0:00 / 2:33:28

How to make LIQUID SPHERES | Easy Molecular Gastronomy

Learn on Skillshare: https://www.skillshare.com/en/r/profile/Chef-Rudakova/154353781?gr_tch_ref=on&gr_trp=on Learning the reverse spherification process is the fundamental step in advancing your culinary skills towards the molecular gastronomy. In reality making liquid spheres is quite easy, as long as you follow precise measurements. In this video, I show 3 examples of the reverse spherification. I make spheres with 2 relatively thick substances and 1 thinner substance. Watch the video until the end to learn how to make Kefir spheres, you can use the same method to make Sour Cream or Yogurt spheres. *Please note, that these liquids already have quite a bit of calcium inside, so you might need less Calcium Lactate for them (at least 2% in total). I also show how to make tomato spheres, from the tomato juice. You can use the same method to make fruit spheres or fruit caviar / pearls (just use the squeeze bottle for that). And finally, I show how to make wine spheres, using the frozen reverse spherification method. You can use this culinary technique to make cool cocktail pods from any alcohol, or any thin liquid actually. Ingredients for the liquid spheres: - 6 g Calcium Lactate (3% of the "spherified" liquid volume) - 200 g Any Liquid that you wish to enclose into spheres (e.g. Kefir / Tomato juice / Wine) - 5 g Sodium Alginate (0.5% of the Water volume) - 1 L Water *you can buy a Reverse Specification pack HERE: https://amzn.to/2XjVJwt Important TIPS to remember: 1) Make sure that you do not mix up Calcium Lactate with Sodium Alginate. Use Sodium Alginate for Water and Calcium Lactate for the "spherified" liquid, and not the other way around. *that happened to me before... not the best idea... 2) Do take time to rest the "spherified" liquid and avoid the air bubbles (if any left) when making spheres. Do also rest the mixed alcohol, before freezing it. Otherwise, air bubbles would be trapped inside the frozen spheres / pods. 3) Use precise measurements. 4) Use Calcium Lactate and not Calcium Chloride. Both will work for the technical and visual part, but Calcium Chloride spheres will not taste great in comparison to Calcium Lactate spheres.
5:20
How to make LIQUID SPHERES | Easy Molecular Gastronomy
Learn on Skillshare: https://www.skillshare.com/en/r/profile/Chef-Rudakova/154353781?gr_tc...
published: 14 Mar 2020
Play in Full Screen
3:55
What Is Molecular Gastronomy!?
Follow Me On Twitter: https://twitter.com/VsauceTwo INSTAGRAM: http://www.instagr.am/kevli...
published: 17 Oct 2013
Play in Full Screen
11:32
Molecular Gastronomy Masterclass! | MasterChef New Zealand | MasterChef World
Chef Simon Gault gives a masterclass on how to cook a Molecular Crab Salad with Nitro Gazp...
published: 01 May 2021
Play in Full Screen
11:57
10 Easy Molecular Gastronomy Techniques! So Yummy
Elevate your chef game with these 10 easy molecular gastronomy techniques! For more pro ch...
published: 26 Feb 2022
Play in Full Screen
0:52
This Salad Is TRANSPARENT!
#Shorts #short #salad #food #foodscience
published: 29 Apr 2021
Play in Full Screen
1:01
Molecular Gastronomy Techniques
#moleculargastronomy Techniques🤩 . Molecular Gastronomy is a scientific discipline concern...
published: 15 Nov 2021
Play in Full Screen
17:45
Food History: Molecular Gastronomy w/ Dr. Harold McGee
Molecular gastronomy is the fusion of food, art, and science. But how did we go from respe...
published: 25 May 2022
Play in Full Screen
8:38
Molecular Cuisine | Heston Blumenthal's Restaurant "The Fat Duck" | Windsor, London
Famous for molecular cuisine, Heston Blumenthal continously experiments with novel cooking...
published: 22 Mar 2016
Play in Full Screen
1:29:21
Webinar on "Computational Gastronomy: Blending Food with Artificial Intelligence"
Organized by Computer Society of India, Chennai IEEE Computer Society, Madras Association...
published: 27 Feb 2025
Play in Full Screen
3:07
The Best of Molecular Gastronomy at MolecularRecipes.com
Get a molecular gastronomy kit to start experimenting at http://store.molecularrecipes.com...
published: 09 Oct 2013
Play in Full Screen

Molecular gastronomy

Molecular gastronomy is a subdiscipline of food science that seeks to investigate the physical and chemical transformations of ingredients that occur in cooking. Its program includes three axis, as cooking was recognized to have three components, which are social, artistic and technical. Molecular cuisine is a modern style of cooking, and takes advantage of many technical innovations from the scientific disciplines.

The term "molecular gastronomy" was coined in 1988 by late Oxford physicist Nicholas Kurti and the French INRA chemist Hervé This. Some chefs associated with the term choose to reject its use, preferring other terms such as multi sensory cooking, modernist cuisine, culinary physics, and experimental cuisine.

History

There are many branches of food science that study different aspects of food, such as safety, microbiology, preservation, chemistry, engineering and physics. Until the advent of molecular gastronomy, there was no formal discipline dedicated to studying the chemical processes of cooking in the home and in restaurants - as opposed to food preparation for the mass market. Food science has mostly been concerned with industrial food production and while the disciplines may overlap with each other to varying degrees, they are considered separate areas of investigation.

'); } 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: molecular gastronomy

Edit

Malkovich amps up the creepy in ‘Opus’ misfire

Boston Herald 20 Mar 2025
In the new horror movie “Opus,” we are introduced to Alfred Moretti, the biggest pop star of the ‘90s, with 38 No ... He looks less like a superstar than a sommelier at a stuffy molecular gastronomy restaurant ... They’re very middle.
Edit

Movie Review: An unhinged John Malkovich can't help the cult-horror misfire 'Opus'

North Shore News 11 Mar 2025
In the new horror movie “Opus,” we are introduced to Alfred Moretti, the biggest pop star of the '90s, with 38 No ... It's like a golden ticket ... He looks less like a superstar than a sommelier at a stuffy molecular gastronomy restaurant ... It gets weirder ... .
Edit

Movie Review: An unhinged John Malkovich can’t help the cult-horror misfire ‘Opus’

Wtop 11 Mar 2025
In the new horror movie “Opus,” we are introduced to Alfred Moretti, the biggest pop star of the ’90s, with 38 No ... It’s like a golden ticket ... He looks less like a superstar than a sommelier at a stuffy molecular gastronomy restaurant.
Edit

JAN MOIR: Meghan's new show seems like a bowl of consommé - strained and thin. ...

The Daily Mail 05 Mar 2025
Who knew? Absolutely everyone who’s ever baked a single scone, that’s who ... Never mind, Daniel is the kind of obliging patsy who shrieks with joy when Meghan scales the heights of molecular gastronomy to produce a crudités platter for their lunch ... .
Edit

The Taste by Vir Sanghvi: From foams to farmed salmon, the culinary trends that have ...

Hindustan Times 04 Mar 2025
(Shutterstock ). Also Read . The Taste by Vir Sanghvi ... FOAMS ... Neither man liked the term molecular gastronomy which was invented by Herve This who wrote an influential book of that name ... They became the signature of mindless molecular madness ... SOUS VIDE.
  • 1
×