/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

codewithstyle.info
| | blog.darklang.com
5.9 parsecs away

Travel
| | And their influence on Dark After two decades of coding professionally in a dozen languages, I've come to a conclusion about static and dynamic types: * Static types help you ensure that your changes work, especially for changes that span large parts of the program. This leads to long-term productivity
| | andreabergia.com
1.6 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.
| | ruudvanasseldonk.com
3.8 parsecs away

Travel
| | Monadic error handling is an alternative to exception-based systems that can prevent many programming errors at compile time.
| | corrode.dev
27.1 parsecs away

Travel
| Interest in Rust has surged in recent years, with tech leaders such as Microsoft, Google, and Amazon coming forward to share their experiences of leveraging Rust for critical systems. Much of the dialogue about Rust, however, is still driven by those...