MBMurilo Boareto Delefrateinmurilobd.hashnode.dev·Jan 12, 2021 · 12 min readUsando Machine Learning para criar textos com TensorFlowDê uma olhada na letra dessa música funk abaixo: rebola até o assunto é amor capricha chega perto de mansin carinho meu bem sorte ver você lo lo lo lo lo lo beijo e poder lo lo lo lo lo lo vontade lo lo lo lo lo lo parei você do valor essa música cer...00
MBMurilo Boareto Delefrateinmurilobd.hashnode.dev·Jan 7, 2021 · 7 min readComo começar com Machine Learning e TensorFlowAntes de começar a mexer com Machine Learning pensei que fosse necessário MUITO conhecimento técnico e matemático então sempre adiei meus estudos! Até que resolvi encarar e descobri que eu estava errado! Vem comigo que, juntos, vamos ensinar o comput...00
MBMurilo Boareto Delefrateinmurilobd.hashnode.dev·Nov 25, 2020 · 7 min readWeek Meal Plan #4 - scraping each recipe from BBC Good FoodLet's keep moving, folks! We have all the URLs for all recipes we want to save. Now, let's see what we will have to do to scrap it. Let's use this Caponata recipe as example. I checked if there were any API calls with a response containing the recipe...00
MBMurilo Boareto Delefrateinmurilobd.hashnode.dev·Nov 24, 2020 · 8 min readWeek Meal Plan #3 - scraping another websiteHey you! Let's continue scraping websites (well... the first one was only API calls, I know. And I'm not complaining hehehe! Way easier, right?) and this time, let's dive into BBC Good Food Recipes. Again, I'll focus only in one category for the sak...00
MBMurilo Boareto Delefrateinmurilobd.hashnode.dev·Nov 19, 2020 · 1 min readHow to reverse a string using JavaScript?Some different ways to reverse a string Array method const string = "Let's reverse this"; return string.split("").reverse().join(""); For-loop function reverse(str) { let final = ""; for (let i = str.length - 1; i >= 0; i--) { ...00