Development

How To Use Static Files in Gatsby — step-by-step Javascript tutorial on Progressive Robot

How To Use Static Files in Gatsby

Like many popular Static Site Generators, Gatsby embraces the use of dynamic web frameworks, using React on the frontend and Node.js on the backend. But Gatsby can also pull in static files and assets, like images, CSS files, and JavaScript files. This tutorial will show you how to best go about adding images, stylesheets globally and as modules, JavaScript files, and arbitrary files like PDFs for your users to download.

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

How To Use the Flag Package in Go

In this tutorial you’ll explore various ways to use the `flag` package to build different kinds of command-line utilities. You’ll use a flag to control program output, introduce positional arguments where you mix flags and other data, and then implement sub-commands.

Read more
Использование переменных и констант в Go — step-by-step Programming tutorial on Progressive Robot

Использование переменных и констант в Go

Переменные — это важная концепция программирования, которую необходимо освоить. Это символы, обозначающие определенные значения, используемые в программе. В этом обучающем руководстве мы расскажем об основах работы с переменными и лучших практиках их использования в создаваемых вами…

Read more
How To Use Web APIs in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Use Web APIs in Python 3

An API, or Application Program Interface, makes it easy for developers to integrate one app with another. They expose some of a program’s inner workings in a limited way. You can use APIs to get information from other programs, or to automate things you normally do in your…

Read more
Como escrever instruções condicionais em Go — step-by-step Programming tutorial on Progressive Robot

Como escrever instruções condicionais em Go

As instruções condicionais fazem parte de todas as linguagens de programação. Com as instruções condicionais, podemos ter códigos que algumas vezes executam e em outras ocasiões não, dependendo das condições do programa naquele momento. Quando executamos totalmente cada…

Read more
Импорт пакетов в Go — step-by-step Programming tutorial on Progressive Robot

Импорт пакетов в Go

Иногда для вашего кода могут потребоваться дополнительные функции вне текущей программы. В подобных случаях вы можете использовать пакеты, чтобы сделать программу более функциональной. Пакет представляет собой все файлы в одном каталоге на диске. Пакеты могут определять функции,…

Read more
CHAT