Development

Comprendre les classes en JavaScript — step-by-step Javascript tutorial on Progressive Robot

Comprendre les classes en JavaScript

JavaScript est un langage basé sur des prototypes, et chaque objet en JavaScript possède une propriété interne cachée appelée [[Prototype]] qui peut être utilisée pour étendre les propriétés et les méthodes des objets. Vous pouvez en savoir plus sur les prototypes dans notre…

Read more
How To Implement Continuous Testing of Ansible Roles Using Molecule and Travis CI on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Implement Continuous Testing of Ansible Roles Using Molecule and Travis CI on Ubuntu 18.04

Molecule is a tool for performing automated testing of Ansible roles. Travis CI is a continuous integration tool that allows for tests to run continuously to ensure contributions to your code do not introduce breaking changes. In this tutorial, you will configure a pre-made base role, initialize a Molecule scenario to test your role, and set up Travis CI to continuously run your tests against changes to your role.

Read more
Написание пакетов в Go — step-by-step Programming tutorial on Progressive Robot

Написание пакетов в Go

Пакет состоит из файлов Go, которые находятся в том же каталоге и имеют одинаковое выражение пакета в начале. Вы можете добавить дополнительные функции из пакетов, чтобы усложнить программы. Некоторые пакеты доступны в стандартной библиотеке Go и устанавливаются вместе с Go. Другие можно…

Read more
How To Port Python 2 Code to Python 3 — step-by-step Python tutorial on Progressive Robot

How To Port Python 2 Code to Python 3

This tutorial will guide you through best practices and considerations to make when migrating code from Python 2 to Python 3, and whether you should maintain code that is compatible with both versions.

Read more
CHAT