/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

ricardo.cc
| | andreabergia.com
4.4 parsecs away

Travel
| | Error handling is a fundamental aspect of programming. Unless you are writing hello world, you will need to handle errors in your code. In this post, I will discuss a bit the most common approaches used by various programming languages. Return error codes This is one of the most ancient strategies - if a function can fail, it can simply return an error code - often a negative number, or null.
| | ariya.io
4.4 parsecs away

Travel
| | A common approach to analyze JavaScript source statically is to parse the source into an abstract syntax tree (AST) and then to traverse the AST. An alternative approach that might work in a few cases is to inspect each syntax node as it is constructed.
| | www.bennadel.com
5.0 parsecs away

Travel
| | Ben Nadel uses a cryptographically secure pseudo-random number generator (CSPRNG) in Node.js to randomly select the winners of the 2018 RegEx Day celebrations.
| | qsantos.fr
17.5 parsecs away

Travel
| [AI summary] The article discusses the benefits of using Rust to create small, efficient Docker containers by statically compiling binaries with musl, reducing dependencies and image size compared to Python-based Docker images.