Development

How To Use Float and Columns to Lay Out Content with CSS — step-by-step DevOps tutorial on Progressive Robot

How To Use Float and Columns to Lay Out Content with CSS

Before Grid and Flexbox existed, web developers relied heavily on the `float` and `columns` properties for CSS layout. In this tutorial you will work with the `float` and `columns` properties to create various layout styles and effects, including floating a pull quote and an image to cause the content to wrap and adjusting vertically long content to spread across the horizontal axis.

Read more
How To Use the Node.js REPL — step-by-step Javascript tutorial on Progressive Robot

How To Use the Node.js REPL

The Node.js Read-Eval-Print-Loop (REPL) is an interactive shell that processes Node.js expressions. The shell reads JavaScript code the user enters, evaluates the result of interpreting the line of code, prints the result to the user, and loops until the user signals to quit. The REPL is bundled with with every Node.js installation and allows you to quickly test and explore JavaScript code within the Node environment without having to store it in a file.

Read more
How To Use WordPress Content with a Gatsby.js Application — step-by-step Javascript tutorial on Progressive Robot

How To Use WordPress Content with a Gatsby.js Application

A new paradigm in WordPress is using it only for the content part of your site and using Gatsby.js to statically generate the frontend. By decoupling content from the user interface (UI), you can keep the content editor and collaborative features of WordPress, but also enjoy the faster load times and React-based UI ecosystem of Gatsby. In this tutorial, you will provision WordPress to talk to Gatsby and set up a new Gatsby project based on a starter template.

Read more
How To Write and Run Your First Program in Node.js — step-by-step Javascript tutorial on Progressive Robot

How To Write and Run Your First Program in Node.js

Node.js is a popular open-source runtime environment that can execute JavaScript outside of the browser using the V8 JavaScript engine, which is the same engine used to power the Google Chrome web browser’s JavaScript execution. In this tutorial you’ll create your first program with the Node.js runtime. You’ll be introduced to a few Node-specific concepts and build your way up to create a program that helps users inspect environment variables on their system.

Read more
How To Write Conditional Statements in Go — step-by-step Programming tutorial on Progressive Robot

How To Write Conditional Statements in Go

Conditional statements are part of every programming language. With conditional statements, we can have code that sometimes runs and at other times does not run, depending on the conditions of the program at that time. This tutorial will take you through writing conditional statements in the Go programming language.

Read more
CHAT