Learning Go Day 1: Notes

The CTO of my new company recommended the Udemy course “Go: The Complete Developer’s Guide (Golang)”. I started today and here are some notes I made. Hello World in Go We start by writing a Hello World and studying all the elements. package main import "fmt" func main() { fmt.Println("Hello World!") } How do we run code? go run main.go runs the program go build main.go compiles it to an executable ...

February 28, 2023 Â· Mischa van den Burg

I started to learn Go!

For month’s I considered to learn Go, and today I finally started. I doubted for a long time, because I figured it would be better to dive deeper into Python. However, when I reflected on it, I realized I’m able to do the things I want to do in Python. I can create scripts to manipulate data, and I can string different tools and libraries together if I need to. So how deep do I actually need to go as a DevOps Engineer? ...

February 27, 2023 Â· Mischa van den Burg