Ayan Mehtafromhimalayas.hashnode.dev·Nov 16, 2024Mastering Async JavaScript: From Callbacks to Promises and Beyond 🚀TOPICS Callbacks Promises Async/Await .then/.catch finally Why do we need promises in Javascript : let's understand this first by some basic topics Callbacks: to understand promises we first need to understand callbacks. callbacks are function...DiscussAsync Programming Tips
DensTechDenwww.denstechden.com·Nov 14, 2024Node-RED Tips and Tricks for Power UsersNode-RED is a powerful tool for wiring together hardware devices, APIs, and online services in new and interesting ways. While it's user-friendly for beginners, power users can leverage its full potential with some advanced tips and tricks. Here are ...DiscussNode-REDNode-Red
Nitesh Singhspfxdev.hashnode.dev·Nov 9, 2024Unlocking React's Potential: Why Data Mutability Might Be Breaking Your AppLast week, while working on some legacy React code, I stumbled upon a tricky bug: one component just wouldn’t re-render as expected. After a deep dive, I discovered the culprit—data mutation. The component wasn’t re-rendering because its state was be...Discusstips
Jasper brojasperbro.hashnode.dev·Oct 30, 2024Power Up Your Chrome Browser with These Essential Google Chrome FlagsGoogle Chrome is one of the most popular web browsers, known for its speed, simplicity, and a vast range of extensions. However, many users are unaware of the hidden features that can significantly enhance their browsing experience. These features, k...DiscussGoogle Chrome Flags
Fahimul Islamfif.hashnode.dev·Oct 18, 2024গিটে একাধিক রিমোট ম্যানেজ করার উপায়গিট একটি অত্যন্ত জনপ্রিয় ভার্সন কন্ট্রোল সিস্টেম। এটি প্রোগ্রামারদের কোড ম্যানেজ করার জন্য অতি গুরুত্বপূর্ন একটি টুল। সাধারণত, আমরা একটি প্রোজেক্টে একটি রিমোট রিপোজিটরি ব্যবহার করি। কিন্তু অনেক সময় আমাদের একই প্রোজেক্টে একাধিক রিমোট রিপোজিটরি মেইনটে...DiscussGitHub
Rishi BakshiforRishi Bakshi Blogrishibakshi.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...DiscussYou Don't Know Next.jsNext.js
Rishi BakshiforRishi Bakshi Blogrishibakshi.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...Discuss·10 likesYou Don't Know Next.jsMutations
Rishi BakshiforRishi Bakshi Blogrishibakshi.hashnode.dev·Oct 8, 2024How to Prevent the Waterfall Effect in Data FetchingIn this article, we’ll dive into a common issue developers face when fetching data in Next.js or any asynchronous JavaScript environment: the waterfall effect. This happens when data fetching occurs sequentially, leading to slower response times. It’...Discuss·10 likesYou Don't Know Next.jsdata fetching
Howin Cloudblog.howincloud.com·Oct 7, 2024Integrating Artificial Intelligence into Your Mobile AppThe rapid evolution of technology has made artificial intelligence (AI) an integral part of modern mobile applications. By incorporating AI, developers can enhance user experiences, streamline operations, and unlock new functionalities. Here’s a brie...DiscussAI
Rishi BakshiforRishi Bakshi Blogrishibakshi.hashnode.dev·Sep 22, 2024Avoiding Common Mistakes with Browser APIs in Next.jsOne common mistake that beginners make when working with Next.js is incorrectly using browser APIs like window.localStorage in client components. Understanding how Next.js handles server-side rendering (SSR) and client-side rendering (CSR) is crucial...Discuss·11 likesYou Don't Know Next.jsBeginner Developers