Go

How To Deploy and Manage Your DNS Using DNSControl on Debian 10 — step-by-step Linux tutorial on Progressive Robot

How To Deploy and Manage Your DNS Using DNSControl on Debian 10

DNSControl is an infrastructure-as-code tool that allows you to deploy and manage your DNS zones using standard software development principles, including version control, testing, and automated deployment. In this tutorial, you’ll install and configure DNSControl, create a basic DNS configuration, and begin deploying DNS records to a live provider.

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

How To Host a Website with Caddy on Ubuntu 18.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
Como escrever comentários em Go — step-by-step Programming tutorial on Progressive Robot

Como escrever comentários em Go

Comentários são linhas que existem em programas de computador que os programas de compilação e interpretação ignoram. A inclusão de comentários nos programas torna o código mais legível para humanos, uma vez que fornece informações ou explicações sobre o que cada parte de um…

Read more
Cómo escribir su primer programa en Go — step-by-step Programming tutorial on Progressive Robot

Cómo escribir su primer programa en Go

El programa “Hello, World!” es un clásico y una tradición reconocida en la programación computacional. Se trata de un primer programa sencillo y completo para principiantes y es una buena alternativa para garantizar que su entorno se configure de manera adecuada. Este…

Read more
Understanding Boolean Logic in Go — step-by-step Programming tutorial on Progressive Robot

Understanding Boolean Logic in Go

The Boolean data type can be one of two values, either True or False. We use Booleans in programming to make comparisons and to control the flow of the program. In this tutorial, we’ll go over the basics you’ll need to understand how Booleans work in Go, including Boolean comparison and logical operators, and truth tables.

Read more
Understanding Maps in Go — step-by-step Programming tutorial on Progressive Robot

Understanding Maps in Go

Most modern programming languages have the concept of a dictionary or a hash type. These types are commonly used to store data in pairs with a key that maps to a value. In Go, the map is what most programmers would think of as the dictionary type. It maps keys to values, making key-value pairs that are a useful way to store data in Go. Understand how Go maps work in this article.

Read more
CHAT