Development

Создание нейронной сети для перевода языка жестов на английский — step-by-step AI And Machine Learning tutorial on Progressive Robot

Создание нейронной сети для перевода языка жестов на английский

Автор выбрал Code Org для получения пожертвования в рамках программы Write for DOnations. Компьютерное зрение — это подсфера компьютерной науки, задача которой заключается в получении понимания…

Read more
Using the React-Async Library for Declarative Data Fetching — step-by-step Javascript tutorial on Progressive Robot

Using the React-Async Library for Declarative Data Fetching

The combination of React and `async-await` leads to a mixed pattern in which we have both imperative code (for data fetching) and declarative code (for UI composition). [React-async](https://github.com/ghengeveld/react-async) provides a declarative API to perform any REST API calls using a single React component, allowing declarative programming to be used throughout the application. In this article, we will explain how the React-Async library helps us fetch data.

Read more
How To Build an Elastic Range Input with SVG and anime.js — step-by-step DevOps tutorial on Progressive Robot

How To Build an Elastic Range Input with SVG and anime.js

In HTML5, many new types of `input` attributes were introduced for the `form` element, such as `color`, `date`, `range`, and many more. Although functionally these new types of `input` works, they often do not meet the aesthetic needs of web applications. To give these `input` types a modern design, one can use such front, this tutorial will simulate the behavior of a `range` `input` with a component using SVG to draw the `path` and anime.js to perform the animations.

Read more
How To Handle CPU-Bound Tasks with Web Workers — step-by-step Javascript tutorial on Progressive Robot

How To Handle CPU-Bound Tasks with Web Workers

In this tutorial, you will create a CPU-bound task that blocks the main thread in the browser and observe how it affects the web app. You will then unsuccessfully attempt to make a CPU-bound task non-blocking using promises. Finally, you will create a Web Worker to offload a CPU-bound task to another thread to prevent it from blocking the main thread.

Read more
Установка TensorFlow в Ubuntu 20.04 — step-by-step AI And Machine Learning tutorial on Progressive Robot

Установка TensorFlow в Ubuntu 20.04

Программная библиотека машинного обучения TensorFlow с открытым исходным кодом используется для обучения нейросетей. Каждый узел графика отражает операции, выполняемые нейросетями в многомерных массивах, в форме [графиков потока данных с сохранением…

Read more
Установка Django и настройка среды разработки в Ubuntu 20.04 — step-by-step Linux tutorial on Progressive Robot

Установка Django и настройка среды разработки в Ubuntu 20.04

Django — бесплатная веб-структура с открытым исходным кодом, написанная на Python. Она построена на принципах масштабируемости, многократного использования элементов и быстрой разработки. Также она отличается согласованностью и слабой связанностью компонентов, за счет чего…

Read more
CHAT