Programming Project

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
How To Add Unit Testing to Your Django Project — step-by-step Python tutorial on Progressive Robot

How To Add Unit Testing to Your Django Project

Testing a website can be a complex task to undertake because it is made up of several layers of logic like handling HTTP requests, form validation, and rendering templates. However Django provides a set of tools that makes testing your web application seamless. In this tutorial, you will set up a test suite in your Django project and write unit tests for the models and views in your application. You will run these tests, analyze their results, and learn how to find the causes of failing tests.

Read more
How To Create Custom Components in React — step-by-step Javascript tutorial on Progressive Robot

How To Create Custom Components in React

Custom components are independent pieces of functionality that you can reuse in your code, and are the building blocks of all applications built on the React framework. Often, they can be simple JavaScript functions and classes, but you use them as if they were customized HTML elements. Buttons, menus, and any other front-end page content can all be created as components. In this tutorial, you’ll build your own custom component, and use this distinction to organize your project’s file structure.

Read more
CHAT