Development

How To Build a Jamstack Portfolio with Angular 11 and Scully — step-by-step Javascript tutorial on Progressive Robot

How To Build a Jamstack Portfolio with Angular 11 and Scully

As a developer, it’s important to have a portfolio showcasing your skills and previous work. You can build an engaging and fast portfolio using Angular and Scully. In this tutorial, you will generate an Angular app, add pages to show your projects and profile, and add services to populate these pages. Additionally, you will generate a blog and create posts for it. Lastly, you will convert the app into a static site using Scully.

Read more
How To Build a Shopping Cart with Vue 3 and Vuex — step-by-step Javascript tutorial on Progressive Robot

How To Build a Shopping Cart with Vue 3 and Vuex

This tutorial will demonstrate a Vue.js application by leading you through building the shopping cart of an e-commerce app. To store the information, you will explore the state management library Vuex, and will use getters, actions, and mutations to manage state. It will also use Axios for HTTP requests, the Bulma CSS framework for styling, and Vue-Router for routing.

Read more
How To Construct For Loops in Go — step-by-step Programming tutorial on Progressive Robot

How To Construct For Loops in Go

In the Go programming language, a `for` loop implements the repeated execution of code based on a loop counter or loop variable. In this tutorial, you will learn how Go’s `for` loop works, including the three major variations of its use: ForClause, Condition, and RangeClause. We’ll start by showing how to create different types of `for` loops, followed by how to loop through sequential data types in Go. We’ll end by explaining how to use nested loops.

Read more
How To Convert Data Types in Ruby — step-by-step Programming tutorial on Progressive Robot

How To Convert Data Types in Ruby

Ruby provides several methods for converting values from one data type to another. In this tutorial, you’ll convert strings to numbers, objects to strings, strings to arrays, and convert between strings and symbols.

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 Debug JavaScript with Google Chrome DevTools and Visual Studio Code — step-by-step Javascript tutorial on Progressive Robot

How To Debug JavaScript with Google Chrome DevTools and Visual Studio Code

Learning to debug is an essential skill for developers, allowing them to quickly and efficiently fix errors during development. But how to use debugging tools is not always obvious when working with JavaScript outside of a full-fledged Integrated Developer Environment (IDE). In this tutorial, we’ll take a look at getting started debugging JavaScript with the Google Chrome DevTools, as well as with the popular text editor Visual Studio Code.

Read more
CHAT