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

Cassava

Manihot esculenta (commonly called cassava (/kəˈsɑːvə/),Brazilian arrowroot,manioc, and tapioca) is a woody shrub native to South America of the spurge family, Euphorbiaceae. It is extensively cultivated as an annual crop in tropical and subtropical regions for its edible starchy tuberous root, a major source of carbohydrates. Though it is sometimes called yuca in Spanish, it differs from the yucca, an unrelated fruit-bearing shrub in the family Asparagaceae. Cassava, when dried to a powdery (or pearly) extract, is called tapioca; its fermented, flaky version is named garri.

Cassava is the third largest source of food carbohydrates in the tropics, after rice and maize. Cassava is a major staple food in the developing world, providing a basic diet for over half a billion people. It is one of the most drought-tolerant crops, capable of growing on marginal soils. Nigeria is the world's largest producer of cassava, while Thailand is the largest exporter of dried cassava.

Cassava is classified as either sweet or bitter. Like other roots and tubers, both bitter and sweet varieties of cassava contain antinutritional factors and toxins, with the bitter varieties containing much larger amounts. They must be properly prepared before consumption, as improper preparation of cassava can leave enough residual cyanide to cause acute cyanide intoxication,goiters, and even ataxia or partial paralysis. The more toxic varieties of cassava are a fall-back resource (a "food security crop") in times of famine in some places. Farmers often prefer the bitter varieties because they deter pests, animals, and thieves.

Podcasts:

  • Everything you need to know about Cassava

    Some varieties of cassava may require different methods of preparation for human consumption, such as grating, soaking, fermenting. Please carefully research the variety you have so you can properly prepare it. Undercooked or cassava can be deadly. Aloha! In this video I teach you everything i know about growing, harvesting, and cooking cassava. It is an amazing plant that is very easy to grow, and produces lots of food to help achieve food sovereignty for you and your family. It is a staple in our garden! Hope this video inspires you to grow cassava because most importantly it is delicious! Other names for Cassava include Yuca and Tapioca. Mahalo for watching and have a great day! We still have some trees/plants for sale -Rollinia -Jaboticaba -Abiu -Black sapote -White sapote -Chico ...

    published: 17 Jul 2019
  • Cassava Cake Recipe

    Cassava cake is a is popular budget friendly dessert in Philippines and is made by baking or steaming a casava cake mixture made with grated casava, coconut milk, butter, eggs, evaporated milk and condensed milk. This Cake is topped up with a topping made with condensed milk, coconut milk, egg and grated cheese before baking. Cassava cake is a delectable dessert everyone would love. Follow this video recipe and you will be able to make a scrumptious casava cake in your home. #cassavacake #cassavacakerecipe written recipe :https://yummykitchentv.com/cassava-cake/ Don't forget to SUBSCRIBE and hit the bell button for new updates and uploads. For complete written / printable recipe, visit: https://yummykitchentv.com/cassava-cake/ LIKE & FOLLOW US ON FACEBOOK: https://www.facebook.com/yummy...

    published: 17 Oct 2020
  • Cassava on Keto?

    Can you have cassava on keto? Here’s what you need to know. For more details on this topic, check out the full article on the website: ➡️ https://drbrg.co/3Lzud6B More videos on Vitamin B1 Deficiency: ▶️ https://youtu.be/5M5xP_Sv4xQ ▶️ https://youtu.be/mk2QMLT4CNU ▶️ https://youtu.be/ZbFmzRm-Liw Timestamps 0:00 Cassava on keto 0:30 Can you have cassava on keto? 0:58 The other problem with cassava Can you have cassava chips on keto? Cassava is very high in carbohydrates. It’s also very high on the glycemic index. Cassava is a starch—it’s a root vegetable. Cassava is also used to make tapioca. Tapioca is not keto-friendly. Another name for cassava is yuca. Cassava or yuca is not keto-friendly. Cassava also contains very small amounts of vitamin B1 (thiamine). This is a problem beca...

    published: 23 Nov 2020
  • Best Yuca Recipe - How to Cook Cassava Root

    Check out this easy yuca recipe. Yuca is a popular root that makes a nice change from your average potato dish. Me and CG have been cooking up yuca with garlic and onion for years, inspired by our favorite Cuban restaurants in Florida. The combo of yuca, garlic, onion, and cumin will knock your socks off, so check out the video and give this yuca recipe a try. A printable copy of this Yuca Recipe and more tips on how to prepare it can be found at http://www.myfoodchannel.com/yuca-recipe/ Give this easy cassave recipe a try and let me know what you think, and for more recipes check out the Chef Buck playlist: http://www.youtube.com/user/FromUnderTheRock and to print all recipes visit my website at http://www.myfoodchannel.com/ If you enjoy the content CG and I create on our cooking a...

    published: 10 Mar 2017
  • CASSAVA Benefits and Side Effects - Health Benefits of Tapioca

    CASSAVA Benefits and Side Effects - Health benefits of Tapioca Cassava is a root vegetable that is a mainstay in many people's diets around the world. Cassava is ground down to form tapioca, which is eaten as a pudding or used as a thickening agent in the United States. It's a tuber crop, like potatoes and yams. The form of cassava roots is similar to that of sweet potatoes. Watch more great videos here: Beer Benefits for Health: https://www.youtube.com/watch?v=oId7N07XAmA CRANBERRY JUICE Benefits : https://www.youtube.com/watch?v=EyIfaHXRwFE Sweet Potatoes Benefits : https://www.youtube.com/watch?v=m5OWNop-_BI Coconut Milk Benefits: https://www.youtube.com/watch?v=kh5Q2oQVruE Guava Benefits : https://www.youtube.com/watch?v=V7QDBQqC_NQ Disclaimer: The materials and the informati...

    published: 21 Jan 2022
  • Nigeria Is The Biggest Cassava Producer In The World. Why Isn’t It Cashing In On The Global Market?

    Nigeria grows 63 million metric tons of cassava (also known as yuca or manioc) every year, but most of the country's supply is eaten locally as fufu or garri. Experts say Nigeria could be missing out on billions in exports of lucrative cassava products like bubble tea pearls, starch, or ethanol. Challenges along the country's entire supply chain have caused hundreds of millions of dollars in cassava spoilage. But one entrepreneur, Yemisi Iranloye, thinks she has the solution. She's introduced higher-yielding seed varieties and moved processing plants closer to farms. Now, her farmers earn four times more for their product, and her cassava starch and sorbitol have landed her clients like Nestle and Unilever. Could Yemisi's model be the way for Nigeria to feed itself and cash in on exports? ...

    published: 19 May 2023
  • How to Plant Cassava Easy and Fast

    In this video you will learn how to plant cassava in the right way, it is a way that you will have more production and products with much more quality. In the video I show everything from choosing the cassava seed, preparing the land, planting to harvesting, everything you need to know in a single video. Subscribe to the channel and activate the notification bell to receive all our awesome tips. Learn the best techniques to plant and grow your plants here in one place, every week we have new tips for you to learn how to take care of your plants simply and without spending money on it.

    published: 16 Dec 2021
  • What You Need to Know About Growing and Using Cassava as a Staple Crop

    Cassava is DANGEROUS, right? Well... let's take a deeper look at this staple crop. Learn more about survival gardening and feeding your family in my books, where I explain many staple crops and methods in depth: https://amzn.to/3fWmyTs Subscribe to the newsletter: https://thesurvivalgardener.us3.list-manage.com/subscribe/post?u=d1c57e318ab24156698c41249&id=1f74a21dc8 Compost Your Enemies t-shirts: https://www.aardvarktees.com/products/compost-your-enemies David's gardening blog: http://www.thesurvivalgardener.com Inside the continental US, cassava is generally unknown to gardeners, other than immigrants from warmer climates who grow some on a backyard scale. It's high in starch and often grows to about 12’ tall. Its palmate leaves and graceful cane-like branches are attractive i...

    published: 10 Nov 2022
  • Everything You Need To Know About Growing Cassava: From PLANTING TO HARVEST

    ***Looking for Cassava Cuttings? Visit our store at homesteadinhawaii.etsy.com*** ***Want to get monthly garden tips and special resources for the garden? Sign up for our email list at https://pages.homesteadinhawaii.com/*** Cassava has to be one of the most important plants that we could grow in the tropics. It reliably produces food, Lots of it, year in and year out. So you may as well learn how to grow it. In this video we share everything you need to know to grow Cassava. In a future video we'll share with you how to preserve and cook your cassava harvest. So stay tuned!! 🌸 FREE // Monthly Garden Tip Newsletter: https://successful-pioneer-7609.ck.page/01889aea74 🌱 EBOOK // Month by Month In The Tropical Garden https://tinyurl.com/ycxfa7ar MORE VIDEOS YOU MIGHT LIKE // 1...

    published: 13 Feb 2023
  • Your Guide to Eating this Toxic Root

    Is it poisonous but healthy? Cassava is the toxic root that you should think about adding to your next meal. As a part of ancient Mayan culture, cassava, also called yuca can be baked or roasted. You can even eat cassava as bread, or gluten-free baking flour. 00:00 Cassava 00:47 Ancient root 01:40 Nutrition 02:50 Cooking Watch our shows: What If - https://www.youtube.com/channel/UCphTF9wHwhCt-BzIq-s4V-g How to Survive - https://www.youtube.com/channel/UCOch_vMp7AKaiGE7e6kSHfg A show by Underknown: www.underknown.com #OriginsOfFood #Cassava #Yuca

    published: 22 Apr 2022
Everything you need to know about Cassava
10:33

Everything you need to know about Cassava

  • Order:
  • Duration: 10:33
  • Uploaded Date: 17 Jul 2019
  • views: 296365
Some varieties of cassava may require different methods of preparation for human consumption, such as grating, soaking, fermenting. Please carefully research the variety you have so you can properly prepare it. Undercooked or cassava can be deadly. Aloha! In this video I teach you everything i know about growing, harvesting, and cooking cassava. It is an amazing plant that is very easy to grow, and produces lots of food to help achieve food sovereignty for you and your family. It is a staple in our garden! Hope this video inspires you to grow cassava because most importantly it is delicious! Other names for Cassava include Yuca and Tapioca. Mahalo for watching and have a great day! We still have some trees/plants for sale -Rollinia -Jaboticaba -Abiu -Black sapote -White sapote -Chico sapote -Mamey sapote -Durian -Surinam cherry -Ice cream bean Cuttings: -Tongan spinach -Purple sweet potato -Cassava -Taro -Katuk -Holy basil -Thai basil -African basil -Lemongrass (There may be more, email us if you're interested! aloha.offgridhawaii@gmail.com 😀Special thanks to all of our Patrons Haven Roberts, Ken C, Joe Pacholic, James Cardoza, Kelly Burke, Sirron Davis, John Bourassa, Kristen Pittman, Andrew Meidenbauer, Kyri Vanderpoel, Drew Padgett, Bryce Davis, Kamal K, Tarin Nelson, and Stephanie Hamakawa! Email for questions or landscaping job inquiries: aloha.offgridhawaii@gmail.com **Follow us on Instagram: @offgridhi **Music Gimme 5 by Andrew Applepie https://www.youtube.com/watch?v=an3-i9ncWnU
https://wn.com/Everything_You_Need_To_Know_About_Cassava
Cassava Cake Recipe
6:23

Cassava Cake Recipe

  • Order:
  • Duration: 6:23
  • Uploaded Date: 17 Oct 2020
  • views: 3168205
Cassava cake is a is popular budget friendly dessert in Philippines and is made by baking or steaming a casava cake mixture made with grated casava, coconut milk, butter, eggs, evaporated milk and condensed milk. This Cake is topped up with a topping made with condensed milk, coconut milk, egg and grated cheese before baking. Cassava cake is a delectable dessert everyone would love. Follow this video recipe and you will be able to make a scrumptious casava cake in your home. #cassavacake #cassavacakerecipe written recipe :https://yummykitchentv.com/cassava-cake/ Don't forget to SUBSCRIBE and hit the bell button for new updates and uploads. For complete written / printable recipe, visit: https://yummykitchentv.com/cassava-cake/ LIKE & FOLLOW US ON FACEBOOK: https://www.facebook.com/yummycookbook/ INGREDIENTS 1 kg Fresh Cassava (grated) 1 cup coconut milk 1/4 cup melted butter (or margarine) 2 large eggs 1 can evaporated milk (370ml) 1 can condensed milk (390g) FOR TOPPINGS 1/2 cup condensed milk 1/2 cup coconut milk 1 large egg grated cheese (optional) Directions If you are using fresh cassava, peel and remove the root part in the middle. Wash then grate using fine grater (for smoother texture). Using a fine sieve, squeeze some of the excess juice. Do not squeeze too hard. Just enough to remove excess juice. Preheat oven at 175 C or 350 F. In a large mixing bowl, combine grated cassava, coconut milk, eggs, evaporated milk, condensed milk, and melted butter. Mix until well-combined. Grease the baking pan with softened butter/margarine or oil. Then, pour some mixture on it. Cooking time depends on the thickness. This recipe is around 1 inch thick. Bake for around 45 to 60 minutes at 175 C. Meanwhile, make the toppings. Combine the coconut milk, condensed milk and egg. Mix until well-blended. Set aside.Cassava-cake-Toppings After 50 minutes, get the cassava cake from the oven. Pour the toppings on the top of the baked cassava. Sprinkle with grated cheese. NOTE: Make sure that the cassava is firm and cooked before putting the topping. Bake for another 15 to 20 minutes or Broil for 10 minutes until the top is light brown and bubbly. ----The following searches also reference to this dish cassava cake cassava cake with macapuno cassava cake calories cassava cake kawaling pinoy cassava cake recipe - kawaling pinoy cassava cake using cassava flour cassava cake near me cassava cake toppings cassava cake recipe easy cassava cake don benitos price how to make cassava cake best cassava cake recipe easy cassava cake recipe
https://wn.com/Cassava_Cake_Recipe
Cassava on Keto?
2:07

Cassava on Keto?

  • Order:
  • Duration: 2:07
  • Uploaded Date: 23 Nov 2020
  • views: 101858
Can you have cassava on keto? Here’s what you need to know. For more details on this topic, check out the full article on the website: ➡️ https://drbrg.co/3Lzud6B More videos on Vitamin B1 Deficiency: ▶️ https://youtu.be/5M5xP_Sv4xQ ▶️ https://youtu.be/mk2QMLT4CNU ▶️ https://youtu.be/ZbFmzRm-Liw Timestamps 0:00 Cassava on keto 0:30 Can you have cassava on keto? 0:58 The other problem with cassava Can you have cassava chips on keto? Cassava is very high in carbohydrates. It’s also very high on the glycemic index. Cassava is a starch—it’s a root vegetable. Cassava is also used to make tapioca. Tapioca is not keto-friendly. Another name for cassava is yuca. Cassava or yuca is not keto-friendly. Cassava also contains very small amounts of vitamin B1 (thiamine). This is a problem because anytime you have something with a lot of carbs and low vitamin B1, you can create a vitamin B1 deficiency. This happens because it takes vitamin B1 to metabolize carbs. Dr. Eric Berg DC Bio: Dr. Berg, age 58, is a chiropractor who specializes in Healthy Ketosis & Intermittent Fasting. He is the author of the best-selling book The Healthy Keto Plan, and is the Director of Dr. Berg Nutritionals. He no longer practices, but focuses on health education through social media. DR. BERG'S SHOP: https://bit.ly/3pTQXls Follow us on FACEBOOK: fb.me/DrEricBerg ABOUT DR. BERG: https://bit.ly/3pVYQXl Disclaimer: Dr. Eric Berg received his Doctor of Chiropractic degree from Palmer College of Chiropractic in 1988. His use of “doctor” or “Dr.” in relation to himself solely refers to that degree. Dr. Berg is a licensed chiropractor in Virginia, California, and Louisiana, but he no longer practices chiropractic in any state and does not see patients so he can focus on educating people as a full time activity, yet he maintains an active license. This video is for general informational purposes only. It should not be used to self-diagnose and it is not a substitute for a medical exam, cure, treatment, diagnosis, and prescription or recommendation. It does not create a doctor-patient relationship between Dr. Berg and you. You should not make any change in your health regimen or diet before first consulting a physician and obtaining a medical exam, diagnosis, and recommendation. Always seek the advice of a physician or other qualified health provider with any questions you may have regarding a medical condition. #keto #ketodiet #weightloss Thanks for watching! I hope this helps you better understand cassava on keto.
https://wn.com/Cassava_On_Keto
Best Yuca Recipe - How to Cook Cassava Root
7:57

Best Yuca Recipe - How to Cook Cassava Root

  • Order:
  • Duration: 7:57
  • Uploaded Date: 10 Mar 2017
  • views: 786114
Check out this easy yuca recipe. Yuca is a popular root that makes a nice change from your average potato dish. Me and CG have been cooking up yuca with garlic and onion for years, inspired by our favorite Cuban restaurants in Florida. The combo of yuca, garlic, onion, and cumin will knock your socks off, so check out the video and give this yuca recipe a try. A printable copy of this Yuca Recipe and more tips on how to prepare it can be found at http://www.myfoodchannel.com/yuca-recipe/ Give this easy cassave recipe a try and let me know what you think, and for more recipes check out the Chef Buck playlist: http://www.youtube.com/user/FromUnderTheRock and to print all recipes visit my website at http://www.myfoodchannel.com/ If you enjoy the content CG and I create on our cooking and travel sites, you can show your support with the price of a cup of coffee at Patreon https://www.patreon.com/BuckAndCameraGirl or by dropping a tip into our tip jar at Paypal https://paypal.me/BuckAndCameraGirl . Everything we create we upload to the internet absolutely free--we don’t hold anything back!--we just appreciate all the viewers and kind comments, but if you’d like to buy us a cup of coffee, we’d love it! Thanks! Connect with this media to catch all of my videos...thanks: MY OTHER YOUTUBE CHANNEL: http://www.youtube.com/user/buckredbuck FACEBOOK http://www.facebook.com/buckredbuck TWITTER https://twitter.com/buckredbuck INSTAGRAM https://www.instagram.com/buckredbuck/ GOOGLE+ http://plus.google.com/u/0/109193261972985167770/posts PRINT RECIPES AT MY WEBSITE: http://www.myfoodchannel.com/ RECIPE PLAYLISTS: http://www.youtube.com/user/FromUnderTheRock Ingredients for this Cuban-Inspired Yuca Recipe YUCA (about 1 lb.) 1 Lg ONION (diced) 5-10 cloves GARLIC (finely chopped) OIL for sauteing the onion and garlic RED PEPPER FLAKES to taste 2-3 Tbsp CUMIN ½ cup OLIVE OIL juice of 1 LEMON and zest SALT to taste CUMIN SEEDS (1 tsp, optional) …I’ve got lots of yuca, so in the video I’m doubling this recipe How To Cook Yuca Recipe Using a sharp knife, cut the yuca into manageable sizes and carefully cut away the outer skin of the yuca root. The skin is inedible and should be discarded. Place yuca pieces into a pot of water and bring to a boil. Yuca should never be eaten uncooked. Reduce heat and simmer 15-20 minutes or until yuca root can be pierced easily with a fork. Do not overcook! Yuca pieces should not be mushy. Drain yuca and cool with water. Remove fibrous stem from center of root and cut into 1 inch chunks. Heat oil in a skillet. Add garlic and onion and let simmer for a several minutes. Add red pepper flakes, cumin, and salt to taste. Add yuca. Mix and allow all to simmer for 5 minutes. Give the yuca an occasional stir. Add a bit of water if needed, but not too much. Remove from heat and add lemon juice and zest. And that's it! Yucca is an excellent substitute for potato. It goes great with any meat entree, and makes a great vegetarian meal when paired with stuffed peppers and a crisp green salad. Give this yuca recipe a try and let me know what you think, and bon appetit! And if you wanna try out the stuffed peppers with yuca, check out this jalapeno poppers recipe as well https://www.youtube.com/watch?v=V7Le6tRgXd8 Thanks for checking the yuca recipe and video out. If you liked it, share it with your friends and family. I appreciate it! --Chef Buck
https://wn.com/Best_Yuca_Recipe_How_To_Cook_Cassava_Root
CASSAVA Benefits and Side Effects - Health Benefits of Tapioca
5:37

CASSAVA Benefits and Side Effects - Health Benefits of Tapioca

  • Order:
  • Duration: 5:37
  • Uploaded Date: 21 Jan 2022
  • views: 187271
CASSAVA Benefits and Side Effects - Health benefits of Tapioca Cassava is a root vegetable that is a mainstay in many people's diets around the world. Cassava is ground down to form tapioca, which is eaten as a pudding or used as a thickening agent in the United States. It's a tuber crop, like potatoes and yams. The form of cassava roots is similar to that of sweet potatoes. Watch more great videos here: Beer Benefits for Health: https://www.youtube.com/watch?v=oId7N07XAmA CRANBERRY JUICE Benefits : https://www.youtube.com/watch?v=EyIfaHXRwFE Sweet Potatoes Benefits : https://www.youtube.com/watch?v=m5OWNop-_BI Coconut Milk Benefits: https://www.youtube.com/watch?v=kh5Q2oQVruE Guava Benefits : https://www.youtube.com/watch?v=V7QDBQqC_NQ Disclaimer: The materials and the information contained on Healthpecial channel are provided for general and educational purposes only and do not constitute any legal, medical or other professional advice on any subject matter. These statements have not been evaluated by the FDA and are not intended to diagnose, treat or cure any disease. Always seek the advice of your physician or other qualified health provider prior to starting any new diet or treatment and with any questions you may have regarding a medical condition. If you have or suspect that you have a medical problem, promptly contact your health care provider.
https://wn.com/Cassava_Benefits_And_Side_Effects_Health_Benefits_Of_Tapioca
Nigeria Is The Biggest Cassava Producer In The World. Why Isn’t It Cashing In On The Global Market?
11:58

Nigeria Is The Biggest Cassava Producer In The World. Why Isn’t It Cashing In On The Global Market?

  • Order:
  • Duration: 11:58
  • Uploaded Date: 19 May 2023
  • views: 32182
Nigeria grows 63 million metric tons of cassava (also known as yuca or manioc) every year, but most of the country's supply is eaten locally as fufu or garri. Experts say Nigeria could be missing out on billions in exports of lucrative cassava products like bubble tea pearls, starch, or ethanol. Challenges along the country's entire supply chain have caused hundreds of millions of dollars in cassava spoilage. But one entrepreneur, Yemisi Iranloye, thinks she has the solution. She's introduced higher-yielding seed varieties and moved processing plants closer to farms. Now, her farmers earn four times more for their product, and her cassava starch and sorbitol have landed her clients like Nestle and Unilever. Could Yemisi's model be the way for Nigeria to feed itself and cash in on exports? For more such videos, subscribe to our channel https://www.youtube.com/channel/UC62AhAC25Ukuscqux_f1rjA Visit us at: https://www.businessinsider.in/ BI on Facebook: https://www.facebook.com/BusinessInsiderIndia/ BI on Twitter: https://twitter.com/BiIndia BI on Instagram: https://instagram.com/businessinsiderin?utm_medium=copy_link
https://wn.com/Nigeria_Is_The_Biggest_Cassava_Producer_In_The_World._Why_Isn’T_It_Cashing_In_On_The_Global_Market
How to Plant Cassava Easy and Fast
1:46

How to Plant Cassava Easy and Fast

  • Order:
  • Duration: 1:46
  • Uploaded Date: 16 Dec 2021
  • views: 151866
In this video you will learn how to plant cassava in the right way, it is a way that you will have more production and products with much more quality. In the video I show everything from choosing the cassava seed, preparing the land, planting to harvesting, everything you need to know in a single video. Subscribe to the channel and activate the notification bell to receive all our awesome tips. Learn the best techniques to plant and grow your plants here in one place, every week we have new tips for you to learn how to take care of your plants simply and without spending money on it.
https://wn.com/How_To_Plant_Cassava_Easy_And_Fast
What You Need to Know About Growing and Using Cassava as a Staple Crop
11:10

What You Need to Know About Growing and Using Cassava as a Staple Crop

  • Order:
  • Duration: 11:10
  • Uploaded Date: 10 Nov 2022
  • views: 47030
Cassava is DANGEROUS, right? Well... let's take a deeper look at this staple crop. Learn more about survival gardening and feeding your family in my books, where I explain many staple crops and methods in depth: https://amzn.to/3fWmyTs Subscribe to the newsletter: https://thesurvivalgardener.us3.list-manage.com/subscribe/post?u=d1c57e318ab24156698c41249&id=1f74a21dc8 Compost Your Enemies t-shirts: https://www.aardvarktees.com/products/compost-your-enemies David's gardening blog: http://www.thesurvivalgardener.com Inside the continental US, cassava is generally unknown to gardeners, other than immigrants from warmer climates who grow some on a backyard scale. It's high in starch and often grows to about 12’ tall. Its palmate leaves and graceful cane-like branches are attractive in the landscape or in the garden. Cassava’s pseudonyms include yuca (with one “c,” NOT two – “yucca” is a completely unrelated species), manioc, the tapioca plant, and manihot. In Latin, it’s Manihot escuelenta. Cassava is virtually pest-free, drought tolerant, loaded with calories, capable of good growth in poor soil – cassava is a must-have anyplace it can grow. Once it’s hit maturity, you can basically dig it at any point for a few years (though the roots may sometimes get too woody to eat). If temperatures drop to freezing, your cassava will freeze to the ground. This won’t usually kill the plant, but it does mean you need to plan your growing accordingly. In the tropics is capable of growing huge roots and living for years. If you live north of USDA Growing Zone 10, occasional frosts will knock it down. Growing it at any zone beyond 8 may be an exercise in futility. Cassava needs warm days and nights to make good roots. Sadly, the plant contains a certain amount of cyanide, from its lovely leaves to its tasty roots. Boiling or fermenting gets a good bit of it out, so fear not. Compared to many things we eat, cassava's pretty tame. That said, there are "sweet" varieties and "bitter" varieties of cassava. Sweet types are low in cyanide and are safe to eat after cooking to fork-tender, but bitter types are high in it and need additional processing. You're unlikely to find high-cyanide varieties in the US. I don't have any "bitter" types in my garden, and have not seen them. All we do to make our cassava safe to eat is to cook it until it's soft, but that's because it's a "sweet" type. The bitterness of a cassava root usually correlates to its cyanide toxicity, Low rainfall and tough growing conditions tend to make roots more toxic. The takeaway here is that if your cassava roots taste bitter, they're probably not good to eat. That said, over a half-billion people eat cassava on a regular basis and manage to live just fine through it, so don't get too hung up. Get sweet varieties and take care of them, and cook them well. You can also soak cassava roots for a few days before cooking to make them even safer, though we don't bother doing that with our roots. There are Cassava cane cuttings for sale on ebay and Etsy. Chop a sturdy stem into pieces about 1.5’ long and stick them in the ground on their sides about two inches down and cover them lightly with soil. Select cuttings that have gotten woody, with bark that is no longer young and green. You can also plant the canes vertically, about 2/3 in the the ground, or even diagonally. Cassava likes irrigation and good soil. It will survive drought and heat. 6-12 months later (depending on care, variety and rainfall), they’ll be ready to start harvesting. To harvest, machete down the entire plant a foot or so from the ground, throw the branches to the side and start digging. Be careful, though – the roots are easy to chop through. The roots you’re looking for grow down and away from the main stem and are generally located in the first 1-2’ of soil. They’re deep brown with flaky skin. Don’t dig them too long before you’re going to process them as cassava doesn’t store well at all. Once you harvest the roots, you’ll want to chop up the rest of the plant to make a new set of canes for planting out. I snap off all the leaves and compost them, then cut the bare canes into planting size. Remember: canes that are too green tend to rot rather than root, so throw them on the compost too. Sturdy, 1-2” diameter canes are perfect. Ensure they’re right side up by looking for the tiny little growth buds by the leaf bases. That little dot should be above the leaf’s base, not below. You can bury cut canes in a box beneath the ground for the winter, you can let your current plants freeze to the ground and just wait for spring to bring new growth back… you can put cuttings in pots and bring them inside on freezing nights, then plant out in spring… or you can get a greenhouse and always keep a few plants in there for propagative stock. The roots can be chopped and frozen raw as well – they keep quite well that way. Start learning how to grow this plant. It’s a lifesaving staple.
https://wn.com/What_You_Need_To_Know_About_Growing_And_Using_Cassava_As_A_Staple_Crop
Everything You Need To Know About Growing Cassava: From PLANTING TO HARVEST
5:56

Everything You Need To Know About Growing Cassava: From PLANTING TO HARVEST

  • Order:
  • Duration: 5:56
  • Uploaded Date: 13 Feb 2023
  • views: 48709
***Looking for Cassava Cuttings? Visit our store at homesteadinhawaii.etsy.com*** ***Want to get monthly garden tips and special resources for the garden? Sign up for our email list at https://pages.homesteadinhawaii.com/*** Cassava has to be one of the most important plants that we could grow in the tropics. It reliably produces food, Lots of it, year in and year out. So you may as well learn how to grow it. In this video we share everything you need to know to grow Cassava. In a future video we'll share with you how to preserve and cook your cassava harvest. So stay tuned!! 🌸 FREE // Monthly Garden Tip Newsletter: https://successful-pioneer-7609.ck.page/01889aea74 🌱 EBOOK // Month by Month In The Tropical Garden https://tinyurl.com/ycxfa7ar MORE VIDEOS YOU MIGHT LIKE // 10 Shade-loving Plants You Can Eat - https://youtu.be/pElSCnandzM 3 Way To Make Rainwater Drinkable - https://youtu.be/3iWhhRxyRJk 3 Tips To Make Fruit Trees Grow Faster - https://youtu.be/84poQwNuvYk Preserving Bamboo with Vertical Soak Diffusion, Super Easy Method You Can Do In Your Own Backyard - https://youtu.be/6V4UkUO_I_E My Favorite Bamboo Tools// Bamboo Splitter, 3 cut: https://amzn.to/45B6V8O Bamboo Splitter, 4 cut: https://amzn.to/43Dt2cT Bamboo Splitter, 6 cut: https://amzn.to/3Cb3fx0 Bamboo Splitter, 8 cut: https://amzn.to/45IlozS Bamboo Splitting Knife: https://amzn.to/3qg5YCC Bamboo Carving Knife: https://amzn.to/3IV6IDQ Kakuri Japanese Pull Saw: https://amzn.to/3WKQcMc Woodsman Pal Machete: https://amzn.to/3WTjDvS Dewalt Hole Saw Kit: https://amzn.to/3C8CR71 Dewalt ⅜”x12” Drill Bit: https://amzn.to/42mE19R 20 Mule Team Borax: https://amzn.to/3X22cJH Boric Acid: https://amzn.to/3N8OelD Seal It Green Xtreem Bamboo Sealer: https://amzn.to/3C9zjRW MY GARDENING ESSENTIALS // O’o Digging Bar: https://amzn.to/3IUqi2T Okatsune Bypass Pruners: https://amzn.to/3WJUsf9 Hori Hori Garden Knife: https://amzn.to/3ql8d7Q Fruit Picker: https://amzn.to/3CrWOGh Husqvarna 435 Chainsaw: https://amzn.to/3MKmh2h Husqvarna Weed Eater: https://amzn.to/3OR7UvC Honda Lawn Mower: https://amzn.to/3OSNHWy OFF GRID ESSENTIALS // Honda Generator: https://amzn.to/42lsmaY Bestek 1000 watt inverter: https://amzn.to/3WQmtBQ GoSun Solar Oven: https://amzn.to/3MKYNtL Lifestraw, Family Size: https://amzn.to/3OStRdL HQUA UV Water Purifier: https://amzn.to/3MMCpAm DISCLAIMER: Links included in this description might be affiliate links. If you purchase a product or service with the links that I provide I may receive a small commission. There is no additional charge to you! Thank you for supporting my channel so I can continue to provide you with free content each week! #urbangarden #gardeningtips #permaculture #offgrid #bamboo To learn more about going Off Grid in Hawaii check out our website at HTTPS://www.homesteadinhawaii.com
https://wn.com/Everything_You_Need_To_Know_About_Growing_Cassava_From_Planting_To_Harvest
Your Guide to Eating this Toxic Root
4:01

Your Guide to Eating this Toxic Root

  • Order:
  • Duration: 4:01
  • Uploaded Date: 22 Apr 2022
  • views: 31994
Is it poisonous but healthy? Cassava is the toxic root that you should think about adding to your next meal. As a part of ancient Mayan culture, cassava, also called yuca can be baked or roasted. You can even eat cassava as bread, or gluten-free baking flour. 00:00 Cassava 00:47 Ancient root 01:40 Nutrition 02:50 Cooking Watch our shows: What If - https://www.youtube.com/channel/UCphTF9wHwhCt-BzIq-s4V-g How to Survive - https://www.youtube.com/channel/UCOch_vMp7AKaiGE7e6kSHfg A show by Underknown: www.underknown.com #OriginsOfFood #Cassava #Yuca
https://wn.com/Your_Guide_To_Eating_This_Toxic_Root
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Everything you need to know about Cassava
    10:33
    Everything you need to know about Cassavaremove from playlist
  • Cassava Cake Recipe
    6:23
    Cassava Cake Reciperemove from playlist
  • Cassava on Keto?
    2:07
    Cassava on Keto?remove from playlist
  • Best Yuca Recipe - How to Cook Cassava Root
    7:57
    Best Yuca Recipe - How to Cook Cassava Rootremove from playlist
  • CASSAVA Benefits and Side Effects - Health Benefits of Tapioca
    5:37
    CASSAVA Benefits and Side Effects - Health Benefits of Tapiocaremove from playlist
  • Nigeria Is The Biggest Cassava Producer In The World. Why Isn’t It Cashing In On The Global Market?
    11:58
    Nigeria Is The Biggest Cassava Producer In The World. Why Isn’t It Cashing In On The Global Market?remove from playlist
  • How to Plant Cassava Easy and Fast
    1:46
    How to Plant Cassava Easy and Fastremove from playlist
  • What You Need to Know About Growing and Using Cassava as a Staple Crop
    11:10
    What You Need to Know About Growing and Using Cassava as a Staple Cropremove from playlist
  • Everything You Need To Know About Growing Cassava: From PLANTING TO HARVEST
    5:56
    Everything You Need To Know About Growing Cassava: From PLANTING TO HARVESTremove from playlist
  • Your Guide to Eating this Toxic Root
    4:01
    Your Guide to Eating this Toxic Rootremove from playlist
PLAYLIST TIME: 0:00 / 1:07:28

Everything you need to know about Cassava

Some varieties of cassava may require different methods of preparation for human consumption, such as grating, soaking, fermenting. Please carefully research the variety you have so you can properly prepare it. Undercooked or cassava can be deadly. Aloha! In this video I teach you everything i know about growing, harvesting, and cooking cassava. It is an amazing plant that is very easy to grow, and produces lots of food to help achieve food sovereignty for you and your family. It is a staple in our garden! Hope this video inspires you to grow cassava because most importantly it is delicious! Other names for Cassava include Yuca and Tapioca. Mahalo for watching and have a great day! We still have some trees/plants for sale -Rollinia -Jaboticaba -Abiu -Black sapote -White sapote -Chico sapote -Mamey sapote -Durian -Surinam cherry -Ice cream bean Cuttings: -Tongan spinach -Purple sweet potato -Cassava -Taro -Katuk -Holy basil -Thai basil -African basil -Lemongrass (There may be more, email us if you're interested! aloha.offgridhawaii@gmail.com 😀Special thanks to all of our Patrons Haven Roberts, Ken C, Joe Pacholic, James Cardoza, Kelly Burke, Sirron Davis, John Bourassa, Kristen Pittman, Andrew Meidenbauer, Kyri Vanderpoel, Drew Padgett, Bryce Davis, Kamal K, Tarin Nelson, and Stephanie Hamakawa! Email for questions or landscaping job inquiries: aloha.offgridhawaii@gmail.com **Follow us on Instagram: @offgridhi **Music Gimme 5 by Andrew Applepie https://www.youtube.com/watch?v=an3-i9ncWnU
10:33
Everything you need to know about Cassava
Some varieties of cassava may require different methods of preparation for human consumpti...
published: 17 Jul 2019
Play in Full Screen
6:23
Cassava Cake Recipe
Cassava cake is a is popular budget friendly dessert in Philippines and is made by baking ...
published: 17 Oct 2020
Play in Full Screen
2:07
Cassava on Keto?
Can you have cassava on keto? Here’s what you need to know. For more details on this top...
published: 23 Nov 2020
Play in Full Screen
7:57
Best Yuca Recipe - How to Cook Cassava Root
Check out this easy yuca recipe. Yuca is a popular root that makes a nice change from your...
published: 10 Mar 2017
Play in Full Screen
5:37
CASSAVA Benefits and Side Effects - Health Benefits of Tapioca
CASSAVA Benefits and Side Effects - Health benefits of Tapioca Cassava is a root vegetabl...
published: 21 Jan 2022
Play in Full Screen
11:58
Nigeria Is The Biggest Cassava Producer In The World. Why Isn’t It Cashing In On The Global Market?
Nigeria grows 63 million metric tons of cassava (also known as yuca or manioc) every year,...
published: 19 May 2023
Play in Full Screen
1:46
How to Plant Cassava Easy and Fast
In this video you will learn how to plant cassava in the right way, it is a way that you w...
published: 16 Dec 2021
Play in Full Screen
11:10
What You Need to Know About Growing and Using Cassava as a Staple Crop
Cassava is DANGEROUS, right? Well... let's take a deeper look at this staple crop. Learn...
published: 10 Nov 2022
Play in Full Screen
5:56
Everything You Need To Know About Growing Cassava: From PLANTING TO HARVEST
***Looking for Cassava Cuttings? Visit our store at homesteadinhawaii.etsy.com*** ***Wan...
published: 13 Feb 2023
Play in Full Screen
4:01
Your Guide to Eating this Toxic Root
Is it poisonous but healthy? Cassava is the toxic root that you should think about adding ...
published: 22 Apr 2022
Play in Full Screen

Cassava

Manihot esculenta (commonly called cassava (/kəˈsɑːvə/),Brazilian arrowroot,manioc, and tapioca) is a woody shrub native to South America of the spurge family, Euphorbiaceae. It is extensively cultivated as an annual crop in tropical and subtropical regions for its edible starchy tuberous root, a major source of carbohydrates. Though it is sometimes called yuca in Spanish, it differs from the yucca, an unrelated fruit-bearing shrub in the family Asparagaceae. Cassava, when dried to a powdery (or pearly) extract, is called tapioca; its fermented, flaky version is named garri.

Cassava is the third largest source of food carbohydrates in the tropics, after rice and maize. Cassava is a major staple food in the developing world, providing a basic diet for over half a billion people. It is one of the most drought-tolerant crops, capable of growing on marginal soils. Nigeria is the world's largest producer of cassava, while Thailand is the largest exporter of dried cassava.

Cassava is classified as either sweet or bitter. Like other roots and tubers, both bitter and sweet varieties of cassava contain antinutritional factors and toxins, with the bitter varieties containing much larger amounts. They must be properly prepared before consumption, as improper preparation of cassava can leave enough residual cyanide to cause acute cyanide intoxication,goiters, and even ataxia or partial paralysis. The more toxic varieties of cassava are a fall-back resource (a "food security crop") in times of famine in some places. Farmers often prefer the bitter varieties because they deter pests, animals, and thieves.

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

Edit

Cassava Technologies Collaborates With Microsoft To Launch Community Engagement Initiative Creating Youth Employment Opportunities In ...

MENA FN 31 Mar 2025
(MENAFN - APO Group) Pan-African technology company Cassava Technologies ( ), in a strategic collaboration with Microsoft, has launched a community engagement initiative focused on South Africa ... .
Edit

This Angolan company is finding global buyers for its cassava and caterpillars

CNN 31 Mar 2025
José says cassava, rather than mopane worms, is FoodCare’s biggest seller ... She adds that FoodCare has the capacity to process 84 tons of cassava per month, but receives monthly international requests for 700 tons.
Edit

Cassava Sciences Reports Topline Phase 3 REFOCUS-ALZ Data

Nasdaq Globe Newswire 25 Mar 2025
AUSTIN, Texas, March 25, 2025 (GLOBE NEWSWIRE) -- Cassava Sciences, Inc ... SAVA, “Cassava”, ...
Edit

Cassava Sciences Reports Topline Phase 3 REFOCUS-ALZ Data (Form 8-K) (Cassava Sciences Inc)

Public Technologies 25 Mar 2025
AUSTIN, Texas, March 25, 2025 (GLOBE NEWSWIRE) -- Cassava Sciences, Inc ... Working with patients, their families and their caregivers has brought a special dignity to our Phase 3 Alzheimer's disease clinical trial program and to each of us at Cassava.
Edit

Cassava to upgrade its data centres with NVIDIA supercomputers to drive Africa’s Artificial Intelligence (AI) future

APO 24 Mar 2025
Cassava Technologies (www.CassavaTechnologies.com) announced today that it plans to build Africa’s first AI factory — a powerful and super-secure data centre facility powered with NVIDIA AI computing technology.
Edit

Piranha and Cassava: Traditional Dishes from Vichada, Colombia

Colombia One 22 Mar 2025
Among the most representative dishes from Vichada are a type of grilled fish called cachama; a fruit drink called moriche chicha; cassava bread, and piranha ... It is typically served with roasted plantains, cassava, or rice ... Cassava Bread.
Edit

RMRDC Unveils Plans for Maiden Summit, Visits Oyo Cassava Processing Firm

This Day 15 Mar 2025
“The company has excelled in value addition of cassava to produce derivatives which include high-quality cassava flour, food grade cassava starch, methanol, cassava glucose syrup and sorbitol ...
Edit

DISTI Baked Cassava Chips: From Small Shops to (PT Timah Tbk)

Public Technologies 14 Mar 2025
) DISTI Baked Cassava Chips ... PANGKALPINANG - Starting from a simple business selling other people's chips, Hadisti Florina has now successfully developed her own product, "DISTI Baked Cassava Chips".
  • 1
×