BABoula Akladyousinboula.hashnode.dev·Jun 24, 2023 · 3 min readBatching in ReactIntroduction React is known for its efficient rendering process, and one of the key techniques it utilizes is batching. Batching refers to the process of combining multiple updates into a single update, minimizing the number of times the real DOM nee...00
BABoula Akladyousinboula.hashnode.dev·Jan 12, 2023 · 5 min readReact FiberAn Overview of Fiber Trees and Reconciliation Unlocking the Power of Web Scraping for Data Collection and Analysis React Fiber is a revolutionary feature in the React library that aims to significantly enhance the performance and rendering efficiency...00
BABoula Akladyousinboula.hashnode.dev·Oct 12, 2021 · 5 min readWeb scraping News Articles using NewsAPIWeb Scraping is a technique employed to gather large amounts of data from websites whereby the data is extracted and stored into a structured format. such technique is widely used for a range of purposes, including market analysis, machine learning, ...00
BABoula Akladyousinboula.hashnode.dev·Jun 21, 2021 · 4 min readRails Action Mailer ConfigurationAction Mailer overview Rails has a wonderful built-in mailing system called Action Mailer, which allows us to send email from our application as long as we have a mailer model. Mailers are actually a lot like controllers: they have their own app/mail...00
BABoula Akladyousinboula.hashnode.dev·Jun 13, 2021 · 3 min readReact Controlled vs. Uncontrolled ComponentsReact makes it easy to manipulate data using forms. One of the most common patterns you’ll see in React when dealing with forms is that we need to make React aware of changes to the form inputs when the user types. This means that the component conta...00