Development

Знакомство с GOPATH — step-by-step Programming tutorial on Progressive Robot

Знакомство с GOPATH

Из этой статьи вы узнаете о GOPATH, принципах работы и настройке GOPATH. Это важный шаг для настройки среды разработки Go и понимания процесса поиска, установки и сборки исходных файлов Go. В этой статье мы будем использовать термин GOPATH для описания обсуждаемой концепции…

Read more
Como Fazer um Programa de Calculadora Simples no Python 3 — step-by-step Python tutorial on Progressive Robot

Como Fazer um Programa de Calculadora Simples no Python 3

A linguagem de programação Python é uma grande ferramenta para utilizar ao trabalhar com números e avaliar expressões matemáticas. Esta qualidade pode ser utilizada para fazer programas úteis. Este tutorial apresenta um exercício de aprendizado para ajudá-lo a fazer um…

Read more
How To Use List Methods in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Use List Methods in Python 3

In this tutorial, we’ll go through the built-in methods that you can use to work with the list data structure in Python. We’ll go through adding items to and removing items from lists, extending lists, reversing and sorting lists, and more.

Read more
Установка Go и настройка локальной среды программирования в macOS — step-by-step Programming tutorial on Progressive Robot

Установка Go и настройка локальной среды программирования в macOS

Go — это язык программирования, созданный Google в результате разочарования в других языках. Разработчикам постоянно приходилось выбирать между эффективным языком программирования с очень длительным временем компиляции и удобным языком программирования, не…

Read more
Entendendo os tipos de dados em Go — step-by-step Programming tutorial on Progressive Robot

Entendendo os tipos de dados em Go

Os tipos de dados especificam os tipos de valores que variáveis específicas armazenarão quando estiver escrevendo um programa. O tipo de dados também determina quais operações podem ser realizadas nos dados. Neste artigo, vamos ver os tipos de dados importantes nativos para…

Read more
How To Create a Python Class Generator for VS Code — step-by-step Python tutorial on Progressive Robot

How To Create a Python Class Generator for VS Code

If you hate stubbing out Python classes, here’s how you can create an extension in Visual Studio Code to do it for you. In this article, you’ll see how to create that extension. You’ll prompt for user input, use array map and join functions, use ES6 template literals, and write to the file system.

Read more
CHAT