Venkiforerrsoleerrsole.hashnode.dev·12 hours agoBeyond LoggingLogging is the most popular approach for troubleshooting errors. However, even with over a decade of experience in the software industry, I have always encountered challenges when relying solely on logs to fix errors in a production environment. In t...DiscussNode.js
Shakishaki.hashnode.dev·Sep 25, 2023Understanding Type, Reference, and Undefined Errors in JavaScriptJavaScript is a versatile and widely-used programming language, known for its flexibility and ability to run in web browsers. However, like any programming language, it has its own set of quirks and pitfalls. One common source of frustration for deve...Discuss·1 likeerror handling
Sarthak Jainsarthakjdev.hashnode.dev·Sep 21, 2023Promises in JavaScript: A Guide to Asynchronous ProgrammingIntroduction Welcome to the exciting world of JavaScript promises! As a seasoned software developer, I understand the significance of mastering asynchronous programming to build robust and responsive applications. In this comprehensive guide, we will...Discuss·1 likepromises
Cindy Kandiecindykandie.hashnode.dev·Sep 19, 2023Creating a Custom 404 Page with Next.js: Simpler than you think. Fun too!Life Update Hey there! Glad you stumbled on this. First of all, I want to acknowledge that while I may have ventured into the world of React Native development for mobile, what I hold dear is always going to be React for the web. That said it's only ...Discuss·2 likes·27 readsReact
Madu Emeliemaduemelie.hashnode.dev·Sep 19, 2023Understanding Callback Functions in JavaScript: A Comprehensive GuideThe Power of Callback Functions in JavaScript When it comes to building interactive and responsive web applications, JavaScript is the go-to language. At the heart of many JavaScript applications lie callback functions. In this article, we'll delve i...Discuss·1 likecallback
Adebayo Ahmadmachalla.hashnode.dev·Sep 17, 2023Write a program for a school grading system in CCreating a school grading system in C involves multiple components, including defining classes, storing student data, calculating grades, and displaying results. #include <stdio.h> int main() { /** 80-100 A 70-79 B 65-69 C 60-64 D 50-59 E Below 40 F ...Discussschool grading system
Aseerelectroblog.hashnode.dev·Sep 15, 2023NPM Error Code 4058 (ENOENT)The Problem This is a rather common error that devs see from time to time when they try to install or update packages using npm. It can also appear when using npx, something like npx create-react-app. There could be several reasons for this error, an...Discussnpm
Jones Zachariah Noel NforThe Serverless Terminalblog.theserverlessterminal.com·Sep 13, 2023The Jitter Strategy for Step Functions Error Retries on the New Workflow StudioAWS Step Function just announced a new enhanced error handling and retry mechanism in State Machine executions that enables more fine-grain control of error retry rules. And also uses the enchanced Workflow Studio authoring experience to build the wo...Discuss·110 readsAWS Step FunctionsAWS
Lucas Akira Ayabelucas-ayabe.hashnode.dev·Sep 11, 2023JS - 4 Formas de se lidar com errosUma coisa muito comum quando estamos programando são os erros, eventualmente algum erro irá acontecer, e o JavaScript nos oferece uma gama de opções para lidarmos com esse tipo de situação, por isso hoje iremos explorar 4 formas diferentes de se lida...DiscussJavaScript
Elucian MoiseforProgramming Snippetssagecode.hashnode.dev·Sep 8, 2023Swift ErrorsHere's an explanation of syntax errors, runtime errors and error handling in Swift: Syntax Errors: These are errors that occur when the code does not follow the rules of the programming language. The code will not compile due to syntax errors. Exa...DiscussSwift FundamentalsSwift