Development

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
How To Write Switch Statements in Go — step-by-step Programming tutorial on Progressive Robot

How To Write Switch Statements in Go

switch is an alternative conditional statement useful for communicating actions taken by your Go programs when presented with different options. Everything we can write with the switch statement can also be written with if statements. We’ll look at a few examples of what the switch statement can do, the if statements it replaces, and where it’s most appropriately applied.

Read more
Información sobre clases de JavaScript — step-by-step Javascript tutorial on Progressive Robot

Información sobre clases de JavaScript

JavaScript es un lenguaje basado en prototipos y cada objeto en él tiene una propiedad interna oculta llamada [[Prototype]] que puede usarse para extender propiedades y métodos de objetos. Puede obtener más información sobre los prototipos de nuestro tutorial [Información…

Read more
How To Set Up React Using Webpack 4 and Babel 7 — step-by-step Javascript tutorial on Progressive Robot

How To Set Up React Using Webpack 4 and Babel 7

A common way to learn React is to use create-react-app, which is a lightweight way to bootstrap any React project. But in order to achieve a particular purpose, it is sometimes necessary to configure your application from scratch. In this tutorial, we will be setting up React using Webpack and Babel.

Read more
Understanding Boolean Logic in Python 3 — step-by-step Python tutorial on Progressive Robot

Understanding Boolean Logic in Python 3

The Boolean data type can be one of two values, either True or False. We use Booleans in programming to make comparisons and to control the flow of the program. In this tutorial, we’ll go over the basics you’ll need to understand how Booleans work, including Boolean comparison and logical operators, and truth tables.

Read more
CHAT