Go

Go

Learn how to develop innovative solutions with the language created by Google.
Go: how to make HTTP requests
Go

Go: how to make HTTP requests

In this article, we'll explore how to make a simple HTTP request using Go's standard "net/http" package. We'll make a GET request to a web server and read the response.
Read more
Go: parsing an HTML document
Go

Go: parsing an HTML document

In Go, the programming language created by Google, there are several libraries that allow you to parse an HTML document easily and efficiently.
Read more
Go: parsing a CSV file
Go

Go: parsing a CSV file

When working with CSV data in Go, parsing the file is a common operation to extract the structured information so that it can be manipulated or processed further.
Read more
Go: parsing XML
Go

Go: parsing XML

Go, the open source programming language developed by Google, offers a wide range of libraries for parsing XML files efficiently and intuitively.
Read more