Development

Cómo convertir tipos de datos en Python 3 — step-by-step Python tutorial on Progressive Robot

Cómo convertir tipos de datos en Python 3

Este tutorial de Python 3 lo guiará a través de la conversión de tipos de datos, incluyendo números, cadenas, tuplas y listas, y también le proporcionará ejemplos para que se familiarice con los diferentes casos de uso.

Read more
How To Create a Twitter App with Python — step-by-step Python tutorial on Progressive Robot

How To Create a Twitter App with Python

Having access to the Twitter API can help you manage your social media accounts, and allow you to mine social media for data. This can be useful for brand promotion if you represent a business or an organization, and it can be enjoyable and entertaining for individual users…

Read more
Como criar elementos React com o JSX — step-by-step Javascript tutorial on Progressive Robot

Como criar elementos React com o JSX

O autor selecionou a Creative Commons para receber uma doação como parte do programa Write for DOnations. Neste tutorial, você aprenderá como descrever elementos com o JSX. O JSX é uma abstração que permite que…

Read more
How To Define Functions in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Define Functions in Python 3

A function is a block of instructions that, once defined, both performs an action once the function is called and makes that action available for later use. Functions make code more modular, allowing you to use the same code over and over again. In this tutorial, we’ll go over how to define your own functions to use in your coding projects.

Read more
How To Ensure Code Quality with SonarQube on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Ensure Code Quality with SonarQube on Ubuntu 18.04

Code quality is an approximation of how useful and maintainable a specific piece of code is. Quality code will make the task of maintaining and expanding your application easier. In this guide, you will deploy a SonarQube server and scanner to analyze your code and create code quality reports. Then you’ll perform a test on your machine by scanning it with the SonarQube tool.

Read more
How To Handle Asynchronous Tasks with Node.js and BullMQ — step-by-step Databases tutorial on Progressive Robot

How To Handle Asynchronous Tasks with Node.js and BullMQ

To avoid slowing down the request/response circle, you can use bullmq, a distributed task queue that allows you to offload time-consuming tasks from your Node.js app. To keep track of jobs, bullmq uses Redis to store a short description of each job in a queue. In this article, you will use bullmq to offload a time-consuming task into the background, which will enable an application to respond quickly to users.

Read more
CHAT