21 Fantastic React Design Patterns and When to Use Them

Design patterns aren’t just for backend developers who can’t say a sentence without mentioning architecture or code quality. Frontend developers can benefit from them too, especially in React where component composition and hooks provide perfect opportunities to implement solid React design patterns and improve code architecture. This article covers 21 design patterns and principles that…

Read More

Neural Network in R – DEV Community

Introduction A neural network is an information-processing model inspired by the human brain. Just like our nervous system is made up of interconnected neurons, a neural network consists of interconnected processing units (called nodes or artificial neurons). The key strength of neural networks lies in their parallel processing ability. Unlike traditional linear models, they can…

Read More

Medium and the Blanket AI Ban 😶

I’ve been meaning to write this since I first saw Medium’s post on Friday — but, you know, life happens. So a little late, but I wanted to share. You tell me — am I the crazy one here? 🫤 👆 Also, River has shown up in a few posts already — the Leonardo reimagining…

Read More

How to Hide API Endpoints in Next.js

In Next.js, securing sensitive data and preventing the exposure of API endpoints is critical for building secure web applications. When fetching data, the approach you choose direct or indirect determines whether API endpoints are visible in the browser’s network tab. This article explores how to hide API endpoints in Next.js, using two Proof of Concept…

Read More