Explore >> Select a destination


You are here

www.bennadel.com
| | ricardo.cc
5.0 parsecs away

Travel
| | Stories about code, design, coffee and other good stuff.
| | andreabergia.com
5.5 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.
| | www.valentinog.com
5.8 parsecs away

Travel
| | What's special about generator functions and asynchronous generators in JavaScript? Let's find out!
| | krakendev.io
36.1 parsecs away

Travel
| Since the advent of Swift, our behavior towards nil values have greatly changed. Swift brings type safety, and also works hard to prevent sending messages to nil by introducing Optionals. Implicitlyunwrapped optionals are pretty new and behave just like optionals. However, they can be dangerous to your code if used incorrectly. So here, let me help with that!