Development

How To Build a Customer List Management App with React and TypeScript — step-by-step Javascript tutorial on Progressive Robot

How To Build a Customer List Management App with React and TypeScript

TypeScript has brought a lot of improvement into how JavaScript developers structure and write code for apps, especially web applications. React is an open-source JavaScript library, which developers use to create high-end user interfaces for scalable web applications. In this tutorial, you will create a customer list management application with a separate REST API backend and a frontend built with React and TypeScript.

Read more
How To Build a Weather App in Django — step-by-step Python tutorial on Progressive Robot

How To Build a Weather App in Django

In this article, you will build a simple Django app that displays the current weather for various cities. To get the current weather data, you will use the Open Weather Map API. You will work with a database and create a form, so the concepts used here are applicable to more complicated projects.

Read more
How To Call Web APIs with the useEffect Hook in React — step-by-step Javascript tutorial on Progressive Robot

How To Call Web APIs with the useEffect Hook in React

In this tutorial, you’ll use the useEffect and useState React Hooks to fetch and display information in a sample application, using JSON server as a local API for testing purposes. You’ll load information when a component first mounts and save customer inputs with an API. You’ll also refresh data when a user makes a change and learn how to ignore API requests when a component unmounts.

Read more
How To Contribute to Open Source: Getting Started with Git — step-by-step DevOps tutorial on Progressive Robot

How To Contribute to Open Source: Getting Started with Git

Open-source projects that are hosted in public repositories benefit from contributions made by the broader developer community, and are typically managed through Git. This tutorial will discuss the benefits of contributing to open-source projects, and go over installing and setting up Git so that you can contribute to software projects.

Read more
How To Convert Strings to Integers in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Convert Strings to Integers in Python 3

Strings can be converted to integers by using the int() method. If your string does not have decimal places, you’ll most likely want to convert it to an integer by using the int() method. In this quick tutorial, you’ll learn how to convert a string to an integer.

Read more
How To Create Django Models — step-by-step Linux tutorial on Progressive Robot

How To Create Django Models

In this tutorial, we will create the Django models that define the fields and behaviors of the Blog application data that we will be storing. These models map the data from your Django application to the database. It’s what Django uses to generate the database tables via their object relational mapping (ORM) API called “models.”

Read more
CHAT