Progressive Robot

Linux, Cloud & DevOps Tutorials

Practical, hands-on guides covering Linux, cloud infrastructure, Docker, Kubernetes, Python, cybersecurity, AI, and more — written for engineers at every level.

published tutorials
24,529
topic categories
21
languages available
8
Showing 1–12 of 58 tutorials
ProgrammingMay 12, 20267 min read

Defining Structs in Go

Structs allow storing data from several variables in a single entity with one name. They allow Go developers to describe...

ProgrammingMay 12, 202612 min read

Handling Errors in Go

Robust code needs to react correctly to unexpected circumstances like bad user input, faulty network connections, and failing disks. Error...

ProgrammingMay 12, 20261 min read

What is Go?

Go is a compiled, statically typed programming language similar in syntax to C. Also referred to as “Golang”, Go is...

ProgrammingMay 12, 202613 min read

Handling Panics in Go

Panics are unforeseeable errors that will spontaneously terminate and exit a running Go program. Common mistakes are often responsible for...

CHAT