Development

How To Process Images in Node.js with Sharp — step-by-step Javascript tutorial on Progressive Robot

How To Process Images in Node.js with Sharp

Digital image processing is a method of using a computer to analyze and manipulate images. This tutorial covers using the Node.js library sharp to read an image and extract its metadata, resize, change and compress its format, crop, grayscale, rotate, and blur the image. As well as compositing two images into one, and adding text on an image.

Read more
How To Set Up Your First Gatsby Website — step-by-step Javascript tutorial on Progressive Robot

How To Set Up Your First Gatsby Website

Gatsby is a React framework that allows you to create static and serverless JavaScript apps. In this tutorial, you will install the Gatsby Starter default template, modify metadata in the Gatsby config file, run the development server and view the Gatsby site locally, and get a short introduction to JSX and Gatsby’s image optimization capabilities.

Read more
How To Train a Neural Network for Sentiment Analysis — step-by-step AI And Machine Learning tutorial on Progressive Robot

How To Train a Neural Network for Sentiment Analysis

In this tutorial, you will build a neural network that predicts the sentiment of film reviews with Keras. Your model will categorize the reviews into two categories (positive or negative) using the International Movie Database (IMDb) review dataset, which contains 50,000 movie reviews. By the end of this tutorial, you will have created a deep learning model and trained a neural network to perform sentiment analysis.

Read more
How To Use *args and **kwargs in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Use *args and **kwargs in Python 3

In this tutorial, we will cover the syntax of working with *args and **kwargs as parameters within functions to pass a variable number of arguments to a given function. Both can be used improve readability and convenience, and are best for situations where the number of inputs within the argument list will remain relatively small.

Read more
How To Use Common Units in CSS — step-by-step DevOps tutorial on Progressive Robot

How To Use Common Units in CSS

There are a lot of size units to choose from when styling HTML with CSS. These units help determine how big or small text appears, how wide a container is, or how much space is between columns. In this tutorial you will learn about the the pixel (px), percent (%), em, and rem units. You will use these units in conjunction with several properties, including font-size, padding, border, margin, width, and max-width to learn the differences and strengths of each unit.

Read more
How to Use Go Modules — step-by-step Programming tutorial on Progressive Robot

How to Use Go Modules

A Go module commonly consists of one project or library and contains a collection of Go packages that are then released together. With Go modules, you can put code where you want and specify dependencies for each module.

Read more
How To Use Operators in Java — step-by-step Programming tutorial on Progressive Robot

How To Use Operators in Java

An operator is one or more symbols in combination — from the well-known arithmetic operators such as minus and plus to the more advanced `instanceof`. When you apply operators on values or variables, you get a result from the operation. In this tutorial, you will use unary, binary, and ternary operators in a range of scenarios.

Read more
CHAT