Development

How To Manage State in a Vue.js Application with Vuex — step-by-step Javascript tutorial on Progressive Robot

How To Manage State in a Vue.js Application with Vuex

Vuex is the first-party development state management library for Vue.js. Vuex follows the principle that Redux has popularized over the past years: Data flows in one direction, with actions and mutations modifying data in a single source of truth called the store. In this tutorial, you will create an application that renders a list of cards with airport information in them. When clicked, these cards will execute the Vuex workflow to add the selected airport to a list of favorites.

Read more
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 Validate Forms in Vue.js — step-by-step Javascript tutorial on Progressive Robot

How To Validate Forms in Vue.js

Form field validation requires a user to fill out all required fields in a web form. The validation is typically done where the developer can set up rules. In this tutorial, we will build a registration form which uses VeeValidate to validate its form input.

Read more
Булева логика в Go — step-by-step Programming tutorial on Progressive Robot

Булева логика в Go

Логический тип данных (bool) может иметь одно из двух значений, true (истина) или false (ложь). Булевы операторы используются в программировании для сравнения и для контроля потока процессов программы. Булевы операторы используются для представления значений истины, связанных с…

Read more
How To Style Figure and Image HTML Elements with CSS — step-by-step DevOps tutorial on Progressive Robot

How To Style Figure and Image HTML Elements with CSS

This tutorial will lead you through examples of image CSS styling for web pages, allowing you to make informed decisions about how images are displayed and altered to fit the context. You will create a web page consisting of content and three images. The first image will be loaded as an element on its own, the second will be wrapped in the

element with an appropriate
, and the third will use the element to load different images at different screen sizes.

Read more
CHAT