Development

Entendendo matrizes e fatias em Go — step-by-step Programming tutorial on Progressive Robot

Entendendo matrizes e fatias em Go

Na linguagem Go, matrizes e fatias são estruturas de dados que consistem em uma sequência ordenada de elementos. Essas coleções de dados são ótimas para serem usadas quando você quiser trabalhar com muitos valores relacionados….

Read more
How To Write End-to-End Tests in Node.js Using Puppeteer and Jest — step-by-step Javascript tutorial on Progressive Robot

How To Write End-to-End Tests in Node.js Using Puppeteer and Jest

End-to-end testing (e2e for short) is a process in which the entire lifecycle of an application is tested from a user’s perspective in a production-like scenario. In this tutorial, you will write an e2e test in Node.js that validates that the account creation and login features of a sample web page, using Puppeteer to crawl the site and Jest to make unit tests.

Read more
How To Write Comments in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Write Comments in Python 3

Comments are lines in computer programs that are ignored by compilers and interpreters. This tutorial will go over how to use comments in your Python program, making your projects more readable for humans and thus more open to collaboration.

Read more
How To Run Multiple Functions Concurrently in Go — step-by-step Programming tutorial on Progressive Robot

How To Run Multiple Functions Concurrently in Go

To run programs faster, a programmer needs to design their programs to run at the same time. Two features in Go, goroutines and channels, make concurrency easier when used together. Goroutines solve the difficulty of setting up and running concurrent code in a program, and channels solve the difficulty of safely communicating between the code running concurrently.

Read more
CHAT