Development

Creating Custom Errors in Go — step-by-step Programming tutorial on Progressive Robot

Creating Custom Errors in Go

When communicating more complicated error information to your users, or to your future self when debugging, sometimes these two mechanisms are not enough to adequately capture and report what has happened. To convey this more complex error information we can implement the standard library interface type, `error`, to get more functionality.

Read more
Handling Errors in Go — step-by-step Programming tutorial on Progressive Robot

Handling Errors in Go

Robust code needs to react correctly to unexpected circumstances like bad user input, faulty network connections, and failing disks. Error handling is the process of identifying when your program is in an unexpected state, and taking steps to record diagnostic information for later debugging.

Read more
Добавление Sidekiq и Redis в приложение Ruby on Rails — step-by-step Databases tutorial on Progressive Robot

Добавление Sidekiq и Redis в приложение Ruby on Rails

При разработке приложения Ruby on Rails могут возникнуть такие задачи приложения, которые должны выполняться асинхронно. Обработка данных, массовая рассылка электронной почты, взаимодействие с внешними API и другие подобные задачи могут выполняться…

Read more
How To Build a Blog with Nest.js, MongoDB, and Vue.js — step-by-step Databases tutorial on Progressive Robot

How To Build a Blog with Nest.js, MongoDB, and Vue.js

Nest.js is a scalable, server-side JavaScript framework built with TypeScript that still preserves compatibility with JavaScript. You’ll approach this project by separating the application into two different sections: the frontend and the backend. You’ll use Nest.js to build the backend, Vue.js for the front-end application, and MongoDB to persist your app’s data.

Read more
How To Build Progressive Web Apps with Angular — step-by-step Javascript tutorial on Progressive Robot

How To Build Progressive Web Apps with Angular

Progressive web apps are web applications built with technologies that make them behave like native apps. A benefit of progressive web apps is the ability to work smoothly when network coverage is unreliable. In this article, you’ll build a progressive web app with Angular and deploy it with Firebase.

Read more
CHAT