Development

How To Use Modules in TypeScript — step-by-step Javascript tutorial on Progressive Robot

How To Use Modules in TypeScript

Modules are a way to organize your code into smaller, more manageable pieces. TypeScript evolved along with ECMAScript specifications to provide a standard module system for JavaScript programs that has the flexibility to work with the different existing formats. In this tutorial, you will take a look at how to create and use modules in TypeScript.

Read more
How To Use Telepresence on Kubernetes for Rapid Development on MacOS — step-by-step Kubernetes tutorial on Progressive Robot

How To Use Telepresence on Kubernetes for Rapid Development on MacOS

Telepresence is a Cloud-Native Computing Foundation project for fast, efficient development on Kubernetes. Telepresence creates a bi-directional network connection between your Kubernetes cluster and your local workstation, which allows you to run your service locally, while you run the rest of your application in the cloud. In this tutorial, you’ll install and configure Telepresence to work with a Kubernetes cluster, and redirect traffic to that cluster to your local machine.

Read more
How To Use Themes in Gatsby — step-by-step Javascript tutorial on Progressive Robot

How To Use Themes in Gatsby

Themes in Gatsby refer to plugins that act as a collection of configuration options, functionality, and/or user interface (UI) elements. Separating out shared features into maintained themes makes keeping your site up-to-date easier, and also lets you spend less time configuring your site and more time developing your content. In this tutorial, you will install, configure, and use a Gatsby theme for publishing blog posts: gatsby-theme-blog.

Read more
How To Work with JSON in JavaScript — step-by-step Javascript tutorial on Progressive Robot

How To Work with JSON in JavaScript

This tutorial provides an introduction to working with JSON in JavaScript. Some general use cases of JSON include: storing data, generating data from user input, transferring data from server to client and vice versa, configuring and verifying data.

Read more
How To Write Doctests in Python — step-by-step Python tutorial on Progressive Robot

How To Write Doctests in Python

Python’s standard library comes equipped with a test framework module called `doctest`. The `doctest` module programmatically searches Python code for pieces of text within comments that look like interactive Python sessions. Then, the module executes those sessions to confirm that the code referenced by a doctest runs as expected.

Read more
Como escrever seu primeiro programa em Go — step-by-step Programming tutorial on Progressive Robot

Como escrever seu primeiro programa em Go

O programa “Hello, World!” é um clássico tradicional, consagrado pelo tempo em programação de computadores. É um programa inicial, simples e completo para iniciantes e é uma boa maneira de garantir que seu ambiente esteja devidamente configurado. Este tutorial explicará sobre…

Read more
CHAT