Development

How To Style Text Elements with Font, Size, and Color in CSS — step-by-step DevOps tutorial on Progressive Robot

How To Style Text Elements with Font, Size, and Color in CSS

In this tutorial you will learn about web typography, the art of styling text. You will start the tutorial by writing an HTML structure with headings h1 to h6, then apply apply multiple text-related CSS properties, including font-family, font-size, and color. You will also load custom fonts from Google Fonts, a third-party font-hosting service.

Read more
How To Troubleshoot 'ReferenceError', 'SyntaxError' and 'TypeError' in JavaScript — step-by-step Javascript tutorial on Progressive Robot

How To Troubleshoot ‘ReferenceError’, ‘SyntaxError’ and ‘TypeError’ in JavaScript

JavaScript is a programming language used in frontend and backend development. When working with JavaScript, deciphering error messages can feel a bit daunting. Understanding what an error message is referring to is important when you’re troubleshooting issues within an application. In this tutorial, you’ll learn about three common JavaScript error types that appear in a browser environment: “ReferenceError”, “SyntaxError”, and “TypeError”.

Read more
How To Use JSON in Go — step-by-step Programming tutorial on Progressive Robot

How To Use JSON in Go

Programs need to store data their own data and communicate with each other. JSON is a popular way to do both. In this tutorial, you will use Go’s `encoding/json` package to enode and decode JSON data so that you can save your own JSON data and interact with APIs.

Read more
How To Use Node.js Modules with npm and package.json — step-by-step Javascript tutorial on Progressive Robot

How To Use Node.js Modules with npm and package.json

The Node.js Package Manager (npm) is the default and most popular package manager in the Node.js ecosystem, and is primarily used to install and manage external modules in a Node.js project. In this tutorial, you will manage packages with npm, first keeping track of modules with the package.json file, and then using the npm CLI tool to list your package dependencies, update your packages, uninstall your packages, and perform an audit to find security flaws in your packages.

Read more
How To Use Stored Procedures in MySQL — step-by-step Databases tutorial on Progressive Robot

How To Use Stored Procedures in MySQL

MySQL supports the use of stored procedures, which group one or multiple SQL statements for reuse under a common name. Using stored procedures, you can create reusable routines for common tasks to be used across multiple applications, provide data validation, or deliver an additional layer of data access security. In this tutorial, you’ll learn what stored procedures are and how to create basic stored procedures that return data and use both input and output parameters.

Read more
CHAT