Programming Project

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
How To Use Web APIs in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Use Web APIs in Python 3

An API, or Application Program Interface, makes it easy for developers to integrate one app with another. They expose some of a program’s inner workings in a limited way. You can use APIs to get information from other programs, or to automate things you normally do in your…

Read more
An Introduction to jQuery — step-by-step Javascript tutorial on Progressive Robot

An Introduction to jQuery

This guide will take you through the JavaScript jQuery library by covering how to install jQuery in a web project; the definitions of important web development concepts such as API, DOM, and CDN; common jQuery selectors, events, and effects; and examples to test the concepts learned throughout the article.

Read more
CHAT