Development

How to Use Chrome Dev Tools to Find Performance Bottlenecks — step-by-step DevOps tutorial on Progressive Robot

How to Use Chrome Dev Tools to Find Performance Bottlenecks

As one advances through a Software Development career, concerns beyond writing code that works arise. In the world of web development, it becomes pertinent to not only build functional software but to also make them highly performant such that they are able to seamlessly deliver the desired experience while using minimal resources. In this article, we will go through an in-depth consideration of one of such tools; The Chrome Developer Tools.

Read more
How To Use Functions in TypeScript — step-by-step Javascript tutorial on Progressive Robot

How To Use Functions in TypeScript

TypeScript fully supports the existing JavaScript syntax for functions, while also adding type information and function overloading as new features. Besides providing extra documentation to the function, type information will also decrease the chances of having bugs. In this tutorial, you will start by creating the most basic functions with type information, then move on to more complex scenarios, like using rest parameters and function overloading.

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

Использование тегов структур в Go

Структуры используются для сбора различных элементов информации внутри одной единицы. Эти наборы информации используются для описания концепций более высокого уровня. Так, адрес состоит из области,…

Read more
How To Use the sqlite3 Module in Python 3 — step-by-step Databases tutorial on Progressive Robot

How To Use the sqlite3 Module in Python 3

SQLite is a self-contained, file-based SQL database. SQLite comes bundled with Python and can be used in any of your Python applications without having to install any additional software. In this tutorial, we’ll go through the sqlite3 module in Python 3.

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

Использование функций с переменным количеством аргументов в Go

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

Read more
CHAT