Rishi Bakshirishibakshi.hashnode.dev·Oct 9, 2024The Biggest Mistake You’re Making with Next.js Server Actions: Silent ThreatOne of the critical mistakes I learned in my Next.js journey is failing to validate and protect server actions. Server actions in Next.js can expose post routes, which can be vulnerable if not properly secured. When using server actions, it's essenti...10 likesYou Don't Know Next.jsNext.js
Rishi Bakshirishibakshi.hashnode.dev·Oct 9, 2024Think Server Actions Can Only Be Used in Server Components? Think againOne common misconception in Next.js development is thinking that server actions can only be utilized within server components. However, this isn't the case. Server actions can be used inside client components as well, which allows us to interact with...You Don't Know Next.jsNext.js
Rishi Bakshirishibakshi.hashnode.dev·Oct 8, 2024Page Not Reflecting Updated Data After Mutation? Here's How to Fix ItWhen working with data mutations in Next.js, one common problem is when the page doesn’t update after adding or editing data. Imagine you’re adding a new to-do item via a server action, and even though the data is updated in the database, the changes...10 likesYou Don't Know Next.jsMutations
Soulisozzy98.hashnode.dev·Sep 9, 2024The Greatest Lesson Life Taught Me — One I’ll Never ForgetWhen I was 21yrs old, life thought me a valuable lesson that I’ll never forget: Nobody cares about youHere’s why: One of the most significant lessons life has taught me is this: nobody cares about you. It sounds harsh, even cruel, but understanding t...tips
Dhanush Ndhanushnehru.hashnode.dev·Aug 26, 2024Insights and Tips from a Lead EngineerI officially have 6+ years of experience at the time of writing this blog, I want to share my thoughts, tips, and advice based on what I've learned from my own experiences, as well as those of my colleagues and the many people I've interacted with ov...21 likesDev Retrocareer advice
Vivekheyvivek.com·Aug 12, 2024🤝 The Untold Power of Pair Programming: Why It Deserves More Attention 🚀💻Pair programming, often viewed as a niche practice, holds an untapped potential that many developers and teams overlook. In a world where speed and efficiency are paramount, this collaborative approach to coding can drastically improve code quality, ...11 likes·178 readspair programming
Rod Lester Morenoblackmofan.hashnode.dev·Jul 24, 2024Welcome, Adventurer! Choosing Your Path in Software DevelopmentWhether your quest leads you through the enchanted forests of JavaScript, the towering mountains of Python, or the labyrinthine corridors of C++, each step you take will arm you with new knowledge and skills. As a novice coder, remember that every ma...1 like·38 readsTutorial
Narola AI Studionarolaistudio.hashnode.dev·Jun 20, 2024Tips for Model Training to Maximize Machine Learning PotentialModel training is a key procedure in machine learning that converts unprocessed data into useful insights. This article explores the fundamentals of model training and provides tips on how to improve your models' accuracy. In machine learning, feedin...ModelTraining
Padmakshi padmakshi.hashnode.dev·Apr 25, 2024Scaling Your Infrastructure: Tips for Growing with ConfidenceHello fellow DevOps enthusiasts !, Today, I want to dive into a topic that’s crucial for any DevOps engineer: scaling infrastructure. Over my two years in this field, I’ve learned a few things about scaling with confidence, and I’m excited to share t...Infrastructure as code
Junaid Maqbooljunaidmaqbool.hashnode.dev·Apr 19, 2024Improving Python Script Efficiency: Scope Optimization TechniquesLet's delve into a neat little trick to supercharge your Python scripts. Imagine a scenario where you have a global variable being accessed within a function, particularly in a tight loop. Take a look at this snippet: global_var = 10 def foo(): ...1 likePython