Go

How to Configure a Static IP Address with Netplan on Ubuntu 24.04 — step-by-step Linux tutorial on Progressive Robot

How to Install Go 1.22 on Ubuntu 24.04

Go 1.22 introduces enhanced range-over-integer, improved standard library packages, and performance improvements. This guide installs the official Go 1.22 toolchain on Ubuntu 24.04 LTS. Tested and valid on: Ubuntu 24.04 LTS Prerequisites Ubuntu 24.04 LTS server A user with sudo privileges Step 1 – Download Go 1.22 Download the official Go tarball from golang.org: cd […]

Read more
How to Set Up a DNS Server with Bind9 on Ubuntu 26.04 — step-by-step Linux tutorial on Progressive Robot

How to Install Go 1.24 on Ubuntu 26.04

Go (Golang) 1.24 is a statically typed, compiled language known for its performance, simplicity, and excellent concurrency support. It is widely used for cloud-native tools, microservices, and CLI applications. This guide installs Go 1.24 on Ubuntu 26.04 LTS. Tested and valid on: Ubuntu 26.04 LTS Prerequisites Ubuntu 26.04 LTS A user with sudo privileges Internet […]

Read more
Обработка паник в Go — step-by-step Programming tutorial on Progressive Robot

Обработка паник в Go

Ошибки, возникающие в программе, относятся к двум широким категориям: ожидаемые программистом ошибки и ошибки, возникновения которых не ожидалось. Интерфейс error, который мы изучили в двух предыдущих статьях, посвященных [обработке…

Read more
Cómo crear bucles for en Go — step-by-step Programming tutorial on Progressive Robot

Cómo crear bucles for en Go

En el ámbito de la programación informática, un bucle es una estructura de código que forma un ciclo para ejecutar parte de un código de forma repetida, a menudo hasta que se cumple una condición. Usar bucles en el terreno de la programación informática le permite…

Read more
How To Use Dates and Times in Go — step-by-step Programming tutorial on Progressive Robot

How To Use Dates and Times in Go

Date and time values show up everywhere in modern software. Learn to use Go’s time package to get the current local time of your computer and customize the format. You can also translate the date and time values between two time zones, as well as add or subtract time values to determine the interval between two times.

Read more
CHAT