Development

How To Build Your Blog on the cloud provider with Ghost and Next.js — step-by-step Javascript tutorial on Progressive Robot

How To Build Your Blog on the cloud provider with Ghost and Next.js

You can use Next.js with Ghost to build a statically generated blog with better performance and SEO. You can also customize your design and add the functionalities you want. In this tutorial, you’ll use Ghost to manage articles and Next.js to build the frontend of your blog. the cloud provider’s Ghost One-Click makes it easy to get started!

Read more
How To Construct While Loops in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Construct While Loops in Python 3

A while loop implements the repeated execution of code based on a given Boolean condition. The code that is in a while block will execute as long as the while statement evaluates to True. In this tutorial, we will go over how while loops work and how to construct them.

Read more
How To Create a Database Model in Laravel with Eloquent — step-by-step Programming tutorial on Progressive Robot

How To Create a Database Model in Laravel with Eloquent

Eloquent is an object relational mapper (ORM) included by default within Laravel applications. It facilitates the task of interacting with database tables, providing an object-oriented approach to inserting, updating, and deleting database records, while also providing a streamlined interface for executing SQL queries. In this guide, which is part of a larger Laravel series, you’ll see how to create an Eloquent model for a links landing application.

Read more
How To Debug Node.js with the Built-In Debugger and Chrome DevTools — step-by-step Javascript tutorial on Progressive Robot

How To Debug Node.js with the Built-In Debugger and Chrome DevTools

In this article, you will use a debugger to debug some sample Node.js applications. You will first debug code using the built-in Node.js debugger tool, setting up watchers and breakpoints so you can find the root cause of a bug. You will then use Google Chrome DevTools as a Graphical User Interface (GUI) alternative to the command line Node.js debugger.

Read more
Выполнение математических операций в Go с помощью операторов — step-by-step Programming tutorial on Progressive Robot

Выполнение математических операций в Go с помощью операторов

Числа используются повсюду в программировании. Они используются для представления таких вещей, как размеры экрана, географическое местоположение, денежные средства и баллы, количество времени, передаваемого в видео, расположение игровых аватаров, отображение цветов через…

Read more
CHAT