Bryandevlogbook.com·Aug 27, 2023Create a Basic Framework with Express (Part 3)We need to show error pages to users, ie: 404, 500, 400 Create the views views/layouts/main.hbs <html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equi...DiscussBuild a Node Express App Express
Lucian GhindaProallaboutcoding.ghinda.com·Aug 11, 2023Bugs, errors and causes from an 1975 paperDiscover the timeless relevance of a 1975 paper that sheds light on the causes of bugs and errors in system programs. In this article, we delve into Albert Endres' findings and explore how understanding the problem, effective communication, and domai...Discuss·141 readsShortsBugs and Errors
Chinmay Mhatrechinmayblogs.hashnode.dev·Aug 3, 2023Undefined vs Is not defined : The Javascript wayTo even begin with the topic, let's first understand how javascript allocates memory and executes the code. Everything in javascript happens inside the Global Execution Context. Execution context can be assumed as a box inside which there are two com...Discuss·124 readsJavaScript
Nirmal PandeyforBits Notionbitsnotion.com·Apr 9, 2023Errors and ExceptionsErrors and Exceptions in Python are mechanisms for handling issues that arise during program execution. Errors indicate code issues that prevent successful execution, while exceptions are events that disrupt the normal flow of code. Error types Synta...DiscussPython TutorialsPython
joseph folayanjosephfolayan.hashnode.dev·Jun 24, 2023Error Handling In GoIn Go, error handling differs from other programming languages in that it doesn't rely on shipping explicit error messages. Instead, Go utilizes the concept of returning multiple values, where the first value represents the expected or appropriate va...Discuss·10 likes·353 readsGo Language
Bamkefa Samuelkolabank.hashnode.dev·Apr 26, 2023Guide for fixing code defectsSoftware development is more than writing code. A good part of the development process is discovering and dealing with defects in your code While there may be technical differences among the terms error, bug, fault or defect, the aim of this article ...Discuss·1 like·46 readsBugs and Errors
Elucian MoiseforProgramming Snippetssagecode.hashnode.dev·Apr 23, 2023Rust ErrorsIn Rust, exceptions are defined as "errors" and they are classified into two categories: recoverable and unrecoverable. Recoverable Recoverable errors are situations that can be handled in the code, such as an error in file I/O, where the programmer ...Discuss·32 readsRust LanguageRust
Anjanesh LekshminarayananforJavaScriptjavascript.co.in·Apr 22, 2023Initializing an object property if assigning to it failsIf you initialize a variable like let applications = {} and assign a property of applications with an array, like as in applications['foo'].push(1) it'll throw an error because foo is not yet a property of applications. In Chrome it throws the follow...Discuss·8 likes·65 readsJavaScript
Aidasaidas.hashnode.dev·Mar 20, 2023Shamanic way to deal with errorsOriginal post Disclaimer: due to my limited English vocabulary I used the word “shaman” as a metaphor only. The usage of “shaman” in this article has nothing to do with the true meaning of the word. Unless you have some masochistic tendencies, I bet ...Discussdebugging
Hitesh Kumarhiteshkumar.hashnode.dev·Feb 25, 2023Reference Error vs. TypeError in JSJavaScript is a powerful programming language that allows developers to create dynamic web applications. However, with great power comes great responsibility, and with JavaScript, that means being aware of the different types of errors that can occur...Discuss·47 readsJavaScript