Explore >> Select a destination


You are here

dmitripavlutin.com
| | andreabergia.com
3.7 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.
| | rachelcarmena.github.io
3.9 parsecs away

Travel
| | Some characteristics of functional programming
| | thecodebarbarian.com
3.4 parsecs away

Travel
| |
| | mrcat.au
35.5 parsecs away

Travel
| I've started learning Zig, a new programming language in the same problem space as C, and it has some features I really like. While it's not memory-safe in the Rust way, it has a lot of compile time and runtime checks to prevent common footguns. It has packed structs and variable-width integers to allow for easy parsing of bitpacked binary formats. Its comptime metaprogramming capabilities are spectacular. And it even interoperates seamlessly with C!