Go

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
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 Install Go on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Install Go on Ubuntu 18.04

Go is a modern programming language developed at Google. It is increasingly popular for many applications and at many companies, and offers a robust set of libraries. This tutorial will walk you through downloading and installing the latest version…

Read more
Булева логика в Go — step-by-step Programming tutorial on Progressive Robot

Булева логика в Go

Логический тип данных (bool) может иметь одно из двух значений, true (истина) или false (ложь). Булевы операторы используются в программировании для сравнения и для контроля потока процессов программы. Булевы операторы используются для представления значений истины, связанных с…

Read more
How To Host a Website with Caddy on Ubuntu 22.04 — step-by-step Linux tutorial on Progressive Robot

How To Host a Website with Caddy on Ubuntu 22.04

Caddy is a web server designed around simplicity and security that comes with a number of features that are useful for hosting websites. In this tutorial, you’ll build Caddy from source and use it to host a website secured with HTTPS.

Read more
Información sobre tipos de datos en Go — step-by-step Programming tutorial on Progressive Robot

Información sobre tipos de datos en Go

En los tipos de datos se especifica el tipo de valores que se almacenarán en determinadas variables cuando escriba un programa. En ellos también se determinan las operaciones que se pueden realizar en los datos. En este artículo, repasaremos los tipos de datos importantes…

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

How To Use Contexts in Go

When developing a large application, it can be helpful for a function to know more about the environment it’s being executed in aside from the information needed for a function to work on its own. To help with this, Go includes a context package in its standard library. Learn to create a Go program that uses a context within a function. You’ll also store additional data in the context and retrieve it from another function. Finally, you’ll explore methods for ending a context.

Read more
Хостинг веб-сайта с Caddy в Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

Хостинг веб-сайта с Caddy в Ubuntu 18.04

Автор выбрал фонд Free and Open Source Fund для получения пожертвования в рамках программы Write for DOnations. Caddy — это простой и безопасный веб-сервер, имеющий ряд…

Read more
CHAT