Development

Создание элементов React с помощью JSX — step-by-step Javascript tutorial on Progressive Robot

Создание элементов React с помощью JSX

Автор выбрал Creative Commons для получения пожертвования в рамках программы Write for DOnations. В этом обучающем руководстве вы узнаете, как описать элементы с помощью JSX. JSX — это абстракция, которая позволяет…

Read more
Использование пакета Flag в Go — step-by-step Programming tutorial on Progressive Robot

Использование пакета Flag в Go

Утилиты командной строки редко можно использовать в готовом виде без дополнительной настройки. Хорошие значения по умолчанию очень важны, однако полезные утилиты должны принимать конфигурацию от пользователей. В большинстве платформ утилиты командной строки принимают флаги для…

Read more
How To Use Telepresence on Kubernetes for Rapid Development on MacOS — step-by-step Kubernetes tutorial on Progressive Robot

How To Use Telepresence on Kubernetes for Rapid Development on MacOS

Telepresence is a Cloud-Native Computing Foundation project for fast, efficient development on Kubernetes. Telepresence creates a bi-directional network connection between your Kubernetes cluster and your local workstation, which allows you to run your service locally, while you run the rest of your application in the cloud. In this tutorial, you’ll install and configure Telepresence to work with a Kubernetes cluster, and redirect traffic to that cluster to your local machine.

Read more
How To Use Built-In and Custom Directives in Vue.js — step-by-step Javascript tutorial on Progressive Robot

How To Use Built-In and Custom Directives in Vue.js

As a front-end framework, Vue.js borrows the prop-driven approach of React, but also uses directives, which were made popular by Angular. In this context, directives are reusable chunks of code or logic that allow you to manipulate your HTML in many different ways, such as conditionally rendering an element, connecting events to an element, or creating dynamic attributes that depend on your Vue code. This tutorial will cover v-if, v-show, v-on, v-bind, v-model, v-html, and custom directives.

Read more
How To Build a Styled Landing Page with Tailwind CSS — step-by-step DevOps tutorial on Progressive Robot

How To Build a Styled Landing Page with Tailwind CSS

Tailwind is a utility-first CSS framework for rapidly building custom user interfaces. This means that Tailwind provides highly composable, low-level utility classes that make it easy to build complex user interfaces without encouraging any two sites to look the same. In this tutorial, we’ll be building a landing page using Tailwind CSS to showcase a health monitoring smart wristwatch (HMSW) product to our customers.

Read more
如何在Python 3中使用注释 — step-by-step Python tutorial on Progressive Robot

如何在Python 3中使用注释

“注释”是存在于电脑代码中的”被编译器和解释器忽略”的那些文本行。在程序中使用注释将使得代码更易读(方便人去理解代码),因为注释能提供有用的信息去解释代码的每一部分是做什么的。 取决于在程序中的不同目的,你的注释可以是给自己的标记和提醒,或者是帮助其它程序员去理解你的代码。 总的来说,当你写程序或修改程序的过程中,当时写下的注释最为有用。而之后补上的注释长远看来将会没那么有用,因为一段时间之后,你会很容易忘记之前的想法。

Read more
Выполнение математических операций в Go с помощью операторов — step-by-step Programming tutorial on Progressive Robot

Выполнение математических операций в Go с помощью операторов

Числа используются повсюду в программировании. Они используются для представления таких вещей, как размеры экрана, географическое местоположение, денежные средства и баллы, количество времени, передаваемого в видео, расположение игровых аватаров, отображение цветов через…

Read more
Como escrever seu primeiro programa em Go — step-by-step Programming tutorial on Progressive Robot

Como escrever seu primeiro programa em Go

O programa “Hello, World!” é um clássico tradicional, consagrado pelo tempo em programação de computadores. É um programa inicial, simples e completo para iniciantes e é uma boa maneira de garantir que seu ambiente esteja devidamente configurado. Este tutorial explicará sobre…

Read more
CHAT