Dev

Technology

Training: Tiny Python Projects

Website containing simple challenges in Python to clear mind and train your skills.

Read
Technology

Queuing jobs in apps is easier than you think

When trying to communicate with our application, we always expect that it is available and can handle our request at a given moment. However, if these things are not certain, or we need to operate in a distributed structure with no known source where the request is to go, we can use task queuing

Read
Technology

Knowledge books: Python

A list of useful topics related to the language, its functionality and small snippets. Everything that may be useful now or in the future

Read
Technology

Does the beginning of learning programming always have to be boring?

The beginnings are always difficult, whether when it comes to learning programming or trying to learn a new language. Usually we are looking for a fresh idea to systematically develop it as part of the acquired knowledge. It's hard to find something like this on the internet recently, so I'll share my ideas.

Read
Technology

Detailed description of your API

A good described API is attitude. Especially when planning architecture, where other teams work on its successive elements. Therefore, it is so important to describe in detail each API path. For this, it is worth using the right tool.

Read
Technology

Magic of whiptail and Squid proxy installation

When installing a bash open source project, I was always full of admiration for the developers who implemented the graphical interface. I was curious how it works and how I could apply it to my projects. The solution is simple - whiptail

Read
Technology

Task runner that resolves missing pipeline events

When creating pipelines for releasing things to the environment, we may run into the problem of handling too few events. By searching the internet, we can find a quite interesting task runner library that will help us in missing pipelines events

Read