Krishnat Ramchandra Hogalekrish27.hashnode.dev·Nov 14, 2024Mastering Linux Commands: sudoers, Shell Scripting, and Text Processing with awk, grep, and sedLinux offers powerful tools for system administration, shell scripting, and text processing, making it a versatile operating system for both developers and system administrators. This blog will guide you through advanced Linux commands and scripting ...DiscussLinux
Lim Woojaejaylog.hashnode.dev·Nov 13, 2024[React.js] Error: GH013: Repository rule violations foundAbout Error This error occurred when I git push -u origin main to push my commits. The reason was because I wrote personal access token in the index.html file. I copied and pasted on there because it’s something I can never remember, but I will need...DiscussReact.jsReact
Sam KeenProsamkeen.dev·Nov 12, 2024Taming Error Flow with Result Objects in PythonError handling is a critical aspect of software development, yet it's often overlooked or implemented in ways that can lead to confusing and hard-to-maintain code. This article explores the limitations of traditional exception-based error handling an...Discuss·96 readsPython
gayatri kumargeekee.hashnode.dev·Nov 12, 2024Error Handling: Keeping Your Code Safe!Imagine you’re a lifeguard, responsible for watching over swimmers in a pool. If someone gets into trouble, it’s your job to dive in and save them before things get worse. In programming, errors are like troubled swimmers. If left unchecked, they can...Discuss·10 likesWeb Developmenterror handling
Tharusha Nirmal Amarasooriyablogs.tharuxpert.com·Nov 11, 2024Resolving [Next.js] Error: Too Many Re-RendersIn today’s article, we will delve deeply into the common issue encountered in Next.js applications known as 'too many re-renders.' This problem often arises when a component is rendered repeatedly in a short period, which can lead to performance issu...DiscussNext.js
Yash Raj Srivastavyashsrivastav.hashnode.dev·Nov 6, 2024The Tale of Async, Timeouts, and Why I Almost Gave Up on Java 🤦♂️Introduction: The Simple Dream of Async 🛌💭 Ah, the sweet promise of @Async. Just slap this annotation on your method, and boom! Now you’ve got tasks running in the background. The main thread is free, happily managing other tasks while the backgrou...DiscussSpringboot
Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Nov 2, 2024Day 14: Mastering Error Handling in JavaScriptWelcome to Day 14 of our #30DaysOfJavaScript journey! Today, we’re tackling a crucial topic for any developer: error handling. This guide will walk you through the essentials of handling, identifying, and troubleshooting errors in JavaScript, so your...Discuss·10 likesJavaScript
Jadesola Adeagbojadesolaadeagbo.hashnode.dev·Nov 2, 2024API Troubleshooting 101: Commonly used Status codes and their meaningsTroubleshooting can be one of the most frustrating experiences for a developer, especially when error messages are difficult to interpret. Status codes are important to know because they can help in troubleshooting when interacting with web applicati...Discuss·2 likesAPIs
Stefan Skorpenblog.skorp.io·Oct 30, 2024How to capture errors and exceptions with SentryKeeping track of errors in prod is essential to have a healthy app. Use Sentry to gather all your error reports in one place. It’s really easy, just configure sentry in your app and capture the exceptions like this import { captureException } from "@...Discusserror handling
Rickclean-code.dev·Oct 28, 2024The Option Pattern: A Functional Programming Solution in C#Introduction Throughout my extensive career developing software with Microsoft technologies, I have faced various challenges. However, the most complex one has consistently been modernizing legacy systems with problematic codebases. Often, these lega...Discuss·186 readsFunctional C#C#