All user publications
Andrey Borokin
Total posts: 24

Modern Methods of Asynchronous Loading with httpx and asyncio
-
Publication Date: 28 February 2024

Asynchronous programming in Python is a paradigm that enhances an application’s performance by running multiple I/O operations or other time-consuming tasks concurrently, without blocking the program’s main execution flow. This approach is especially beneficial for web applications that frequently interact with databases, file systems, or network resources, where delays in responses are quite common.
Integrating Cloud Storage with Django
-
Publication Date: 16 February 2024

In modern web application development—particularly for projects dealing with large amounts of data, including media content—choosing a reliable and efficient data storage method is critical. Cloud storage is one of the most popular solutions, thanks to its flexibility, scalability, and accessibility. Let’s take a closer look at the advantages and disadvantages of cloud storage, as well as briefly compare some of the most popular providers.
Agile in 2024: Adapting Methods for Flexible Development
-
Publication Date: 12 February 2024

Agile isn’t just a methodology—it’s a philosophy that revolutionized how we approach software development. It all began back in February 2001, when a group of 17 independent thought leaders gathered in Snowbird, Utah, to discuss their ideas on “lightweight” software development. Those discussions led to the creation of the “Agile Manifesto,” which set forth four core principles that still form the cornerstone of Agile:
Docker Compose in Action: From Basic Builds to Application Optimization
-
Publication Date: 08 February 2024

Docker is a powerful tool that has revolutionized how we develop and deploy software through containerization. Let’s dive into what Docker is and why it has become an essential part of modern software development.
Diving into the Principles of Array Reshaping in Machine Learning
-
Publication Date: 29 January 2024

In the world of machine learning and artificial intelligence—particularly in training neural networks—one of the key aspects is the preparation and processing of input data. Within this context, reshaping data arrays plays a critically important role. In this article, we’ll explore why and how changing the shape of input data affects both the training process and the performance of models.
Text Processing in Neural Networks
-
Publication Date: 12 January 2024

Over the past decade, Natural Language Processing (NLP) has become one of the fastest-growing areas in artificial intelligence. At the heart of this progress are neural networks, which can analyze, interpret, translate, and even generate text, steadily approaching a level of human-like language understanding. This breakthrough has paved the way for creating more intuitive and efficient systems capable of interacting with users in natural, everyday language.
Immersion into GRASP: The Fundamentals of System Design Principles
-
Publication Date: 25 December 2023

GRASP, which stands for General Responsibility Assignment Software Patterns, is a set of guiding principles for object-oriented design. These principles help developers distribute responsibilities among various classes and objects within a software system. Each principle focuses on addressing specific design challenges and ensuring code quality, scalability, and maintainability.
Big O and Time Complexity
-
Publication Date: 07 December 2023

Big O notation is a fundamental concept in computer science and programming. It provides a standardized way to describe the efficiency of algorithms, allowing developers to understand how the execution time or memory usage of their programs will change as the size of the input data increases.