Applications

How To Build Custom Pagination with React — step-by-step Javascript tutorial on Progressive Robot

How To Build Custom Pagination with React

A method for handling large datasets on the view is by using the infinite scrolling technique – where more data is loaded in chunks as the user continues scrolling very close to the end of the page. This is the technique used in displaying search results in Google Images. In this tutorial, we will see how to build a custom pagination component with React for paginating large datasets. We will build a paginated view of the countries in the world.

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 Install and Configure GitLab on Ubuntu — step-by-step Linux tutorial on Progressive Robot

How To Install and Configure GitLab on Ubuntu

GitLab CE, or Community Edition, is an open source application primarily used to host Git repositories, with additional development-related features like issue tracking. In this guide, we will cover how to install and configure GitLab on an Ubuntu.

Read more
Настройка Jupyter Notebook с помощью Python 3 в Ubuntu 20.04 и подключение через туннель SSH — step-by-step Linux tutorial on Progressive Robot

Настройка Jupyter Notebook с помощью Python 3 в Ubuntu 20.04 и подключение через туннель SSH

Jupyter Notebook — веб-приложение с открытым исходным кодом, позволяющее создавать интерактивный код, визуализации и другие элементы и делиться ими. Этот инструмент можно использовать с несколькими языками программирования, включая Python, Julia, R, Haskell…

Read more
CHAT