How to find a line in a file without opening it completely, and replace a found word with another (using grep/sed commands in Linux)?
QA / QA Automation
Why are artifacts needed in GitLab CI?
def test_blocks(a, b): try: result = a / b except ZeroDivisionError: return "Division by zero error" else: return f"Result: {result}" finally: return "Final" print(test_blocks(10, 2)) print(test_blocks(10, 0))
How to organize user photo processing through Kafka queue: is it possible to pass images in Kafka and what are the pros and cons of such a solution?
How would the architectural approach change if instead of a photo editor, a video editor is developed?.
What is Service as an entity in Kubernetes?
Who and how assigned you tasks to cover functionality with tests?
How do you decide whether to cover a task or test with automation?
How to ensure that an HTML report is published in GitLab CI even when tests fail?
x = 5 y = "2" print(x * y) print(x + y)