Programming Project

How To Customize React Components with Props — step-by-step Javascript tutorial on Progressive Robot

How To Customize React Components with Props

Props are arguments that you provide to a JSX element in a React application. They look like standard HTML props, but they aren’t predefined and can have many different JavaScript data types, including numbers, strings, functions, arrays, and even other React components. In this tutorial, you’ll create custom components by passing props to your component. After adding props, you will use PropTypes to define the type of data you expect a component to receive.

Read more
How To Make a URL Shortener with Flask and SQLite — step-by-step Databases tutorial on Progressive Robot

How To Make a URL Shortener with Flask and SQLite

In this tutorial, you will build a URL shortener, which is a service that takes any URL and generates a shorter, more readable version like bit.ly. You will use Flask, SQLite, and the Hashids library to build your URL shortener. Your application will allow users to enter a URL and generate a shorter version, in addition to a statistics page where users can view the number of times a URL has been clicked. You’ll use the Bootstrap toolkit to sty

Read more
How To Deploy a Go Web Application Using Nginx on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Deploy a Go Web Application Using Nginx on Ubuntu 18.04

In this tutorial, you will build a “Hello World” web application in Go and deploy it on an Ubuntu 18.04 server using Nginx as a reverse proxy. Go is a general-purpose programming language that is gradually becoming one of the most popular web back-end programming languages. Nginx is one of the most used web servers in the world due to its lightweight resource usage and its reliability under load.

Read more
How To Set Up Object Storage with Django — step-by-step Python tutorial on Progressive Robot

How To Set Up Object Storage with Django

object storage is an object storage solution, ideal for unstructured data such as audio, video, images or large amounts of text. To learn more about Spaces and object storage, you can read through [An Introduction to the cloud provider…

Read more
CHAT