Rez Moss
Digital Reflections: Exploring Tech, Innovation & Ideas
Home
Book
Blog
Tools
About
error-handling
Floating Point Parsing - ParseFloat and ParseComplex in Go 3/7
-
Sep 2025
When working with Go applications, you’ll frequently need to convert string representations of numbers into the...
Parsing Booleans and Integers in Go: ParseBool, ParseInt, and ParseUint 2/7
-
Aug 2025
String parsing is a fundamental operation in Go programming. Whether you’re reading configuration files, proces...
Basic Conversions - Atoi and Itoa 1/7
-
Aug 2025
Converting between strings and integers is a fundamental operation in Go programming. Whether you’re parsing us...
Error Handling in Go: Best Practices and Patterns
-
Sep 2019
Error handling is a crucial aspect of writing robust and reliable Go programs. Unlike many other languages, Go takes a ...