Development

How To Deploy a Gatsby Application to an app platform — step-by-step Javascript tutorial on Progressive Robot

How To Deploy a Gatsby Application to an app platform

In this tutorial, you will deploy a Gatsby application to the cloud provider’s App Platform. App Platform is a Platform as a Service that builds, deploys, and manages apps automatically. When combined with the speed of a static site generator like Gatsby, this provides a scalable JAMStack solution that doesn’t require server-side programming.

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

Написание комментариев в Go

Комментарии — это строки компьютерных программ, которые игнорируются компиляторами и интерпретаторами. Добавление комментариев в программы делает код более удобным для чтения людьми, поскольку комментарии обычно содержат информацию или разъяснение того, что делает каждая часть…

Read more
Customizing Go Binaries with Build Tags — step-by-step Programming tutorial on Progressive Robot

Customizing Go Binaries with Build Tags

In Go, a build tag, or a build constraint, is an identifier added to a piece of code that determines when the file should be included in a package during the build process. This allows you to build different versions of your Go application from the same source code and to toggle between them in a fast and organized manner. In this article, you will use build tags in Go to generate different executable binaries that offer Free, Pro, and Enterprise feature sets of a sample application.

Read more
CHAT