Development

Конвертация типов данных в Go — step-by-step Programming tutorial on Progressive Robot

Конвертация типов данных в Go

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

Read more
How To Create a Django App and Connect it to a Database — step-by-step Linux tutorial on Progressive Robot

How To Create a Django App and Connect it to a Database

In this tutorial, you will learn how to set up the initial foundation for a blog website with connections to a MySQL database. This will involve creating the skeleton structure of the blog web application using django-admin, creating the MySQL database and then connecting the web application to the database.

Read more
How To Create Nested Resources for a Ruby on Rails Application — step-by-step Programming tutorial on Progressive Robot

How To Create Nested Resources for a Ruby on Rails Application

Rails is a web application framework written in Ruby that offers developers an opinionated approach to application development. As you add complexity to your Rails applications, you will likely work with multiple models, which represent your application’s business logic and interface with your database. In this tutorial, you will build on an existing Rails application that offers users facts about sharks. This application already has a model for handling shark data, but you will add a nested res

Read more
How To Create Your First Cross-Platform Desktop Application with Electron on macOS — step-by-step Javascript tutorial on Progressive Robot

How To Create Your First Cross-Platform Desktop Application with Electron on macOS

Electron is an open source framework for creating native applications with web technologies like JavaScript, HTML, and CSS. In this tutorial, you’ll first set up a project and install Electron. After that you’ll create your first hello world application using Electron and customize it. You’ll implement graceful window setup and create new windows for the application. After following all of these steps, you will have an Electron cross-platform desktop application on macOS.

Read more
CHAT