Go Go: check if a binary tree is symmetric September 25, 2023 In this article, we will explore how to check whether a binary tree is symmetric using the Go programming language. Read more
Go Go: parsing a YAML file September 25, 2023 In this article, we will explore how to parse a YAML file using the Go programming language. Read more
Go Go: multiple downloads with goroutines and channels September 25, 2023 In this article, we will explore how to implement multiple file downloads using goroutines and channels in Go. Read more
Go Go: how to parse arbitrary JSON data September 17, 2023 How can we parse an arbitrary JSON structure? In Go you can use an alternative solution to structs. Read more
Go Go: best practices for TDD (Test-Driven Development) September 17, 2023 In this article, we will explore some of the best practices for TDD in Go. Read more
Go Go: how to list the files of a directory September 17, 2023 In this article we will see how to get the list of files in a directory with Go. Read more
Go Go: data types passed by value and data types passed by reference September 17, 2023 In this article, we'll explore the concepts of passing by value and passing by reference in Go and the data types associated with each mode. Read more
Go Should I use Go? A comparison with JavaScript, Python and PHP September 10, 2023 In this article we're going to provide a comparison between Go and three popular web programming languages (JavaScript, Python and PHP) in order to help you with choosing the right solution for your web projects. Read more
Go Go: how to read the information of an SSL certificate September 9, 2023 In this article, we'll explore how you can use the Go programming language to read the main information of an SSL certificate from a remote site. Read more
Go Go: generate secure passwords September 9, 2023 In this article, we will explore how to generate a cryptographically secure password using the Go programming language. Read more