The Case for Manual Testing in an Automated World

The Case for Manual Testing in an Automated World

In the ever-evolving landscape of software development, the debate between manual and automated testing has become a staple of QA discussions. While automation has undoubtedly revolutionized the testing process with its speed, efficiency, and repeatability, declaring the end of manual testing would be premature and misguided. Here’s why manual testing remains an indispensable component of any robust testing strategy, even in an automated world. The Human Element: Where Automation Falls Short Automation excels in executing repetitive tasks, performing regression testing, and providing rapid feedback within the continuous integration/continuous deployment (CI/CD) pipeline....

November 15, 2024 · 5 min · 882 words · Maxim Zhirnov
Пример ручного тестирования в автоматизированном мире

Пример ручного тестирования в автоматизированном мире

В постоянно меняющемся ландшафте разработки программного обеспечения дискуссия между ручным и автоматизированным тестированием стала неотъемлемой частью обсуждений в области обеспечения качества (QA). Хотя автоматизация, несомненно, произвела революцию в процессе тестирования благодаря своей скорости, эффективности и повторяемости, было бы преждевременно и ошибочно объявлять о конце ручного тестирования. Вот почему ручное тестирование остаётся незаменимым компонентом любой надёжной стратегии тестирования даже в автоматизированном мире. Человеческий фактор: где автоматизация терпит неудачу Автоматизация преуспевает в выполнении повторяющихся задач, проведении регрессионного тестирования и предоставлении быстрой обратной связи в рамках непрерывного интегрирования/непрерывного развёртывания (CI/CD)....

November 15, 2024 · 3 min · 617 words · Maxim Zhirnov
Building a Distributed Caching System with Apache Ignite and Go: A Step-by-Step Guide

Building a Distributed Caching System with Apache Ignite and Go: A Step-by-Step Guide

Introduction to Distributed Caching In the world of software development, performance is king. One of the most effective ways to boost your application’s performance is by implementing a distributed caching system. Imagine a scenario where your application can retrieve data in milliseconds instead of seconds – it’s a game-changer. In this article, we’ll explore how to build a distributed caching system using Apache Ignite and the Go programming language. Why Apache Ignite?...

November 14, 2024 · 6 min · 1072 words · Maxim Zhirnov
Построение распределенной системы Кэширования с помощью Apache Ignite и Go: пошаговое руководство

Построение распределенной системы Кэширования с помощью Apache Ignite и Go: пошаговое руководство

Введение в распределённое кэширование В мире разработки программного обеспечения производительность играет ключевую роль. Один из самых эффективных способов улучшить производительность приложения — внедрить систему распределённого кэширования. Представьте себе сценарий, где ваше приложение может извлекать данные за миллисекунды вместо секунд — это революционное изменение. В этой статье мы рассмотрим, как построить систему распределённого кэширования с использованием Apache Ignite и языка программирования Go. Почему именно Apache Ignite? Apache Ignite — мощный, открытый и доступный слой распределённой базы данных и кэширования, который поддерживает ACID транзакции, SQL запросы и многое другое....

November 14, 2024 · 4 min · 758 words · Maxim Zhirnov
Crafting Neovim Plugins with Lua: A Journey of Speed and Elegance

Crafting Neovim Plugins with Lua: A Journey of Speed and Elegance

Introduction to Neovim and Lua In the realm of text editors, Neovim stands out as a powerful and customizable tool, especially when paired with the Lua programming language. Lua’s integration into Neovim is a game-changer, offering a robust and efficient way to develop plugins. If you’re a developer looking to enhance your Neovim experience or simply curious about how to create plugins, this article is your guide to the wonderful world of Lua-powered Neovim plugins....

November 12, 2024 · 4 min · 848 words · Maxim Zhirnov