Explore >> Select a destination


You are here

patshaughnessy.net
| | andreabergia.com
3.5 parsecs away

Travel
| | This post is part of the Languages Opinion series. Languages opinion - part one - JVM Languages opinion - part two - Rust ??thispost Languages opinion - part three - Javascript and Typescript Welcome back to my mini-series about programming languages. In this post, we will talk about one of the most interesting programming languages that I have seen in a long while: Rust.
| | akashgoswami.dev
3.3 parsecs away

Travel
| | A quick intro to the Go programming language, its advantages, what its main uses are, how it's used in companies like Monzo and how you can get started with writing your own Go programs.
| | alexop.dev
5.0 parsecs away

Travel
| | Learn to write robust, predictable TypeScript code using Rust's Result pattern. This post demonstrates practical examples and introduces the ts-results library, implementing Rust's powerful error management approach in TypeScript.
| | andreabergia.com
24.8 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.